You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Hash contains known properties - handle and return in callback
@@ -328,9 +331,9 @@ export class PublicClientApplication {
328
331
*
329
332
* @param {@link (AuthenticationParameters:type)}
330
333
*
331
-
* @returns {Promise.<TokenResponse>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse} object
334
+
* @returns {Promise.<AuthenticationResult>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse} object
@@ -354,9 +357,9 @@ export class PublicClientApplication {
354
357
* @param {@link AuthenticationParameters}
355
358
*
356
359
* To acquire only idToken, please pass clientId as the only scope in the Authentication Parameters
357
-
* @returns {Promise.<TokenResponse>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse} object
360
+
* @returns {Promise.<AuthenticationResult>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse} object
// Show the UI once the url has been created. Get the window handle for the popup.
@@ -405,12 +408,12 @@ export class PublicClientApplication {
405
408
*
406
409
* If your refresh token has expired, you can use this function to fetch a new set of tokens silently as long as
407
410
* you session on the server still exists.
408
-
* @param {@link AuthenticationParameters}
411
+
* @param {@link AuthorizationUrlRequest}
409
412
*
410
413
* To renew idToken, please pass clientId as the only scope in the Authentication Parameters.
411
-
* @returns {Promise.<TokenResponse>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse} object
414
+
* @returns {Promise.<AuthenticationResult>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse} object
// block the reload if it occurred inside a hidden iframe
415
418
BrowserUtils.blockReloadInHiddenIframes();
416
419
@@ -454,19 +457,18 @@ export class PublicClientApplication {
454
457
* @returns {Promise.<TokenResponse>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse} object
0 commit comments