adding connection_scope to auth0-js AuthorizeOptions (#42263)

updating connection_scope to include string[]
This commit is contained in:
TylerLindell
2020-02-12 10:24:59 -08:00
committed by GitHub
parent d89aa28c53
commit b8601bd85e

View File

@@ -5,6 +5,7 @@
// Peter Blazejewicz <https://github.com/peterblazejewicz>
// Bartosz Kotrys <https://github.com/bkotrys>
// Mark Nelissen <https://github.com/marknelissen>
// Tyler Lindell <https://github.com/tylerlindell>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export as namespace auth0;
@@ -950,6 +951,7 @@ export interface AuthorizeOptions {
accessType?: string;
approvalPrompt?: string;
appState?: any;
connection_scope?: string | string[];
}
export interface CheckSessionOptions extends AuthorizeOptions {