@azure/msal-browser 5.2.0 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/IPublicClientApplication.mjs +1 -1
- package/dist/app/PublicClientApplication.mjs +1 -1
- package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
- package/dist/cache/AccountManager.mjs +1 -1
- package/dist/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/cache/BrowserCacheManager.mjs +1 -1
- package/dist/cache/CacheHelpers.mjs +1 -1
- package/dist/cache/CacheKeys.mjs +1 -1
- package/dist/cache/CookieStorage.mjs +1 -1
- package/dist/cache/DatabaseStorage.mjs +1 -1
- package/dist/cache/EncryptedData.mjs +1 -1
- package/dist/cache/LocalStorage.mjs +1 -1
- package/dist/cache/MemoryStorage.mjs +1 -1
- package/dist/cache/SessionStorage.mjs +1 -1
- package/dist/cache/TokenCache.mjs +1 -1
- package/dist/config/Configuration.mjs +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.d.ts.map +1 -1
- package/dist/controllers/StandardController.mjs +5 -1
- package/dist/controllers/StandardController.mjs.map +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/CacheKeys.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/EncryptedData.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/config/Configuration.mjs +1 -1
- package/dist/custom-auth-path/controllers/StandardController.d.ts.map +1 -1
- package/dist/custom-auth-path/controllers/StandardController.mjs +5 -1
- package/dist/custom-auth-path/controllers/StandardController.mjs.map +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/auth_flow/AuthFlowStateTypes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.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/interaction_client/jit/JitClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.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/RegisterApiClient.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/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/log-strings-mapping.json +2 -2
- 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/telemetry/BrowserPerformanceEvents.mjs +1 -1
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.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/Helpers.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/log-strings-mapping.json +2 -2
- package/dist/naa/BridgeError.mjs +1 -1
- package/dist/naa/BridgeProxy.mjs +1 -1
- package/dist/naa/BridgeStatusCode.mjs +1 -1
- package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
- package/dist/navigation/NavigationClient.mjs +1 -1
- package/dist/network/FetchClient.mjs +1 -1
- package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
- package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
- package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/packageMetadata.d.ts +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/protocol/Authorize.mjs +1 -1
- package/dist/redirect-bridge/cache/CacheKeys.mjs +1 -1
- package/dist/redirect-bridge/config/Configuration.mjs +1 -1
- package/dist/redirect-bridge/controllers/StandardController.d.ts.map +1 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/dist/redirect-bridge/encode/Base64Decode.mjs +1 -1
- package/dist/redirect-bridge/error/BrowserAuthError.mjs +1 -1
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/redirect-bridge/navigation/NavigationClient.mjs +1 -1
- package/dist/redirect-bridge/packageMetadata.d.ts +1 -1
- package/dist/redirect-bridge/redirect_bridge/index.mjs +2 -2
- package/dist/redirect-bridge/redirect_bridge/index.mjs.map +1 -1
- package/dist/redirect-bridge/utils/BrowserConstants.mjs +1 -1
- package/dist/redirect-bridge/utils/BrowserUtils.mjs +1 -1
- package/dist/request/RequestHelpers.mjs +1 -1
- package/dist/response/ResponseHandler.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
- package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
- package/dist/utils/BrowserConstants.mjs +1 -1
- package/dist/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/utils/BrowserUtils.mjs +1 -1
- package/dist/utils/Helpers.mjs +1 -1
- package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/log-strings-mapping.json +2 -2
- package/lib/custom-auth-path/msal-custom-auth.cjs +112 -90
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/types/controllers/StandardController.d.ts.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/log-strings-mapping.json +2 -2
- package/lib/msal-browser.cjs +178 -102
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +178 -102
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +2 -2
- package/lib/redirect-bridge/msal-redirect-bridge.js +11 -28
- package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.min.js +2 -2
- package/lib/types/controllers/StandardController.d.ts.map +1 -1
- 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/controllers/StandardController.ts +9 -0
- package/src/packageMetadata.ts +1 -1
- package/src/redirect_bridge/index.ts +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.4.0 2026-03-02 */
|
|
2
2
|
'use strict';
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
/*! @azure/msal-common v16.0
|
|
5
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6
6
|
/*
|
|
7
7
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8
8
|
* Licensed under the MIT License.
|
|
@@ -229,7 +229,7 @@ const JsonWebTokenTypes = {
|
|
|
229
229
|
// Token renewal offset default in seconds
|
|
230
230
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
231
231
|
|
|
232
|
-
/*! @azure/msal-common v16.0
|
|
232
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
233
233
|
/*
|
|
234
234
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
235
235
|
* Licensed under the MIT License.
|
|
@@ -279,7 +279,7 @@ const INSTANCE_AWARE = "instance_aware";
|
|
|
279
279
|
const EAR_JWK = "ear_jwk";
|
|
280
280
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
281
281
|
|
|
282
|
-
/*! @azure/msal-common v16.0
|
|
282
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
283
283
|
/*
|
|
284
284
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
285
285
|
* Licensed under the MIT License.
|
|
@@ -310,7 +310,7 @@ function createAuthError(code, additionalMessage) {
|
|
|
310
310
|
return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
-
/*! @azure/msal-common v16.0
|
|
313
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
314
314
|
|
|
315
315
|
/*
|
|
316
316
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -330,7 +330,7 @@ function createClientConfigurationError(errorCode) {
|
|
|
330
330
|
return new ClientConfigurationError(errorCode);
|
|
331
331
|
}
|
|
332
332
|
|
|
333
|
-
/*! @azure/msal-common v16.0
|
|
333
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
334
334
|
/*
|
|
335
335
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
336
336
|
* Licensed under the MIT License.
|
|
@@ -408,26 +408,9 @@ class StringUtils {
|
|
|
408
408
|
return null;
|
|
409
409
|
}
|
|
410
410
|
}
|
|
411
|
-
/**
|
|
412
|
-
* Tests if a given string matches a given pattern, with support for wildcards and queries.
|
|
413
|
-
* @param pattern Wildcard pattern to string match. Supports "*" for wildcards and "?" for queries
|
|
414
|
-
* @param input String to match against
|
|
415
|
-
*/
|
|
416
|
-
static matchPattern(pattern, input) {
|
|
417
|
-
/**
|
|
418
|
-
* Wildcard support: https://stackoverflow.com/a/3117248/4888559
|
|
419
|
-
* Queries: replaces "?" in string with escaped "\?" for regex test
|
|
420
|
-
*/
|
|
421
|
-
// eslint-disable-next-line security/detect-non-literal-regexp
|
|
422
|
-
const regex = new RegExp(pattern
|
|
423
|
-
.replace(/\\/g, "\\\\")
|
|
424
|
-
.replace(/\*/g, "[^ ]*")
|
|
425
|
-
.replace(/\?/g, "\\?"));
|
|
426
|
-
return regex.test(input);
|
|
427
|
-
}
|
|
428
411
|
}
|
|
429
412
|
|
|
430
|
-
/*! @azure/msal-common v16.0
|
|
413
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
431
414
|
|
|
432
415
|
/*
|
|
433
416
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -450,7 +433,7 @@ function createClientAuthError(errorCode, additionalMessage) {
|
|
|
450
433
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
451
434
|
}
|
|
452
435
|
|
|
453
|
-
/*! @azure/msal-common v16.0
|
|
436
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
454
437
|
/*
|
|
455
438
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
456
439
|
* Licensed under the MIT License.
|
|
@@ -474,7 +457,7 @@ const cannotAllowPlatformBroker = "cannot_allow_platform_broker";
|
|
|
474
457
|
const authorityMismatch = "authority_mismatch";
|
|
475
458
|
const invalidRequestMethodForEAR = "invalid_request_method_for_EAR";
|
|
476
459
|
|
|
477
|
-
/*! @azure/msal-common v16.0
|
|
460
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
478
461
|
/*
|
|
479
462
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
480
463
|
* Licensed under the MIT License.
|
|
@@ -511,7 +494,7 @@ const endSessionEndpointNotSupported = "end_session_endpoint_not_supported";
|
|
|
511
494
|
const keyIdMissing = "key_id_missing";
|
|
512
495
|
const methodNotImplemented = "method_not_implemented";
|
|
513
496
|
|
|
514
|
-
/*! @azure/msal-common v16.0
|
|
497
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
515
498
|
|
|
516
499
|
/*
|
|
517
500
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -706,7 +689,7 @@ class ScopeSet {
|
|
|
706
689
|
}
|
|
707
690
|
}
|
|
708
691
|
|
|
709
|
-
/*! @azure/msal-common v16.0
|
|
692
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
710
693
|
|
|
711
694
|
/*
|
|
712
695
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1073,7 +1056,7 @@ function addEARParameters(parameters, jwk) {
|
|
|
1073
1056
|
parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
|
|
1074
1057
|
}
|
|
1075
1058
|
|
|
1076
|
-
/*! @azure/msal-common v16.0
|
|
1059
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1077
1060
|
|
|
1078
1061
|
/*
|
|
1079
1062
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1182,7 +1165,7 @@ function normalizeUrlForComparison(url) {
|
|
|
1182
1165
|
}
|
|
1183
1166
|
}
|
|
1184
1167
|
|
|
1185
|
-
/*! @azure/msal-common v16.0
|
|
1168
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1186
1169
|
|
|
1187
1170
|
/*
|
|
1188
1171
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1221,7 +1204,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
|
|
|
1221
1204
|
},
|
|
1222
1205
|
};
|
|
1223
1206
|
|
|
1224
|
-
/*! @azure/msal-common v16.0
|
|
1207
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1225
1208
|
/*
|
|
1226
1209
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1227
1210
|
* Licensed under the MIT License.
|
|
@@ -1482,12 +1465,12 @@ class Logger {
|
|
|
1482
1465
|
}
|
|
1483
1466
|
}
|
|
1484
1467
|
|
|
1485
|
-
/*! @azure/msal-common v16.0
|
|
1468
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1486
1469
|
/* eslint-disable header/header */
|
|
1487
1470
|
const name$1 = "@azure/msal-common";
|
|
1488
|
-
const version$1 = "16.0
|
|
1471
|
+
const version$1 = "16.2.0";
|
|
1489
1472
|
|
|
1490
|
-
/*! @azure/msal-common v16.0
|
|
1473
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1491
1474
|
/*
|
|
1492
1475
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1493
1476
|
* Licensed under the MIT License.
|
|
@@ -1496,7 +1479,7 @@ const AzureCloudInstance = {
|
|
|
1496
1479
|
// AzureCloudInstance is not specified.
|
|
1497
1480
|
None: "none"};
|
|
1498
1481
|
|
|
1499
|
-
/*! @azure/msal-common v16.0
|
|
1482
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1500
1483
|
/*
|
|
1501
1484
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1502
1485
|
* Licensed under the MIT License.
|
|
@@ -1578,7 +1561,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
|
|
|
1578
1561
|
return updatedAccountInfo;
|
|
1579
1562
|
}
|
|
1580
1563
|
|
|
1581
|
-
/*! @azure/msal-common v16.0
|
|
1564
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1582
1565
|
|
|
1583
1566
|
/*
|
|
1584
1567
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1658,7 +1641,7 @@ function checkMaxAge(authTime, maxAge) {
|
|
|
1658
1641
|
}
|
|
1659
1642
|
}
|
|
1660
1643
|
|
|
1661
|
-
/*! @azure/msal-common v16.0
|
|
1644
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1662
1645
|
|
|
1663
1646
|
/*
|
|
1664
1647
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1815,7 +1798,7 @@ class UrlString {
|
|
|
1815
1798
|
}
|
|
1816
1799
|
}
|
|
1817
1800
|
|
|
1818
|
-
/*! @azure/msal-common v16.0
|
|
1801
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1819
1802
|
|
|
1820
1803
|
/*
|
|
1821
1804
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1972,7 +1955,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
1972
1955
|
return null;
|
|
1973
1956
|
}
|
|
1974
1957
|
|
|
1975
|
-
/*! @azure/msal-common v16.0
|
|
1958
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1976
1959
|
/*
|
|
1977
1960
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1978
1961
|
* Licensed under the MIT License.
|
|
@@ -1980,7 +1963,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
1980
1963
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
1981
1964
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
1982
1965
|
|
|
1983
|
-
/*! @azure/msal-common v16.0
|
|
1966
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1984
1967
|
|
|
1985
1968
|
/*
|
|
1986
1969
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2018,7 +2001,7 @@ function createCacheError(e) {
|
|
|
2018
2001
|
}
|
|
2019
2002
|
}
|
|
2020
2003
|
|
|
2021
|
-
/*! @azure/msal-common v16.0
|
|
2004
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2022
2005
|
|
|
2023
2006
|
/*
|
|
2024
2007
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2056,7 +2039,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
|
|
|
2056
2039
|
};
|
|
2057
2040
|
}
|
|
2058
2041
|
|
|
2059
|
-
/*! @azure/msal-common v16.0
|
|
2042
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2060
2043
|
/*
|
|
2061
2044
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2062
2045
|
* Licensed under the MIT License.
|
|
@@ -2071,7 +2054,7 @@ const AuthorityType = {
|
|
|
2071
2054
|
Ciam: 3,
|
|
2072
2055
|
};
|
|
2073
2056
|
|
|
2074
|
-
/*! @azure/msal-common v16.0
|
|
2057
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2075
2058
|
/*
|
|
2076
2059
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2077
2060
|
* Licensed under the MIT License.
|
|
@@ -2093,7 +2076,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
|
|
|
2093
2076
|
return null;
|
|
2094
2077
|
}
|
|
2095
2078
|
|
|
2096
|
-
/*! @azure/msal-common v16.0
|
|
2079
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2097
2080
|
/*
|
|
2098
2081
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2099
2082
|
* Licensed under the MIT License.
|
|
@@ -2117,7 +2100,7 @@ const ProtocolMode = {
|
|
|
2117
2100
|
EAR: "EAR",
|
|
2118
2101
|
};
|
|
2119
2102
|
|
|
2120
|
-
/*! @azure/msal-common v16.0
|
|
2103
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2121
2104
|
/**
|
|
2122
2105
|
* Returns the AccountInfo interface for this account.
|
|
2123
2106
|
*/
|
|
@@ -2292,7 +2275,7 @@ function isAccountEntity(entity) {
|
|
|
2292
2275
|
entity.hasOwnProperty("authorityType"));
|
|
2293
2276
|
}
|
|
2294
2277
|
|
|
2295
|
-
/*! @azure/msal-common v16.0
|
|
2278
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2296
2279
|
|
|
2297
2280
|
/*
|
|
2298
2281
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3388,7 +3371,7 @@ class DefaultStorageClass extends CacheManager {
|
|
|
3388
3371
|
}
|
|
3389
3372
|
}
|
|
3390
3373
|
|
|
3391
|
-
/*! @azure/msal-common v16.0
|
|
3374
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3392
3375
|
/*
|
|
3393
3376
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3394
3377
|
* Licensed under the MIT License.
|
|
@@ -3402,7 +3385,7 @@ class DefaultStorageClass extends CacheManager {
|
|
|
3402
3385
|
const PerformanceEventStatus = {
|
|
3403
3386
|
InProgress: 1};
|
|
3404
3387
|
|
|
3405
|
-
/*! @azure/msal-common v16.0
|
|
3388
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3406
3389
|
|
|
3407
3390
|
/*
|
|
3408
3391
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3457,7 +3440,7 @@ class StubPerformanceClient {
|
|
|
3457
3440
|
}
|
|
3458
3441
|
}
|
|
3459
3442
|
|
|
3460
|
-
/*! @azure/msal-common v16.0
|
|
3443
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3461
3444
|
|
|
3462
3445
|
/*
|
|
3463
3446
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3551,7 +3534,7 @@ function isOidcProtocolMode(config) {
|
|
|
3551
3534
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3552
3535
|
}
|
|
3553
3536
|
|
|
3554
|
-
/*! @azure/msal-common v16.0
|
|
3537
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3555
3538
|
|
|
3556
3539
|
/*
|
|
3557
3540
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3570,23 +3553,58 @@ class ServerError extends AuthError {
|
|
|
3570
3553
|
}
|
|
3571
3554
|
}
|
|
3572
3555
|
|
|
3573
|
-
/*! @azure/msal-common v16.0
|
|
3556
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3574
3557
|
/*
|
|
3575
3558
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3576
3559
|
* Licensed under the MIT License.
|
|
3577
3560
|
*/
|
|
3578
|
-
|
|
3561
|
+
/**
|
|
3562
|
+
* MSAL-defined interaction required error code indicating no tokens are found in cache.
|
|
3563
|
+
* @public
|
|
3564
|
+
*/
|
|
3579
3565
|
const noTokensFound = "no_tokens_found";
|
|
3566
|
+
/**
|
|
3567
|
+
* MSAL-defined error code indicating a native account is unavailable on the platform.
|
|
3568
|
+
* @public
|
|
3569
|
+
*/
|
|
3580
3570
|
const nativeAccountUnavailable = "native_account_unavailable";
|
|
3571
|
+
/**
|
|
3572
|
+
* MSAL-defined error code indicating the refresh token has expired and user interaction is needed.
|
|
3573
|
+
* @public
|
|
3574
|
+
*/
|
|
3581
3575
|
const refreshTokenExpired = "refresh_token_expired";
|
|
3576
|
+
/**
|
|
3577
|
+
* MSAL-defined error code indicating UI/UX is not allowed (e.g., blocked by policy), requiring alternate interaction.
|
|
3578
|
+
* @public
|
|
3579
|
+
*/
|
|
3582
3580
|
const uxNotAllowed = "ux_not_allowed";
|
|
3583
|
-
|
|
3581
|
+
/**
|
|
3582
|
+
* Server-originated error code indicating interaction is required to complete the request.
|
|
3583
|
+
* @public
|
|
3584
|
+
*/
|
|
3584
3585
|
const interactionRequired = "interaction_required";
|
|
3586
|
+
/**
|
|
3587
|
+
* Server-originated error code indicating user consent is required.
|
|
3588
|
+
* @public
|
|
3589
|
+
*/
|
|
3585
3590
|
const consentRequired = "consent_required";
|
|
3591
|
+
/**
|
|
3592
|
+
* Server-originated error code indicating user login is required.
|
|
3593
|
+
* @public
|
|
3594
|
+
*/
|
|
3586
3595
|
const loginRequired = "login_required";
|
|
3587
|
-
|
|
3596
|
+
/**
|
|
3597
|
+
* Server-originated error code indicating the token is invalid or corrupted.
|
|
3598
|
+
* @public
|
|
3599
|
+
*/
|
|
3600
|
+
const badToken = "bad_token";
|
|
3601
|
+
/**
|
|
3602
|
+
* Server-originated error code indicating the user is in an interrupted state and interaction is required.
|
|
3603
|
+
* @public
|
|
3604
|
+
*/
|
|
3605
|
+
const interruptedUser = "interrupted_user";
|
|
3588
3606
|
|
|
3589
|
-
/*! @azure/msal-common v16.0
|
|
3607
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3590
3608
|
|
|
3591
3609
|
/*
|
|
3592
3610
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3601,6 +3619,7 @@ const InteractionRequiredServerErrorMessage = [
|
|
|
3601
3619
|
loginRequired,
|
|
3602
3620
|
badToken,
|
|
3603
3621
|
uxNotAllowed,
|
|
3622
|
+
interruptedUser,
|
|
3604
3623
|
];
|
|
3605
3624
|
const InteractionRequiredAuthSubErrorMessage = [
|
|
3606
3625
|
"message_only",
|
|
@@ -3610,6 +3629,7 @@ const InteractionRequiredAuthSubErrorMessage = [
|
|
|
3610
3629
|
"consent_required",
|
|
3611
3630
|
"bad_token",
|
|
3612
3631
|
"ux_not_allowed",
|
|
3632
|
+
"interrupted_user",
|
|
3613
3633
|
];
|
|
3614
3634
|
/**
|
|
3615
3635
|
* Error thrown when user interaction is required.
|
|
@@ -3652,7 +3672,7 @@ function createInteractionRequiredAuthError(errorCode, errorMessage) {
|
|
|
3652
3672
|
return new InteractionRequiredAuthError(errorCode, errorMessage);
|
|
3653
3673
|
}
|
|
3654
3674
|
|
|
3655
|
-
/*! @azure/msal-common v16.0
|
|
3675
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3656
3676
|
|
|
3657
3677
|
/*
|
|
3658
3678
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3720,7 +3740,7 @@ function parseRequestState(base64Decode, state) {
|
|
|
3720
3740
|
}
|
|
3721
3741
|
}
|
|
3722
3742
|
|
|
3723
|
-
/*! @azure/msal-common v16.0
|
|
3743
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3724
3744
|
/*
|
|
3725
3745
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3726
3746
|
* Licensed under the MIT License.
|
|
@@ -3785,7 +3805,7 @@ function wasClockTurnedBack(cachedAt) {
|
|
|
3785
3805
|
return cachedAtSec > nowSeconds();
|
|
3786
3806
|
}
|
|
3787
3807
|
|
|
3788
|
-
/*! @azure/msal-common v16.0
|
|
3808
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3789
3809
|
/*
|
|
3790
3810
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3791
3811
|
* Licensed under the MIT License.
|
|
@@ -3856,7 +3876,7 @@ const RegionDiscoveryGetCurrentVersion = "regionDiscoveryGetCurrentVersion";
|
|
|
3856
3876
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
3857
3877
|
const SetUserData = "setUserData";
|
|
3858
3878
|
|
|
3859
|
-
/*! @azure/msal-common v16.0
|
|
3879
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3860
3880
|
/*
|
|
3861
3881
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3862
3882
|
* Licensed under the MIT License.
|
|
@@ -3879,8 +3899,7 @@ const invoke = (callback, eventName, logger, telemetryClient, correlationId) =>
|
|
|
3879
3899
|
const inProgressEvent = telemetryClient.startMeasurement(eventName, correlationId);
|
|
3880
3900
|
if (correlationId) {
|
|
3881
3901
|
// Track number of times this API is called in a single request
|
|
3882
|
-
|
|
3883
|
-
telemetryClient.incrementFields({ [eventCount]: 1 }, correlationId);
|
|
3902
|
+
telemetryClient.incrementFields({ [`ext.${eventName}CallCount`]: 1 }, correlationId);
|
|
3884
3903
|
}
|
|
3885
3904
|
try {
|
|
3886
3905
|
const result = callback(...args);
|
|
@@ -3924,8 +3943,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
3924
3943
|
const inProgressEvent = telemetryClient.startMeasurement(eventName, correlationId);
|
|
3925
3944
|
if (correlationId) {
|
|
3926
3945
|
// Track number of times this API is called in a single request
|
|
3927
|
-
|
|
3928
|
-
telemetryClient.incrementFields({ [eventCount]: 1 }, correlationId);
|
|
3946
|
+
telemetryClient.incrementFields({ [`ext.${eventName}CallCount`]: 1 }, correlationId);
|
|
3929
3947
|
}
|
|
3930
3948
|
return callback(...args)
|
|
3931
3949
|
.then((response) => {
|
|
@@ -3951,7 +3969,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
3951
3969
|
};
|
|
3952
3970
|
};
|
|
3953
3971
|
|
|
3954
|
-
/*! @azure/msal-common v16.0
|
|
3972
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3955
3973
|
|
|
3956
3974
|
/*
|
|
3957
3975
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4031,7 +4049,7 @@ class PopTokenGenerator {
|
|
|
4031
4049
|
}
|
|
4032
4050
|
}
|
|
4033
4051
|
|
|
4034
|
-
/*! @azure/msal-common v16.0
|
|
4052
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4035
4053
|
/*
|
|
4036
4054
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4037
4055
|
* Licensed under the MIT License.
|
|
@@ -4058,7 +4076,7 @@ class PopTokenGenerator {
|
|
|
4058
4076
|
}
|
|
4059
4077
|
}
|
|
4060
4078
|
|
|
4061
|
-
/*! @azure/msal-common v16.0
|
|
4079
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4062
4080
|
|
|
4063
4081
|
/*
|
|
4064
4082
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4317,7 +4335,7 @@ function isAuthorityMetadataExpired(metadata) {
|
|
|
4317
4335
|
return metadata.expiresAt <= nowSeconds();
|
|
4318
4336
|
}
|
|
4319
4337
|
|
|
4320
|
-
/*! @azure/msal-common v16.0
|
|
4338
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4321
4339
|
|
|
4322
4340
|
/*
|
|
4323
4341
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4653,7 +4671,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
|
|
|
4653
4671
|
return baseAccount;
|
|
4654
4672
|
}
|
|
4655
4673
|
|
|
4656
|
-
/*! @azure/msal-common v16.0
|
|
4674
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4657
4675
|
/*
|
|
4658
4676
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4659
4677
|
* Licensed under the MIT License.
|
|
@@ -4663,7 +4681,7 @@ const CcsCredentialType = {
|
|
|
4663
4681
|
UPN: "UPN",
|
|
4664
4682
|
};
|
|
4665
4683
|
|
|
4666
|
-
/*! @azure/msal-common v16.0
|
|
4684
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4667
4685
|
/*
|
|
4668
4686
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4669
4687
|
* Licensed under the MIT License.
|
|
@@ -4681,7 +4699,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
|
|
|
4681
4699
|
}
|
|
4682
4700
|
}
|
|
4683
4701
|
|
|
4684
|
-
/*! @azure/msal-common v16.0
|
|
4702
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4685
4703
|
/*
|
|
4686
4704
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4687
4705
|
* Licensed under the MIT License.
|
|
@@ -4702,7 +4720,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
|
4702
4720
|
};
|
|
4703
4721
|
}
|
|
4704
4722
|
|
|
4705
|
-
/*! @azure/msal-common v16.0
|
|
4723
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4706
4724
|
|
|
4707
4725
|
/*
|
|
4708
4726
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4788,7 +4806,7 @@ class ThrottlingUtils {
|
|
|
4788
4806
|
}
|
|
4789
4807
|
}
|
|
4790
4808
|
|
|
4791
|
-
/*! @azure/msal-common v16.0
|
|
4809
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4792
4810
|
|
|
4793
4811
|
/*
|
|
4794
4812
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4819,7 +4837,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
|
|
|
4819
4837
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
4820
4838
|
}
|
|
4821
4839
|
|
|
4822
|
-
/*! @azure/msal-common v16.0
|
|
4840
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4823
4841
|
|
|
4824
4842
|
/*
|
|
4825
4843
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4933,7 +4951,7 @@ async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId
|
|
|
4933
4951
|
return response;
|
|
4934
4952
|
}
|
|
4935
4953
|
|
|
4936
|
-
/*! @azure/msal-common v16.0
|
|
4954
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4937
4955
|
/*
|
|
4938
4956
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4939
4957
|
* Licensed under the MIT License.
|
|
@@ -4945,7 +4963,7 @@ function isOpenIdConfigResponse(response) {
|
|
|
4945
4963
|
response.hasOwnProperty("jwks_uri"));
|
|
4946
4964
|
}
|
|
4947
4965
|
|
|
4948
|
-
/*! @azure/msal-common v16.0
|
|
4966
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4949
4967
|
/*
|
|
4950
4968
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4951
4969
|
* Licensed under the MIT License.
|
|
@@ -4955,7 +4973,7 @@ function isCloudInstanceDiscoveryResponse(response) {
|
|
|
4955
4973
|
response.hasOwnProperty("metadata"));
|
|
4956
4974
|
}
|
|
4957
4975
|
|
|
4958
|
-
/*! @azure/msal-common v16.0
|
|
4976
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4959
4977
|
/*
|
|
4960
4978
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4961
4979
|
* Licensed under the MIT License.
|
|
@@ -4965,7 +4983,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
|
4965
4983
|
response.hasOwnProperty("error_description"));
|
|
4966
4984
|
}
|
|
4967
4985
|
|
|
4968
|
-
/*! @azure/msal-common v16.0
|
|
4986
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4969
4987
|
|
|
4970
4988
|
/*
|
|
4971
4989
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5070,7 +5088,7 @@ RegionDiscovery.IMDS_OPTIONS = {
|
|
|
5070
5088
|
},
|
|
5071
5089
|
};
|
|
5072
5090
|
|
|
5073
|
-
/*! @azure/msal-common v16.0
|
|
5091
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
5074
5092
|
|
|
5075
5093
|
/*
|
|
5076
5094
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5890,7 +5908,7 @@ function buildStaticAuthorityOptions(authOptions) {
|
|
|
5890
5908
|
};
|
|
5891
5909
|
}
|
|
5892
5910
|
|
|
5893
|
-
/*! @azure/msal-common v16.0
|
|
5911
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
5894
5912
|
|
|
5895
5913
|
/*
|
|
5896
5914
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5924,7 +5942,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
|
|
|
5924
5942
|
}
|
|
5925
5943
|
}
|
|
5926
5944
|
|
|
5927
|
-
/*! @azure/msal-common v16.0
|
|
5945
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
5928
5946
|
|
|
5929
5947
|
/*
|
|
5930
5948
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6184,7 +6202,7 @@ class AuthorizationCodeClient {
|
|
|
6184
6202
|
}
|
|
6185
6203
|
}
|
|
6186
6204
|
|
|
6187
|
-
/*! @azure/msal-common v16.0
|
|
6205
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6188
6206
|
|
|
6189
6207
|
/*
|
|
6190
6208
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6409,7 +6427,7 @@ class RefreshTokenClient {
|
|
|
6409
6427
|
}
|
|
6410
6428
|
}
|
|
6411
6429
|
|
|
6412
|
-
/*! @azure/msal-common v16.0
|
|
6430
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6413
6431
|
|
|
6414
6432
|
/*
|
|
6415
6433
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6518,7 +6536,7 @@ class SilentFlowClient {
|
|
|
6518
6536
|
}
|
|
6519
6537
|
}
|
|
6520
6538
|
|
|
6521
|
-
/*! @azure/msal-common v16.0
|
|
6539
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6522
6540
|
|
|
6523
6541
|
/*
|
|
6524
6542
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6533,7 +6551,7 @@ const StubbedNetworkModule = {
|
|
|
6533
6551
|
},
|
|
6534
6552
|
};
|
|
6535
6553
|
|
|
6536
|
-
/*! @azure/msal-common v16.0
|
|
6554
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6537
6555
|
|
|
6538
6556
|
/*
|
|
6539
6557
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6757,7 +6775,7 @@ function extractLoginHint(account) {
|
|
|
6757
6775
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
6758
6776
|
}
|
|
6759
6777
|
|
|
6760
|
-
/*! @azure/msal-common v16.0
|
|
6778
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6761
6779
|
/*
|
|
6762
6780
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6763
6781
|
* Licensed under the MIT License.
|
|
@@ -6767,7 +6785,7 @@ function extractLoginHint(account) {
|
|
|
6767
6785
|
*/
|
|
6768
6786
|
const unexpectedError = "unexpected_error";
|
|
6769
6787
|
|
|
6770
|
-
/*! @azure/msal-common v16.0
|
|
6788
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6771
6789
|
|
|
6772
6790
|
/*
|
|
6773
6791
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7028,7 +7046,7 @@ class ServerTelemetryManager {
|
|
|
7028
7046
|
}
|
|
7029
7047
|
}
|
|
7030
7048
|
|
|
7031
|
-
/*! @azure/msal-common v16.0
|
|
7049
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
7032
7050
|
|
|
7033
7051
|
/*
|
|
7034
7052
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7049,7 +7067,7 @@ function createJoseHeaderError(code) {
|
|
|
7049
7067
|
return new JoseHeaderError(code);
|
|
7050
7068
|
}
|
|
7051
7069
|
|
|
7052
|
-
/*! @azure/msal-common v16.0
|
|
7070
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
7053
7071
|
/*
|
|
7054
7072
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7055
7073
|
* Licensed under the MIT License.
|
|
@@ -7057,7 +7075,7 @@ function createJoseHeaderError(code) {
|
|
|
7057
7075
|
const missingKidError = "missing_kid_error";
|
|
7058
7076
|
const missingAlgError = "missing_alg_error";
|
|
7059
7077
|
|
|
7060
|
-
/*! @azure/msal-common v16.0
|
|
7078
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
7061
7079
|
|
|
7062
7080
|
/*
|
|
7063
7081
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7492,7 +7510,7 @@ function ensureArgumentIsJSONString(argName, argValue, correlationId) {
|
|
|
7492
7510
|
|
|
7493
7511
|
/* eslint-disable header/header */
|
|
7494
7512
|
const name = "@azure/msal-browser";
|
|
7495
|
-
const version = "5.
|
|
7513
|
+
const version = "5.4.0";
|
|
7496
7514
|
|
|
7497
7515
|
/*
|
|
7498
7516
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -20343,6 +20361,10 @@ class StandardController {
|
|
|
20343
20361
|
const result = this.acquireTokenSilentNoIframe(silentRequest, cacheLookupPolicy).catch(async (refreshTokenError) => {
|
|
20344
20362
|
const shouldTryToResolveSilently = checkIfRefreshTokenErrorCanBeResolvedSilently(refreshTokenError, cacheLookupPolicy);
|
|
20345
20363
|
if (shouldTryToResolveSilently) {
|
|
20364
|
+
const silentRefreshReason = `${refreshTokenError.errorCode}${refreshTokenError.subError
|
|
20365
|
+
? `|${refreshTokenError.subError}`
|
|
20366
|
+
: ""}`;
|
|
20367
|
+
this.performanceClient.addFields({ silentRefreshReason }, request.correlationId);
|
|
20346
20368
|
if (!this.activeIframeRequest) {
|
|
20347
20369
|
let _resolve;
|
|
20348
20370
|
// Always set the active request tracker immediately after checking it to prevent races
|