@azure/msal-browser 4.14.0 → 4.15.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/app/PublicClientNext.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 +1 -1
- package/dist/cache/CacheHelpers.mjs +1 -1
- package/dist/cache/CookieStorage.mjs +1 -1
- package/dist/cache/DatabaseStorage.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/ControllerFactory.mjs +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.mjs +1 -1
- package/dist/controllers/UnknownOperatingContextController.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-path/app/PublicClientApplication.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
- package/dist/custom-auth-path/cache/AccountManager.mjs +1 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +1 -1
- package/dist/custom-auth-path/cache/CacheHelpers.mjs +1 -1
- package/dist/custom-auth-path/cache/CookieStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/LocalStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/MemoryStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/SessionStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/TokenCache.mjs +1 -1
- package/dist/custom-auth-path/config/Configuration.mjs +1 -1
- package/dist/custom-auth-path/controllers/ControllerFactory.mjs +1 -1
- package/dist/custom-auth-path/controllers/StandardController.mjs +1 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +1 -1
- package/dist/custom-auth-path/crypto/CryptoOps.mjs +1 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/index.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
- package/dist/custom-auth-path/encode/Base64Decode.mjs +1 -1
- package/dist/custom-auth-path/encode/Base64Encode.mjs +1 -1
- package/dist/custom-auth-path/error/BrowserAuthError.mjs +1 -1
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +1 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/error/NativeAuthError.mjs +1 -1
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/event/EventHandler.mjs +1 -1
- package/dist/custom-auth-path/event/EventType.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/PopupClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +1 -1
- package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +1 -1
- package/dist/custom-auth-path/navigation/NavigationClient.mjs +1 -1
- package/dist/custom-auth-path/network/FetchClient.mjs +1 -1
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +1 -1
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/custom-auth-path/packageMetadata.d.ts +1 -1
- package/dist/custom-auth-path/packageMetadata.mjs +2 -2
- package/dist/custom-auth-path/protocol/Authorize.mjs +1 -1
- package/dist/custom-auth-path/request/RequestHelpers.mjs +1 -1
- package/dist/custom-auth-path/response/ResponseHandler.mjs +1 -1
- package/dist/custom-auth-path/utils/BrowserConstants.mjs +1 -1
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/custom-auth-path/utils/BrowserUtils.mjs +1 -1
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +1 -1
- package/dist/custom_auth/CustomAuthConstants.d.ts +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/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/operatingcontext/UnknownOperatingContext.mjs +1 -1
- package/dist/packageMetadata.d.ts +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/protocol/Authorize.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/BrowserPerformanceMeasurement.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/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/msal-custom-auth.cjs +68 -143
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
- package/lib/msal-browser.cjs +70 -149
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +70 -149
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +68 -69
- package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/types/packageMetadata.d.ts +1 -1
- package/package.json +2 -2
- package/src/packageMetadata.ts +1 -1
package/lib/msal-browser.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @azure/msal-browser v4.
|
|
1
|
+
/*! @azure/msal-browser v4.15.0 2025-07-08 */
|
|
2
2
|
'use strict';
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
/*! @azure/msal-common v15.8.
|
|
5
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6
6
|
/*
|
|
7
7
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8
8
|
* Licensed under the MIT License.
|
|
@@ -135,13 +135,6 @@ const PromptValue = {
|
|
|
135
135
|
CREATE: "create",
|
|
136
136
|
NO_SESSION: "no_session",
|
|
137
137
|
};
|
|
138
|
-
/**
|
|
139
|
-
* allowed values for codeVerifier
|
|
140
|
-
*/
|
|
141
|
-
const CodeChallengeMethodValues = {
|
|
142
|
-
PLAIN: "plain",
|
|
143
|
-
S256: "S256",
|
|
144
|
-
};
|
|
145
138
|
/**
|
|
146
139
|
* Allowed values for response_type
|
|
147
140
|
*/
|
|
@@ -284,7 +277,7 @@ const JsonWebTokenTypes = {
|
|
|
284
277
|
// Token renewal offset default in seconds
|
|
285
278
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
286
279
|
|
|
287
|
-
/*! @azure/msal-common v15.8.
|
|
280
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
288
281
|
/*
|
|
289
282
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
290
283
|
* Licensed under the MIT License.
|
|
@@ -301,7 +294,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
301
294
|
unexpectedError: unexpectedError
|
|
302
295
|
});
|
|
303
296
|
|
|
304
|
-
/*! @azure/msal-common v15.8.
|
|
297
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
305
298
|
|
|
306
299
|
/*
|
|
307
300
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -350,7 +343,7 @@ function createAuthError(code, additionalMessage) {
|
|
|
350
343
|
: AuthErrorMessages[code]);
|
|
351
344
|
}
|
|
352
345
|
|
|
353
|
-
/*! @azure/msal-common v15.8.
|
|
346
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
354
347
|
/*
|
|
355
348
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
356
349
|
* Licensed under the MIT License.
|
|
@@ -448,7 +441,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
448
441
|
userTimeoutReached: userTimeoutReached
|
|
449
442
|
});
|
|
450
443
|
|
|
451
|
-
/*! @azure/msal-common v15.8.
|
|
444
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
452
445
|
|
|
453
446
|
/*
|
|
454
447
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -700,7 +693,7 @@ function createClientAuthError(errorCode, additionalMessage) {
|
|
|
700
693
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
701
694
|
}
|
|
702
695
|
|
|
703
|
-
/*! @azure/msal-common v15.8.
|
|
696
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
704
697
|
|
|
705
698
|
/*
|
|
706
699
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -739,7 +732,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
|
|
|
739
732
|
},
|
|
740
733
|
};
|
|
741
734
|
|
|
742
|
-
/*! @azure/msal-common v15.8.
|
|
735
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
743
736
|
|
|
744
737
|
/*
|
|
745
738
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -930,12 +923,12 @@ class Logger {
|
|
|
930
923
|
}
|
|
931
924
|
}
|
|
932
925
|
|
|
933
|
-
/*! @azure/msal-common v15.8.
|
|
926
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
934
927
|
/* eslint-disable header/header */
|
|
935
928
|
const name$1 = "@azure/msal-common";
|
|
936
|
-
const version$1 = "15.8.
|
|
929
|
+
const version$1 = "15.8.1";
|
|
937
930
|
|
|
938
|
-
/*! @azure/msal-common v15.8.
|
|
931
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
939
932
|
/*
|
|
940
933
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
941
934
|
* Licensed under the MIT License.
|
|
@@ -955,7 +948,7 @@ const AzureCloudInstance = {
|
|
|
955
948
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
956
949
|
};
|
|
957
950
|
|
|
958
|
-
/*! @azure/msal-common v15.8.
|
|
951
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
959
952
|
|
|
960
953
|
/*
|
|
961
954
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1016,7 +1009,7 @@ function checkMaxAge(authTime, maxAge) {
|
|
|
1016
1009
|
}
|
|
1017
1010
|
}
|
|
1018
1011
|
|
|
1019
|
-
/*! @azure/msal-common v15.8.
|
|
1012
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1020
1013
|
/*
|
|
1021
1014
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1022
1015
|
* Licensed under the MIT License.
|
|
@@ -1071,7 +1064,7 @@ function wasClockTurnedBack(cachedAt) {
|
|
|
1071
1064
|
return cachedAtSec > nowSeconds();
|
|
1072
1065
|
}
|
|
1073
1066
|
|
|
1074
|
-
/*! @azure/msal-common v15.8.
|
|
1067
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1075
1068
|
|
|
1076
1069
|
/*
|
|
1077
1070
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1398,7 +1391,7 @@ function isAuthorityMetadataExpired(metadata) {
|
|
|
1398
1391
|
return metadata.expiresAt <= nowSeconds();
|
|
1399
1392
|
}
|
|
1400
1393
|
|
|
1401
|
-
/*! @azure/msal-common v15.8.
|
|
1394
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1402
1395
|
/*
|
|
1403
1396
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1404
1397
|
* Licensed under the MIT License.
|
|
@@ -1409,7 +1402,6 @@ const authorityUriInsecure = "authority_uri_insecure";
|
|
|
1409
1402
|
const urlParseError = "url_parse_error";
|
|
1410
1403
|
const urlEmptyError = "empty_url_error";
|
|
1411
1404
|
const emptyInputScopesError = "empty_input_scopes_error";
|
|
1412
|
-
const invalidPromptValue = "invalid_prompt_value";
|
|
1413
1405
|
const invalidClaims = "invalid_claims";
|
|
1414
1406
|
const tokenRequestEmpty = "token_request_empty";
|
|
1415
1407
|
const logoutRequestEmpty = "logout_request_empty";
|
|
@@ -1439,7 +1431,6 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
1439
1431
|
invalidClaims: invalidClaims,
|
|
1440
1432
|
invalidCloudDiscoveryMetadata: invalidCloudDiscoveryMetadata,
|
|
1441
1433
|
invalidCodeChallengeMethod: invalidCodeChallengeMethod,
|
|
1442
|
-
invalidPromptValue: invalidPromptValue,
|
|
1443
1434
|
logoutRequestEmpty: logoutRequestEmpty,
|
|
1444
1435
|
missingNonceAuthenticationHeader: missingNonceAuthenticationHeader,
|
|
1445
1436
|
missingSshJwk: missingSshJwk,
|
|
@@ -1452,7 +1443,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
1452
1443
|
urlParseError: urlParseError
|
|
1453
1444
|
});
|
|
1454
1445
|
|
|
1455
|
-
/*! @azure/msal-common v15.8.
|
|
1446
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1456
1447
|
|
|
1457
1448
|
/*
|
|
1458
1449
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1465,7 +1456,6 @@ const ClientConfigurationErrorMessages = {
|
|
|
1465
1456
|
[urlParseError]: "URL could not be parsed into appropriate segments.",
|
|
1466
1457
|
[urlEmptyError]: "URL was empty or null.",
|
|
1467
1458
|
[emptyInputScopesError]: "Scopes cannot be passed as null, undefined or empty array because they are required to obtain an access token.",
|
|
1468
|
-
[invalidPromptValue]: "Please see here for valid configuration options: https://azuread.github.io/microsoft-authentication-library-for-js/ref/modules/_azure_msal_common.html#commonauthorizationurlrequest",
|
|
1469
1459
|
[invalidClaims]: "Given claims parameter must be a stringified JSON object.",
|
|
1470
1460
|
[tokenRequestEmpty]: "Token request was empty and not found in cache.",
|
|
1471
1461
|
[logoutRequestEmpty]: "The logout request was null or undefined.",
|
|
@@ -1511,10 +1501,6 @@ const ClientConfigurationErrorMessage = {
|
|
|
1511
1501
|
code: emptyInputScopesError,
|
|
1512
1502
|
desc: ClientConfigurationErrorMessages[emptyInputScopesError],
|
|
1513
1503
|
},
|
|
1514
|
-
invalidPrompt: {
|
|
1515
|
-
code: invalidPromptValue,
|
|
1516
|
-
desc: ClientConfigurationErrorMessages[invalidPromptValue],
|
|
1517
|
-
},
|
|
1518
1504
|
invalidClaimsRequest: {
|
|
1519
1505
|
code: invalidClaims,
|
|
1520
1506
|
desc: ClientConfigurationErrorMessages[invalidClaims],
|
|
@@ -1590,7 +1576,7 @@ function createClientConfigurationError(errorCode) {
|
|
|
1590
1576
|
return new ClientConfigurationError(errorCode);
|
|
1591
1577
|
}
|
|
1592
1578
|
|
|
1593
|
-
/*! @azure/msal-common v15.8.
|
|
1579
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1594
1580
|
/*
|
|
1595
1581
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1596
1582
|
* Licensed under the MIT License.
|
|
@@ -1687,7 +1673,7 @@ class StringUtils {
|
|
|
1687
1673
|
}
|
|
1688
1674
|
}
|
|
1689
1675
|
|
|
1690
|
-
/*! @azure/msal-common v15.8.
|
|
1676
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1691
1677
|
|
|
1692
1678
|
/*
|
|
1693
1679
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1878,7 +1864,7 @@ class ScopeSet {
|
|
|
1878
1864
|
}
|
|
1879
1865
|
}
|
|
1880
1866
|
|
|
1881
|
-
/*! @azure/msal-common v15.8.
|
|
1867
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1882
1868
|
|
|
1883
1869
|
/*
|
|
1884
1870
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1918,7 +1904,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
|
|
|
1918
1904
|
};
|
|
1919
1905
|
}
|
|
1920
1906
|
|
|
1921
|
-
/*! @azure/msal-common v15.8.
|
|
1907
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1922
1908
|
/*
|
|
1923
1909
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1924
1910
|
* Licensed under the MIT License.
|
|
@@ -1997,7 +1983,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
|
|
|
1997
1983
|
return updatedAccountInfo;
|
|
1998
1984
|
}
|
|
1999
1985
|
|
|
2000
|
-
/*! @azure/msal-common v15.8.
|
|
1986
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2001
1987
|
/*
|
|
2002
1988
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2003
1989
|
* Licensed under the MIT License.
|
|
@@ -2012,7 +1998,7 @@ const AuthorityType = {
|
|
|
2012
1998
|
Ciam: 3,
|
|
2013
1999
|
};
|
|
2014
2000
|
|
|
2015
|
-
/*! @azure/msal-common v15.8.
|
|
2001
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2016
2002
|
/*
|
|
2017
2003
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2018
2004
|
* Licensed under the MIT License.
|
|
@@ -2034,7 +2020,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
|
|
|
2034
2020
|
return null;
|
|
2035
2021
|
}
|
|
2036
2022
|
|
|
2037
|
-
/*! @azure/msal-common v15.8.
|
|
2023
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2038
2024
|
/*
|
|
2039
2025
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2040
2026
|
* Licensed under the MIT License.
|
|
@@ -2058,7 +2044,7 @@ const ProtocolMode = {
|
|
|
2058
2044
|
EAR: "EAR",
|
|
2059
2045
|
};
|
|
2060
2046
|
|
|
2061
|
-
/*! @azure/msal-common v15.8.
|
|
2047
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2062
2048
|
|
|
2063
2049
|
/*
|
|
2064
2050
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2301,7 +2287,7 @@ class AccountEntity {
|
|
|
2301
2287
|
}
|
|
2302
2288
|
}
|
|
2303
2289
|
|
|
2304
|
-
/*! @azure/msal-common v15.8.
|
|
2290
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2305
2291
|
|
|
2306
2292
|
/*
|
|
2307
2293
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2366,7 +2352,7 @@ function mapToQueryString(parameters, encodeExtraParams = true, extraQueryParame
|
|
|
2366
2352
|
return queryParameterArray.join("&");
|
|
2367
2353
|
}
|
|
2368
2354
|
|
|
2369
|
-
/*! @azure/msal-common v15.8.
|
|
2355
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2370
2356
|
|
|
2371
2357
|
/*
|
|
2372
2358
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2530,7 +2516,7 @@ class UrlString {
|
|
|
2530
2516
|
}
|
|
2531
2517
|
}
|
|
2532
2518
|
|
|
2533
|
-
/*! @azure/msal-common v15.8.
|
|
2519
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2534
2520
|
|
|
2535
2521
|
/*
|
|
2536
2522
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2669,7 +2655,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2669
2655
|
return null;
|
|
2670
2656
|
}
|
|
2671
2657
|
|
|
2672
|
-
/*! @azure/msal-common v15.8.
|
|
2658
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2673
2659
|
/*
|
|
2674
2660
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2675
2661
|
* Licensed under the MIT License.
|
|
@@ -2677,7 +2663,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2677
2663
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2678
2664
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2679
2665
|
|
|
2680
|
-
/*! @azure/msal-common v15.8.
|
|
2666
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2681
2667
|
|
|
2682
2668
|
/*
|
|
2683
2669
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2722,7 +2708,7 @@ function createCacheError(e) {
|
|
|
2722
2708
|
}
|
|
2723
2709
|
}
|
|
2724
2710
|
|
|
2725
|
-
/*! @azure/msal-common v15.8.
|
|
2711
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2726
2712
|
|
|
2727
2713
|
/*
|
|
2728
2714
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3889,7 +3875,7 @@ class DefaultStorageClass extends CacheManager {
|
|
|
3889
3875
|
}
|
|
3890
3876
|
}
|
|
3891
3877
|
|
|
3892
|
-
/*! @azure/msal-common v15.8.
|
|
3878
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
3893
3879
|
/*
|
|
3894
3880
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3895
3881
|
* Licensed under the MIT License.
|
|
@@ -4401,7 +4387,7 @@ const IntFields = new Set([
|
|
|
4401
4387
|
"encryptedCacheExpiredCount",
|
|
4402
4388
|
]);
|
|
4403
4389
|
|
|
4404
|
-
/*! @azure/msal-common v15.8.
|
|
4390
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4405
4391
|
|
|
4406
4392
|
/*
|
|
4407
4393
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4480,7 +4466,7 @@ class StubPerformanceClient {
|
|
|
4480
4466
|
}
|
|
4481
4467
|
}
|
|
4482
4468
|
|
|
4483
|
-
/*! @azure/msal-common v15.8.
|
|
4469
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4484
4470
|
|
|
4485
4471
|
/*
|
|
4486
4472
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4580,7 +4566,7 @@ function isOidcProtocolMode(config) {
|
|
|
4580
4566
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
4581
4567
|
}
|
|
4582
4568
|
|
|
4583
|
-
/*! @azure/msal-common v15.8.
|
|
4569
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4584
4570
|
/*
|
|
4585
4571
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4586
4572
|
* Licensed under the MIT License.
|
|
@@ -4590,7 +4576,7 @@ const CcsCredentialType = {
|
|
|
4590
4576
|
UPN: "UPN",
|
|
4591
4577
|
};
|
|
4592
4578
|
|
|
4593
|
-
/*! @azure/msal-common v15.8.
|
|
4579
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4594
4580
|
/*
|
|
4595
4581
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4596
4582
|
* Licensed under the MIT License.
|
|
@@ -4640,7 +4626,7 @@ const INSTANCE_AWARE = "instance_aware";
|
|
|
4640
4626
|
const EAR_JWK = "ear_jwk";
|
|
4641
4627
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
4642
4628
|
|
|
4643
|
-
/*! @azure/msal-common v15.8.
|
|
4629
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4644
4630
|
|
|
4645
4631
|
/*
|
|
4646
4632
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5008,7 +4994,7 @@ function addEARParameters(parameters, jwk) {
|
|
|
5008
4994
|
parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
|
|
5009
4995
|
}
|
|
5010
4996
|
|
|
5011
|
-
/*! @azure/msal-common v15.8.
|
|
4997
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5012
4998
|
/*
|
|
5013
4999
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5014
5000
|
* Licensed under the MIT License.
|
|
@@ -5020,7 +5006,7 @@ function isOpenIdConfigResponse(response) {
|
|
|
5020
5006
|
response.hasOwnProperty("jwks_uri"));
|
|
5021
5007
|
}
|
|
5022
5008
|
|
|
5023
|
-
/*! @azure/msal-common v15.8.
|
|
5009
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5024
5010
|
/*
|
|
5025
5011
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5026
5012
|
* Licensed under the MIT License.
|
|
@@ -5030,7 +5016,7 @@ function isCloudInstanceDiscoveryResponse(response) {
|
|
|
5030
5016
|
response.hasOwnProperty("metadata"));
|
|
5031
5017
|
}
|
|
5032
5018
|
|
|
5033
|
-
/*! @azure/msal-common v15.8.
|
|
5019
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5034
5020
|
/*
|
|
5035
5021
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5036
5022
|
* Licensed under the MIT License.
|
|
@@ -5040,7 +5026,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
|
5040
5026
|
response.hasOwnProperty("error_description"));
|
|
5041
5027
|
}
|
|
5042
5028
|
|
|
5043
|
-
/*! @azure/msal-common v15.8.
|
|
5029
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5044
5030
|
/*
|
|
5045
5031
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5046
5032
|
* Licensed under the MIT License.
|
|
@@ -5136,7 +5122,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
5136
5122
|
};
|
|
5137
5123
|
};
|
|
5138
5124
|
|
|
5139
|
-
/*! @azure/msal-common v15.8.
|
|
5125
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5140
5126
|
|
|
5141
5127
|
/*
|
|
5142
5128
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5242,7 +5228,7 @@ RegionDiscovery.IMDS_OPTIONS = {
|
|
|
5242
5228
|
},
|
|
5243
5229
|
};
|
|
5244
5230
|
|
|
5245
|
-
/*! @azure/msal-common v15.8.
|
|
5231
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5246
5232
|
|
|
5247
5233
|
/*
|
|
5248
5234
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6081,7 +6067,7 @@ function buildStaticAuthorityOptions(authOptions) {
|
|
|
6081
6067
|
};
|
|
6082
6068
|
}
|
|
6083
6069
|
|
|
6084
|
-
/*! @azure/msal-common v15.8.
|
|
6070
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6085
6071
|
|
|
6086
6072
|
/*
|
|
6087
6073
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6112,7 +6098,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
|
|
|
6112
6098
|
}
|
|
6113
6099
|
}
|
|
6114
6100
|
|
|
6115
|
-
/*! @azure/msal-common v15.8.
|
|
6101
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6116
6102
|
|
|
6117
6103
|
/*
|
|
6118
6104
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6131,7 +6117,7 @@ class ServerError extends AuthError {
|
|
|
6131
6117
|
}
|
|
6132
6118
|
}
|
|
6133
6119
|
|
|
6134
|
-
/*! @azure/msal-common v15.8.
|
|
6120
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6135
6121
|
/*
|
|
6136
6122
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6137
6123
|
* Licensed under the MIT License.
|
|
@@ -6152,7 +6138,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
|
6152
6138
|
};
|
|
6153
6139
|
}
|
|
6154
6140
|
|
|
6155
|
-
/*! @azure/msal-common v15.8.
|
|
6141
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6156
6142
|
|
|
6157
6143
|
/*
|
|
6158
6144
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6239,7 +6225,7 @@ class ThrottlingUtils {
|
|
|
6239
6225
|
}
|
|
6240
6226
|
}
|
|
6241
6227
|
|
|
6242
|
-
/*! @azure/msal-common v15.8.
|
|
6228
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6243
6229
|
|
|
6244
6230
|
/*
|
|
6245
6231
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6270,7 +6256,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
|
|
|
6270
6256
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
6271
6257
|
}
|
|
6272
6258
|
|
|
6273
|
-
/*! @azure/msal-common v15.8.
|
|
6259
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6274
6260
|
|
|
6275
6261
|
/*
|
|
6276
6262
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6418,7 +6404,7 @@ class BaseClient {
|
|
|
6418
6404
|
}
|
|
6419
6405
|
}
|
|
6420
6406
|
|
|
6421
|
-
/*! @azure/msal-common v15.8.
|
|
6407
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6422
6408
|
/*
|
|
6423
6409
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6424
6410
|
* Licensed under the MIT License.
|
|
@@ -6446,7 +6432,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
6446
6432
|
uxNotAllowed: uxNotAllowed
|
|
6447
6433
|
});
|
|
6448
6434
|
|
|
6449
|
-
/*! @azure/msal-common v15.8.
|
|
6435
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6450
6436
|
|
|
6451
6437
|
/*
|
|
6452
6438
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6536,7 +6522,7 @@ function createInteractionRequiredAuthError(errorCode) {
|
|
|
6536
6522
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
6537
6523
|
}
|
|
6538
6524
|
|
|
6539
|
-
/*! @azure/msal-common v15.8.
|
|
6525
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6540
6526
|
|
|
6541
6527
|
/*
|
|
6542
6528
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6608,7 +6594,7 @@ class ProtocolUtils {
|
|
|
6608
6594
|
}
|
|
6609
6595
|
}
|
|
6610
6596
|
|
|
6611
|
-
/*! @azure/msal-common v15.8.
|
|
6597
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6612
6598
|
|
|
6613
6599
|
/*
|
|
6614
6600
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6690,7 +6676,7 @@ class PopTokenGenerator {
|
|
|
6690
6676
|
}
|
|
6691
6677
|
}
|
|
6692
6678
|
|
|
6693
|
-
/*! @azure/msal-common v15.8.
|
|
6679
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6694
6680
|
/*
|
|
6695
6681
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6696
6682
|
* Licensed under the MIT License.
|
|
@@ -6717,7 +6703,7 @@ class PopTokenGenerator {
|
|
|
6717
6703
|
}
|
|
6718
6704
|
}
|
|
6719
6705
|
|
|
6720
|
-
/*! @azure/msal-common v15.8.
|
|
6706
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6721
6707
|
|
|
6722
6708
|
/*
|
|
6723
6709
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7048,74 +7034,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
|
|
|
7048
7034
|
return baseAccount;
|
|
7049
7035
|
}
|
|
7050
7036
|
|
|
7051
|
-
/*! @azure/msal-common v15.8.
|
|
7052
|
-
|
|
7053
|
-
/*
|
|
7054
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7055
|
-
* Licensed under the MIT License.
|
|
7056
|
-
*/
|
|
7057
|
-
/**
|
|
7058
|
-
* Validates server consumable params from the "request" objects
|
|
7059
|
-
*/
|
|
7060
|
-
class RequestValidator {
|
|
7061
|
-
/**
|
|
7062
|
-
* Utility to check if the `redirectUri` in the request is a non-null value
|
|
7063
|
-
* @param redirectUri
|
|
7064
|
-
*/
|
|
7065
|
-
static validateRedirectUri(redirectUri) {
|
|
7066
|
-
if (!redirectUri) {
|
|
7067
|
-
throw createClientConfigurationError(redirectUriEmpty);
|
|
7068
|
-
}
|
|
7069
|
-
}
|
|
7070
|
-
/**
|
|
7071
|
-
* Utility to validate prompt sent by the user in the request
|
|
7072
|
-
* @param prompt
|
|
7073
|
-
*/
|
|
7074
|
-
static validatePrompt(prompt) {
|
|
7075
|
-
const promptValues = [];
|
|
7076
|
-
for (const value in PromptValue) {
|
|
7077
|
-
promptValues.push(PromptValue[value]);
|
|
7078
|
-
}
|
|
7079
|
-
if (promptValues.indexOf(prompt) < 0) {
|
|
7080
|
-
throw createClientConfigurationError(invalidPromptValue);
|
|
7081
|
-
}
|
|
7082
|
-
}
|
|
7083
|
-
static validateClaims(claims) {
|
|
7084
|
-
try {
|
|
7085
|
-
JSON.parse(claims);
|
|
7086
|
-
}
|
|
7087
|
-
catch (e) {
|
|
7088
|
-
throw createClientConfigurationError(invalidClaims);
|
|
7089
|
-
}
|
|
7090
|
-
}
|
|
7091
|
-
/**
|
|
7092
|
-
* Utility to validate code_challenge and code_challenge_method
|
|
7093
|
-
* @param codeChallenge
|
|
7094
|
-
* @param codeChallengeMethod
|
|
7095
|
-
*/
|
|
7096
|
-
static validateCodeChallengeParams(codeChallenge, codeChallengeMethod) {
|
|
7097
|
-
if (!codeChallenge || !codeChallengeMethod) {
|
|
7098
|
-
throw createClientConfigurationError(pkceParamsMissing);
|
|
7099
|
-
}
|
|
7100
|
-
else {
|
|
7101
|
-
this.validateCodeChallengeMethod(codeChallengeMethod);
|
|
7102
|
-
}
|
|
7103
|
-
}
|
|
7104
|
-
/**
|
|
7105
|
-
* Utility to validate code_challenge_method
|
|
7106
|
-
* @param codeChallengeMethod
|
|
7107
|
-
*/
|
|
7108
|
-
static validateCodeChallengeMethod(codeChallengeMethod) {
|
|
7109
|
-
if ([
|
|
7110
|
-
CodeChallengeMethodValues.PLAIN,
|
|
7111
|
-
CodeChallengeMethodValues.S256,
|
|
7112
|
-
].indexOf(codeChallengeMethod) < 0) {
|
|
7113
|
-
throw createClientConfigurationError(invalidCodeChallengeMethod);
|
|
7114
|
-
}
|
|
7115
|
-
}
|
|
7116
|
-
}
|
|
7117
|
-
|
|
7118
|
-
/*! @azure/msal-common v15.8.0 2025-07-01 */
|
|
7037
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7119
7038
|
/*
|
|
7120
7039
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7121
7040
|
* Licensed under the MIT License.
|
|
@@ -7133,7 +7052,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
|
|
|
7133
7052
|
}
|
|
7134
7053
|
}
|
|
7135
7054
|
|
|
7136
|
-
/*! @azure/msal-common v15.8.
|
|
7055
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7137
7056
|
|
|
7138
7057
|
/*
|
|
7139
7058
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7227,7 +7146,9 @@ class AuthorizationCodeClient extends BaseClient {
|
|
|
7227
7146
|
*/
|
|
7228
7147
|
if (!this.includeRedirectUri) {
|
|
7229
7148
|
// Just validate
|
|
7230
|
-
|
|
7149
|
+
if (!request.redirectUri) {
|
|
7150
|
+
throw createClientConfigurationError(redirectUriEmpty);
|
|
7151
|
+
}
|
|
7231
7152
|
}
|
|
7232
7153
|
else {
|
|
7233
7154
|
// Validate and include redirect uri
|
|
@@ -7366,7 +7287,7 @@ class AuthorizationCodeClient extends BaseClient {
|
|
|
7366
7287
|
}
|
|
7367
7288
|
}
|
|
7368
7289
|
|
|
7369
|
-
/*! @azure/msal-common v15.8.
|
|
7290
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7370
7291
|
|
|
7371
7292
|
/*
|
|
7372
7293
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7575,7 +7496,7 @@ class RefreshTokenClient extends BaseClient {
|
|
|
7575
7496
|
}
|
|
7576
7497
|
}
|
|
7577
7498
|
|
|
7578
|
-
/*! @azure/msal-common v15.8.
|
|
7499
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7579
7500
|
|
|
7580
7501
|
/*
|
|
7581
7502
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7673,7 +7594,7 @@ class SilentFlowClient extends BaseClient {
|
|
|
7673
7594
|
}
|
|
7674
7595
|
}
|
|
7675
7596
|
|
|
7676
|
-
/*! @azure/msal-common v15.8.
|
|
7597
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7677
7598
|
|
|
7678
7599
|
/*
|
|
7679
7600
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7688,7 +7609,7 @@ const StubbedNetworkModule = {
|
|
|
7688
7609
|
},
|
|
7689
7610
|
};
|
|
7690
7611
|
|
|
7691
|
-
/*! @azure/msal-common v15.8.
|
|
7612
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7692
7613
|
|
|
7693
7614
|
/*
|
|
7694
7615
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7912,7 +7833,7 @@ function extractLoginHint(account) {
|
|
|
7912
7833
|
return account.idTokenClaims?.login_hint || null;
|
|
7913
7834
|
}
|
|
7914
7835
|
|
|
7915
|
-
/*! @azure/msal-common v15.8.
|
|
7836
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7916
7837
|
|
|
7917
7838
|
/*
|
|
7918
7839
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7970,7 +7891,7 @@ class AuthenticationHeaderParser {
|
|
|
7970
7891
|
}
|
|
7971
7892
|
}
|
|
7972
7893
|
|
|
7973
|
-
/*! @azure/msal-common v15.8.
|
|
7894
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7974
7895
|
|
|
7975
7896
|
/*
|
|
7976
7897
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8233,7 +8154,7 @@ class ServerTelemetryManager {
|
|
|
8233
8154
|
}
|
|
8234
8155
|
}
|
|
8235
8156
|
|
|
8236
|
-
/*! @azure/msal-common v15.8.
|
|
8157
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
8237
8158
|
/*
|
|
8238
8159
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8239
8160
|
* Licensed under the MIT License.
|
|
@@ -8241,7 +8162,7 @@ class ServerTelemetryManager {
|
|
|
8241
8162
|
const missingKidError = "missing_kid_error";
|
|
8242
8163
|
const missingAlgError = "missing_alg_error";
|
|
8243
8164
|
|
|
8244
|
-
/*! @azure/msal-common v15.8.
|
|
8165
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
8245
8166
|
|
|
8246
8167
|
/*
|
|
8247
8168
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8266,7 +8187,7 @@ function createJoseHeaderError(code) {
|
|
|
8266
8187
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
8267
8188
|
}
|
|
8268
8189
|
|
|
8269
|
-
/*! @azure/msal-common v15.8.
|
|
8190
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
8270
8191
|
|
|
8271
8192
|
/*
|
|
8272
8193
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8306,7 +8227,7 @@ class JoseHeader {
|
|
|
8306
8227
|
}
|
|
8307
8228
|
}
|
|
8308
8229
|
|
|
8309
|
-
/*! @azure/msal-common v15.8.
|
|
8230
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
8310
8231
|
|
|
8311
8232
|
/*
|
|
8312
8233
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -10410,7 +10331,7 @@ function buildConfiguration({ auth: userInputAuth, cache: userInputCache, system
|
|
|
10410
10331
|
|
|
10411
10332
|
/* eslint-disable header/header */
|
|
10412
10333
|
const name = "@azure/msal-browser";
|
|
10413
|
-
const version = "4.
|
|
10334
|
+
const version = "4.15.0";
|
|
10414
10335
|
|
|
10415
10336
|
/*
|
|
10416
10337
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|