@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
package/lib/msal-browser.cjs
CHANGED
|
@@ -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.
|
|
@@ -234,7 +234,7 @@ const JsonWebTokenTypes$1 = {
|
|
|
234
234
|
// Token renewal offset default in seconds
|
|
235
235
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
236
236
|
|
|
237
|
-
/*! @azure/msal-common v16.0
|
|
237
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
238
238
|
/*
|
|
239
239
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
240
240
|
* Licensed under the MIT License.
|
|
@@ -284,7 +284,7 @@ const INSTANCE_AWARE = "instance_aware";
|
|
|
284
284
|
const EAR_JWK = "ear_jwk";
|
|
285
285
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
286
286
|
|
|
287
|
-
/*! @azure/msal-common v16.0
|
|
287
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
288
288
|
/*
|
|
289
289
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
290
290
|
* Licensed under the MIT License.
|
|
@@ -315,7 +315,7 @@ function createAuthError(code, additionalMessage) {
|
|
|
315
315
|
return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
-
/*! @azure/msal-common v16.0
|
|
318
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
319
319
|
|
|
320
320
|
/*
|
|
321
321
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -335,7 +335,7 @@ function createClientConfigurationError(errorCode) {
|
|
|
335
335
|
return new ClientConfigurationError(errorCode);
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
-
/*! @azure/msal-common v16.0
|
|
338
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
339
339
|
/*
|
|
340
340
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
341
341
|
* Licensed under the MIT License.
|
|
@@ -413,26 +413,9 @@ class StringUtils {
|
|
|
413
413
|
return null;
|
|
414
414
|
}
|
|
415
415
|
}
|
|
416
|
-
/**
|
|
417
|
-
* Tests if a given string matches a given pattern, with support for wildcards and queries.
|
|
418
|
-
* @param pattern Wildcard pattern to string match. Supports "*" for wildcards and "?" for queries
|
|
419
|
-
* @param input String to match against
|
|
420
|
-
*/
|
|
421
|
-
static matchPattern(pattern, input) {
|
|
422
|
-
/**
|
|
423
|
-
* Wildcard support: https://stackoverflow.com/a/3117248/4888559
|
|
424
|
-
* Queries: replaces "?" in string with escaped "\?" for regex test
|
|
425
|
-
*/
|
|
426
|
-
// eslint-disable-next-line security/detect-non-literal-regexp
|
|
427
|
-
const regex = new RegExp(pattern
|
|
428
|
-
.replace(/\\/g, "\\\\")
|
|
429
|
-
.replace(/\*/g, "[^ ]*")
|
|
430
|
-
.replace(/\?/g, "\\?"));
|
|
431
|
-
return regex.test(input);
|
|
432
|
-
}
|
|
433
416
|
}
|
|
434
417
|
|
|
435
|
-
/*! @azure/msal-common v16.0
|
|
418
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
436
419
|
|
|
437
420
|
/*
|
|
438
421
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -455,7 +438,7 @@ function createClientAuthError(errorCode, additionalMessage) {
|
|
|
455
438
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
456
439
|
}
|
|
457
440
|
|
|
458
|
-
/*! @azure/msal-common v16.0
|
|
441
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
459
442
|
/*
|
|
460
443
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
461
444
|
* Licensed under the MIT License.
|
|
@@ -509,7 +492,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
509
492
|
urlParseError: urlParseError
|
|
510
493
|
});
|
|
511
494
|
|
|
512
|
-
/*! @azure/msal-common v16.0
|
|
495
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
513
496
|
/*
|
|
514
497
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
515
498
|
* Licensed under the MIT License.
|
|
@@ -593,7 +576,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
593
576
|
userCanceled: userCanceled
|
|
594
577
|
});
|
|
595
578
|
|
|
596
|
-
/*! @azure/msal-common v16.0
|
|
579
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
597
580
|
|
|
598
581
|
/*
|
|
599
582
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -788,7 +771,7 @@ class ScopeSet {
|
|
|
788
771
|
}
|
|
789
772
|
}
|
|
790
773
|
|
|
791
|
-
/*! @azure/msal-common v16.0
|
|
774
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
792
775
|
|
|
793
776
|
/*
|
|
794
777
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1155,7 +1138,7 @@ function addEARParameters(parameters, jwk) {
|
|
|
1155
1138
|
parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
|
|
1156
1139
|
}
|
|
1157
1140
|
|
|
1158
|
-
/*! @azure/msal-common v16.0
|
|
1141
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1159
1142
|
|
|
1160
1143
|
/*
|
|
1161
1144
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1264,7 +1247,7 @@ function normalizeUrlForComparison(url) {
|
|
|
1264
1247
|
}
|
|
1265
1248
|
}
|
|
1266
1249
|
|
|
1267
|
-
/*! @azure/msal-common v16.0
|
|
1250
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1268
1251
|
|
|
1269
1252
|
/*
|
|
1270
1253
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1303,7 +1286,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
|
|
|
1303
1286
|
},
|
|
1304
1287
|
};
|
|
1305
1288
|
|
|
1306
|
-
/*! @azure/msal-common v16.0
|
|
1289
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1307
1290
|
/*
|
|
1308
1291
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1309
1292
|
* Licensed under the MIT License.
|
|
@@ -1578,12 +1561,12 @@ class Logger {
|
|
|
1578
1561
|
}
|
|
1579
1562
|
}
|
|
1580
1563
|
|
|
1581
|
-
/*! @azure/msal-common v16.0
|
|
1564
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1582
1565
|
/* eslint-disable header/header */
|
|
1583
1566
|
const name$1 = "@azure/msal-common";
|
|
1584
|
-
const version$1 = "16.0
|
|
1567
|
+
const version$1 = "16.1.0";
|
|
1585
1568
|
|
|
1586
|
-
/*! @azure/msal-common v16.0
|
|
1569
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1587
1570
|
/*
|
|
1588
1571
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1589
1572
|
* Licensed under the MIT License.
|
|
@@ -1603,7 +1586,7 @@ const AzureCloudInstance = {
|
|
|
1603
1586
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
1604
1587
|
};
|
|
1605
1588
|
|
|
1606
|
-
/*! @azure/msal-common v16.0
|
|
1589
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1607
1590
|
/*
|
|
1608
1591
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1609
1592
|
* Licensed under the MIT License.
|
|
@@ -1685,7 +1668,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
|
|
|
1685
1668
|
return updatedAccountInfo;
|
|
1686
1669
|
}
|
|
1687
1670
|
|
|
1688
|
-
/*! @azure/msal-common v16.0
|
|
1671
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1689
1672
|
|
|
1690
1673
|
/*
|
|
1691
1674
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1765,7 +1748,7 @@ function checkMaxAge(authTime, maxAge) {
|
|
|
1765
1748
|
}
|
|
1766
1749
|
}
|
|
1767
1750
|
|
|
1768
|
-
/*! @azure/msal-common v16.0
|
|
1751
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1769
1752
|
|
|
1770
1753
|
/*
|
|
1771
1754
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1922,7 +1905,7 @@ class UrlString {
|
|
|
1922
1905
|
}
|
|
1923
1906
|
}
|
|
1924
1907
|
|
|
1925
|
-
/*! @azure/msal-common v16.0
|
|
1908
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1926
1909
|
|
|
1927
1910
|
/*
|
|
1928
1911
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2079,7 +2062,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2079
2062
|
return null;
|
|
2080
2063
|
}
|
|
2081
2064
|
|
|
2082
|
-
/*! @azure/msal-common v16.0
|
|
2065
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2083
2066
|
/*
|
|
2084
2067
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2085
2068
|
* Licensed under the MIT License.
|
|
@@ -2087,7 +2070,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2087
2070
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2088
2071
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2089
2072
|
|
|
2090
|
-
/*! @azure/msal-common v16.0
|
|
2073
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2091
2074
|
|
|
2092
2075
|
/*
|
|
2093
2076
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2125,7 +2108,7 @@ function createCacheError(e) {
|
|
|
2125
2108
|
}
|
|
2126
2109
|
}
|
|
2127
2110
|
|
|
2128
|
-
/*! @azure/msal-common v16.0
|
|
2111
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2129
2112
|
|
|
2130
2113
|
/*
|
|
2131
2114
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2163,7 +2146,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
|
|
|
2163
2146
|
};
|
|
2164
2147
|
}
|
|
2165
2148
|
|
|
2166
|
-
/*! @azure/msal-common v16.0
|
|
2149
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2167
2150
|
/*
|
|
2168
2151
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2169
2152
|
* Licensed under the MIT License.
|
|
@@ -2178,7 +2161,7 @@ const AuthorityType = {
|
|
|
2178
2161
|
Ciam: 3,
|
|
2179
2162
|
};
|
|
2180
2163
|
|
|
2181
|
-
/*! @azure/msal-common v16.0
|
|
2164
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2182
2165
|
/*
|
|
2183
2166
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2184
2167
|
* Licensed under the MIT License.
|
|
@@ -2200,7 +2183,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
|
|
|
2200
2183
|
return null;
|
|
2201
2184
|
}
|
|
2202
2185
|
|
|
2203
|
-
/*! @azure/msal-common v16.0
|
|
2186
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2204
2187
|
/*
|
|
2205
2188
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2206
2189
|
* Licensed under the MIT License.
|
|
@@ -2224,7 +2207,7 @@ const ProtocolMode = {
|
|
|
2224
2207
|
EAR: "EAR",
|
|
2225
2208
|
};
|
|
2226
2209
|
|
|
2227
|
-
/*! @azure/msal-common v16.0
|
|
2210
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2228
2211
|
/**
|
|
2229
2212
|
* Returns the AccountInfo interface for this account.
|
|
2230
2213
|
*/
|
|
@@ -2399,7 +2382,7 @@ function isAccountEntity(entity) {
|
|
|
2399
2382
|
entity.hasOwnProperty("authorityType"));
|
|
2400
2383
|
}
|
|
2401
2384
|
|
|
2402
|
-
/*! @azure/msal-common v16.0
|
|
2385
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2403
2386
|
|
|
2404
2387
|
/*
|
|
2405
2388
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3496,7 +3479,7 @@ class DefaultStorageClass extends CacheManager {
|
|
|
3496
3479
|
}
|
|
3497
3480
|
}
|
|
3498
3481
|
|
|
3499
|
-
/*! @azure/msal-common v16.0
|
|
3482
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3500
3483
|
/*
|
|
3501
3484
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3502
3485
|
* Licensed under the MIT License.
|
|
@@ -3537,7 +3520,7 @@ const IntFields = new Set([
|
|
|
3537
3520
|
"upgradedCacheCount",
|
|
3538
3521
|
]);
|
|
3539
3522
|
|
|
3540
|
-
/*! @azure/msal-common v16.0
|
|
3523
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3541
3524
|
|
|
3542
3525
|
/*
|
|
3543
3526
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3592,7 +3575,7 @@ class StubPerformanceClient {
|
|
|
3592
3575
|
}
|
|
3593
3576
|
}
|
|
3594
3577
|
|
|
3595
|
-
/*! @azure/msal-common v16.0
|
|
3578
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3596
3579
|
|
|
3597
3580
|
/*
|
|
3598
3581
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3686,7 +3669,7 @@ function isOidcProtocolMode(config) {
|
|
|
3686
3669
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3687
3670
|
}
|
|
3688
3671
|
|
|
3689
|
-
/*! @azure/msal-common v16.0
|
|
3672
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3690
3673
|
|
|
3691
3674
|
/*
|
|
3692
3675
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3705,27 +3688,63 @@ class ServerError extends AuthError {
|
|
|
3705
3688
|
}
|
|
3706
3689
|
}
|
|
3707
3690
|
|
|
3708
|
-
/*! @azure/msal-common v16.0
|
|
3691
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3709
3692
|
/*
|
|
3710
3693
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3711
3694
|
* Licensed under the MIT License.
|
|
3712
3695
|
*/
|
|
3713
|
-
|
|
3696
|
+
/**
|
|
3697
|
+
* MSAL-defined interaction required error code indicating no tokens are found in cache.
|
|
3698
|
+
* @public
|
|
3699
|
+
*/
|
|
3714
3700
|
const noTokensFound = "no_tokens_found";
|
|
3701
|
+
/**
|
|
3702
|
+
* MSAL-defined error code indicating a native account is unavailable on the platform.
|
|
3703
|
+
* @public
|
|
3704
|
+
*/
|
|
3715
3705
|
const nativeAccountUnavailable = "native_account_unavailable";
|
|
3706
|
+
/**
|
|
3707
|
+
* MSAL-defined error code indicating the refresh token has expired and user interaction is needed.
|
|
3708
|
+
* @public
|
|
3709
|
+
*/
|
|
3716
3710
|
const refreshTokenExpired = "refresh_token_expired";
|
|
3711
|
+
/**
|
|
3712
|
+
* MSAL-defined error code indicating UI/UX is not allowed (e.g., blocked by policy), requiring alternate interaction.
|
|
3713
|
+
* @public
|
|
3714
|
+
*/
|
|
3717
3715
|
const uxNotAllowed = "ux_not_allowed";
|
|
3718
|
-
|
|
3716
|
+
/**
|
|
3717
|
+
* Server-originated error code indicating interaction is required to complete the request.
|
|
3718
|
+
* @public
|
|
3719
|
+
*/
|
|
3719
3720
|
const interactionRequired = "interaction_required";
|
|
3721
|
+
/**
|
|
3722
|
+
* Server-originated error code indicating user consent is required.
|
|
3723
|
+
* @public
|
|
3724
|
+
*/
|
|
3720
3725
|
const consentRequired = "consent_required";
|
|
3726
|
+
/**
|
|
3727
|
+
* Server-originated error code indicating user login is required.
|
|
3728
|
+
* @public
|
|
3729
|
+
*/
|
|
3721
3730
|
const loginRequired = "login_required";
|
|
3722
|
-
|
|
3731
|
+
/**
|
|
3732
|
+
* Server-originated error code indicating the token is invalid or corrupted.
|
|
3733
|
+
* @public
|
|
3734
|
+
*/
|
|
3735
|
+
const badToken = "bad_token";
|
|
3736
|
+
/**
|
|
3737
|
+
* Server-originated error code indicating the user is in an interrupted state and interaction is required.
|
|
3738
|
+
* @public
|
|
3739
|
+
*/
|
|
3740
|
+
const interruptedUser = "interrupted_user";
|
|
3723
3741
|
|
|
3724
3742
|
var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
3725
3743
|
__proto__: null,
|
|
3726
3744
|
badToken: badToken,
|
|
3727
3745
|
consentRequired: consentRequired,
|
|
3728
3746
|
interactionRequired: interactionRequired,
|
|
3747
|
+
interruptedUser: interruptedUser,
|
|
3729
3748
|
loginRequired: loginRequired,
|
|
3730
3749
|
nativeAccountUnavailable: nativeAccountUnavailable,
|
|
3731
3750
|
noTokensFound: noTokensFound,
|
|
@@ -3733,7 +3752,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
3733
3752
|
uxNotAllowed: uxNotAllowed
|
|
3734
3753
|
});
|
|
3735
3754
|
|
|
3736
|
-
/*! @azure/msal-common v16.0
|
|
3755
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3737
3756
|
|
|
3738
3757
|
/*
|
|
3739
3758
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3748,6 +3767,7 @@ const InteractionRequiredServerErrorMessage = [
|
|
|
3748
3767
|
loginRequired,
|
|
3749
3768
|
badToken,
|
|
3750
3769
|
uxNotAllowed,
|
|
3770
|
+
interruptedUser,
|
|
3751
3771
|
];
|
|
3752
3772
|
const InteractionRequiredAuthSubErrorMessage = [
|
|
3753
3773
|
"message_only",
|
|
@@ -3757,6 +3777,7 @@ const InteractionRequiredAuthSubErrorMessage = [
|
|
|
3757
3777
|
"consent_required",
|
|
3758
3778
|
"bad_token",
|
|
3759
3779
|
"ux_not_allowed",
|
|
3780
|
+
"interrupted_user",
|
|
3760
3781
|
];
|
|
3761
3782
|
/**
|
|
3762
3783
|
* Error thrown when user interaction is required.
|
|
@@ -3799,7 +3820,7 @@ function createInteractionRequiredAuthError(errorCode, errorMessage) {
|
|
|
3799
3820
|
return new InteractionRequiredAuthError(errorCode, errorMessage);
|
|
3800
3821
|
}
|
|
3801
3822
|
|
|
3802
|
-
/*! @azure/msal-common v16.0
|
|
3823
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3803
3824
|
|
|
3804
3825
|
/*
|
|
3805
3826
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3867,7 +3888,7 @@ function parseRequestState(base64Decode, state) {
|
|
|
3867
3888
|
}
|
|
3868
3889
|
}
|
|
3869
3890
|
|
|
3870
|
-
/*! @azure/msal-common v16.0
|
|
3891
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3871
3892
|
/*
|
|
3872
3893
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3873
3894
|
* Licensed under the MIT License.
|
|
@@ -3932,7 +3953,7 @@ function wasClockTurnedBack(cachedAt) {
|
|
|
3932
3953
|
return cachedAtSec > nowSeconds();
|
|
3933
3954
|
}
|
|
3934
3955
|
|
|
3935
|
-
/*! @azure/msal-common v16.0
|
|
3956
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3936
3957
|
/*
|
|
3937
3958
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3938
3959
|
* Licensed under the MIT License.
|
|
@@ -4003,7 +4024,7 @@ const RegionDiscoveryGetCurrentVersion = "regionDiscoveryGetCurrentVersion";
|
|
|
4003
4024
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
4004
4025
|
const SetUserData = "setUserData";
|
|
4005
4026
|
|
|
4006
|
-
/*! @azure/msal-common v16.0
|
|
4027
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4007
4028
|
/*
|
|
4008
4029
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4009
4030
|
* Licensed under the MIT License.
|
|
@@ -4098,7 +4119,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
4098
4119
|
};
|
|
4099
4120
|
};
|
|
4100
4121
|
|
|
4101
|
-
/*! @azure/msal-common v16.0
|
|
4122
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4102
4123
|
|
|
4103
4124
|
/*
|
|
4104
4125
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4178,7 +4199,7 @@ class PopTokenGenerator {
|
|
|
4178
4199
|
}
|
|
4179
4200
|
}
|
|
4180
4201
|
|
|
4181
|
-
/*! @azure/msal-common v16.0
|
|
4202
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4182
4203
|
/*
|
|
4183
4204
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4184
4205
|
* Licensed under the MIT License.
|
|
@@ -4205,7 +4226,7 @@ class PopTokenGenerator {
|
|
|
4205
4226
|
}
|
|
4206
4227
|
}
|
|
4207
4228
|
|
|
4208
|
-
/*! @azure/msal-common v16.0
|
|
4229
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4209
4230
|
|
|
4210
4231
|
/*
|
|
4211
4232
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4464,7 +4485,7 @@ function isAuthorityMetadataExpired(metadata) {
|
|
|
4464
4485
|
return metadata.expiresAt <= nowSeconds();
|
|
4465
4486
|
}
|
|
4466
4487
|
|
|
4467
|
-
/*! @azure/msal-common v16.0
|
|
4488
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4468
4489
|
|
|
4469
4490
|
/*
|
|
4470
4491
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4800,7 +4821,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
|
|
|
4800
4821
|
return baseAccount;
|
|
4801
4822
|
}
|
|
4802
4823
|
|
|
4803
|
-
/*! @azure/msal-common v16.0
|
|
4824
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4804
4825
|
/*
|
|
4805
4826
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4806
4827
|
* Licensed under the MIT License.
|
|
@@ -4810,7 +4831,7 @@ const CcsCredentialType = {
|
|
|
4810
4831
|
UPN: "UPN",
|
|
4811
4832
|
};
|
|
4812
4833
|
|
|
4813
|
-
/*! @azure/msal-common v16.0
|
|
4834
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4814
4835
|
/*
|
|
4815
4836
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4816
4837
|
* Licensed under the MIT License.
|
|
@@ -4828,7 +4849,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
|
|
|
4828
4849
|
}
|
|
4829
4850
|
}
|
|
4830
4851
|
|
|
4831
|
-
/*! @azure/msal-common v16.0
|
|
4852
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4832
4853
|
/*
|
|
4833
4854
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4834
4855
|
* Licensed under the MIT License.
|
|
@@ -4849,7 +4870,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
|
4849
4870
|
};
|
|
4850
4871
|
}
|
|
4851
4872
|
|
|
4852
|
-
/*! @azure/msal-common v16.0
|
|
4873
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4853
4874
|
|
|
4854
4875
|
/*
|
|
4855
4876
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4935,7 +4956,7 @@ class ThrottlingUtils {
|
|
|
4935
4956
|
}
|
|
4936
4957
|
}
|
|
4937
4958
|
|
|
4938
|
-
/*! @azure/msal-common v16.0
|
|
4959
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4939
4960
|
|
|
4940
4961
|
/*
|
|
4941
4962
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4966,7 +4987,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
|
|
|
4966
4987
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
4967
4988
|
}
|
|
4968
4989
|
|
|
4969
|
-
/*! @azure/msal-common v16.0
|
|
4990
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4970
4991
|
|
|
4971
4992
|
/*
|
|
4972
4993
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5080,7 +5101,7 @@ async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId
|
|
|
5080
5101
|
return response;
|
|
5081
5102
|
}
|
|
5082
5103
|
|
|
5083
|
-
/*! @azure/msal-common v16.0
|
|
5104
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5084
5105
|
/*
|
|
5085
5106
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5086
5107
|
* Licensed under the MIT License.
|
|
@@ -5092,7 +5113,7 @@ function isOpenIdConfigResponse(response) {
|
|
|
5092
5113
|
response.hasOwnProperty("jwks_uri"));
|
|
5093
5114
|
}
|
|
5094
5115
|
|
|
5095
|
-
/*! @azure/msal-common v16.0
|
|
5116
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5096
5117
|
/*
|
|
5097
5118
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5098
5119
|
* Licensed under the MIT License.
|
|
@@ -5102,7 +5123,7 @@ function isCloudInstanceDiscoveryResponse(response) {
|
|
|
5102
5123
|
response.hasOwnProperty("metadata"));
|
|
5103
5124
|
}
|
|
5104
5125
|
|
|
5105
|
-
/*! @azure/msal-common v16.0
|
|
5126
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5106
5127
|
/*
|
|
5107
5128
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5108
5129
|
* Licensed under the MIT License.
|
|
@@ -5112,7 +5133,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
|
5112
5133
|
response.hasOwnProperty("error_description"));
|
|
5113
5134
|
}
|
|
5114
5135
|
|
|
5115
|
-
/*! @azure/msal-common v16.0
|
|
5136
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5116
5137
|
|
|
5117
5138
|
/*
|
|
5118
5139
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5217,7 +5238,7 @@ RegionDiscovery.IMDS_OPTIONS = {
|
|
|
5217
5238
|
},
|
|
5218
5239
|
};
|
|
5219
5240
|
|
|
5220
|
-
/*! @azure/msal-common v16.0
|
|
5241
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5221
5242
|
|
|
5222
5243
|
/*
|
|
5223
5244
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6037,7 +6058,7 @@ function buildStaticAuthorityOptions(authOptions) {
|
|
|
6037
6058
|
};
|
|
6038
6059
|
}
|
|
6039
6060
|
|
|
6040
|
-
/*! @azure/msal-common v16.0
|
|
6061
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6041
6062
|
|
|
6042
6063
|
/*
|
|
6043
6064
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6071,7 +6092,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
|
|
|
6071
6092
|
}
|
|
6072
6093
|
}
|
|
6073
6094
|
|
|
6074
|
-
/*! @azure/msal-common v16.0
|
|
6095
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6075
6096
|
|
|
6076
6097
|
/*
|
|
6077
6098
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6331,7 +6352,7 @@ class AuthorizationCodeClient {
|
|
|
6331
6352
|
}
|
|
6332
6353
|
}
|
|
6333
6354
|
|
|
6334
|
-
/*! @azure/msal-common v16.0
|
|
6355
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6335
6356
|
|
|
6336
6357
|
/*
|
|
6337
6358
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6556,7 +6577,7 @@ class RefreshTokenClient {
|
|
|
6556
6577
|
}
|
|
6557
6578
|
}
|
|
6558
6579
|
|
|
6559
|
-
/*! @azure/msal-common v16.0
|
|
6580
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6560
6581
|
|
|
6561
6582
|
/*
|
|
6562
6583
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6665,7 +6686,7 @@ class SilentFlowClient {
|
|
|
6665
6686
|
}
|
|
6666
6687
|
}
|
|
6667
6688
|
|
|
6668
|
-
/*! @azure/msal-common v16.0
|
|
6689
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6669
6690
|
|
|
6670
6691
|
/*
|
|
6671
6692
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6680,7 +6701,7 @@ const StubbedNetworkModule = {
|
|
|
6680
6701
|
},
|
|
6681
6702
|
};
|
|
6682
6703
|
|
|
6683
|
-
/*! @azure/msal-common v16.0
|
|
6704
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6684
6705
|
|
|
6685
6706
|
/*
|
|
6686
6707
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6904,7 +6925,7 @@ function extractLoginHint(account) {
|
|
|
6904
6925
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
6905
6926
|
}
|
|
6906
6927
|
|
|
6907
|
-
/*! @azure/msal-common v16.0
|
|
6928
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6908
6929
|
|
|
6909
6930
|
/*
|
|
6910
6931
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6962,7 +6983,7 @@ class AuthenticationHeaderParser {
|
|
|
6962
6983
|
}
|
|
6963
6984
|
}
|
|
6964
6985
|
|
|
6965
|
-
/*! @azure/msal-common v16.0
|
|
6986
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6966
6987
|
/*
|
|
6967
6988
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6968
6989
|
* Licensed under the MIT License.
|
|
@@ -6979,7 +7000,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
6979
7000
|
unexpectedError: unexpectedError
|
|
6980
7001
|
});
|
|
6981
7002
|
|
|
6982
|
-
/*! @azure/msal-common v16.0
|
|
7003
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6983
7004
|
|
|
6984
7005
|
/*
|
|
6985
7006
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7240,7 +7261,7 @@ class ServerTelemetryManager {
|
|
|
7240
7261
|
}
|
|
7241
7262
|
}
|
|
7242
7263
|
|
|
7243
|
-
/*! @azure/msal-common v16.0
|
|
7264
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7244
7265
|
|
|
7245
7266
|
/*
|
|
7246
7267
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7261,7 +7282,7 @@ function createJoseHeaderError(code) {
|
|
|
7261
7282
|
return new JoseHeaderError(code);
|
|
7262
7283
|
}
|
|
7263
7284
|
|
|
7264
|
-
/*! @azure/msal-common v16.0
|
|
7285
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7265
7286
|
/*
|
|
7266
7287
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7267
7288
|
* Licensed under the MIT License.
|
|
@@ -7269,7 +7290,7 @@ function createJoseHeaderError(code) {
|
|
|
7269
7290
|
const missingKidError = "missing_kid_error";
|
|
7270
7291
|
const missingAlgError = "missing_alg_error";
|
|
7271
7292
|
|
|
7272
|
-
/*! @azure/msal-common v16.0
|
|
7293
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7273
7294
|
|
|
7274
7295
|
/*
|
|
7275
7296
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7309,7 +7330,7 @@ class JoseHeader {
|
|
|
7309
7330
|
}
|
|
7310
7331
|
}
|
|
7311
7332
|
|
|
7312
|
-
/*! @azure/msal-common v16.0
|
|
7333
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7313
7334
|
|
|
7314
7335
|
/*
|
|
7315
7336
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -10135,7 +10156,7 @@ const EventType = {
|
|
|
10135
10156
|
|
|
10136
10157
|
/* eslint-disable header/header */
|
|
10137
10158
|
const name = "@azure/msal-browser";
|
|
10138
|
-
const version = "5.
|
|
10159
|
+
const version = "5.3.0";
|
|
10139
10160
|
|
|
10140
10161
|
/*
|
|
10141
10162
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -16342,6 +16363,10 @@ class StandardController {
|
|
|
16342
16363
|
const result = this.acquireTokenSilentNoIframe(silentRequest, cacheLookupPolicy).catch(async (refreshTokenError) => {
|
|
16343
16364
|
const shouldTryToResolveSilently = checkIfRefreshTokenErrorCanBeResolvedSilently(refreshTokenError, cacheLookupPolicy);
|
|
16344
16365
|
if (shouldTryToResolveSilently) {
|
|
16366
|
+
const silentRefreshReason = `${refreshTokenError.errorCode}${refreshTokenError.subError
|
|
16367
|
+
? `|${refreshTokenError.subError}`
|
|
16368
|
+
: ""}`;
|
|
16369
|
+
this.performanceClient.addFields({ silentRefreshReason }, request.correlationId);
|
|
16345
16370
|
if (!this.activeIframeRequest) {
|
|
16346
16371
|
let _resolve;
|
|
16347
16372
|
// Always set the active request tracker immediately after checking it to prevent races
|