@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.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v4.
|
|
1
|
+
/*! @azure/msal-browser v4.15.0 2025-07-08 */
|
|
2
2
|
'use strict';
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msal = {}));
|
|
7
7
|
})(this, (function (exports) { 'use strict';
|
|
8
8
|
|
|
9
|
-
/*! @azure/msal-common v15.8.
|
|
9
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
10
10
|
/*
|
|
11
11
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
12
12
|
* Licensed under the MIT License.
|
|
@@ -139,13 +139,6 @@
|
|
|
139
139
|
CREATE: "create",
|
|
140
140
|
NO_SESSION: "no_session",
|
|
141
141
|
};
|
|
142
|
-
/**
|
|
143
|
-
* allowed values for codeVerifier
|
|
144
|
-
*/
|
|
145
|
-
const CodeChallengeMethodValues = {
|
|
146
|
-
PLAIN: "plain",
|
|
147
|
-
S256: "S256",
|
|
148
|
-
};
|
|
149
142
|
/**
|
|
150
143
|
* Allowed values for response_type
|
|
151
144
|
*/
|
|
@@ -288,7 +281,7 @@
|
|
|
288
281
|
// Token renewal offset default in seconds
|
|
289
282
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
290
283
|
|
|
291
|
-
/*! @azure/msal-common v15.8.
|
|
284
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
292
285
|
/*
|
|
293
286
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
294
287
|
* Licensed under the MIT License.
|
|
@@ -305,7 +298,7 @@
|
|
|
305
298
|
unexpectedError: unexpectedError
|
|
306
299
|
});
|
|
307
300
|
|
|
308
|
-
/*! @azure/msal-common v15.8.
|
|
301
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
309
302
|
|
|
310
303
|
/*
|
|
311
304
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -354,7 +347,7 @@
|
|
|
354
347
|
: AuthErrorMessages[code]);
|
|
355
348
|
}
|
|
356
349
|
|
|
357
|
-
/*! @azure/msal-common v15.8.
|
|
350
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
358
351
|
/*
|
|
359
352
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
360
353
|
* Licensed under the MIT License.
|
|
@@ -452,7 +445,7 @@
|
|
|
452
445
|
userTimeoutReached: userTimeoutReached
|
|
453
446
|
});
|
|
454
447
|
|
|
455
|
-
/*! @azure/msal-common v15.8.
|
|
448
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
456
449
|
|
|
457
450
|
/*
|
|
458
451
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -704,7 +697,7 @@
|
|
|
704
697
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
705
698
|
}
|
|
706
699
|
|
|
707
|
-
/*! @azure/msal-common v15.8.
|
|
700
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
708
701
|
|
|
709
702
|
/*
|
|
710
703
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -743,7 +736,7 @@
|
|
|
743
736
|
},
|
|
744
737
|
};
|
|
745
738
|
|
|
746
|
-
/*! @azure/msal-common v15.8.
|
|
739
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
747
740
|
|
|
748
741
|
/*
|
|
749
742
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -934,12 +927,12 @@
|
|
|
934
927
|
}
|
|
935
928
|
}
|
|
936
929
|
|
|
937
|
-
/*! @azure/msal-common v15.8.
|
|
930
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
938
931
|
/* eslint-disable header/header */
|
|
939
932
|
const name$1 = "@azure/msal-common";
|
|
940
|
-
const version$1 = "15.8.
|
|
933
|
+
const version$1 = "15.8.1";
|
|
941
934
|
|
|
942
|
-
/*! @azure/msal-common v15.8.
|
|
935
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
943
936
|
/*
|
|
944
937
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
945
938
|
* Licensed under the MIT License.
|
|
@@ -959,7 +952,7 @@
|
|
|
959
952
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
960
953
|
};
|
|
961
954
|
|
|
962
|
-
/*! @azure/msal-common v15.8.
|
|
955
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
963
956
|
|
|
964
957
|
/*
|
|
965
958
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1020,7 +1013,7 @@
|
|
|
1020
1013
|
}
|
|
1021
1014
|
}
|
|
1022
1015
|
|
|
1023
|
-
/*! @azure/msal-common v15.8.
|
|
1016
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1024
1017
|
/*
|
|
1025
1018
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1026
1019
|
* Licensed under the MIT License.
|
|
@@ -1075,7 +1068,7 @@
|
|
|
1075
1068
|
return cachedAtSec > nowSeconds();
|
|
1076
1069
|
}
|
|
1077
1070
|
|
|
1078
|
-
/*! @azure/msal-common v15.8.
|
|
1071
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1079
1072
|
|
|
1080
1073
|
/*
|
|
1081
1074
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1402,7 +1395,7 @@
|
|
|
1402
1395
|
return metadata.expiresAt <= nowSeconds();
|
|
1403
1396
|
}
|
|
1404
1397
|
|
|
1405
|
-
/*! @azure/msal-common v15.8.
|
|
1398
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1406
1399
|
/*
|
|
1407
1400
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1408
1401
|
* Licensed under the MIT License.
|
|
@@ -1413,7 +1406,6 @@
|
|
|
1413
1406
|
const urlParseError = "url_parse_error";
|
|
1414
1407
|
const urlEmptyError = "empty_url_error";
|
|
1415
1408
|
const emptyInputScopesError = "empty_input_scopes_error";
|
|
1416
|
-
const invalidPromptValue = "invalid_prompt_value";
|
|
1417
1409
|
const invalidClaims = "invalid_claims";
|
|
1418
1410
|
const tokenRequestEmpty = "token_request_empty";
|
|
1419
1411
|
const logoutRequestEmpty = "logout_request_empty";
|
|
@@ -1443,7 +1435,6 @@
|
|
|
1443
1435
|
invalidClaims: invalidClaims,
|
|
1444
1436
|
invalidCloudDiscoveryMetadata: invalidCloudDiscoveryMetadata,
|
|
1445
1437
|
invalidCodeChallengeMethod: invalidCodeChallengeMethod,
|
|
1446
|
-
invalidPromptValue: invalidPromptValue,
|
|
1447
1438
|
logoutRequestEmpty: logoutRequestEmpty,
|
|
1448
1439
|
missingNonceAuthenticationHeader: missingNonceAuthenticationHeader,
|
|
1449
1440
|
missingSshJwk: missingSshJwk,
|
|
@@ -1456,7 +1447,7 @@
|
|
|
1456
1447
|
urlParseError: urlParseError
|
|
1457
1448
|
});
|
|
1458
1449
|
|
|
1459
|
-
/*! @azure/msal-common v15.8.
|
|
1450
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1460
1451
|
|
|
1461
1452
|
/*
|
|
1462
1453
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1469,7 +1460,6 @@
|
|
|
1469
1460
|
[urlParseError]: "URL could not be parsed into appropriate segments.",
|
|
1470
1461
|
[urlEmptyError]: "URL was empty or null.",
|
|
1471
1462
|
[emptyInputScopesError]: "Scopes cannot be passed as null, undefined or empty array because they are required to obtain an access token.",
|
|
1472
|
-
[invalidPromptValue]: "Please see here for valid configuration options: https://azuread.github.io/microsoft-authentication-library-for-js/ref/modules/_azure_msal_common.html#commonauthorizationurlrequest",
|
|
1473
1463
|
[invalidClaims]: "Given claims parameter must be a stringified JSON object.",
|
|
1474
1464
|
[tokenRequestEmpty]: "Token request was empty and not found in cache.",
|
|
1475
1465
|
[logoutRequestEmpty]: "The logout request was null or undefined.",
|
|
@@ -1515,10 +1505,6 @@
|
|
|
1515
1505
|
code: emptyInputScopesError,
|
|
1516
1506
|
desc: ClientConfigurationErrorMessages[emptyInputScopesError],
|
|
1517
1507
|
},
|
|
1518
|
-
invalidPrompt: {
|
|
1519
|
-
code: invalidPromptValue,
|
|
1520
|
-
desc: ClientConfigurationErrorMessages[invalidPromptValue],
|
|
1521
|
-
},
|
|
1522
1508
|
invalidClaimsRequest: {
|
|
1523
1509
|
code: invalidClaims,
|
|
1524
1510
|
desc: ClientConfigurationErrorMessages[invalidClaims],
|
|
@@ -1594,7 +1580,7 @@
|
|
|
1594
1580
|
return new ClientConfigurationError(errorCode);
|
|
1595
1581
|
}
|
|
1596
1582
|
|
|
1597
|
-
/*! @azure/msal-common v15.8.
|
|
1583
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1598
1584
|
/*
|
|
1599
1585
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1600
1586
|
* Licensed under the MIT License.
|
|
@@ -1691,7 +1677,7 @@
|
|
|
1691
1677
|
}
|
|
1692
1678
|
}
|
|
1693
1679
|
|
|
1694
|
-
/*! @azure/msal-common v15.8.
|
|
1680
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1695
1681
|
|
|
1696
1682
|
/*
|
|
1697
1683
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1882,7 +1868,7 @@
|
|
|
1882
1868
|
}
|
|
1883
1869
|
}
|
|
1884
1870
|
|
|
1885
|
-
/*! @azure/msal-common v15.8.
|
|
1871
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1886
1872
|
|
|
1887
1873
|
/*
|
|
1888
1874
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1922,7 +1908,7 @@
|
|
|
1922
1908
|
};
|
|
1923
1909
|
}
|
|
1924
1910
|
|
|
1925
|
-
/*! @azure/msal-common v15.8.
|
|
1911
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1926
1912
|
/*
|
|
1927
1913
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1928
1914
|
* Licensed under the MIT License.
|
|
@@ -2001,7 +1987,7 @@
|
|
|
2001
1987
|
return updatedAccountInfo;
|
|
2002
1988
|
}
|
|
2003
1989
|
|
|
2004
|
-
/*! @azure/msal-common v15.8.
|
|
1990
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2005
1991
|
/*
|
|
2006
1992
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2007
1993
|
* Licensed under the MIT License.
|
|
@@ -2016,7 +2002,7 @@
|
|
|
2016
2002
|
Ciam: 3,
|
|
2017
2003
|
};
|
|
2018
2004
|
|
|
2019
|
-
/*! @azure/msal-common v15.8.
|
|
2005
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2020
2006
|
/*
|
|
2021
2007
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2022
2008
|
* Licensed under the MIT License.
|
|
@@ -2038,7 +2024,7 @@
|
|
|
2038
2024
|
return null;
|
|
2039
2025
|
}
|
|
2040
2026
|
|
|
2041
|
-
/*! @azure/msal-common v15.8.
|
|
2027
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2042
2028
|
/*
|
|
2043
2029
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2044
2030
|
* Licensed under the MIT License.
|
|
@@ -2062,7 +2048,7 @@
|
|
|
2062
2048
|
EAR: "EAR",
|
|
2063
2049
|
};
|
|
2064
2050
|
|
|
2065
|
-
/*! @azure/msal-common v15.8.
|
|
2051
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2066
2052
|
|
|
2067
2053
|
/*
|
|
2068
2054
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2305,7 +2291,7 @@
|
|
|
2305
2291
|
}
|
|
2306
2292
|
}
|
|
2307
2293
|
|
|
2308
|
-
/*! @azure/msal-common v15.8.
|
|
2294
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2309
2295
|
|
|
2310
2296
|
/*
|
|
2311
2297
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2370,7 +2356,7 @@
|
|
|
2370
2356
|
return queryParameterArray.join("&");
|
|
2371
2357
|
}
|
|
2372
2358
|
|
|
2373
|
-
/*! @azure/msal-common v15.8.
|
|
2359
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2374
2360
|
|
|
2375
2361
|
/*
|
|
2376
2362
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2534,7 +2520,7 @@
|
|
|
2534
2520
|
}
|
|
2535
2521
|
}
|
|
2536
2522
|
|
|
2537
|
-
/*! @azure/msal-common v15.8.
|
|
2523
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2538
2524
|
|
|
2539
2525
|
/*
|
|
2540
2526
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2673,7 +2659,7 @@
|
|
|
2673
2659
|
return null;
|
|
2674
2660
|
}
|
|
2675
2661
|
|
|
2676
|
-
/*! @azure/msal-common v15.8.
|
|
2662
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2677
2663
|
/*
|
|
2678
2664
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2679
2665
|
* Licensed under the MIT License.
|
|
@@ -2681,7 +2667,7 @@
|
|
|
2681
2667
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2682
2668
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2683
2669
|
|
|
2684
|
-
/*! @azure/msal-common v15.8.
|
|
2670
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2685
2671
|
|
|
2686
2672
|
/*
|
|
2687
2673
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2726,7 +2712,7 @@
|
|
|
2726
2712
|
}
|
|
2727
2713
|
}
|
|
2728
2714
|
|
|
2729
|
-
/*! @azure/msal-common v15.8.
|
|
2715
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2730
2716
|
|
|
2731
2717
|
/*
|
|
2732
2718
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3893,7 +3879,7 @@
|
|
|
3893
3879
|
}
|
|
3894
3880
|
}
|
|
3895
3881
|
|
|
3896
|
-
/*! @azure/msal-common v15.8.
|
|
3882
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
3897
3883
|
/*
|
|
3898
3884
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3899
3885
|
* Licensed under the MIT License.
|
|
@@ -4405,7 +4391,7 @@
|
|
|
4405
4391
|
"encryptedCacheExpiredCount",
|
|
4406
4392
|
]);
|
|
4407
4393
|
|
|
4408
|
-
/*! @azure/msal-common v15.8.
|
|
4394
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4409
4395
|
|
|
4410
4396
|
/*
|
|
4411
4397
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4484,7 +4470,7 @@
|
|
|
4484
4470
|
}
|
|
4485
4471
|
}
|
|
4486
4472
|
|
|
4487
|
-
/*! @azure/msal-common v15.8.
|
|
4473
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4488
4474
|
|
|
4489
4475
|
/*
|
|
4490
4476
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4584,7 +4570,7 @@
|
|
|
4584
4570
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
4585
4571
|
}
|
|
4586
4572
|
|
|
4587
|
-
/*! @azure/msal-common v15.8.
|
|
4573
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4588
4574
|
/*
|
|
4589
4575
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4590
4576
|
* Licensed under the MIT License.
|
|
@@ -4594,7 +4580,7 @@
|
|
|
4594
4580
|
UPN: "UPN",
|
|
4595
4581
|
};
|
|
4596
4582
|
|
|
4597
|
-
/*! @azure/msal-common v15.8.
|
|
4583
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4598
4584
|
/*
|
|
4599
4585
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4600
4586
|
* Licensed under the MIT License.
|
|
@@ -4644,7 +4630,7 @@
|
|
|
4644
4630
|
const EAR_JWK = "ear_jwk";
|
|
4645
4631
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
4646
4632
|
|
|
4647
|
-
/*! @azure/msal-common v15.8.
|
|
4633
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4648
4634
|
|
|
4649
4635
|
/*
|
|
4650
4636
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5012,7 +4998,7 @@
|
|
|
5012
4998
|
parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
|
|
5013
4999
|
}
|
|
5014
5000
|
|
|
5015
|
-
/*! @azure/msal-common v15.8.
|
|
5001
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5016
5002
|
/*
|
|
5017
5003
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5018
5004
|
* Licensed under the MIT License.
|
|
@@ -5024,7 +5010,7 @@
|
|
|
5024
5010
|
response.hasOwnProperty("jwks_uri"));
|
|
5025
5011
|
}
|
|
5026
5012
|
|
|
5027
|
-
/*! @azure/msal-common v15.8.
|
|
5013
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5028
5014
|
/*
|
|
5029
5015
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5030
5016
|
* Licensed under the MIT License.
|
|
@@ -5034,7 +5020,7 @@
|
|
|
5034
5020
|
response.hasOwnProperty("metadata"));
|
|
5035
5021
|
}
|
|
5036
5022
|
|
|
5037
|
-
/*! @azure/msal-common v15.8.
|
|
5023
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5038
5024
|
/*
|
|
5039
5025
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5040
5026
|
* Licensed under the MIT License.
|
|
@@ -5044,7 +5030,7 @@
|
|
|
5044
5030
|
response.hasOwnProperty("error_description"));
|
|
5045
5031
|
}
|
|
5046
5032
|
|
|
5047
|
-
/*! @azure/msal-common v15.8.
|
|
5033
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5048
5034
|
/*
|
|
5049
5035
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5050
5036
|
* Licensed under the MIT License.
|
|
@@ -5140,7 +5126,7 @@
|
|
|
5140
5126
|
};
|
|
5141
5127
|
};
|
|
5142
5128
|
|
|
5143
|
-
/*! @azure/msal-common v15.8.
|
|
5129
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5144
5130
|
|
|
5145
5131
|
/*
|
|
5146
5132
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5246,7 +5232,7 @@
|
|
|
5246
5232
|
},
|
|
5247
5233
|
};
|
|
5248
5234
|
|
|
5249
|
-
/*! @azure/msal-common v15.8.
|
|
5235
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5250
5236
|
|
|
5251
5237
|
/*
|
|
5252
5238
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6085,7 +6071,7 @@
|
|
|
6085
6071
|
};
|
|
6086
6072
|
}
|
|
6087
6073
|
|
|
6088
|
-
/*! @azure/msal-common v15.8.
|
|
6074
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6089
6075
|
|
|
6090
6076
|
/*
|
|
6091
6077
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6116,7 +6102,7 @@
|
|
|
6116
6102
|
}
|
|
6117
6103
|
}
|
|
6118
6104
|
|
|
6119
|
-
/*! @azure/msal-common v15.8.
|
|
6105
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6120
6106
|
|
|
6121
6107
|
/*
|
|
6122
6108
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6135,7 +6121,7 @@
|
|
|
6135
6121
|
}
|
|
6136
6122
|
}
|
|
6137
6123
|
|
|
6138
|
-
/*! @azure/msal-common v15.8.
|
|
6124
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6139
6125
|
/*
|
|
6140
6126
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6141
6127
|
* Licensed under the MIT License.
|
|
@@ -6156,7 +6142,7 @@
|
|
|
6156
6142
|
};
|
|
6157
6143
|
}
|
|
6158
6144
|
|
|
6159
|
-
/*! @azure/msal-common v15.8.
|
|
6145
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6160
6146
|
|
|
6161
6147
|
/*
|
|
6162
6148
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6243,7 +6229,7 @@
|
|
|
6243
6229
|
}
|
|
6244
6230
|
}
|
|
6245
6231
|
|
|
6246
|
-
/*! @azure/msal-common v15.8.
|
|
6232
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6247
6233
|
|
|
6248
6234
|
/*
|
|
6249
6235
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6274,7 +6260,7 @@
|
|
|
6274
6260
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
6275
6261
|
}
|
|
6276
6262
|
|
|
6277
|
-
/*! @azure/msal-common v15.8.
|
|
6263
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6278
6264
|
|
|
6279
6265
|
/*
|
|
6280
6266
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6422,7 +6408,7 @@
|
|
|
6422
6408
|
}
|
|
6423
6409
|
}
|
|
6424
6410
|
|
|
6425
|
-
/*! @azure/msal-common v15.8.
|
|
6411
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6426
6412
|
/*
|
|
6427
6413
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6428
6414
|
* Licensed under the MIT License.
|
|
@@ -6450,7 +6436,7 @@
|
|
|
6450
6436
|
uxNotAllowed: uxNotAllowed
|
|
6451
6437
|
});
|
|
6452
6438
|
|
|
6453
|
-
/*! @azure/msal-common v15.8.
|
|
6439
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6454
6440
|
|
|
6455
6441
|
/*
|
|
6456
6442
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6540,7 +6526,7 @@
|
|
|
6540
6526
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
6541
6527
|
}
|
|
6542
6528
|
|
|
6543
|
-
/*! @azure/msal-common v15.8.
|
|
6529
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6544
6530
|
|
|
6545
6531
|
/*
|
|
6546
6532
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6612,7 +6598,7 @@
|
|
|
6612
6598
|
}
|
|
6613
6599
|
}
|
|
6614
6600
|
|
|
6615
|
-
/*! @azure/msal-common v15.8.
|
|
6601
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6616
6602
|
|
|
6617
6603
|
/*
|
|
6618
6604
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6694,7 +6680,7 @@
|
|
|
6694
6680
|
}
|
|
6695
6681
|
}
|
|
6696
6682
|
|
|
6697
|
-
/*! @azure/msal-common v15.8.
|
|
6683
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6698
6684
|
/*
|
|
6699
6685
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6700
6686
|
* Licensed under the MIT License.
|
|
@@ -6721,7 +6707,7 @@
|
|
|
6721
6707
|
}
|
|
6722
6708
|
}
|
|
6723
6709
|
|
|
6724
|
-
/*! @azure/msal-common v15.8.
|
|
6710
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6725
6711
|
|
|
6726
6712
|
/*
|
|
6727
6713
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7052,74 +7038,7 @@
|
|
|
7052
7038
|
return baseAccount;
|
|
7053
7039
|
}
|
|
7054
7040
|
|
|
7055
|
-
/*! @azure/msal-common v15.8.
|
|
7056
|
-
|
|
7057
|
-
/*
|
|
7058
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7059
|
-
* Licensed under the MIT License.
|
|
7060
|
-
*/
|
|
7061
|
-
/**
|
|
7062
|
-
* Validates server consumable params from the "request" objects
|
|
7063
|
-
*/
|
|
7064
|
-
class RequestValidator {
|
|
7065
|
-
/**
|
|
7066
|
-
* Utility to check if the `redirectUri` in the request is a non-null value
|
|
7067
|
-
* @param redirectUri
|
|
7068
|
-
*/
|
|
7069
|
-
static validateRedirectUri(redirectUri) {
|
|
7070
|
-
if (!redirectUri) {
|
|
7071
|
-
throw createClientConfigurationError(redirectUriEmpty);
|
|
7072
|
-
}
|
|
7073
|
-
}
|
|
7074
|
-
/**
|
|
7075
|
-
* Utility to validate prompt sent by the user in the request
|
|
7076
|
-
* @param prompt
|
|
7077
|
-
*/
|
|
7078
|
-
static validatePrompt(prompt) {
|
|
7079
|
-
const promptValues = [];
|
|
7080
|
-
for (const value in PromptValue) {
|
|
7081
|
-
promptValues.push(PromptValue[value]);
|
|
7082
|
-
}
|
|
7083
|
-
if (promptValues.indexOf(prompt) < 0) {
|
|
7084
|
-
throw createClientConfigurationError(invalidPromptValue);
|
|
7085
|
-
}
|
|
7086
|
-
}
|
|
7087
|
-
static validateClaims(claims) {
|
|
7088
|
-
try {
|
|
7089
|
-
JSON.parse(claims);
|
|
7090
|
-
}
|
|
7091
|
-
catch (e) {
|
|
7092
|
-
throw createClientConfigurationError(invalidClaims);
|
|
7093
|
-
}
|
|
7094
|
-
}
|
|
7095
|
-
/**
|
|
7096
|
-
* Utility to validate code_challenge and code_challenge_method
|
|
7097
|
-
* @param codeChallenge
|
|
7098
|
-
* @param codeChallengeMethod
|
|
7099
|
-
*/
|
|
7100
|
-
static validateCodeChallengeParams(codeChallenge, codeChallengeMethod) {
|
|
7101
|
-
if (!codeChallenge || !codeChallengeMethod) {
|
|
7102
|
-
throw createClientConfigurationError(pkceParamsMissing);
|
|
7103
|
-
}
|
|
7104
|
-
else {
|
|
7105
|
-
this.validateCodeChallengeMethod(codeChallengeMethod);
|
|
7106
|
-
}
|
|
7107
|
-
}
|
|
7108
|
-
/**
|
|
7109
|
-
* Utility to validate code_challenge_method
|
|
7110
|
-
* @param codeChallengeMethod
|
|
7111
|
-
*/
|
|
7112
|
-
static validateCodeChallengeMethod(codeChallengeMethod) {
|
|
7113
|
-
if ([
|
|
7114
|
-
CodeChallengeMethodValues.PLAIN,
|
|
7115
|
-
CodeChallengeMethodValues.S256,
|
|
7116
|
-
].indexOf(codeChallengeMethod) < 0) {
|
|
7117
|
-
throw createClientConfigurationError(invalidCodeChallengeMethod);
|
|
7118
|
-
}
|
|
7119
|
-
}
|
|
7120
|
-
}
|
|
7121
|
-
|
|
7122
|
-
/*! @azure/msal-common v15.8.0 2025-07-01 */
|
|
7041
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7123
7042
|
/*
|
|
7124
7043
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7125
7044
|
* Licensed under the MIT License.
|
|
@@ -7137,7 +7056,7 @@
|
|
|
7137
7056
|
}
|
|
7138
7057
|
}
|
|
7139
7058
|
|
|
7140
|
-
/*! @azure/msal-common v15.8.
|
|
7059
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7141
7060
|
|
|
7142
7061
|
/*
|
|
7143
7062
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7231,7 +7150,9 @@
|
|
|
7231
7150
|
*/
|
|
7232
7151
|
if (!this.includeRedirectUri) {
|
|
7233
7152
|
// Just validate
|
|
7234
|
-
|
|
7153
|
+
if (!request.redirectUri) {
|
|
7154
|
+
throw createClientConfigurationError(redirectUriEmpty);
|
|
7155
|
+
}
|
|
7235
7156
|
}
|
|
7236
7157
|
else {
|
|
7237
7158
|
// Validate and include redirect uri
|
|
@@ -7370,7 +7291,7 @@
|
|
|
7370
7291
|
}
|
|
7371
7292
|
}
|
|
7372
7293
|
|
|
7373
|
-
/*! @azure/msal-common v15.8.
|
|
7294
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7374
7295
|
|
|
7375
7296
|
/*
|
|
7376
7297
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7579,7 +7500,7 @@
|
|
|
7579
7500
|
}
|
|
7580
7501
|
}
|
|
7581
7502
|
|
|
7582
|
-
/*! @azure/msal-common v15.8.
|
|
7503
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7583
7504
|
|
|
7584
7505
|
/*
|
|
7585
7506
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7677,7 +7598,7 @@
|
|
|
7677
7598
|
}
|
|
7678
7599
|
}
|
|
7679
7600
|
|
|
7680
|
-
/*! @azure/msal-common v15.8.
|
|
7601
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7681
7602
|
|
|
7682
7603
|
/*
|
|
7683
7604
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7692,7 +7613,7 @@
|
|
|
7692
7613
|
},
|
|
7693
7614
|
};
|
|
7694
7615
|
|
|
7695
|
-
/*! @azure/msal-common v15.8.
|
|
7616
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7696
7617
|
|
|
7697
7618
|
/*
|
|
7698
7619
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7916,7 +7837,7 @@
|
|
|
7916
7837
|
return account.idTokenClaims?.login_hint || null;
|
|
7917
7838
|
}
|
|
7918
7839
|
|
|
7919
|
-
/*! @azure/msal-common v15.8.
|
|
7840
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7920
7841
|
|
|
7921
7842
|
/*
|
|
7922
7843
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7974,7 +7895,7 @@
|
|
|
7974
7895
|
}
|
|
7975
7896
|
}
|
|
7976
7897
|
|
|
7977
|
-
/*! @azure/msal-common v15.8.
|
|
7898
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7978
7899
|
|
|
7979
7900
|
/*
|
|
7980
7901
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8237,7 +8158,7 @@
|
|
|
8237
8158
|
}
|
|
8238
8159
|
}
|
|
8239
8160
|
|
|
8240
|
-
/*! @azure/msal-common v15.8.
|
|
8161
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
8241
8162
|
/*
|
|
8242
8163
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8243
8164
|
* Licensed under the MIT License.
|
|
@@ -8245,7 +8166,7 @@
|
|
|
8245
8166
|
const missingKidError = "missing_kid_error";
|
|
8246
8167
|
const missingAlgError = "missing_alg_error";
|
|
8247
8168
|
|
|
8248
|
-
/*! @azure/msal-common v15.8.
|
|
8169
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
8249
8170
|
|
|
8250
8171
|
/*
|
|
8251
8172
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8270,7 +8191,7 @@
|
|
|
8270
8191
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
8271
8192
|
}
|
|
8272
8193
|
|
|
8273
|
-
/*! @azure/msal-common v15.8.
|
|
8194
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
8274
8195
|
|
|
8275
8196
|
/*
|
|
8276
8197
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8310,7 +8231,7 @@
|
|
|
8310
8231
|
}
|
|
8311
8232
|
}
|
|
8312
8233
|
|
|
8313
|
-
/*! @azure/msal-common v15.8.
|
|
8234
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
8314
8235
|
|
|
8315
8236
|
/*
|
|
8316
8237
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -10414,7 +10335,7 @@
|
|
|
10414
10335
|
|
|
10415
10336
|
/* eslint-disable header/header */
|
|
10416
10337
|
const name = "@azure/msal-browser";
|
|
10417
|
-
const version = "4.
|
|
10338
|
+
const version = "4.15.0";
|
|
10418
10339
|
|
|
10419
10340
|
/*
|
|
10420
10341
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|