@azure/msal-browser 5.2.0 → 5.3.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 +110 -86
- 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 +113 -88
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +113 -88
- 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.3.0 2026-02-24 */
|
|
2
2
|
'use strict';
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
/*! @azure/msal-common v16.0
|
|
5
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0";
|
|
1489
1472
|
|
|
1490
|
-
/*! @azure/msal-common v16.0
|
|
1473
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
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.1.0 2026-02-24 */
|
|
3860
3880
|
/*
|
|
3861
3881
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3862
3882
|
* Licensed under the MIT License.
|
|
@@ -3951,7 +3971,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
3951
3971
|
};
|
|
3952
3972
|
};
|
|
3953
3973
|
|
|
3954
|
-
/*! @azure/msal-common v16.0
|
|
3974
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3955
3975
|
|
|
3956
3976
|
/*
|
|
3957
3977
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4031,7 +4051,7 @@ class PopTokenGenerator {
|
|
|
4031
4051
|
}
|
|
4032
4052
|
}
|
|
4033
4053
|
|
|
4034
|
-
/*! @azure/msal-common v16.0
|
|
4054
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4035
4055
|
/*
|
|
4036
4056
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4037
4057
|
* Licensed under the MIT License.
|
|
@@ -4058,7 +4078,7 @@ class PopTokenGenerator {
|
|
|
4058
4078
|
}
|
|
4059
4079
|
}
|
|
4060
4080
|
|
|
4061
|
-
/*! @azure/msal-common v16.0
|
|
4081
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4062
4082
|
|
|
4063
4083
|
/*
|
|
4064
4084
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4317,7 +4337,7 @@ function isAuthorityMetadataExpired(metadata) {
|
|
|
4317
4337
|
return metadata.expiresAt <= nowSeconds();
|
|
4318
4338
|
}
|
|
4319
4339
|
|
|
4320
|
-
/*! @azure/msal-common v16.0
|
|
4340
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4321
4341
|
|
|
4322
4342
|
/*
|
|
4323
4343
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4653,7 +4673,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
|
|
|
4653
4673
|
return baseAccount;
|
|
4654
4674
|
}
|
|
4655
4675
|
|
|
4656
|
-
/*! @azure/msal-common v16.0
|
|
4676
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4657
4677
|
/*
|
|
4658
4678
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4659
4679
|
* Licensed under the MIT License.
|
|
@@ -4663,7 +4683,7 @@ const CcsCredentialType = {
|
|
|
4663
4683
|
UPN: "UPN",
|
|
4664
4684
|
};
|
|
4665
4685
|
|
|
4666
|
-
/*! @azure/msal-common v16.0
|
|
4686
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4667
4687
|
/*
|
|
4668
4688
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4669
4689
|
* Licensed under the MIT License.
|
|
@@ -4681,7 +4701,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
|
|
|
4681
4701
|
}
|
|
4682
4702
|
}
|
|
4683
4703
|
|
|
4684
|
-
/*! @azure/msal-common v16.0
|
|
4704
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4685
4705
|
/*
|
|
4686
4706
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4687
4707
|
* Licensed under the MIT License.
|
|
@@ -4702,7 +4722,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
|
4702
4722
|
};
|
|
4703
4723
|
}
|
|
4704
4724
|
|
|
4705
|
-
/*! @azure/msal-common v16.0
|
|
4725
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4706
4726
|
|
|
4707
4727
|
/*
|
|
4708
4728
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4788,7 +4808,7 @@ class ThrottlingUtils {
|
|
|
4788
4808
|
}
|
|
4789
4809
|
}
|
|
4790
4810
|
|
|
4791
|
-
/*! @azure/msal-common v16.0
|
|
4811
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4792
4812
|
|
|
4793
4813
|
/*
|
|
4794
4814
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4819,7 +4839,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
|
|
|
4819
4839
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
4820
4840
|
}
|
|
4821
4841
|
|
|
4822
|
-
/*! @azure/msal-common v16.0
|
|
4842
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4823
4843
|
|
|
4824
4844
|
/*
|
|
4825
4845
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4933,7 +4953,7 @@ async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId
|
|
|
4933
4953
|
return response;
|
|
4934
4954
|
}
|
|
4935
4955
|
|
|
4936
|
-
/*! @azure/msal-common v16.0
|
|
4956
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4937
4957
|
/*
|
|
4938
4958
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4939
4959
|
* Licensed under the MIT License.
|
|
@@ -4945,7 +4965,7 @@ function isOpenIdConfigResponse(response) {
|
|
|
4945
4965
|
response.hasOwnProperty("jwks_uri"));
|
|
4946
4966
|
}
|
|
4947
4967
|
|
|
4948
|
-
/*! @azure/msal-common v16.0
|
|
4968
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4949
4969
|
/*
|
|
4950
4970
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4951
4971
|
* Licensed under the MIT License.
|
|
@@ -4955,7 +4975,7 @@ function isCloudInstanceDiscoveryResponse(response) {
|
|
|
4955
4975
|
response.hasOwnProperty("metadata"));
|
|
4956
4976
|
}
|
|
4957
4977
|
|
|
4958
|
-
/*! @azure/msal-common v16.0
|
|
4978
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4959
4979
|
/*
|
|
4960
4980
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4961
4981
|
* Licensed under the MIT License.
|
|
@@ -4965,7 +4985,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
|
4965
4985
|
response.hasOwnProperty("error_description"));
|
|
4966
4986
|
}
|
|
4967
4987
|
|
|
4968
|
-
/*! @azure/msal-common v16.0
|
|
4988
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4969
4989
|
|
|
4970
4990
|
/*
|
|
4971
4991
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5070,7 +5090,7 @@ RegionDiscovery.IMDS_OPTIONS = {
|
|
|
5070
5090
|
},
|
|
5071
5091
|
};
|
|
5072
5092
|
|
|
5073
|
-
/*! @azure/msal-common v16.0
|
|
5093
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5074
5094
|
|
|
5075
5095
|
/*
|
|
5076
5096
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5890,7 +5910,7 @@ function buildStaticAuthorityOptions(authOptions) {
|
|
|
5890
5910
|
};
|
|
5891
5911
|
}
|
|
5892
5912
|
|
|
5893
|
-
/*! @azure/msal-common v16.0
|
|
5913
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5894
5914
|
|
|
5895
5915
|
/*
|
|
5896
5916
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5924,7 +5944,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
|
|
|
5924
5944
|
}
|
|
5925
5945
|
}
|
|
5926
5946
|
|
|
5927
|
-
/*! @azure/msal-common v16.0
|
|
5947
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5928
5948
|
|
|
5929
5949
|
/*
|
|
5930
5950
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6184,7 +6204,7 @@ class AuthorizationCodeClient {
|
|
|
6184
6204
|
}
|
|
6185
6205
|
}
|
|
6186
6206
|
|
|
6187
|
-
/*! @azure/msal-common v16.0
|
|
6207
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6188
6208
|
|
|
6189
6209
|
/*
|
|
6190
6210
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6409,7 +6429,7 @@ class RefreshTokenClient {
|
|
|
6409
6429
|
}
|
|
6410
6430
|
}
|
|
6411
6431
|
|
|
6412
|
-
/*! @azure/msal-common v16.0
|
|
6432
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6413
6433
|
|
|
6414
6434
|
/*
|
|
6415
6435
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6518,7 +6538,7 @@ class SilentFlowClient {
|
|
|
6518
6538
|
}
|
|
6519
6539
|
}
|
|
6520
6540
|
|
|
6521
|
-
/*! @azure/msal-common v16.0
|
|
6541
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6522
6542
|
|
|
6523
6543
|
/*
|
|
6524
6544
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6533,7 +6553,7 @@ const StubbedNetworkModule = {
|
|
|
6533
6553
|
},
|
|
6534
6554
|
};
|
|
6535
6555
|
|
|
6536
|
-
/*! @azure/msal-common v16.0
|
|
6556
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6537
6557
|
|
|
6538
6558
|
/*
|
|
6539
6559
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6757,7 +6777,7 @@ function extractLoginHint(account) {
|
|
|
6757
6777
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
6758
6778
|
}
|
|
6759
6779
|
|
|
6760
|
-
/*! @azure/msal-common v16.0
|
|
6780
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6761
6781
|
/*
|
|
6762
6782
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6763
6783
|
* Licensed under the MIT License.
|
|
@@ -6767,7 +6787,7 @@ function extractLoginHint(account) {
|
|
|
6767
6787
|
*/
|
|
6768
6788
|
const unexpectedError = "unexpected_error";
|
|
6769
6789
|
|
|
6770
|
-
/*! @azure/msal-common v16.0
|
|
6790
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6771
6791
|
|
|
6772
6792
|
/*
|
|
6773
6793
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7028,7 +7048,7 @@ class ServerTelemetryManager {
|
|
|
7028
7048
|
}
|
|
7029
7049
|
}
|
|
7030
7050
|
|
|
7031
|
-
/*! @azure/msal-common v16.0
|
|
7051
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7032
7052
|
|
|
7033
7053
|
/*
|
|
7034
7054
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7049,7 +7069,7 @@ function createJoseHeaderError(code) {
|
|
|
7049
7069
|
return new JoseHeaderError(code);
|
|
7050
7070
|
}
|
|
7051
7071
|
|
|
7052
|
-
/*! @azure/msal-common v16.0
|
|
7072
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7053
7073
|
/*
|
|
7054
7074
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7055
7075
|
* Licensed under the MIT License.
|
|
@@ -7057,7 +7077,7 @@ function createJoseHeaderError(code) {
|
|
|
7057
7077
|
const missingKidError = "missing_kid_error";
|
|
7058
7078
|
const missingAlgError = "missing_alg_error";
|
|
7059
7079
|
|
|
7060
|
-
/*! @azure/msal-common v16.0
|
|
7080
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7061
7081
|
|
|
7062
7082
|
/*
|
|
7063
7083
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7492,7 +7512,7 @@ function ensureArgumentIsJSONString(argName, argValue, correlationId) {
|
|
|
7492
7512
|
|
|
7493
7513
|
/* eslint-disable header/header */
|
|
7494
7514
|
const name = "@azure/msal-browser";
|
|
7495
|
-
const version = "5.
|
|
7515
|
+
const version = "5.3.0";
|
|
7496
7516
|
|
|
7497
7517
|
/*
|
|
7498
7518
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -20343,6 +20363,10 @@ class StandardController {
|
|
|
20343
20363
|
const result = this.acquireTokenSilentNoIframe(silentRequest, cacheLookupPolicy).catch(async (refreshTokenError) => {
|
|
20344
20364
|
const shouldTryToResolveSilently = checkIfRefreshTokenErrorCanBeResolvedSilently(refreshTokenError, cacheLookupPolicy);
|
|
20345
20365
|
if (shouldTryToResolveSilently) {
|
|
20366
|
+
const silentRefreshReason = `${refreshTokenError.errorCode}${refreshTokenError.subError
|
|
20367
|
+
? `|${refreshTokenError.subError}`
|
|
20368
|
+
: ""}`;
|
|
20369
|
+
this.performanceClient.addFields({ silentRefreshReason }, request.correlationId);
|
|
20346
20370
|
if (!this.activeIframeRequest) {
|
|
20347
20371
|
let _resolve;
|
|
20348
20372
|
// Always set the active request tracker immediately after checking it to prevent races
|