From cfc5441a76bc3f54686bace707bc85bc15d9be80 Mon Sep 17 00:00:00 2001 From: Nelson Morais Date: Tue, 10 Jan 2017 22:51:25 +0100 Subject: [PATCH] Update config to support adal 1.0.13 settings (#13871) The instance setting was missing and is required if you need to connect to other instances (like China) --- adal/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/adal/index.d.ts b/adal/index.d.ts index a896d687ec..abff003e97 100644 --- a/adal/index.d.ts +++ b/adal/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for ADAL.JS 1.0.8 +// Type definitions for ADAL.JS 1.0.13 // Project: https://github.com/AzureAD/azure-activedirectory-library-for-js // Definitions by: mmaitre314 // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -16,6 +16,7 @@ declare namespace adal { tenant?: string; clientId: string; redirectUri?: string; + instance?: string; cacheLocation?: string; displayCall?: (urlNavigate: string) => any; correlationId?: string;