@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
|
@@ -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.
|
|
@@ -132,16 +132,8 @@ const PromptValue = {
|
|
|
132
132
|
SELECT_ACCOUNT: "select_account",
|
|
133
133
|
CONSENT: "consent",
|
|
134
134
|
NONE: "none",
|
|
135
|
-
CREATE: "create",
|
|
136
135
|
NO_SESSION: "no_session",
|
|
137
136
|
};
|
|
138
|
-
/**
|
|
139
|
-
* allowed values for codeVerifier
|
|
140
|
-
*/
|
|
141
|
-
const CodeChallengeMethodValues = {
|
|
142
|
-
PLAIN: "plain",
|
|
143
|
-
S256: "S256",
|
|
144
|
-
};
|
|
145
137
|
/**
|
|
146
138
|
* Allowed values for response_type
|
|
147
139
|
*/
|
|
@@ -282,7 +274,7 @@ const JsonWebTokenTypes = {
|
|
|
282
274
|
// Token renewal offset default in seconds
|
|
283
275
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
284
276
|
|
|
285
|
-
/*! @azure/msal-common v15.8.
|
|
277
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
286
278
|
/*
|
|
287
279
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
288
280
|
* Licensed under the MIT License.
|
|
@@ -293,7 +285,7 @@ const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
|
293
285
|
const unexpectedError = "unexpected_error";
|
|
294
286
|
const postRequestFailed$1 = "post_request_failed";
|
|
295
287
|
|
|
296
|
-
/*! @azure/msal-common v15.8.
|
|
288
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
297
289
|
|
|
298
290
|
/*
|
|
299
291
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -328,7 +320,7 @@ function createAuthError(code, additionalMessage) {
|
|
|
328
320
|
: AuthErrorMessages[code]);
|
|
329
321
|
}
|
|
330
322
|
|
|
331
|
-
/*! @azure/msal-common v15.8.
|
|
323
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
332
324
|
/*
|
|
333
325
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
334
326
|
* Licensed under the MIT License.
|
|
@@ -378,7 +370,7 @@ const missingTenantIdError = "missing_tenant_id_error";
|
|
|
378
370
|
const methodNotImplemented = "method_not_implemented";
|
|
379
371
|
const nestedAppAuthBridgeDisabled = "nested_app_auth_bridge_disabled";
|
|
380
372
|
|
|
381
|
-
/*! @azure/msal-common v15.8.
|
|
373
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
382
374
|
|
|
383
375
|
/*
|
|
384
376
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -452,7 +444,7 @@ function createClientAuthError(errorCode, additionalMessage) {
|
|
|
452
444
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
453
445
|
}
|
|
454
446
|
|
|
455
|
-
/*! @azure/msal-common v15.8.
|
|
447
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
456
448
|
|
|
457
449
|
/*
|
|
458
450
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -491,7 +483,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
|
|
|
491
483
|
},
|
|
492
484
|
};
|
|
493
485
|
|
|
494
|
-
/*! @azure/msal-common v15.8.
|
|
486
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
495
487
|
|
|
496
488
|
/*
|
|
497
489
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -682,12 +674,12 @@ class Logger {
|
|
|
682
674
|
}
|
|
683
675
|
}
|
|
684
676
|
|
|
685
|
-
/*! @azure/msal-common v15.8.
|
|
677
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
686
678
|
/* eslint-disable header/header */
|
|
687
679
|
const name$1 = "@azure/msal-common";
|
|
688
|
-
const version$1 = "15.8.
|
|
680
|
+
const version$1 = "15.8.1";
|
|
689
681
|
|
|
690
|
-
/*! @azure/msal-common v15.8.
|
|
682
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
691
683
|
/*
|
|
692
684
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
693
685
|
* Licensed under the MIT License.
|
|
@@ -696,7 +688,7 @@ const AzureCloudInstance = {
|
|
|
696
688
|
// AzureCloudInstance is not specified.
|
|
697
689
|
None: "none"};
|
|
698
690
|
|
|
699
|
-
/*! @azure/msal-common v15.8.
|
|
691
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
700
692
|
|
|
701
693
|
/*
|
|
702
694
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -757,7 +749,7 @@ function checkMaxAge(authTime, maxAge) {
|
|
|
757
749
|
}
|
|
758
750
|
}
|
|
759
751
|
|
|
760
|
-
/*! @azure/msal-common v15.8.
|
|
752
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
761
753
|
/*
|
|
762
754
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
763
755
|
* Licensed under the MIT License.
|
|
@@ -812,7 +804,7 @@ function wasClockTurnedBack(cachedAt) {
|
|
|
812
804
|
return cachedAtSec > nowSeconds();
|
|
813
805
|
}
|
|
814
806
|
|
|
815
|
-
/*! @azure/msal-common v15.8.
|
|
807
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
816
808
|
|
|
817
809
|
/*
|
|
818
810
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1139,7 +1131,7 @@ function isAuthorityMetadataExpired(metadata) {
|
|
|
1139
1131
|
return metadata.expiresAt <= nowSeconds();
|
|
1140
1132
|
}
|
|
1141
1133
|
|
|
1142
|
-
/*! @azure/msal-common v15.8.
|
|
1134
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1143
1135
|
/*
|
|
1144
1136
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1145
1137
|
* Licensed under the MIT License.
|
|
@@ -1150,7 +1142,6 @@ const authorityUriInsecure = "authority_uri_insecure";
|
|
|
1150
1142
|
const urlParseError = "url_parse_error";
|
|
1151
1143
|
const urlEmptyError = "empty_url_error";
|
|
1152
1144
|
const emptyInputScopesError = "empty_input_scopes_error";
|
|
1153
|
-
const invalidPromptValue = "invalid_prompt_value";
|
|
1154
1145
|
const invalidClaims = "invalid_claims";
|
|
1155
1146
|
const tokenRequestEmpty = "token_request_empty";
|
|
1156
1147
|
const logoutRequestEmpty = "logout_request_empty";
|
|
@@ -1167,7 +1158,7 @@ const cannotSetOIDCOptions = "cannot_set_OIDCOptions";
|
|
|
1167
1158
|
const cannotAllowPlatformBroker = "cannot_allow_platform_broker";
|
|
1168
1159
|
const authorityMismatch = "authority_mismatch";
|
|
1169
1160
|
|
|
1170
|
-
/*! @azure/msal-common v15.8.
|
|
1161
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1171
1162
|
|
|
1172
1163
|
/*
|
|
1173
1164
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1180,7 +1171,6 @@ const ClientConfigurationErrorMessages = {
|
|
|
1180
1171
|
[urlParseError]: "URL could not be parsed into appropriate segments.",
|
|
1181
1172
|
[urlEmptyError]: "URL was empty or null.",
|
|
1182
1173
|
[emptyInputScopesError]: "Scopes cannot be passed as null, undefined or empty array because they are required to obtain an access token.",
|
|
1183
|
-
[invalidPromptValue]: "Please see here for valid configuration options: https://azuread.github.io/microsoft-authentication-library-for-js/ref/modules/_azure_msal_common.html#commonauthorizationurlrequest",
|
|
1184
1174
|
[invalidClaims]: "Given claims parameter must be a stringified JSON object.",
|
|
1185
1175
|
[tokenRequestEmpty]: "Token request was empty and not found in cache.",
|
|
1186
1176
|
[logoutRequestEmpty]: "The logout request was null or undefined.",
|
|
@@ -1211,7 +1201,7 @@ function createClientConfigurationError(errorCode) {
|
|
|
1211
1201
|
return new ClientConfigurationError(errorCode);
|
|
1212
1202
|
}
|
|
1213
1203
|
|
|
1214
|
-
/*! @azure/msal-common v15.8.
|
|
1204
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1215
1205
|
/*
|
|
1216
1206
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1217
1207
|
* Licensed under the MIT License.
|
|
@@ -1308,7 +1298,7 @@ class StringUtils {
|
|
|
1308
1298
|
}
|
|
1309
1299
|
}
|
|
1310
1300
|
|
|
1311
|
-
/*! @azure/msal-common v15.8.
|
|
1301
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1312
1302
|
|
|
1313
1303
|
/*
|
|
1314
1304
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1499,7 +1489,7 @@ class ScopeSet {
|
|
|
1499
1489
|
}
|
|
1500
1490
|
}
|
|
1501
1491
|
|
|
1502
|
-
/*! @azure/msal-common v15.8.
|
|
1492
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1503
1493
|
|
|
1504
1494
|
/*
|
|
1505
1495
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1539,7 +1529,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
|
|
|
1539
1529
|
};
|
|
1540
1530
|
}
|
|
1541
1531
|
|
|
1542
|
-
/*! @azure/msal-common v15.8.
|
|
1532
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1543
1533
|
/*
|
|
1544
1534
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1545
1535
|
* Licensed under the MIT License.
|
|
@@ -1618,7 +1608,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
|
|
|
1618
1608
|
return updatedAccountInfo;
|
|
1619
1609
|
}
|
|
1620
1610
|
|
|
1621
|
-
/*! @azure/msal-common v15.8.
|
|
1611
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1622
1612
|
/*
|
|
1623
1613
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1624
1614
|
* Licensed under the MIT License.
|
|
@@ -1633,7 +1623,7 @@ const AuthorityType = {
|
|
|
1633
1623
|
Ciam: 3,
|
|
1634
1624
|
};
|
|
1635
1625
|
|
|
1636
|
-
/*! @azure/msal-common v15.8.
|
|
1626
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1637
1627
|
/*
|
|
1638
1628
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1639
1629
|
* Licensed under the MIT License.
|
|
@@ -1655,7 +1645,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
|
|
|
1655
1645
|
return null;
|
|
1656
1646
|
}
|
|
1657
1647
|
|
|
1658
|
-
/*! @azure/msal-common v15.8.
|
|
1648
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1659
1649
|
/*
|
|
1660
1650
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1661
1651
|
* Licensed under the MIT License.
|
|
@@ -1679,7 +1669,7 @@ const ProtocolMode = {
|
|
|
1679
1669
|
EAR: "EAR",
|
|
1680
1670
|
};
|
|
1681
1671
|
|
|
1682
|
-
/*! @azure/msal-common v15.8.
|
|
1672
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1683
1673
|
|
|
1684
1674
|
/*
|
|
1685
1675
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1922,7 +1912,7 @@ class AccountEntity {
|
|
|
1922
1912
|
}
|
|
1923
1913
|
}
|
|
1924
1914
|
|
|
1925
|
-
/*! @azure/msal-common v15.8.
|
|
1915
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1926
1916
|
|
|
1927
1917
|
/*
|
|
1928
1918
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1987,7 +1977,7 @@ function mapToQueryString(parameters, encodeExtraParams = true, extraQueryParame
|
|
|
1987
1977
|
return queryParameterArray.join("&");
|
|
1988
1978
|
}
|
|
1989
1979
|
|
|
1990
|
-
/*! @azure/msal-common v15.8.
|
|
1980
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
1991
1981
|
|
|
1992
1982
|
/*
|
|
1993
1983
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2151,7 +2141,7 @@ class UrlString {
|
|
|
2151
2141
|
}
|
|
2152
2142
|
}
|
|
2153
2143
|
|
|
2154
|
-
/*! @azure/msal-common v15.8.
|
|
2144
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2155
2145
|
|
|
2156
2146
|
/*
|
|
2157
2147
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2290,7 +2280,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2290
2280
|
return null;
|
|
2291
2281
|
}
|
|
2292
2282
|
|
|
2293
|
-
/*! @azure/msal-common v15.8.
|
|
2283
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2294
2284
|
/*
|
|
2295
2285
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2296
2286
|
* Licensed under the MIT License.
|
|
@@ -2298,7 +2288,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2298
2288
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2299
2289
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2300
2290
|
|
|
2301
|
-
/*! @azure/msal-common v15.8.
|
|
2291
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2302
2292
|
|
|
2303
2293
|
/*
|
|
2304
2294
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2343,7 +2333,7 @@ function createCacheError(e) {
|
|
|
2343
2333
|
}
|
|
2344
2334
|
}
|
|
2345
2335
|
|
|
2346
|
-
/*! @azure/msal-common v15.8.
|
|
2336
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
2347
2337
|
|
|
2348
2338
|
/*
|
|
2349
2339
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3509,7 +3499,7 @@ class DefaultStorageClass extends CacheManager {
|
|
|
3509
3499
|
}
|
|
3510
3500
|
}
|
|
3511
3501
|
|
|
3512
|
-
/*! @azure/msal-common v15.8.
|
|
3502
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
3513
3503
|
/*
|
|
3514
3504
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3515
3505
|
* Licensed under the MIT License.
|
|
@@ -3776,7 +3766,7 @@ const PerformanceEvents = {
|
|
|
3776
3766
|
const PerformanceEventStatus = {
|
|
3777
3767
|
InProgress: 1};
|
|
3778
3768
|
|
|
3779
|
-
/*! @azure/msal-common v15.8.
|
|
3769
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
3780
3770
|
|
|
3781
3771
|
/*
|
|
3782
3772
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3855,7 +3845,7 @@ class StubPerformanceClient {
|
|
|
3855
3845
|
}
|
|
3856
3846
|
}
|
|
3857
3847
|
|
|
3858
|
-
/*! @azure/msal-common v15.8.
|
|
3848
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
3859
3849
|
|
|
3860
3850
|
/*
|
|
3861
3851
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3955,7 +3945,7 @@ function isOidcProtocolMode(config) {
|
|
|
3955
3945
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3956
3946
|
}
|
|
3957
3947
|
|
|
3958
|
-
/*! @azure/msal-common v15.8.
|
|
3948
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
3959
3949
|
/*
|
|
3960
3950
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3961
3951
|
* Licensed under the MIT License.
|
|
@@ -3965,7 +3955,7 @@ const CcsCredentialType = {
|
|
|
3965
3955
|
UPN: "UPN",
|
|
3966
3956
|
};
|
|
3967
3957
|
|
|
3968
|
-
/*! @azure/msal-common v15.8.
|
|
3958
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
3969
3959
|
/*
|
|
3970
3960
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3971
3961
|
* Licensed under the MIT License.
|
|
@@ -4015,7 +4005,7 @@ const INSTANCE_AWARE = "instance_aware";
|
|
|
4015
4005
|
const EAR_JWK = "ear_jwk";
|
|
4016
4006
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
4017
4007
|
|
|
4018
|
-
/*! @azure/msal-common v15.8.
|
|
4008
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4019
4009
|
|
|
4020
4010
|
/*
|
|
4021
4011
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4383,7 +4373,7 @@ function addEARParameters(parameters, jwk) {
|
|
|
4383
4373
|
parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
|
|
4384
4374
|
}
|
|
4385
4375
|
|
|
4386
|
-
/*! @azure/msal-common v15.8.
|
|
4376
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4387
4377
|
/*
|
|
4388
4378
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4389
4379
|
* Licensed under the MIT License.
|
|
@@ -4395,7 +4385,7 @@ function isOpenIdConfigResponse(response) {
|
|
|
4395
4385
|
response.hasOwnProperty("jwks_uri"));
|
|
4396
4386
|
}
|
|
4397
4387
|
|
|
4398
|
-
/*! @azure/msal-common v15.8.
|
|
4388
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4399
4389
|
/*
|
|
4400
4390
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4401
4391
|
* Licensed under the MIT License.
|
|
@@ -4405,7 +4395,7 @@ function isCloudInstanceDiscoveryResponse(response) {
|
|
|
4405
4395
|
response.hasOwnProperty("metadata"));
|
|
4406
4396
|
}
|
|
4407
4397
|
|
|
4408
|
-
/*! @azure/msal-common v15.8.
|
|
4398
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4409
4399
|
/*
|
|
4410
4400
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4411
4401
|
* Licensed under the MIT License.
|
|
@@ -4415,7 +4405,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
|
4415
4405
|
response.hasOwnProperty("error_description"));
|
|
4416
4406
|
}
|
|
4417
4407
|
|
|
4418
|
-
/*! @azure/msal-common v15.8.
|
|
4408
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4419
4409
|
/*
|
|
4420
4410
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4421
4411
|
* Licensed under the MIT License.
|
|
@@ -4511,7 +4501,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
4511
4501
|
};
|
|
4512
4502
|
};
|
|
4513
4503
|
|
|
4514
|
-
/*! @azure/msal-common v15.8.
|
|
4504
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4515
4505
|
|
|
4516
4506
|
/*
|
|
4517
4507
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4617,7 +4607,7 @@ RegionDiscovery.IMDS_OPTIONS = {
|
|
|
4617
4607
|
},
|
|
4618
4608
|
};
|
|
4619
4609
|
|
|
4620
|
-
/*! @azure/msal-common v15.8.
|
|
4610
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
4621
4611
|
|
|
4622
4612
|
/*
|
|
4623
4613
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5456,7 +5446,7 @@ function buildStaticAuthorityOptions(authOptions) {
|
|
|
5456
5446
|
};
|
|
5457
5447
|
}
|
|
5458
5448
|
|
|
5459
|
-
/*! @azure/msal-common v15.8.
|
|
5449
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5460
5450
|
|
|
5461
5451
|
/*
|
|
5462
5452
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5487,7 +5477,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
|
|
|
5487
5477
|
}
|
|
5488
5478
|
}
|
|
5489
5479
|
|
|
5490
|
-
/*! @azure/msal-common v15.8.
|
|
5480
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5491
5481
|
|
|
5492
5482
|
/*
|
|
5493
5483
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5506,7 +5496,7 @@ class ServerError extends AuthError {
|
|
|
5506
5496
|
}
|
|
5507
5497
|
}
|
|
5508
5498
|
|
|
5509
|
-
/*! @azure/msal-common v15.8.
|
|
5499
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5510
5500
|
/*
|
|
5511
5501
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5512
5502
|
* Licensed under the MIT License.
|
|
@@ -5527,7 +5517,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
|
5527
5517
|
};
|
|
5528
5518
|
}
|
|
5529
5519
|
|
|
5530
|
-
/*! @azure/msal-common v15.8.
|
|
5520
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5531
5521
|
|
|
5532
5522
|
/*
|
|
5533
5523
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5614,7 +5604,7 @@ class ThrottlingUtils {
|
|
|
5614
5604
|
}
|
|
5615
5605
|
}
|
|
5616
5606
|
|
|
5617
|
-
/*! @azure/msal-common v15.8.
|
|
5607
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5618
5608
|
|
|
5619
5609
|
/*
|
|
5620
5610
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5645,7 +5635,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
|
|
|
5645
5635
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
5646
5636
|
}
|
|
5647
5637
|
|
|
5648
|
-
/*! @azure/msal-common v15.8.
|
|
5638
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5649
5639
|
|
|
5650
5640
|
/*
|
|
5651
5641
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5793,7 +5783,7 @@ class BaseClient {
|
|
|
5793
5783
|
}
|
|
5794
5784
|
}
|
|
5795
5785
|
|
|
5796
|
-
/*! @azure/msal-common v15.8.
|
|
5786
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5797
5787
|
/*
|
|
5798
5788
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5799
5789
|
* Licensed under the MIT License.
|
|
@@ -5809,7 +5799,7 @@ const consentRequired = "consent_required";
|
|
|
5809
5799
|
const loginRequired = "login_required";
|
|
5810
5800
|
const badToken = "bad_token";
|
|
5811
5801
|
|
|
5812
|
-
/*! @azure/msal-common v15.8.
|
|
5802
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5813
5803
|
|
|
5814
5804
|
/*
|
|
5815
5805
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5881,7 +5871,7 @@ function createInteractionRequiredAuthError(errorCode) {
|
|
|
5881
5871
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
5882
5872
|
}
|
|
5883
5873
|
|
|
5884
|
-
/*! @azure/msal-common v15.8.
|
|
5874
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5885
5875
|
|
|
5886
5876
|
/*
|
|
5887
5877
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5953,7 +5943,7 @@ class ProtocolUtils {
|
|
|
5953
5943
|
}
|
|
5954
5944
|
}
|
|
5955
5945
|
|
|
5956
|
-
/*! @azure/msal-common v15.8.
|
|
5946
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
5957
5947
|
|
|
5958
5948
|
/*
|
|
5959
5949
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6035,7 +6025,7 @@ class PopTokenGenerator {
|
|
|
6035
6025
|
}
|
|
6036
6026
|
}
|
|
6037
6027
|
|
|
6038
|
-
/*! @azure/msal-common v15.8.
|
|
6028
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6039
6029
|
/*
|
|
6040
6030
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6041
6031
|
* Licensed under the MIT License.
|
|
@@ -6062,7 +6052,7 @@ class PopTokenGenerator {
|
|
|
6062
6052
|
}
|
|
6063
6053
|
}
|
|
6064
6054
|
|
|
6065
|
-
/*! @azure/msal-common v15.8.
|
|
6055
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6066
6056
|
|
|
6067
6057
|
/*
|
|
6068
6058
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6393,74 +6383,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
|
|
|
6393
6383
|
return baseAccount;
|
|
6394
6384
|
}
|
|
6395
6385
|
|
|
6396
|
-
/*! @azure/msal-common v15.8.
|
|
6397
|
-
|
|
6398
|
-
/*
|
|
6399
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6400
|
-
* Licensed under the MIT License.
|
|
6401
|
-
*/
|
|
6402
|
-
/**
|
|
6403
|
-
* Validates server consumable params from the "request" objects
|
|
6404
|
-
*/
|
|
6405
|
-
class RequestValidator {
|
|
6406
|
-
/**
|
|
6407
|
-
* Utility to check if the `redirectUri` in the request is a non-null value
|
|
6408
|
-
* @param redirectUri
|
|
6409
|
-
*/
|
|
6410
|
-
static validateRedirectUri(redirectUri) {
|
|
6411
|
-
if (!redirectUri) {
|
|
6412
|
-
throw createClientConfigurationError(redirectUriEmpty);
|
|
6413
|
-
}
|
|
6414
|
-
}
|
|
6415
|
-
/**
|
|
6416
|
-
* Utility to validate prompt sent by the user in the request
|
|
6417
|
-
* @param prompt
|
|
6418
|
-
*/
|
|
6419
|
-
static validatePrompt(prompt) {
|
|
6420
|
-
const promptValues = [];
|
|
6421
|
-
for (const value in PromptValue) {
|
|
6422
|
-
promptValues.push(PromptValue[value]);
|
|
6423
|
-
}
|
|
6424
|
-
if (promptValues.indexOf(prompt) < 0) {
|
|
6425
|
-
throw createClientConfigurationError(invalidPromptValue);
|
|
6426
|
-
}
|
|
6427
|
-
}
|
|
6428
|
-
static validateClaims(claims) {
|
|
6429
|
-
try {
|
|
6430
|
-
JSON.parse(claims);
|
|
6431
|
-
}
|
|
6432
|
-
catch (e) {
|
|
6433
|
-
throw createClientConfigurationError(invalidClaims);
|
|
6434
|
-
}
|
|
6435
|
-
}
|
|
6436
|
-
/**
|
|
6437
|
-
* Utility to validate code_challenge and code_challenge_method
|
|
6438
|
-
* @param codeChallenge
|
|
6439
|
-
* @param codeChallengeMethod
|
|
6440
|
-
*/
|
|
6441
|
-
static validateCodeChallengeParams(codeChallenge, codeChallengeMethod) {
|
|
6442
|
-
if (!codeChallenge || !codeChallengeMethod) {
|
|
6443
|
-
throw createClientConfigurationError(pkceParamsMissing);
|
|
6444
|
-
}
|
|
6445
|
-
else {
|
|
6446
|
-
this.validateCodeChallengeMethod(codeChallengeMethod);
|
|
6447
|
-
}
|
|
6448
|
-
}
|
|
6449
|
-
/**
|
|
6450
|
-
* Utility to validate code_challenge_method
|
|
6451
|
-
* @param codeChallengeMethod
|
|
6452
|
-
*/
|
|
6453
|
-
static validateCodeChallengeMethod(codeChallengeMethod) {
|
|
6454
|
-
if ([
|
|
6455
|
-
CodeChallengeMethodValues.PLAIN,
|
|
6456
|
-
CodeChallengeMethodValues.S256,
|
|
6457
|
-
].indexOf(codeChallengeMethod) < 0) {
|
|
6458
|
-
throw createClientConfigurationError(invalidCodeChallengeMethod);
|
|
6459
|
-
}
|
|
6460
|
-
}
|
|
6461
|
-
}
|
|
6462
|
-
|
|
6463
|
-
/*! @azure/msal-common v15.8.0 2025-07-01 */
|
|
6386
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6464
6387
|
/*
|
|
6465
6388
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6466
6389
|
* Licensed under the MIT License.
|
|
@@ -6478,7 +6401,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
|
|
|
6478
6401
|
}
|
|
6479
6402
|
}
|
|
6480
6403
|
|
|
6481
|
-
/*! @azure/msal-common v15.8.
|
|
6404
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6482
6405
|
|
|
6483
6406
|
/*
|
|
6484
6407
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6572,7 +6495,9 @@ class AuthorizationCodeClient extends BaseClient {
|
|
|
6572
6495
|
*/
|
|
6573
6496
|
if (!this.includeRedirectUri) {
|
|
6574
6497
|
// Just validate
|
|
6575
|
-
|
|
6498
|
+
if (!request.redirectUri) {
|
|
6499
|
+
throw createClientConfigurationError(redirectUriEmpty);
|
|
6500
|
+
}
|
|
6576
6501
|
}
|
|
6577
6502
|
else {
|
|
6578
6503
|
// Validate and include redirect uri
|
|
@@ -6711,7 +6636,7 @@ class AuthorizationCodeClient extends BaseClient {
|
|
|
6711
6636
|
}
|
|
6712
6637
|
}
|
|
6713
6638
|
|
|
6714
|
-
/*! @azure/msal-common v15.8.
|
|
6639
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6715
6640
|
|
|
6716
6641
|
/*
|
|
6717
6642
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6920,7 +6845,7 @@ class RefreshTokenClient extends BaseClient {
|
|
|
6920
6845
|
}
|
|
6921
6846
|
}
|
|
6922
6847
|
|
|
6923
|
-
/*! @azure/msal-common v15.8.
|
|
6848
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
6924
6849
|
|
|
6925
6850
|
/*
|
|
6926
6851
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7018,7 +6943,7 @@ class SilentFlowClient extends BaseClient {
|
|
|
7018
6943
|
}
|
|
7019
6944
|
}
|
|
7020
6945
|
|
|
7021
|
-
/*! @azure/msal-common v15.8.
|
|
6946
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7022
6947
|
|
|
7023
6948
|
/*
|
|
7024
6949
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7033,7 +6958,7 @@ const StubbedNetworkModule = {
|
|
|
7033
6958
|
},
|
|
7034
6959
|
};
|
|
7035
6960
|
|
|
7036
|
-
/*! @azure/msal-common v15.8.
|
|
6961
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7037
6962
|
|
|
7038
6963
|
/*
|
|
7039
6964
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7257,7 +7182,7 @@ function extractLoginHint(account) {
|
|
|
7257
7182
|
return account.idTokenClaims?.login_hint || null;
|
|
7258
7183
|
}
|
|
7259
7184
|
|
|
7260
|
-
/*! @azure/msal-common v15.8.
|
|
7185
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7261
7186
|
|
|
7262
7187
|
/*
|
|
7263
7188
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7520,7 +7445,7 @@ class ServerTelemetryManager {
|
|
|
7520
7445
|
}
|
|
7521
7446
|
}
|
|
7522
7447
|
|
|
7523
|
-
/*! @azure/msal-common v15.8.
|
|
7448
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7524
7449
|
/*
|
|
7525
7450
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7526
7451
|
* Licensed under the MIT License.
|
|
@@ -7528,7 +7453,7 @@ class ServerTelemetryManager {
|
|
|
7528
7453
|
const missingKidError = "missing_kid_error";
|
|
7529
7454
|
const missingAlgError = "missing_alg_error";
|
|
7530
7455
|
|
|
7531
|
-
/*! @azure/msal-common v15.8.
|
|
7456
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7532
7457
|
|
|
7533
7458
|
/*
|
|
7534
7459
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7553,7 +7478,7 @@ function createJoseHeaderError(code) {
|
|
|
7553
7478
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
7554
7479
|
}
|
|
7555
7480
|
|
|
7556
|
-
/*! @azure/msal-common v15.8.
|
|
7481
|
+
/*! @azure/msal-common v15.8.1 2025-07-08 */
|
|
7557
7482
|
|
|
7558
7483
|
/*
|
|
7559
7484
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7926,7 +7851,7 @@ function ensureArgumentIsNotEmptyString(argName, argValue, correlationId) {
|
|
|
7926
7851
|
|
|
7927
7852
|
/* eslint-disable header/header */
|
|
7928
7853
|
const name = "@azure/msal-browser";
|
|
7929
|
-
const version = "4.
|
|
7854
|
+
const version = "4.15.0";
|
|
7930
7855
|
|
|
7931
7856
|
/*
|
|
7932
7857
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|