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 {