diff --git a/src/@ionic-native/plugins/ms-adal/index.ts b/src/@ionic-native/plugins/ms-adal/index.ts index 35dd3ec794..5aeb8be618 100644 --- a/src/@ionic-native/plugins/ms-adal/index.ts +++ b/src/@ionic-native/plugins/ms-adal/index.ts @@ -138,12 +138,13 @@ export class AuthenticationContext { * @param {String} extraQueryParameters * Extra query parameters (optional) * Parameters should be escaped before passing to this method (e.g. using 'encodeURI()') + * @param {String} claims Claim parameter. Parameter should be used under conditional access scenarios (optional) * @returns {Promise} Promise either fulfilled with AuthenticationResult object or rejected with error */ @CordovaInstance({ otherPromise: true }) - acquireTokenAsync(resourceUrl: string, clientId: string, redirectUrl: string, userId?: string, extraQueryParameters?: any): Promise { + acquireTokenAsync(resourceUrl: string, clientId: string, redirectUrl: string, userId?: string, extraQueryParameters?: any, claims?: string): Promise { return; }