mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
added identifier prop to resource servers in auth0 (#22842)
* added identifier prop to resource servers in auth0 * require identifier for new resource servers
This commit is contained in:
parent
2996e4ab42
commit
30a18caa99
6
types/auth0/index.d.ts
vendored
6
types/auth0/index.d.ts
vendored
@ -178,6 +178,10 @@ export interface Client {
|
||||
}
|
||||
|
||||
export interface ResourceServer {
|
||||
/**
|
||||
* The identifier of the resource server.
|
||||
*/
|
||||
identifier?: string;
|
||||
scopes?: { description: string, value: string }[];
|
||||
/**
|
||||
* The algorithm used to sign tokens.
|
||||
@ -217,7 +221,7 @@ export interface CreateResourceServer extends ResourceServer {
|
||||
/**
|
||||
* The identifier of the client.
|
||||
*/
|
||||
identifier?: string;
|
||||
identifier: string;
|
||||
}
|
||||
|
||||
export interface CreateClientGrant {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user