@azure/msal-browser 5.15.0 → 5.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/IPublicClientApplication.mjs +1 -1
- package/dist/app/PublicClientApplication.mjs +1 -1
- package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
- package/dist/cache/AccountManager.mjs +1 -1
- package/dist/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/cache/BrowserCacheManager.mjs +4 -2
- package/dist/cache/BrowserCacheManager.mjs.map +1 -1
- package/dist/cache/CacheHelpers.mjs +1 -1
- package/dist/cache/CacheKeys.mjs +1 -1
- package/dist/cache/CookieStorage.mjs +1 -1
- package/dist/cache/DatabaseStorage.mjs +1 -1
- package/dist/cache/EncryptedData.mjs +1 -1
- package/dist/cache/LocalStorage.mjs +1 -1
- package/dist/cache/MemoryStorage.mjs +1 -1
- package/dist/cache/SessionStorage.mjs +1 -1
- package/dist/cache/TokenCache.mjs +1 -1
- package/dist/config/Configuration.mjs +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.mjs +1 -1
- package/dist/crypto/BrowserCrypto.mjs +1 -1
- package/dist/crypto/CryptoOps.mjs +1 -1
- package/dist/crypto/PkceGenerator.mjs +1 -1
- package/dist/crypto/SignedHttpRequest.mjs +1 -1
- package/dist/custom_auth/CustomAuthConstants.mjs +1 -1
- package/dist/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs +1 -1
- package/dist/custom_auth/core/CustomAuthAuthority.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +1 -1
- package/dist/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
- package/dist/custom_auth/core/error/CustomAuthError.mjs +1 -1
- package/dist/custom_auth/core/error/HttpError.mjs +1 -1
- package/dist/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
- package/dist/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
- package/dist/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
- package/dist/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
- package/dist/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
- package/dist/custom_auth/core/error/ParsedUrlError.mjs +1 -1
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
- package/dist/custom_auth/core/error/UnexpectedError.mjs +1 -1
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
- package/dist/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
- package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
- package/dist/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
- package/dist/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
- package/dist/custom_auth/core/utils/CustomHeaderUtils.mjs +1 -1
- package/dist/custom_auth/core/utils/UrlUtils.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
- package/dist/custom_auth/index.mjs +1 -1
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
- package/dist/encode/Base64Decode.mjs +1 -1
- package/dist/encode/Base64Encode.mjs +1 -1
- package/dist/error/BrowserAuthError.mjs +1 -1
- package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
- package/dist/error/NativeAuthError.mjs +1 -1
- package/dist/error/NativeAuthErrorCodes.mjs +1 -1
- package/dist/error/NestedAppAuthError.mjs +1 -1
- package/dist/event/EventHandler.mjs +1 -1
- package/dist/event/EventMessage.mjs +1 -1
- package/dist/event/EventType.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
- package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
- package/dist/interaction_client/PopupClient.mjs +1 -1
- package/dist/interaction_client/RedirectClient.mjs +1 -1
- package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
- package/dist/interaction_client/SilentCacheClient.mjs +1 -1
- package/dist/interaction_client/SilentIframeClient.mjs +1 -1
- package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
- package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
- package/dist/interaction_handler/InteractionHandler.mjs +1 -1
- package/dist/interaction_handler/SilentHandler.mjs +1 -1
- package/dist/log-strings-mapping.json +2 -2
- package/dist/naa/BridgeError.mjs +1 -1
- package/dist/naa/BridgeProxy.mjs +1 -1
- package/dist/naa/BridgeStatusCode.mjs +1 -1
- package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
- package/dist/navigation/NavigationClient.mjs +1 -1
- package/dist/network/FetchClient.mjs +1 -1
- package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
- package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
- package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/protocol/Authorize.mjs +1 -1
- package/dist/redirect_bridge/index.mjs +1 -1
- package/dist/request/RequestHelpers.mjs +1 -1
- package/dist/response/ResponseHandler.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
- package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
- package/dist/utils/BrowserConstants.mjs +1 -1
- package/dist/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/utils/BrowserUtils.mjs +1 -1
- package/dist/utils/Helpers.mjs +1 -1
- package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/log-strings-mapping.json +2 -2
- package/lib/custom-auth-path/msal-custom-auth.cjs +74 -68
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/msal-custom-auth.js +74 -68
- package/lib/custom-auth-path/msal-custom-auth.js.map +1 -1
- package/lib/log-strings-mapping.json +2 -2
- package/lib/msal-browser.cjs +95 -70
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +95 -70
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +2 -2
- package/lib/redirect-bridge/msal-redirect-bridge.cjs +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.cjs.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.js +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.min.js +1 -1
- package/package.json +2 -2
- package/src/cache/BrowserCacheManager.ts +3 -4
- package/src/packageMetadata.ts +1 -1
- package/types/cache/BrowserCacheManager.d.ts.map +1 -1
- package/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/types/packageMetadata.d.ts +1 -1
package/lib/msal-browser.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.16.0 2026-06-30 */
|
|
2
2
|
'use strict';
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msal = {}));
|
|
7
7
|
})(this, (function (exports) { 'use strict';
|
|
8
8
|
|
|
9
|
-
/*! @azure/msal-common v16.
|
|
9
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
10
10
|
/*
|
|
11
11
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
12
12
|
* Licensed under the MIT License.
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
// Token renewal offset default in seconds
|
|
243
243
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
244
244
|
|
|
245
|
-
/*! @azure/msal-common v16.
|
|
245
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
246
246
|
/*
|
|
247
247
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
248
248
|
* Licensed under the MIT License.
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
const RESOURCE = "resource";
|
|
295
295
|
const CLI_DATA = "clidata";
|
|
296
296
|
|
|
297
|
-
/*! @azure/msal-common v16.
|
|
297
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
298
298
|
/*
|
|
299
299
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
300
300
|
* Licensed under the MIT License.
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
return new AuthError(code, correlationId, additionalMessage || getDefaultErrorMessage$1(code));
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
-
/*! @azure/msal-common v16.
|
|
326
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
327
327
|
|
|
328
328
|
/*
|
|
329
329
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -343,7 +343,7 @@
|
|
|
343
343
|
return new ClientConfigurationError(errorCode, correlationId);
|
|
344
344
|
}
|
|
345
345
|
|
|
346
|
-
/*! @azure/msal-common v16.
|
|
346
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
347
347
|
/*
|
|
348
348
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
349
349
|
* Licensed under the MIT License.
|
|
@@ -423,7 +423,7 @@
|
|
|
423
423
|
}
|
|
424
424
|
}
|
|
425
425
|
|
|
426
|
-
/*! @azure/msal-common v16.
|
|
426
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
427
427
|
|
|
428
428
|
/*
|
|
429
429
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -446,7 +446,7 @@
|
|
|
446
446
|
return new ClientAuthError(errorCode, correlationId, additionalMessage);
|
|
447
447
|
}
|
|
448
448
|
|
|
449
|
-
/*! @azure/msal-common v16.
|
|
449
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
450
450
|
/*
|
|
451
451
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
452
452
|
* Licensed under the MIT License.
|
|
@@ -504,7 +504,7 @@
|
|
|
504
504
|
urlParseError: urlParseError
|
|
505
505
|
});
|
|
506
506
|
|
|
507
|
-
/*! @azure/msal-common v16.
|
|
507
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
508
508
|
/*
|
|
509
509
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
510
510
|
* Licensed under the MIT License.
|
|
@@ -588,7 +588,7 @@
|
|
|
588
588
|
userCanceled: userCanceled
|
|
589
589
|
});
|
|
590
590
|
|
|
591
|
-
/*! @azure/msal-common v16.
|
|
591
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
592
592
|
|
|
593
593
|
/*
|
|
594
594
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -784,7 +784,7 @@
|
|
|
784
784
|
}
|
|
785
785
|
}
|
|
786
786
|
|
|
787
|
-
/*! @azure/msal-common v16.
|
|
787
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
788
788
|
|
|
789
789
|
/*
|
|
790
790
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1199,7 +1199,7 @@
|
|
|
1199
1199
|
}
|
|
1200
1200
|
}
|
|
1201
1201
|
|
|
1202
|
-
/*! @azure/msal-common v16.
|
|
1202
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1203
1203
|
|
|
1204
1204
|
/*
|
|
1205
1205
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1321,7 +1321,7 @@
|
|
|
1321
1321
|
}
|
|
1322
1322
|
}
|
|
1323
1323
|
|
|
1324
|
-
/*! @azure/msal-common v16.
|
|
1324
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1325
1325
|
|
|
1326
1326
|
/*
|
|
1327
1327
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1360,7 +1360,7 @@
|
|
|
1360
1360
|
},
|
|
1361
1361
|
};
|
|
1362
1362
|
|
|
1363
|
-
/*! @azure/msal-common v16.
|
|
1363
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1364
1364
|
/*
|
|
1365
1365
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1366
1366
|
* Licensed under the MIT License.
|
|
@@ -1649,12 +1649,12 @@
|
|
|
1649
1649
|
}
|
|
1650
1650
|
}
|
|
1651
1651
|
|
|
1652
|
-
/*! @azure/msal-common v16.
|
|
1652
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1653
1653
|
/* eslint-disable header/header */
|
|
1654
1654
|
const name$1 = "@azure/msal-common";
|
|
1655
|
-
const version$1 = "16.
|
|
1655
|
+
const version$1 = "16.11.0";
|
|
1656
1656
|
|
|
1657
|
-
/*! @azure/msal-common v16.
|
|
1657
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1658
1658
|
/*
|
|
1659
1659
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1660
1660
|
* Licensed under the MIT License.
|
|
@@ -1674,7 +1674,7 @@
|
|
|
1674
1674
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
1675
1675
|
};
|
|
1676
1676
|
|
|
1677
|
-
/*! @azure/msal-common v16.
|
|
1677
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1678
1678
|
|
|
1679
1679
|
/*
|
|
1680
1680
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1740,7 +1740,7 @@
|
|
|
1740
1740
|
return matches[2];
|
|
1741
1741
|
}
|
|
1742
1742
|
|
|
1743
|
-
/*! @azure/msal-common v16.
|
|
1743
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1744
1744
|
|
|
1745
1745
|
/*
|
|
1746
1746
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1828,7 +1828,7 @@
|
|
|
1828
1828
|
return updatedAccountInfo;
|
|
1829
1829
|
}
|
|
1830
1830
|
|
|
1831
|
-
/*! @azure/msal-common v16.
|
|
1831
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1832
1832
|
|
|
1833
1833
|
/*
|
|
1834
1834
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1986,7 +1986,7 @@
|
|
|
1986
1986
|
}
|
|
1987
1987
|
}
|
|
1988
1988
|
|
|
1989
|
-
/*! @azure/msal-common v16.
|
|
1989
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1990
1990
|
|
|
1991
1991
|
/*
|
|
1992
1992
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2152,7 +2152,7 @@
|
|
|
2152
2152
|
return null;
|
|
2153
2153
|
}
|
|
2154
2154
|
|
|
2155
|
-
/*! @azure/msal-common v16.
|
|
2155
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2156
2156
|
/*
|
|
2157
2157
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2158
2158
|
* Licensed under the MIT License.
|
|
@@ -2160,7 +2160,7 @@
|
|
|
2160
2160
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2161
2161
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2162
2162
|
|
|
2163
|
-
/*! @azure/msal-common v16.
|
|
2163
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2164
2164
|
|
|
2165
2165
|
/*
|
|
2166
2166
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2198,7 +2198,7 @@
|
|
|
2198
2198
|
}
|
|
2199
2199
|
}
|
|
2200
2200
|
|
|
2201
|
-
/*! @azure/msal-common v16.
|
|
2201
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2202
2202
|
|
|
2203
2203
|
/*
|
|
2204
2204
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2236,7 +2236,7 @@
|
|
|
2236
2236
|
};
|
|
2237
2237
|
}
|
|
2238
2238
|
|
|
2239
|
-
/*! @azure/msal-common v16.
|
|
2239
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2240
2240
|
/*
|
|
2241
2241
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2242
2242
|
* Licensed under the MIT License.
|
|
@@ -2251,7 +2251,7 @@
|
|
|
2251
2251
|
Ciam: 3,
|
|
2252
2252
|
};
|
|
2253
2253
|
|
|
2254
|
-
/*! @azure/msal-common v16.
|
|
2254
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2255
2255
|
/*
|
|
2256
2256
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2257
2257
|
* Licensed under the MIT License.
|
|
@@ -2273,7 +2273,7 @@
|
|
|
2273
2273
|
return null;
|
|
2274
2274
|
}
|
|
2275
2275
|
|
|
2276
|
-
/*! @azure/msal-common v16.
|
|
2276
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2277
2277
|
/*
|
|
2278
2278
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2279
2279
|
* Licensed under the MIT License.
|
|
@@ -2297,7 +2297,7 @@
|
|
|
2297
2297
|
EAR: "EAR",
|
|
2298
2298
|
};
|
|
2299
2299
|
|
|
2300
|
-
/*! @azure/msal-common v16.
|
|
2300
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2301
2301
|
/**
|
|
2302
2302
|
* Returns the AccountInfo interface for this account.
|
|
2303
2303
|
* @internal
|
|
@@ -2486,7 +2486,7 @@
|
|
|
2486
2486
|
entity.hasOwnProperty("authorityType"));
|
|
2487
2487
|
}
|
|
2488
2488
|
|
|
2489
|
-
/*! @azure/msal-common v16.
|
|
2489
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2490
2490
|
|
|
2491
2491
|
/*
|
|
2492
2492
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3634,7 +3634,7 @@
|
|
|
3634
3634
|
}
|
|
3635
3635
|
}
|
|
3636
3636
|
|
|
3637
|
-
/*! @azure/msal-common v16.
|
|
3637
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3638
3638
|
/*
|
|
3639
3639
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3640
3640
|
* Licensed under the MIT License.
|
|
@@ -3698,7 +3698,7 @@
|
|
|
3698
3698
|
"redirectBridgeMessageVersion",
|
|
3699
3699
|
]);
|
|
3700
3700
|
|
|
3701
|
-
/*! @azure/msal-common v16.
|
|
3701
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3702
3702
|
|
|
3703
3703
|
/*
|
|
3704
3704
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3745,6 +3745,9 @@
|
|
|
3745
3745
|
addFields() {
|
|
3746
3746
|
return;
|
|
3747
3747
|
}
|
|
3748
|
+
addGlobalFields() {
|
|
3749
|
+
return;
|
|
3750
|
+
}
|
|
3748
3751
|
incrementFields() {
|
|
3749
3752
|
return;
|
|
3750
3753
|
}
|
|
@@ -3753,7 +3756,7 @@
|
|
|
3753
3756
|
}
|
|
3754
3757
|
}
|
|
3755
3758
|
|
|
3756
|
-
/*! @azure/msal-common v16.
|
|
3759
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3757
3760
|
|
|
3758
3761
|
/*
|
|
3759
3762
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3849,7 +3852,7 @@
|
|
|
3849
3852
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3850
3853
|
}
|
|
3851
3854
|
|
|
3852
|
-
/*! @azure/msal-common v16.
|
|
3855
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3853
3856
|
/*
|
|
3854
3857
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3855
3858
|
* Licensed under the MIT License.
|
|
@@ -3876,7 +3879,7 @@
|
|
|
3876
3879
|
}
|
|
3877
3880
|
}
|
|
3878
3881
|
|
|
3879
|
-
/*! @azure/msal-common v16.
|
|
3882
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3880
3883
|
/*
|
|
3881
3884
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3882
3885
|
* Licensed under the MIT License.
|
|
@@ -3941,7 +3944,7 @@
|
|
|
3941
3944
|
return cachedAtSec > nowSeconds();
|
|
3942
3945
|
}
|
|
3943
3946
|
|
|
3944
|
-
/*! @azure/msal-common v16.
|
|
3947
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3945
3948
|
|
|
3946
3949
|
/*
|
|
3947
3950
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4208,7 +4211,7 @@
|
|
|
4208
4211
|
return metadata.expiresAt <= nowSeconds();
|
|
4209
4212
|
}
|
|
4210
4213
|
|
|
4211
|
-
/*! @azure/msal-common v16.
|
|
4214
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4212
4215
|
/*
|
|
4213
4216
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4214
4217
|
* Licensed under the MIT License.
|
|
@@ -4279,7 +4282,7 @@
|
|
|
4279
4282
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
4280
4283
|
const SetUserData = "setUserData";
|
|
4281
4284
|
|
|
4282
|
-
/*! @azure/msal-common v16.
|
|
4285
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4283
4286
|
/*
|
|
4284
4287
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4285
4288
|
* Licensed under the MIT License.
|
|
@@ -4372,7 +4375,7 @@
|
|
|
4372
4375
|
};
|
|
4373
4376
|
};
|
|
4374
4377
|
|
|
4375
|
-
/*! @azure/msal-common v16.
|
|
4378
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4376
4379
|
|
|
4377
4380
|
/*
|
|
4378
4381
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4452,7 +4455,7 @@
|
|
|
4452
4455
|
}
|
|
4453
4456
|
}
|
|
4454
4457
|
|
|
4455
|
-
/*! @azure/msal-common v16.
|
|
4458
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4456
4459
|
/*
|
|
4457
4460
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4458
4461
|
* Licensed under the MIT License.
|
|
@@ -4516,7 +4519,7 @@
|
|
|
4516
4519
|
uiNotAllowed: uiNotAllowed
|
|
4517
4520
|
});
|
|
4518
4521
|
|
|
4519
|
-
/*! @azure/msal-common v16.
|
|
4522
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4520
4523
|
|
|
4521
4524
|
/*
|
|
4522
4525
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4583,7 +4586,7 @@
|
|
|
4583
4586
|
return new InteractionRequiredAuthError(errorCode, correlationId, errorMessage);
|
|
4584
4587
|
}
|
|
4585
4588
|
|
|
4586
|
-
/*! @azure/msal-common v16.
|
|
4589
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4587
4590
|
|
|
4588
4591
|
/*
|
|
4589
4592
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4602,7 +4605,7 @@
|
|
|
4602
4605
|
}
|
|
4603
4606
|
}
|
|
4604
4607
|
|
|
4605
|
-
/*! @azure/msal-common v16.
|
|
4608
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4606
4609
|
|
|
4607
4610
|
/*
|
|
4608
4611
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4673,7 +4676,7 @@
|
|
|
4673
4676
|
}
|
|
4674
4677
|
}
|
|
4675
4678
|
|
|
4676
|
-
/*! @azure/msal-common v16.
|
|
4679
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4677
4680
|
|
|
4678
4681
|
/*
|
|
4679
4682
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5024,7 +5027,7 @@
|
|
|
5024
5027
|
return baseAccount;
|
|
5025
5028
|
}
|
|
5026
5029
|
|
|
5027
|
-
/*! @azure/msal-common v16.
|
|
5030
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5028
5031
|
/*
|
|
5029
5032
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5030
5033
|
* Licensed under the MIT License.
|
|
@@ -5034,7 +5037,7 @@
|
|
|
5034
5037
|
UPN: "UPN",
|
|
5035
5038
|
};
|
|
5036
5039
|
|
|
5037
|
-
/*! @azure/msal-common v16.
|
|
5040
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5038
5041
|
/*
|
|
5039
5042
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5040
5043
|
* Licensed under the MIT License.
|
|
@@ -5053,7 +5056,7 @@
|
|
|
5053
5056
|
}
|
|
5054
5057
|
}
|
|
5055
5058
|
|
|
5056
|
-
/*! @azure/msal-common v16.
|
|
5059
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5057
5060
|
/*
|
|
5058
5061
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5059
5062
|
* Licensed under the MIT License.
|
|
@@ -5071,10 +5074,11 @@
|
|
|
5071
5074
|
shrClaims: request.shrClaims,
|
|
5072
5075
|
sshKid: request.sshKid,
|
|
5073
5076
|
embeddedClientId: request.embeddedClientId || request.extraParameters?.clientId,
|
|
5077
|
+
resource: request.resource,
|
|
5074
5078
|
};
|
|
5075
5079
|
}
|
|
5076
5080
|
|
|
5077
|
-
/*! @azure/msal-common v16.
|
|
5081
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5078
5082
|
|
|
5079
5083
|
/*
|
|
5080
5084
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5160,7 +5164,7 @@
|
|
|
5160
5164
|
}
|
|
5161
5165
|
}
|
|
5162
5166
|
|
|
5163
|
-
/*! @azure/msal-common v16.
|
|
5167
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5164
5168
|
|
|
5165
5169
|
/*
|
|
5166
5170
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5191,7 +5195,7 @@
|
|
|
5191
5195
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
5192
5196
|
}
|
|
5193
5197
|
|
|
5194
|
-
/*! @azure/msal-common v16.
|
|
5198
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5195
5199
|
|
|
5196
5200
|
/*
|
|
5197
5201
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5307,7 +5311,7 @@
|
|
|
5307
5311
|
return response;
|
|
5308
5312
|
}
|
|
5309
5313
|
|
|
5310
|
-
/*! @azure/msal-common v16.
|
|
5314
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5311
5315
|
/*
|
|
5312
5316
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5313
5317
|
* Licensed under the MIT License.
|
|
@@ -5319,7 +5323,7 @@
|
|
|
5319
5323
|
response.hasOwnProperty("jwks_uri"));
|
|
5320
5324
|
}
|
|
5321
5325
|
|
|
5322
|
-
/*! @azure/msal-common v16.
|
|
5326
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5323
5327
|
/*
|
|
5324
5328
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5325
5329
|
* Licensed under the MIT License.
|
|
@@ -5329,7 +5333,7 @@
|
|
|
5329
5333
|
response.hasOwnProperty("metadata"));
|
|
5330
5334
|
}
|
|
5331
5335
|
|
|
5332
|
-
/*! @azure/msal-common v16.
|
|
5336
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5333
5337
|
/*
|
|
5334
5338
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5335
5339
|
* Licensed under the MIT License.
|
|
@@ -5339,7 +5343,7 @@
|
|
|
5339
5343
|
response.hasOwnProperty("error_description"));
|
|
5340
5344
|
}
|
|
5341
5345
|
|
|
5342
|
-
/*! @azure/msal-common v16.
|
|
5346
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5343
5347
|
|
|
5344
5348
|
/*
|
|
5345
5349
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5450,7 +5454,7 @@
|
|
|
5450
5454
|
},
|
|
5451
5455
|
};
|
|
5452
5456
|
|
|
5453
|
-
/*! @azure/msal-common v16.
|
|
5457
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5454
5458
|
|
|
5455
5459
|
/*
|
|
5456
5460
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6420,7 +6424,7 @@
|
|
|
6420
6424
|
};
|
|
6421
6425
|
}
|
|
6422
6426
|
|
|
6423
|
-
/*! @azure/msal-common v16.
|
|
6427
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6424
6428
|
|
|
6425
6429
|
/*
|
|
6426
6430
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6454,7 +6458,7 @@
|
|
|
6454
6458
|
}
|
|
6455
6459
|
}
|
|
6456
6460
|
|
|
6457
|
-
/*! @azure/msal-common v16.
|
|
6461
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6458
6462
|
|
|
6459
6463
|
/*
|
|
6460
6464
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6711,7 +6715,7 @@
|
|
|
6711
6715
|
}
|
|
6712
6716
|
}
|
|
6713
6717
|
|
|
6714
|
-
/*! @azure/msal-common v16.
|
|
6718
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6715
6719
|
|
|
6716
6720
|
/*
|
|
6717
6721
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6932,7 +6936,7 @@
|
|
|
6932
6936
|
}
|
|
6933
6937
|
}
|
|
6934
6938
|
|
|
6935
|
-
/*! @azure/msal-common v16.
|
|
6939
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6936
6940
|
|
|
6937
6941
|
/*
|
|
6938
6942
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7040,7 +7044,7 @@
|
|
|
7040
7044
|
}
|
|
7041
7045
|
}
|
|
7042
7046
|
|
|
7043
|
-
/*! @azure/msal-common v16.
|
|
7047
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7044
7048
|
|
|
7045
7049
|
/*
|
|
7046
7050
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7056,7 +7060,7 @@
|
|
|
7056
7060
|
},
|
|
7057
7061
|
};
|
|
7058
7062
|
|
|
7059
|
-
/*! @azure/msal-common v16.
|
|
7063
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7060
7064
|
|
|
7061
7065
|
/*
|
|
7062
7066
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7283,7 +7287,7 @@
|
|
|
7283
7287
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
7284
7288
|
}
|
|
7285
7289
|
|
|
7286
|
-
/*! @azure/msal-common v16.
|
|
7290
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7287
7291
|
|
|
7288
7292
|
/*
|
|
7289
7293
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7316,7 +7320,7 @@
|
|
|
7316
7320
|
return Object.prototype.hasOwnProperty.call(params, "resource");
|
|
7317
7321
|
}
|
|
7318
7322
|
|
|
7319
|
-
/*! @azure/msal-common v16.
|
|
7323
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7320
7324
|
|
|
7321
7325
|
/*
|
|
7322
7326
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7374,7 +7378,7 @@
|
|
|
7374
7378
|
}
|
|
7375
7379
|
}
|
|
7376
7380
|
|
|
7377
|
-
/*! @azure/msal-common v16.
|
|
7381
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7378
7382
|
/*
|
|
7379
7383
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7380
7384
|
* Licensed under the MIT License.
|
|
@@ -7391,7 +7395,7 @@
|
|
|
7391
7395
|
unexpectedError: unexpectedError
|
|
7392
7396
|
});
|
|
7393
7397
|
|
|
7394
|
-
/*! @azure/msal-common v16.
|
|
7398
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7395
7399
|
|
|
7396
7400
|
/*
|
|
7397
7401
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7684,7 +7688,7 @@
|
|
|
7684
7688
|
clearNativeBrokerErrorCode() { }
|
|
7685
7689
|
}
|
|
7686
7690
|
|
|
7687
|
-
/*! @azure/msal-common v16.
|
|
7691
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7688
7692
|
|
|
7689
7693
|
/*
|
|
7690
7694
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7705,7 +7709,7 @@
|
|
|
7705
7709
|
return new JoseHeaderError(code, correlationId);
|
|
7706
7710
|
}
|
|
7707
7711
|
|
|
7708
|
-
/*! @azure/msal-common v16.
|
|
7712
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7709
7713
|
/*
|
|
7710
7714
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7711
7715
|
* Licensed under the MIT License.
|
|
@@ -7713,7 +7717,7 @@
|
|
|
7713
7717
|
const missingKidError = "missing_kid_error";
|
|
7714
7718
|
const missingAlgError = "missing_alg_error";
|
|
7715
7719
|
|
|
7716
|
-
/*! @azure/msal-common v16.
|
|
7720
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7717
7721
|
|
|
7718
7722
|
/*
|
|
7719
7723
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7753,7 +7757,7 @@
|
|
|
7753
7757
|
}
|
|
7754
7758
|
}
|
|
7755
7759
|
|
|
7756
|
-
/*! @azure/msal-common v16.
|
|
7760
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7757
7761
|
|
|
7758
7762
|
/*
|
|
7759
7763
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7966,6 +7970,7 @@
|
|
|
7966
7970
|
this.authority = authority;
|
|
7967
7971
|
this.libraryName = libraryName;
|
|
7968
7972
|
this.libraryVersion = libraryVersion;
|
|
7973
|
+
this.globalFields = {};
|
|
7969
7974
|
this.applicationTelemetry = applicationTelemetry;
|
|
7970
7975
|
this.clientId = clientId;
|
|
7971
7976
|
this.logger = logger;
|
|
@@ -8089,6 +8094,12 @@
|
|
|
8089
8094
|
incompleteSubsCount,
|
|
8090
8095
|
context,
|
|
8091
8096
|
logs: formattedLogs,
|
|
8097
|
+
/*
|
|
8098
|
+
* Global fields are spread last so they are always present on the
|
|
8099
|
+
* emitted event and never overridden, even when registered after
|
|
8100
|
+
* the measurement started.
|
|
8101
|
+
*/
|
|
8102
|
+
...this.globalFields,
|
|
8092
8103
|
};
|
|
8093
8104
|
if (account) {
|
|
8094
8105
|
finalEvent.accountType = getAccountType(account);
|
|
@@ -8137,6 +8148,18 @@
|
|
|
8137
8148
|
this.logger.trace("0thl6s", correlationId);
|
|
8138
8149
|
}
|
|
8139
8150
|
}
|
|
8151
|
+
/**
|
|
8152
|
+
* Saves fields to be emitted on every event measured by this client.
|
|
8153
|
+
* Unlike addFields, these are not scoped to a single correlationId and persist for the
|
|
8154
|
+
* lifetime of the client (e.g. previousLibraryVersion for upgrade/downgrade telemetry).
|
|
8155
|
+
* @param fields
|
|
8156
|
+
*/
|
|
8157
|
+
addGlobalFields(fields) {
|
|
8158
|
+
this.globalFields = {
|
|
8159
|
+
...this.globalFields,
|
|
8160
|
+
...fields,
|
|
8161
|
+
};
|
|
8162
|
+
}
|
|
8140
8163
|
/**
|
|
8141
8164
|
* Increment counters to be emitted when the measurements are flushed
|
|
8142
8165
|
* @param fields {string[]}
|
|
@@ -10706,7 +10729,7 @@
|
|
|
10706
10729
|
|
|
10707
10730
|
/* eslint-disable header/header */
|
|
10708
10731
|
const name = "@azure/msal-browser";
|
|
10709
|
-
const version = "5.
|
|
10732
|
+
const version = "5.16.0";
|
|
10710
10733
|
|
|
10711
10734
|
/*
|
|
10712
10735
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -11181,7 +11204,9 @@
|
|
|
11181
11204
|
const previousVersion = this.browserStorage.getItem(VERSION_CACHE_KEY);
|
|
11182
11205
|
if (previousVersion) {
|
|
11183
11206
|
this.logger.info(`1wuc87 ${previousVersion}`, correlationId);
|
|
11184
|
-
this.performanceClient.
|
|
11207
|
+
this.performanceClient.addGlobalFields({
|
|
11208
|
+
previousLibraryVersion: previousVersion,
|
|
11209
|
+
});
|
|
11185
11210
|
}
|
|
11186
11211
|
if (previousVersion !== version) {
|
|
11187
11212
|
this.setItem(VERSION_CACHE_KEY, version, correlationId);
|