@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
|
@@ -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.msalCustomAuth = {}));
|
|
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.
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
// Token renewal offset default in seconds
|
|
238
238
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
239
239
|
|
|
240
|
-
/*! @azure/msal-common v16.
|
|
240
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
241
241
|
/*
|
|
242
242
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
243
243
|
* Licensed under the MIT License.
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
const RESOURCE = "resource";
|
|
290
290
|
const CLI_DATA = "clidata";
|
|
291
291
|
|
|
292
|
-
/*! @azure/msal-common v16.
|
|
292
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
293
293
|
/*
|
|
294
294
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
295
295
|
* Licensed under the MIT License.
|
|
@@ -318,7 +318,7 @@
|
|
|
318
318
|
return new AuthError(code, correlationId, additionalMessage || getDefaultErrorMessage$1(code));
|
|
319
319
|
}
|
|
320
320
|
|
|
321
|
-
/*! @azure/msal-common v16.
|
|
321
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
322
322
|
|
|
323
323
|
/*
|
|
324
324
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
return new ClientConfigurationError(errorCode, correlationId);
|
|
339
339
|
}
|
|
340
340
|
|
|
341
|
-
/*! @azure/msal-common v16.
|
|
341
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
342
342
|
/*
|
|
343
343
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
344
344
|
* Licensed under the MIT License.
|
|
@@ -418,7 +418,7 @@
|
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
-
/*! @azure/msal-common v16.
|
|
421
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
422
422
|
|
|
423
423
|
/*
|
|
424
424
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
return new ClientAuthError(errorCode, correlationId, additionalMessage);
|
|
442
442
|
}
|
|
443
443
|
|
|
444
|
-
/*! @azure/msal-common v16.
|
|
444
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
445
445
|
/*
|
|
446
446
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
447
447
|
* Licensed under the MIT License.
|
|
@@ -467,7 +467,7 @@
|
|
|
467
467
|
const invalidPlatformBrokerConfiguration = "invalid_platform_broker_configuration";
|
|
468
468
|
const issuerValidationFailed = "issuer_validation_failed";
|
|
469
469
|
|
|
470
|
-
/*! @azure/msal-common v16.
|
|
470
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
471
471
|
/*
|
|
472
472
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
473
473
|
* Licensed under the MIT License.
|
|
@@ -504,7 +504,7 @@
|
|
|
504
504
|
const resourceParameterRequired = "resource_parameter_required";
|
|
505
505
|
const misplacedResourceParam = "misplaced_resource_parameter";
|
|
506
506
|
|
|
507
|
-
/*! @azure/msal-common v16.
|
|
507
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
508
508
|
|
|
509
509
|
/*
|
|
510
510
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -700,7 +700,7 @@
|
|
|
700
700
|
}
|
|
701
701
|
}
|
|
702
702
|
|
|
703
|
-
/*! @azure/msal-common v16.
|
|
703
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
704
704
|
|
|
705
705
|
/*
|
|
706
706
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1115,7 +1115,7 @@
|
|
|
1115
1115
|
}
|
|
1116
1116
|
}
|
|
1117
1117
|
|
|
1118
|
-
/*! @azure/msal-common v16.
|
|
1118
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1119
1119
|
|
|
1120
1120
|
/*
|
|
1121
1121
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1237,7 +1237,7 @@
|
|
|
1237
1237
|
}
|
|
1238
1238
|
}
|
|
1239
1239
|
|
|
1240
|
-
/*! @azure/msal-common v16.
|
|
1240
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1241
1241
|
|
|
1242
1242
|
/*
|
|
1243
1243
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1276,7 +1276,7 @@
|
|
|
1276
1276
|
},
|
|
1277
1277
|
};
|
|
1278
1278
|
|
|
1279
|
-
/*! @azure/msal-common v16.
|
|
1279
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1280
1280
|
/*
|
|
1281
1281
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1282
1282
|
* Licensed under the MIT License.
|
|
@@ -1551,12 +1551,12 @@
|
|
|
1551
1551
|
}
|
|
1552
1552
|
}
|
|
1553
1553
|
|
|
1554
|
-
/*! @azure/msal-common v16.
|
|
1554
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1555
1555
|
/* eslint-disable header/header */
|
|
1556
1556
|
const name$1 = "@azure/msal-common";
|
|
1557
|
-
const version$1 = "16.
|
|
1557
|
+
const version$1 = "16.11.0";
|
|
1558
1558
|
|
|
1559
|
-
/*! @azure/msal-common v16.
|
|
1559
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1560
1560
|
/*
|
|
1561
1561
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1562
1562
|
* Licensed under the MIT License.
|
|
@@ -1565,7 +1565,7 @@
|
|
|
1565
1565
|
// AzureCloudInstance is not specified.
|
|
1566
1566
|
None: "none"};
|
|
1567
1567
|
|
|
1568
|
-
/*! @azure/msal-common v16.
|
|
1568
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1569
1569
|
|
|
1570
1570
|
/*
|
|
1571
1571
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1631,7 +1631,7 @@
|
|
|
1631
1631
|
return matches[2];
|
|
1632
1632
|
}
|
|
1633
1633
|
|
|
1634
|
-
/*! @azure/msal-common v16.
|
|
1634
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1635
1635
|
|
|
1636
1636
|
/*
|
|
1637
1637
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1719,7 +1719,7 @@
|
|
|
1719
1719
|
return updatedAccountInfo;
|
|
1720
1720
|
}
|
|
1721
1721
|
|
|
1722
|
-
/*! @azure/msal-common v16.
|
|
1722
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1723
1723
|
|
|
1724
1724
|
/*
|
|
1725
1725
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1877,7 +1877,7 @@
|
|
|
1877
1877
|
}
|
|
1878
1878
|
}
|
|
1879
1879
|
|
|
1880
|
-
/*! @azure/msal-common v16.
|
|
1880
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1881
1881
|
|
|
1882
1882
|
/*
|
|
1883
1883
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2043,7 +2043,7 @@
|
|
|
2043
2043
|
return null;
|
|
2044
2044
|
}
|
|
2045
2045
|
|
|
2046
|
-
/*! @azure/msal-common v16.
|
|
2046
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2047
2047
|
/*
|
|
2048
2048
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2049
2049
|
* Licensed under the MIT License.
|
|
@@ -2051,7 +2051,7 @@
|
|
|
2051
2051
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2052
2052
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2053
2053
|
|
|
2054
|
-
/*! @azure/msal-common v16.
|
|
2054
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2055
2055
|
|
|
2056
2056
|
/*
|
|
2057
2057
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2089,7 +2089,7 @@
|
|
|
2089
2089
|
}
|
|
2090
2090
|
}
|
|
2091
2091
|
|
|
2092
|
-
/*! @azure/msal-common v16.
|
|
2092
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2093
2093
|
|
|
2094
2094
|
/*
|
|
2095
2095
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2127,7 +2127,7 @@
|
|
|
2127
2127
|
};
|
|
2128
2128
|
}
|
|
2129
2129
|
|
|
2130
|
-
/*! @azure/msal-common v16.
|
|
2130
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2131
2131
|
/*
|
|
2132
2132
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2133
2133
|
* Licensed under the MIT License.
|
|
@@ -2142,7 +2142,7 @@
|
|
|
2142
2142
|
Ciam: 3,
|
|
2143
2143
|
};
|
|
2144
2144
|
|
|
2145
|
-
/*! @azure/msal-common v16.
|
|
2145
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2146
2146
|
/*
|
|
2147
2147
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2148
2148
|
* Licensed under the MIT License.
|
|
@@ -2164,7 +2164,7 @@
|
|
|
2164
2164
|
return null;
|
|
2165
2165
|
}
|
|
2166
2166
|
|
|
2167
|
-
/*! @azure/msal-common v16.
|
|
2167
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2168
2168
|
/*
|
|
2169
2169
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2170
2170
|
* Licensed under the MIT License.
|
|
@@ -2188,7 +2188,7 @@
|
|
|
2188
2188
|
EAR: "EAR",
|
|
2189
2189
|
};
|
|
2190
2190
|
|
|
2191
|
-
/*! @azure/msal-common v16.
|
|
2191
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2192
2192
|
/**
|
|
2193
2193
|
* Returns the AccountInfo interface for this account.
|
|
2194
2194
|
* @internal
|
|
@@ -2377,7 +2377,7 @@
|
|
|
2377
2377
|
entity.hasOwnProperty("authorityType"));
|
|
2378
2378
|
}
|
|
2379
2379
|
|
|
2380
|
-
/*! @azure/msal-common v16.
|
|
2380
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2381
2381
|
|
|
2382
2382
|
/*
|
|
2383
2383
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3524,7 +3524,7 @@
|
|
|
3524
3524
|
}
|
|
3525
3525
|
}
|
|
3526
3526
|
|
|
3527
|
-
/*! @azure/msal-common v16.
|
|
3527
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3528
3528
|
/*
|
|
3529
3529
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3530
3530
|
* Licensed under the MIT License.
|
|
@@ -3538,7 +3538,7 @@
|
|
|
3538
3538
|
const PerformanceEventStatus = {
|
|
3539
3539
|
InProgress: 1};
|
|
3540
3540
|
|
|
3541
|
-
/*! @azure/msal-common v16.
|
|
3541
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3542
3542
|
|
|
3543
3543
|
/*
|
|
3544
3544
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3585,6 +3585,9 @@
|
|
|
3585
3585
|
addFields() {
|
|
3586
3586
|
return;
|
|
3587
3587
|
}
|
|
3588
|
+
addGlobalFields() {
|
|
3589
|
+
return;
|
|
3590
|
+
}
|
|
3588
3591
|
incrementFields() {
|
|
3589
3592
|
return;
|
|
3590
3593
|
}
|
|
@@ -3593,7 +3596,7 @@
|
|
|
3593
3596
|
}
|
|
3594
3597
|
}
|
|
3595
3598
|
|
|
3596
|
-
/*! @azure/msal-common v16.
|
|
3599
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3597
3600
|
|
|
3598
3601
|
/*
|
|
3599
3602
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3689,7 +3692,7 @@
|
|
|
3689
3692
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3690
3693
|
}
|
|
3691
3694
|
|
|
3692
|
-
/*! @azure/msal-common v16.
|
|
3695
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3693
3696
|
/*
|
|
3694
3697
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3695
3698
|
* Licensed under the MIT License.
|
|
@@ -3716,7 +3719,7 @@
|
|
|
3716
3719
|
}
|
|
3717
3720
|
}
|
|
3718
3721
|
|
|
3719
|
-
/*! @azure/msal-common v16.
|
|
3722
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3720
3723
|
/*
|
|
3721
3724
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3722
3725
|
* Licensed under the MIT License.
|
|
@@ -3781,7 +3784,7 @@
|
|
|
3781
3784
|
return cachedAtSec > nowSeconds();
|
|
3782
3785
|
}
|
|
3783
3786
|
|
|
3784
|
-
/*! @azure/msal-common v16.
|
|
3787
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3785
3788
|
|
|
3786
3789
|
/*
|
|
3787
3790
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4048,7 +4051,7 @@
|
|
|
4048
4051
|
return metadata.expiresAt <= nowSeconds();
|
|
4049
4052
|
}
|
|
4050
4053
|
|
|
4051
|
-
/*! @azure/msal-common v16.
|
|
4054
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4052
4055
|
/*
|
|
4053
4056
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4054
4057
|
* Licensed under the MIT License.
|
|
@@ -4119,7 +4122,7 @@
|
|
|
4119
4122
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
4120
4123
|
const SetUserData = "setUserData";
|
|
4121
4124
|
|
|
4122
|
-
/*! @azure/msal-common v16.
|
|
4125
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4123
4126
|
/*
|
|
4124
4127
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4125
4128
|
* Licensed under the MIT License.
|
|
@@ -4212,7 +4215,7 @@
|
|
|
4212
4215
|
};
|
|
4213
4216
|
};
|
|
4214
4217
|
|
|
4215
|
-
/*! @azure/msal-common v16.
|
|
4218
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4216
4219
|
|
|
4217
4220
|
/*
|
|
4218
4221
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4292,7 +4295,7 @@
|
|
|
4292
4295
|
}
|
|
4293
4296
|
}
|
|
4294
4297
|
|
|
4295
|
-
/*! @azure/msal-common v16.
|
|
4298
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4296
4299
|
/*
|
|
4297
4300
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4298
4301
|
* Licensed under the MIT License.
|
|
@@ -4343,7 +4346,7 @@
|
|
|
4343
4346
|
*/
|
|
4344
4347
|
const interruptedUser = "interrupted_user";
|
|
4345
4348
|
|
|
4346
|
-
/*! @azure/msal-common v16.
|
|
4349
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4347
4350
|
|
|
4348
4351
|
/*
|
|
4349
4352
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4410,7 +4413,7 @@
|
|
|
4410
4413
|
return new InteractionRequiredAuthError(errorCode, correlationId, errorMessage);
|
|
4411
4414
|
}
|
|
4412
4415
|
|
|
4413
|
-
/*! @azure/msal-common v16.
|
|
4416
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4414
4417
|
|
|
4415
4418
|
/*
|
|
4416
4419
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4429,7 +4432,7 @@
|
|
|
4429
4432
|
}
|
|
4430
4433
|
}
|
|
4431
4434
|
|
|
4432
|
-
/*! @azure/msal-common v16.
|
|
4435
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4433
4436
|
|
|
4434
4437
|
/*
|
|
4435
4438
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4500,7 +4503,7 @@
|
|
|
4500
4503
|
}
|
|
4501
4504
|
}
|
|
4502
4505
|
|
|
4503
|
-
/*! @azure/msal-common v16.
|
|
4506
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4504
4507
|
|
|
4505
4508
|
/*
|
|
4506
4509
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4851,7 +4854,7 @@
|
|
|
4851
4854
|
return baseAccount;
|
|
4852
4855
|
}
|
|
4853
4856
|
|
|
4854
|
-
/*! @azure/msal-common v16.
|
|
4857
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4855
4858
|
/*
|
|
4856
4859
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4857
4860
|
* Licensed under the MIT License.
|
|
@@ -4861,7 +4864,7 @@
|
|
|
4861
4864
|
UPN: "UPN",
|
|
4862
4865
|
};
|
|
4863
4866
|
|
|
4864
|
-
/*! @azure/msal-common v16.
|
|
4867
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4865
4868
|
/*
|
|
4866
4869
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4867
4870
|
* Licensed under the MIT License.
|
|
@@ -4880,7 +4883,7 @@
|
|
|
4880
4883
|
}
|
|
4881
4884
|
}
|
|
4882
4885
|
|
|
4883
|
-
/*! @azure/msal-common v16.
|
|
4886
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4884
4887
|
/*
|
|
4885
4888
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4886
4889
|
* Licensed under the MIT License.
|
|
@@ -4898,10 +4901,11 @@
|
|
|
4898
4901
|
shrClaims: request.shrClaims,
|
|
4899
4902
|
sshKid: request.sshKid,
|
|
4900
4903
|
embeddedClientId: request.embeddedClientId || request.extraParameters?.clientId,
|
|
4904
|
+
resource: request.resource,
|
|
4901
4905
|
};
|
|
4902
4906
|
}
|
|
4903
4907
|
|
|
4904
|
-
/*! @azure/msal-common v16.
|
|
4908
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4905
4909
|
|
|
4906
4910
|
/*
|
|
4907
4911
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4987,7 +4991,7 @@
|
|
|
4987
4991
|
}
|
|
4988
4992
|
}
|
|
4989
4993
|
|
|
4990
|
-
/*! @azure/msal-common v16.
|
|
4994
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4991
4995
|
|
|
4992
4996
|
/*
|
|
4993
4997
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5018,7 +5022,7 @@
|
|
|
5018
5022
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
5019
5023
|
}
|
|
5020
5024
|
|
|
5021
|
-
/*! @azure/msal-common v16.
|
|
5025
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5022
5026
|
|
|
5023
5027
|
/*
|
|
5024
5028
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5134,7 +5138,7 @@
|
|
|
5134
5138
|
return response;
|
|
5135
5139
|
}
|
|
5136
5140
|
|
|
5137
|
-
/*! @azure/msal-common v16.
|
|
5141
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5138
5142
|
/*
|
|
5139
5143
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5140
5144
|
* Licensed under the MIT License.
|
|
@@ -5146,7 +5150,7 @@
|
|
|
5146
5150
|
response.hasOwnProperty("jwks_uri"));
|
|
5147
5151
|
}
|
|
5148
5152
|
|
|
5149
|
-
/*! @azure/msal-common v16.
|
|
5153
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5150
5154
|
/*
|
|
5151
5155
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5152
5156
|
* Licensed under the MIT License.
|
|
@@ -5156,7 +5160,7 @@
|
|
|
5156
5160
|
response.hasOwnProperty("metadata"));
|
|
5157
5161
|
}
|
|
5158
5162
|
|
|
5159
|
-
/*! @azure/msal-common v16.
|
|
5163
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5160
5164
|
/*
|
|
5161
5165
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5162
5166
|
* Licensed under the MIT License.
|
|
@@ -5166,7 +5170,7 @@
|
|
|
5166
5170
|
response.hasOwnProperty("error_description"));
|
|
5167
5171
|
}
|
|
5168
5172
|
|
|
5169
|
-
/*! @azure/msal-common v16.
|
|
5173
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5170
5174
|
|
|
5171
5175
|
/*
|
|
5172
5176
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5277,7 +5281,7 @@
|
|
|
5277
5281
|
},
|
|
5278
5282
|
};
|
|
5279
5283
|
|
|
5280
|
-
/*! @azure/msal-common v16.
|
|
5284
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5281
5285
|
|
|
5282
5286
|
/*
|
|
5283
5287
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6247,7 +6251,7 @@
|
|
|
6247
6251
|
};
|
|
6248
6252
|
}
|
|
6249
6253
|
|
|
6250
|
-
/*! @azure/msal-common v16.
|
|
6254
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6251
6255
|
|
|
6252
6256
|
/*
|
|
6253
6257
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6281,7 +6285,7 @@
|
|
|
6281
6285
|
}
|
|
6282
6286
|
}
|
|
6283
6287
|
|
|
6284
|
-
/*! @azure/msal-common v16.
|
|
6288
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6285
6289
|
|
|
6286
6290
|
/*
|
|
6287
6291
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6538,7 +6542,7 @@
|
|
|
6538
6542
|
}
|
|
6539
6543
|
}
|
|
6540
6544
|
|
|
6541
|
-
/*! @azure/msal-common v16.
|
|
6545
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6542
6546
|
|
|
6543
6547
|
/*
|
|
6544
6548
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6759,7 +6763,7 @@
|
|
|
6759
6763
|
}
|
|
6760
6764
|
}
|
|
6761
6765
|
|
|
6762
|
-
/*! @azure/msal-common v16.
|
|
6766
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6763
6767
|
|
|
6764
6768
|
/*
|
|
6765
6769
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6867,7 +6871,7 @@
|
|
|
6867
6871
|
}
|
|
6868
6872
|
}
|
|
6869
6873
|
|
|
6870
|
-
/*! @azure/msal-common v16.
|
|
6874
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6871
6875
|
|
|
6872
6876
|
/*
|
|
6873
6877
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6883,7 +6887,7 @@
|
|
|
6883
6887
|
},
|
|
6884
6888
|
};
|
|
6885
6889
|
|
|
6886
|
-
/*! @azure/msal-common v16.
|
|
6890
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6887
6891
|
|
|
6888
6892
|
/*
|
|
6889
6893
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7110,7 +7114,7 @@
|
|
|
7110
7114
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
7111
7115
|
}
|
|
7112
7116
|
|
|
7113
|
-
/*! @azure/msal-common v16.
|
|
7117
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7114
7118
|
|
|
7115
7119
|
/*
|
|
7116
7120
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7143,7 +7147,7 @@
|
|
|
7143
7147
|
return Object.prototype.hasOwnProperty.call(params, "resource");
|
|
7144
7148
|
}
|
|
7145
7149
|
|
|
7146
|
-
/*! @azure/msal-common v16.
|
|
7150
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7147
7151
|
/*
|
|
7148
7152
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7149
7153
|
* Licensed under the MIT License.
|
|
@@ -7153,7 +7157,7 @@
|
|
|
7153
7157
|
*/
|
|
7154
7158
|
const unexpectedError = "unexpected_error";
|
|
7155
7159
|
|
|
7156
|
-
/*! @azure/msal-common v16.
|
|
7160
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7157
7161
|
|
|
7158
7162
|
/*
|
|
7159
7163
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7446,7 +7450,7 @@
|
|
|
7446
7450
|
clearNativeBrokerErrorCode() { }
|
|
7447
7451
|
}
|
|
7448
7452
|
|
|
7449
|
-
/*! @azure/msal-common v16.
|
|
7453
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7450
7454
|
|
|
7451
7455
|
/*
|
|
7452
7456
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7467,7 +7471,7 @@
|
|
|
7467
7471
|
return new JoseHeaderError(code, correlationId);
|
|
7468
7472
|
}
|
|
7469
7473
|
|
|
7470
|
-
/*! @azure/msal-common v16.
|
|
7474
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7471
7475
|
/*
|
|
7472
7476
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7473
7477
|
* Licensed under the MIT License.
|
|
@@ -7475,7 +7479,7 @@
|
|
|
7475
7479
|
const missingKidError = "missing_kid_error";
|
|
7476
7480
|
const missingAlgError = "missing_alg_error";
|
|
7477
7481
|
|
|
7478
|
-
/*! @azure/msal-common v16.
|
|
7482
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7479
7483
|
|
|
7480
7484
|
/*
|
|
7481
7485
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7910,7 +7914,7 @@
|
|
|
7910
7914
|
|
|
7911
7915
|
/* eslint-disable header/header */
|
|
7912
7916
|
const name = "@azure/msal-browser";
|
|
7913
|
-
const version = "5.
|
|
7917
|
+
const version = "5.16.0";
|
|
7914
7918
|
|
|
7915
7919
|
/*
|
|
7916
7920
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -15604,7 +15608,9 @@
|
|
|
15604
15608
|
const previousVersion = this.browserStorage.getItem(VERSION_CACHE_KEY);
|
|
15605
15609
|
if (previousVersion) {
|
|
15606
15610
|
this.logger.info(`MSAL.js was last initialized by version: '${previousVersion}'`, correlationId);
|
|
15607
|
-
this.performanceClient.
|
|
15611
|
+
this.performanceClient.addGlobalFields({
|
|
15612
|
+
previousLibraryVersion: previousVersion,
|
|
15613
|
+
});
|
|
15608
15614
|
}
|
|
15609
15615
|
if (previousVersion !== version) {
|
|
15610
15616
|
this.setItem(VERSION_CACHE_KEY, version, correlationId);
|