From b8601bd85ef1ead3d24142a2ab4972da00433137 Mon Sep 17 00:00:00 2001 From: TylerLindell Date: Wed, 12 Feb 2020 10:24:59 -0800 Subject: [PATCH] adding connection_scope to auth0-js AuthorizeOptions (#42263) updating connection_scope to include string[] --- types/auth0-js/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/auth0-js/index.d.ts b/types/auth0-js/index.d.ts index f29a9e4de1..199a05142f 100644 --- a/types/auth0-js/index.d.ts +++ b/types/auth0-js/index.d.ts @@ -5,6 +5,7 @@ // Peter Blazejewicz // Bartosz Kotrys // Mark Nelissen +// Tyler Lindell // 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 {