From 7c77b17d4838020643df22716cf4742722402913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20HELIOU?= Date: Mon, 22 Jul 2019 21:27:23 +0200 Subject: [PATCH] feat(auth0): add missing members on ResourceServer object (#36932) Namely `enforce_policies` and `token_dialect`. --- types/auth0/index.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/types/auth0/index.d.ts b/types/auth0/index.d.ts index 6796b4c782..c6cee58b0f 100644 --- a/types/auth0/index.d.ts +++ b/types/auth0/index.d.ts @@ -315,6 +315,14 @@ export interface ResourceServer { * A friendly name for the resource server. */ name?: string; + /** + * Enables the enforcement of the authorization policies. + */ + enforce_policies?: boolean; + /** + * The dialect for the access token. + */ + token_dialect?: 'access_token' | 'access_token_authz'; } export interface CreateResourceServer extends ResourceServer {