@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.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.16.0 2026-06-30 */
|
|
2
2
|
'use strict';
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
/*! @azure/msal-common v16.
|
|
5
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6
6
|
/*
|
|
7
7
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8
8
|
* Licensed under the MIT License.
|
|
@@ -238,7 +238,7 @@ const JsonWebTokenTypes$1 = {
|
|
|
238
238
|
// Token renewal offset default in seconds
|
|
239
239
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
240
240
|
|
|
241
|
-
/*! @azure/msal-common v16.
|
|
241
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
242
242
|
/*
|
|
243
243
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
244
244
|
* Licensed under the MIT License.
|
|
@@ -290,7 +290,7 @@ const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
|
290
290
|
const RESOURCE = "resource";
|
|
291
291
|
const CLI_DATA = "clidata";
|
|
292
292
|
|
|
293
|
-
/*! @azure/msal-common v16.
|
|
293
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
294
294
|
/*
|
|
295
295
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
296
296
|
* Licensed under the MIT License.
|
|
@@ -319,7 +319,7 @@ function createAuthError(code, correlationId, additionalMessage) {
|
|
|
319
319
|
return new AuthError(code, correlationId, additionalMessage || getDefaultErrorMessage$1(code));
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
-
/*! @azure/msal-common v16.
|
|
322
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
323
323
|
|
|
324
324
|
/*
|
|
325
325
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -339,7 +339,7 @@ function createClientConfigurationError(errorCode, correlationId) {
|
|
|
339
339
|
return new ClientConfigurationError(errorCode, correlationId);
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
-
/*! @azure/msal-common v16.
|
|
342
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
343
343
|
/*
|
|
344
344
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
345
345
|
* Licensed under the MIT License.
|
|
@@ -419,7 +419,7 @@ class StringUtils {
|
|
|
419
419
|
}
|
|
420
420
|
}
|
|
421
421
|
|
|
422
|
-
/*! @azure/msal-common v16.
|
|
422
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
423
423
|
|
|
424
424
|
/*
|
|
425
425
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -442,7 +442,7 @@ function createClientAuthError(errorCode, correlationId, additionalMessage) {
|
|
|
442
442
|
return new ClientAuthError(errorCode, correlationId, additionalMessage);
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
-
/*! @azure/msal-common v16.
|
|
445
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
446
446
|
/*
|
|
447
447
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
448
448
|
* Licensed under the MIT License.
|
|
@@ -500,7 +500,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
500
500
|
urlParseError: urlParseError
|
|
501
501
|
});
|
|
502
502
|
|
|
503
|
-
/*! @azure/msal-common v16.
|
|
503
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
504
504
|
/*
|
|
505
505
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
506
506
|
* Licensed under the MIT License.
|
|
@@ -584,7 +584,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
584
584
|
userCanceled: userCanceled
|
|
585
585
|
});
|
|
586
586
|
|
|
587
|
-
/*! @azure/msal-common v16.
|
|
587
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
588
588
|
|
|
589
589
|
/*
|
|
590
590
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -780,7 +780,7 @@ class ScopeSet {
|
|
|
780
780
|
}
|
|
781
781
|
}
|
|
782
782
|
|
|
783
|
-
/*! @azure/msal-common v16.
|
|
783
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
784
784
|
|
|
785
785
|
/*
|
|
786
786
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1195,7 +1195,7 @@ function addResource(parameters, resource) {
|
|
|
1195
1195
|
}
|
|
1196
1196
|
}
|
|
1197
1197
|
|
|
1198
|
-
/*! @azure/msal-common v16.
|
|
1198
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1199
1199
|
|
|
1200
1200
|
/*
|
|
1201
1201
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1317,7 +1317,7 @@ function validateUrl(url, logger, correlationId) {
|
|
|
1317
1317
|
}
|
|
1318
1318
|
}
|
|
1319
1319
|
|
|
1320
|
-
/*! @azure/msal-common v16.
|
|
1320
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1321
1321
|
|
|
1322
1322
|
/*
|
|
1323
1323
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1356,7 +1356,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
|
|
|
1356
1356
|
},
|
|
1357
1357
|
};
|
|
1358
1358
|
|
|
1359
|
-
/*! @azure/msal-common v16.
|
|
1359
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1360
1360
|
/*
|
|
1361
1361
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1362
1362
|
* Licensed under the MIT License.
|
|
@@ -1645,12 +1645,12 @@ class Logger {
|
|
|
1645
1645
|
}
|
|
1646
1646
|
}
|
|
1647
1647
|
|
|
1648
|
-
/*! @azure/msal-common v16.
|
|
1648
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1649
1649
|
/* eslint-disable header/header */
|
|
1650
1650
|
const name$1 = "@azure/msal-common";
|
|
1651
|
-
const version$1 = "16.
|
|
1651
|
+
const version$1 = "16.11.0";
|
|
1652
1652
|
|
|
1653
|
-
/*! @azure/msal-common v16.
|
|
1653
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1654
1654
|
/*
|
|
1655
1655
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1656
1656
|
* Licensed under the MIT License.
|
|
@@ -1670,7 +1670,7 @@ const AzureCloudInstance = {
|
|
|
1670
1670
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
1671
1671
|
};
|
|
1672
1672
|
|
|
1673
|
-
/*! @azure/msal-common v16.
|
|
1673
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1674
1674
|
|
|
1675
1675
|
/*
|
|
1676
1676
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1736,7 +1736,7 @@ function getJWSPayload(authToken, correlationId) {
|
|
|
1736
1736
|
return matches[2];
|
|
1737
1737
|
}
|
|
1738
1738
|
|
|
1739
|
-
/*! @azure/msal-common v16.
|
|
1739
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1740
1740
|
|
|
1741
1741
|
/*
|
|
1742
1742
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1824,7 +1824,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
|
|
|
1824
1824
|
return updatedAccountInfo;
|
|
1825
1825
|
}
|
|
1826
1826
|
|
|
1827
|
-
/*! @azure/msal-common v16.
|
|
1827
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1828
1828
|
|
|
1829
1829
|
/*
|
|
1830
1830
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1982,7 +1982,7 @@ class UrlString {
|
|
|
1982
1982
|
}
|
|
1983
1983
|
}
|
|
1984
1984
|
|
|
1985
|
-
/*! @azure/msal-common v16.
|
|
1985
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
1986
1986
|
|
|
1987
1987
|
/*
|
|
1988
1988
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2148,7 +2148,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2148
2148
|
return null;
|
|
2149
2149
|
}
|
|
2150
2150
|
|
|
2151
|
-
/*! @azure/msal-common v16.
|
|
2151
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2152
2152
|
/*
|
|
2153
2153
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2154
2154
|
* Licensed under the MIT License.
|
|
@@ -2156,7 +2156,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2156
2156
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2157
2157
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2158
2158
|
|
|
2159
|
-
/*! @azure/msal-common v16.
|
|
2159
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2160
2160
|
|
|
2161
2161
|
/*
|
|
2162
2162
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2194,7 +2194,7 @@ function createCacheError(e) {
|
|
|
2194
2194
|
}
|
|
2195
2195
|
}
|
|
2196
2196
|
|
|
2197
|
-
/*! @azure/msal-common v16.
|
|
2197
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2198
2198
|
|
|
2199
2199
|
/*
|
|
2200
2200
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2232,7 +2232,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
|
|
|
2232
2232
|
};
|
|
2233
2233
|
}
|
|
2234
2234
|
|
|
2235
|
-
/*! @azure/msal-common v16.
|
|
2235
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2236
2236
|
/*
|
|
2237
2237
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2238
2238
|
* Licensed under the MIT License.
|
|
@@ -2247,7 +2247,7 @@ const AuthorityType = {
|
|
|
2247
2247
|
Ciam: 3,
|
|
2248
2248
|
};
|
|
2249
2249
|
|
|
2250
|
-
/*! @azure/msal-common v16.
|
|
2250
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2251
2251
|
/*
|
|
2252
2252
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2253
2253
|
* Licensed under the MIT License.
|
|
@@ -2269,7 +2269,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
|
|
|
2269
2269
|
return null;
|
|
2270
2270
|
}
|
|
2271
2271
|
|
|
2272
|
-
/*! @azure/msal-common v16.
|
|
2272
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2273
2273
|
/*
|
|
2274
2274
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2275
2275
|
* Licensed under the MIT License.
|
|
@@ -2293,7 +2293,7 @@ const ProtocolMode = {
|
|
|
2293
2293
|
EAR: "EAR",
|
|
2294
2294
|
};
|
|
2295
2295
|
|
|
2296
|
-
/*! @azure/msal-common v16.
|
|
2296
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2297
2297
|
/**
|
|
2298
2298
|
* Returns the AccountInfo interface for this account.
|
|
2299
2299
|
* @internal
|
|
@@ -2482,7 +2482,7 @@ function isAccountEntity(entity) {
|
|
|
2482
2482
|
entity.hasOwnProperty("authorityType"));
|
|
2483
2483
|
}
|
|
2484
2484
|
|
|
2485
|
-
/*! @azure/msal-common v16.
|
|
2485
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
2486
2486
|
|
|
2487
2487
|
/*
|
|
2488
2488
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3630,7 +3630,7 @@ class DefaultStorageClass extends CacheManager {
|
|
|
3630
3630
|
}
|
|
3631
3631
|
}
|
|
3632
3632
|
|
|
3633
|
-
/*! @azure/msal-common v16.
|
|
3633
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3634
3634
|
/*
|
|
3635
3635
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3636
3636
|
* Licensed under the MIT License.
|
|
@@ -3694,7 +3694,7 @@ const IntFields = new Set([
|
|
|
3694
3694
|
"redirectBridgeMessageVersion",
|
|
3695
3695
|
]);
|
|
3696
3696
|
|
|
3697
|
-
/*! @azure/msal-common v16.
|
|
3697
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3698
3698
|
|
|
3699
3699
|
/*
|
|
3700
3700
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3741,6 +3741,9 @@ class StubPerformanceClient {
|
|
|
3741
3741
|
addFields() {
|
|
3742
3742
|
return;
|
|
3743
3743
|
}
|
|
3744
|
+
addGlobalFields() {
|
|
3745
|
+
return;
|
|
3746
|
+
}
|
|
3744
3747
|
incrementFields() {
|
|
3745
3748
|
return;
|
|
3746
3749
|
}
|
|
@@ -3749,7 +3752,7 @@ class StubPerformanceClient {
|
|
|
3749
3752
|
}
|
|
3750
3753
|
}
|
|
3751
3754
|
|
|
3752
|
-
/*! @azure/msal-common v16.
|
|
3755
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3753
3756
|
|
|
3754
3757
|
/*
|
|
3755
3758
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3845,7 +3848,7 @@ function isOidcProtocolMode(config) {
|
|
|
3845
3848
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3846
3849
|
}
|
|
3847
3850
|
|
|
3848
|
-
/*! @azure/msal-common v16.
|
|
3851
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3849
3852
|
/*
|
|
3850
3853
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3851
3854
|
* Licensed under the MIT License.
|
|
@@ -3872,7 +3875,7 @@ function isOidcProtocolMode(config) {
|
|
|
3872
3875
|
}
|
|
3873
3876
|
}
|
|
3874
3877
|
|
|
3875
|
-
/*! @azure/msal-common v16.
|
|
3878
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3876
3879
|
/*
|
|
3877
3880
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3878
3881
|
* Licensed under the MIT License.
|
|
@@ -3937,7 +3940,7 @@ function wasClockTurnedBack(cachedAt) {
|
|
|
3937
3940
|
return cachedAtSec > nowSeconds();
|
|
3938
3941
|
}
|
|
3939
3942
|
|
|
3940
|
-
/*! @azure/msal-common v16.
|
|
3943
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
3941
3944
|
|
|
3942
3945
|
/*
|
|
3943
3946
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4204,7 +4207,7 @@ function isAuthorityMetadataExpired(metadata) {
|
|
|
4204
4207
|
return metadata.expiresAt <= nowSeconds();
|
|
4205
4208
|
}
|
|
4206
4209
|
|
|
4207
|
-
/*! @azure/msal-common v16.
|
|
4210
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4208
4211
|
/*
|
|
4209
4212
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4210
4213
|
* Licensed under the MIT License.
|
|
@@ -4275,7 +4278,7 @@ const RegionDiscoveryGetCurrentVersion = "regionDiscoveryGetCurrentVersion";
|
|
|
4275
4278
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
4276
4279
|
const SetUserData = "setUserData";
|
|
4277
4280
|
|
|
4278
|
-
/*! @azure/msal-common v16.
|
|
4281
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4279
4282
|
/*
|
|
4280
4283
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4281
4284
|
* Licensed under the MIT License.
|
|
@@ -4368,7 +4371,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
4368
4371
|
};
|
|
4369
4372
|
};
|
|
4370
4373
|
|
|
4371
|
-
/*! @azure/msal-common v16.
|
|
4374
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4372
4375
|
|
|
4373
4376
|
/*
|
|
4374
4377
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4448,7 +4451,7 @@ class PopTokenGenerator {
|
|
|
4448
4451
|
}
|
|
4449
4452
|
}
|
|
4450
4453
|
|
|
4451
|
-
/*! @azure/msal-common v16.
|
|
4454
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4452
4455
|
/*
|
|
4453
4456
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4454
4457
|
* Licensed under the MIT License.
|
|
@@ -4512,7 +4515,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
4512
4515
|
uiNotAllowed: uiNotAllowed
|
|
4513
4516
|
});
|
|
4514
4517
|
|
|
4515
|
-
/*! @azure/msal-common v16.
|
|
4518
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4516
4519
|
|
|
4517
4520
|
/*
|
|
4518
4521
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4579,7 +4582,7 @@ function createInteractionRequiredAuthError(errorCode, correlationId, errorMessa
|
|
|
4579
4582
|
return new InteractionRequiredAuthError(errorCode, correlationId, errorMessage);
|
|
4580
4583
|
}
|
|
4581
4584
|
|
|
4582
|
-
/*! @azure/msal-common v16.
|
|
4585
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4583
4586
|
|
|
4584
4587
|
/*
|
|
4585
4588
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4598,7 +4601,7 @@ class ServerError extends AuthError {
|
|
|
4598
4601
|
}
|
|
4599
4602
|
}
|
|
4600
4603
|
|
|
4601
|
-
/*! @azure/msal-common v16.
|
|
4604
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4602
4605
|
|
|
4603
4606
|
/*
|
|
4604
4607
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4669,7 +4672,7 @@ function parseRequestState(base64Decode, state, correlationId) {
|
|
|
4669
4672
|
}
|
|
4670
4673
|
}
|
|
4671
4674
|
|
|
4672
|
-
/*! @azure/msal-common v16.
|
|
4675
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
4673
4676
|
|
|
4674
4677
|
/*
|
|
4675
4678
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5020,7 +5023,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
|
|
|
5020
5023
|
return baseAccount;
|
|
5021
5024
|
}
|
|
5022
5025
|
|
|
5023
|
-
/*! @azure/msal-common v16.
|
|
5026
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5024
5027
|
/*
|
|
5025
5028
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5026
5029
|
* Licensed under the MIT License.
|
|
@@ -5030,7 +5033,7 @@ const CcsCredentialType = {
|
|
|
5030
5033
|
UPN: "UPN",
|
|
5031
5034
|
};
|
|
5032
5035
|
|
|
5033
|
-
/*! @azure/msal-common v16.
|
|
5036
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5034
5037
|
/*
|
|
5035
5038
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5036
5039
|
* Licensed under the MIT License.
|
|
@@ -5049,7 +5052,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint, fmiP
|
|
|
5049
5052
|
}
|
|
5050
5053
|
}
|
|
5051
5054
|
|
|
5052
|
-
/*! @azure/msal-common v16.
|
|
5055
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5053
5056
|
/*
|
|
5054
5057
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5055
5058
|
* Licensed under the MIT License.
|
|
@@ -5067,10 +5070,11 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
|
5067
5070
|
shrClaims: request.shrClaims,
|
|
5068
5071
|
sshKid: request.sshKid,
|
|
5069
5072
|
embeddedClientId: request.embeddedClientId || request.extraParameters?.clientId,
|
|
5073
|
+
resource: request.resource,
|
|
5070
5074
|
};
|
|
5071
5075
|
}
|
|
5072
5076
|
|
|
5073
|
-
/*! @azure/msal-common v16.
|
|
5077
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5074
5078
|
|
|
5075
5079
|
/*
|
|
5076
5080
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5156,7 +5160,7 @@ class ThrottlingUtils {
|
|
|
5156
5160
|
}
|
|
5157
5161
|
}
|
|
5158
5162
|
|
|
5159
|
-
/*! @azure/msal-common v16.
|
|
5163
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5160
5164
|
|
|
5161
5165
|
/*
|
|
5162
5166
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5187,7 +5191,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
|
|
|
5187
5191
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
5188
5192
|
}
|
|
5189
5193
|
|
|
5190
|
-
/*! @azure/msal-common v16.
|
|
5194
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5191
5195
|
|
|
5192
5196
|
/*
|
|
5193
5197
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5303,7 +5307,7 @@ async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId
|
|
|
5303
5307
|
return response;
|
|
5304
5308
|
}
|
|
5305
5309
|
|
|
5306
|
-
/*! @azure/msal-common v16.
|
|
5310
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5307
5311
|
/*
|
|
5308
5312
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5309
5313
|
* Licensed under the MIT License.
|
|
@@ -5315,7 +5319,7 @@ function isOpenIdConfigResponse(response) {
|
|
|
5315
5319
|
response.hasOwnProperty("jwks_uri"));
|
|
5316
5320
|
}
|
|
5317
5321
|
|
|
5318
|
-
/*! @azure/msal-common v16.
|
|
5322
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5319
5323
|
/*
|
|
5320
5324
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5321
5325
|
* Licensed under the MIT License.
|
|
@@ -5325,7 +5329,7 @@ function isCloudInstanceDiscoveryResponse(response) {
|
|
|
5325
5329
|
response.hasOwnProperty("metadata"));
|
|
5326
5330
|
}
|
|
5327
5331
|
|
|
5328
|
-
/*! @azure/msal-common v16.
|
|
5332
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5329
5333
|
/*
|
|
5330
5334
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5331
5335
|
* Licensed under the MIT License.
|
|
@@ -5335,7 +5339,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
|
5335
5339
|
response.hasOwnProperty("error_description"));
|
|
5336
5340
|
}
|
|
5337
5341
|
|
|
5338
|
-
/*! @azure/msal-common v16.
|
|
5342
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5339
5343
|
|
|
5340
5344
|
/*
|
|
5341
5345
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5446,7 +5450,7 @@ RegionDiscovery.IMDS_OPTIONS = {
|
|
|
5446
5450
|
},
|
|
5447
5451
|
};
|
|
5448
5452
|
|
|
5449
|
-
/*! @azure/msal-common v16.
|
|
5453
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
5450
5454
|
|
|
5451
5455
|
/*
|
|
5452
5456
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6416,7 +6420,7 @@ function buildStaticAuthorityOptions(authOptions) {
|
|
|
6416
6420
|
};
|
|
6417
6421
|
}
|
|
6418
6422
|
|
|
6419
|
-
/*! @azure/msal-common v16.
|
|
6423
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6420
6424
|
|
|
6421
6425
|
/*
|
|
6422
6426
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6450,7 +6454,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
|
|
|
6450
6454
|
}
|
|
6451
6455
|
}
|
|
6452
6456
|
|
|
6453
|
-
/*! @azure/msal-common v16.
|
|
6457
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6454
6458
|
|
|
6455
6459
|
/*
|
|
6456
6460
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6707,7 +6711,7 @@ class AuthorizationCodeClient {
|
|
|
6707
6711
|
}
|
|
6708
6712
|
}
|
|
6709
6713
|
|
|
6710
|
-
/*! @azure/msal-common v16.
|
|
6714
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6711
6715
|
|
|
6712
6716
|
/*
|
|
6713
6717
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6928,7 +6932,7 @@ class RefreshTokenClient {
|
|
|
6928
6932
|
}
|
|
6929
6933
|
}
|
|
6930
6934
|
|
|
6931
|
-
/*! @azure/msal-common v16.
|
|
6935
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
6932
6936
|
|
|
6933
6937
|
/*
|
|
6934
6938
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7036,7 +7040,7 @@ class SilentFlowClient {
|
|
|
7036
7040
|
}
|
|
7037
7041
|
}
|
|
7038
7042
|
|
|
7039
|
-
/*! @azure/msal-common v16.
|
|
7043
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7040
7044
|
|
|
7041
7045
|
/*
|
|
7042
7046
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7052,7 +7056,7 @@ const StubbedNetworkModule = {
|
|
|
7052
7056
|
},
|
|
7053
7057
|
};
|
|
7054
7058
|
|
|
7055
|
-
/*! @azure/msal-common v16.
|
|
7059
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7056
7060
|
|
|
7057
7061
|
/*
|
|
7058
7062
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7279,7 +7283,7 @@ function extractLoginHint(account) {
|
|
|
7279
7283
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
7280
7284
|
}
|
|
7281
7285
|
|
|
7282
|
-
/*! @azure/msal-common v16.
|
|
7286
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7283
7287
|
|
|
7284
7288
|
/*
|
|
7285
7289
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7312,7 +7316,7 @@ function containsResourceParam(params) {
|
|
|
7312
7316
|
return Object.prototype.hasOwnProperty.call(params, "resource");
|
|
7313
7317
|
}
|
|
7314
7318
|
|
|
7315
|
-
/*! @azure/msal-common v16.
|
|
7319
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7316
7320
|
|
|
7317
7321
|
/*
|
|
7318
7322
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7370,7 +7374,7 @@ class AuthenticationHeaderParser {
|
|
|
7370
7374
|
}
|
|
7371
7375
|
}
|
|
7372
7376
|
|
|
7373
|
-
/*! @azure/msal-common v16.
|
|
7377
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7374
7378
|
/*
|
|
7375
7379
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7376
7380
|
* Licensed under the MIT License.
|
|
@@ -7387,7 +7391,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
7387
7391
|
unexpectedError: unexpectedError
|
|
7388
7392
|
});
|
|
7389
7393
|
|
|
7390
|
-
/*! @azure/msal-common v16.
|
|
7394
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7391
7395
|
|
|
7392
7396
|
/*
|
|
7393
7397
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7680,7 +7684,7 @@ class StubServerTelemetryManager extends ServerTelemetryManager {
|
|
|
7680
7684
|
clearNativeBrokerErrorCode() { }
|
|
7681
7685
|
}
|
|
7682
7686
|
|
|
7683
|
-
/*! @azure/msal-common v16.
|
|
7687
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7684
7688
|
|
|
7685
7689
|
/*
|
|
7686
7690
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7701,7 +7705,7 @@ function createJoseHeaderError(code, correlationId) {
|
|
|
7701
7705
|
return new JoseHeaderError(code, correlationId);
|
|
7702
7706
|
}
|
|
7703
7707
|
|
|
7704
|
-
/*! @azure/msal-common v16.
|
|
7708
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7705
7709
|
/*
|
|
7706
7710
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7707
7711
|
* Licensed under the MIT License.
|
|
@@ -7709,7 +7713,7 @@ function createJoseHeaderError(code, correlationId) {
|
|
|
7709
7713
|
const missingKidError = "missing_kid_error";
|
|
7710
7714
|
const missingAlgError = "missing_alg_error";
|
|
7711
7715
|
|
|
7712
|
-
/*! @azure/msal-common v16.
|
|
7716
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7713
7717
|
|
|
7714
7718
|
/*
|
|
7715
7719
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7749,7 +7753,7 @@ class JoseHeader {
|
|
|
7749
7753
|
}
|
|
7750
7754
|
}
|
|
7751
7755
|
|
|
7752
|
-
/*! @azure/msal-common v16.
|
|
7756
|
+
/*! @azure/msal-common v16.11.0 2026-06-30 */
|
|
7753
7757
|
|
|
7754
7758
|
/*
|
|
7755
7759
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7962,6 +7966,7 @@ class PerformanceClient {
|
|
|
7962
7966
|
this.authority = authority;
|
|
7963
7967
|
this.libraryName = libraryName;
|
|
7964
7968
|
this.libraryVersion = libraryVersion;
|
|
7969
|
+
this.globalFields = {};
|
|
7965
7970
|
this.applicationTelemetry = applicationTelemetry;
|
|
7966
7971
|
this.clientId = clientId;
|
|
7967
7972
|
this.logger = logger;
|
|
@@ -8085,6 +8090,12 @@ class PerformanceClient {
|
|
|
8085
8090
|
incompleteSubsCount,
|
|
8086
8091
|
context,
|
|
8087
8092
|
logs: formattedLogs,
|
|
8093
|
+
/*
|
|
8094
|
+
* Global fields are spread last so they are always present on the
|
|
8095
|
+
* emitted event and never overridden, even when registered after
|
|
8096
|
+
* the measurement started.
|
|
8097
|
+
*/
|
|
8098
|
+
...this.globalFields,
|
|
8088
8099
|
};
|
|
8089
8100
|
if (account) {
|
|
8090
8101
|
finalEvent.accountType = getAccountType(account);
|
|
@@ -8133,6 +8144,18 @@ class PerformanceClient {
|
|
|
8133
8144
|
this.logger.trace("0thl6s", correlationId);
|
|
8134
8145
|
}
|
|
8135
8146
|
}
|
|
8147
|
+
/**
|
|
8148
|
+
* Saves fields to be emitted on every event measured by this client.
|
|
8149
|
+
* Unlike addFields, these are not scoped to a single correlationId and persist for the
|
|
8150
|
+
* lifetime of the client (e.g. previousLibraryVersion for upgrade/downgrade telemetry).
|
|
8151
|
+
* @param fields
|
|
8152
|
+
*/
|
|
8153
|
+
addGlobalFields(fields) {
|
|
8154
|
+
this.globalFields = {
|
|
8155
|
+
...this.globalFields,
|
|
8156
|
+
...fields,
|
|
8157
|
+
};
|
|
8158
|
+
}
|
|
8136
8159
|
/**
|
|
8137
8160
|
* Increment counters to be emitted when the measurements are flushed
|
|
8138
8161
|
* @param fields {string[]}
|
|
@@ -10702,7 +10725,7 @@ const EventType = {
|
|
|
10702
10725
|
|
|
10703
10726
|
/* eslint-disable header/header */
|
|
10704
10727
|
const name = "@azure/msal-browser";
|
|
10705
|
-
const version = "5.
|
|
10728
|
+
const version = "5.16.0";
|
|
10706
10729
|
|
|
10707
10730
|
/*
|
|
10708
10731
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -11177,7 +11200,9 @@ class BrowserCacheManager extends CacheManager {
|
|
|
11177
11200
|
const previousVersion = this.browserStorage.getItem(VERSION_CACHE_KEY);
|
|
11178
11201
|
if (previousVersion) {
|
|
11179
11202
|
this.logger.info(`1wuc87 ${previousVersion}`, correlationId);
|
|
11180
|
-
this.performanceClient.
|
|
11203
|
+
this.performanceClient.addGlobalFields({
|
|
11204
|
+
previousLibraryVersion: previousVersion,
|
|
11205
|
+
});
|
|
11181
11206
|
}
|
|
11182
11207
|
if (previousVersion !== version) {
|
|
11183
11208
|
this.setItem(VERSION_CACHE_KEY, version, correlationId);
|