feat(auth0): add missing members on ResourceServer object (#36932)

Namely `enforce_policies` and `token_dialect`.
This commit is contained in:
Clément HELIOU
2019-07-22 12:27:23 -07:00
committed by Wesley Wigham
parent 144cad8200
commit 7c77b17d48
+8
View File
@@ -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 {