@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.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.3.0 2026-02-24 */
|
|
2
2
|
'use strict';
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msal = {}));
|
|
7
7
|
})(this, (function (exports) { 'use strict';
|
|
8
8
|
|
|
9
|
-
/*! @azure/msal-common v16.0
|
|
9
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
10
10
|
/*
|
|
11
11
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
12
12
|
* Licensed under the MIT License.
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
// Token renewal offset default in seconds
|
|
239
239
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
240
240
|
|
|
241
|
-
/*! @azure/msal-common v16.0
|
|
241
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
242
242
|
/*
|
|
243
243
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
244
244
|
* Licensed under the MIT License.
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
const EAR_JWK = "ear_jwk";
|
|
289
289
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
290
290
|
|
|
291
|
-
/*! @azure/msal-common v16.0
|
|
291
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
292
292
|
/*
|
|
293
293
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
294
294
|
* Licensed under the MIT License.
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
-
/*! @azure/msal-common v16.0
|
|
322
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
323
323
|
|
|
324
324
|
/*
|
|
325
325
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -339,7 +339,7 @@
|
|
|
339
339
|
return new ClientConfigurationError(errorCode);
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
-
/*! @azure/msal-common v16.0
|
|
342
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
343
343
|
/*
|
|
344
344
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
345
345
|
* Licensed under the MIT License.
|
|
@@ -417,26 +417,9 @@
|
|
|
417
417
|
return null;
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
|
-
/**
|
|
421
|
-
* Tests if a given string matches a given pattern, with support for wildcards and queries.
|
|
422
|
-
* @param pattern Wildcard pattern to string match. Supports "*" for wildcards and "?" for queries
|
|
423
|
-
* @param input String to match against
|
|
424
|
-
*/
|
|
425
|
-
static matchPattern(pattern, input) {
|
|
426
|
-
/**
|
|
427
|
-
* Wildcard support: https://stackoverflow.com/a/3117248/4888559
|
|
428
|
-
* Queries: replaces "?" in string with escaped "\?" for regex test
|
|
429
|
-
*/
|
|
430
|
-
// eslint-disable-next-line security/detect-non-literal-regexp
|
|
431
|
-
const regex = new RegExp(pattern
|
|
432
|
-
.replace(/\\/g, "\\\\")
|
|
433
|
-
.replace(/\*/g, "[^ ]*")
|
|
434
|
-
.replace(/\?/g, "\\?"));
|
|
435
|
-
return regex.test(input);
|
|
436
|
-
}
|
|
437
420
|
}
|
|
438
421
|
|
|
439
|
-
/*! @azure/msal-common v16.0
|
|
422
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
440
423
|
|
|
441
424
|
/*
|
|
442
425
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -459,7 +442,7 @@
|
|
|
459
442
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
460
443
|
}
|
|
461
444
|
|
|
462
|
-
/*! @azure/msal-common v16.0
|
|
445
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
463
446
|
/*
|
|
464
447
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
465
448
|
* Licensed under the MIT License.
|
|
@@ -513,7 +496,7 @@
|
|
|
513
496
|
urlParseError: urlParseError
|
|
514
497
|
});
|
|
515
498
|
|
|
516
|
-
/*! @azure/msal-common v16.0
|
|
499
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
517
500
|
/*
|
|
518
501
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
519
502
|
* Licensed under the MIT License.
|
|
@@ -597,7 +580,7 @@
|
|
|
597
580
|
userCanceled: userCanceled
|
|
598
581
|
});
|
|
599
582
|
|
|
600
|
-
/*! @azure/msal-common v16.0
|
|
583
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
601
584
|
|
|
602
585
|
/*
|
|
603
586
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -792,7 +775,7 @@
|
|
|
792
775
|
}
|
|
793
776
|
}
|
|
794
777
|
|
|
795
|
-
/*! @azure/msal-common v16.0
|
|
778
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
796
779
|
|
|
797
780
|
/*
|
|
798
781
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1159,7 +1142,7 @@
|
|
|
1159
1142
|
parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
|
|
1160
1143
|
}
|
|
1161
1144
|
|
|
1162
|
-
/*! @azure/msal-common v16.0
|
|
1145
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1163
1146
|
|
|
1164
1147
|
/*
|
|
1165
1148
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1268,7 +1251,7 @@
|
|
|
1268
1251
|
}
|
|
1269
1252
|
}
|
|
1270
1253
|
|
|
1271
|
-
/*! @azure/msal-common v16.0
|
|
1254
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1272
1255
|
|
|
1273
1256
|
/*
|
|
1274
1257
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1307,7 +1290,7 @@
|
|
|
1307
1290
|
},
|
|
1308
1291
|
};
|
|
1309
1292
|
|
|
1310
|
-
/*! @azure/msal-common v16.0
|
|
1293
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1311
1294
|
/*
|
|
1312
1295
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1313
1296
|
* Licensed under the MIT License.
|
|
@@ -1582,12 +1565,12 @@
|
|
|
1582
1565
|
}
|
|
1583
1566
|
}
|
|
1584
1567
|
|
|
1585
|
-
/*! @azure/msal-common v16.0
|
|
1568
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1586
1569
|
/* eslint-disable header/header */
|
|
1587
1570
|
const name$1 = "@azure/msal-common";
|
|
1588
|
-
const version$1 = "16.0
|
|
1571
|
+
const version$1 = "16.1.0";
|
|
1589
1572
|
|
|
1590
|
-
/*! @azure/msal-common v16.0
|
|
1573
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1591
1574
|
/*
|
|
1592
1575
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1593
1576
|
* Licensed under the MIT License.
|
|
@@ -1607,7 +1590,7 @@
|
|
|
1607
1590
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
1608
1591
|
};
|
|
1609
1592
|
|
|
1610
|
-
/*! @azure/msal-common v16.0
|
|
1593
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1611
1594
|
/*
|
|
1612
1595
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1613
1596
|
* Licensed under the MIT License.
|
|
@@ -1689,7 +1672,7 @@
|
|
|
1689
1672
|
return updatedAccountInfo;
|
|
1690
1673
|
}
|
|
1691
1674
|
|
|
1692
|
-
/*! @azure/msal-common v16.0
|
|
1675
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1693
1676
|
|
|
1694
1677
|
/*
|
|
1695
1678
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1769,7 +1752,7 @@
|
|
|
1769
1752
|
}
|
|
1770
1753
|
}
|
|
1771
1754
|
|
|
1772
|
-
/*! @azure/msal-common v16.0
|
|
1755
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1773
1756
|
|
|
1774
1757
|
/*
|
|
1775
1758
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1926,7 +1909,7 @@
|
|
|
1926
1909
|
}
|
|
1927
1910
|
}
|
|
1928
1911
|
|
|
1929
|
-
/*! @azure/msal-common v16.0
|
|
1912
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
1930
1913
|
|
|
1931
1914
|
/*
|
|
1932
1915
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2083,7 +2066,7 @@
|
|
|
2083
2066
|
return null;
|
|
2084
2067
|
}
|
|
2085
2068
|
|
|
2086
|
-
/*! @azure/msal-common v16.0
|
|
2069
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2087
2070
|
/*
|
|
2088
2071
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2089
2072
|
* Licensed under the MIT License.
|
|
@@ -2091,7 +2074,7 @@
|
|
|
2091
2074
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2092
2075
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2093
2076
|
|
|
2094
|
-
/*! @azure/msal-common v16.0
|
|
2077
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2095
2078
|
|
|
2096
2079
|
/*
|
|
2097
2080
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2129,7 +2112,7 @@
|
|
|
2129
2112
|
}
|
|
2130
2113
|
}
|
|
2131
2114
|
|
|
2132
|
-
/*! @azure/msal-common v16.0
|
|
2115
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2133
2116
|
|
|
2134
2117
|
/*
|
|
2135
2118
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2167,7 +2150,7 @@
|
|
|
2167
2150
|
};
|
|
2168
2151
|
}
|
|
2169
2152
|
|
|
2170
|
-
/*! @azure/msal-common v16.0
|
|
2153
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2171
2154
|
/*
|
|
2172
2155
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2173
2156
|
* Licensed under the MIT License.
|
|
@@ -2182,7 +2165,7 @@
|
|
|
2182
2165
|
Ciam: 3,
|
|
2183
2166
|
};
|
|
2184
2167
|
|
|
2185
|
-
/*! @azure/msal-common v16.0
|
|
2168
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2186
2169
|
/*
|
|
2187
2170
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2188
2171
|
* Licensed under the MIT License.
|
|
@@ -2204,7 +2187,7 @@
|
|
|
2204
2187
|
return null;
|
|
2205
2188
|
}
|
|
2206
2189
|
|
|
2207
|
-
/*! @azure/msal-common v16.0
|
|
2190
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2208
2191
|
/*
|
|
2209
2192
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2210
2193
|
* Licensed under the MIT License.
|
|
@@ -2228,7 +2211,7 @@
|
|
|
2228
2211
|
EAR: "EAR",
|
|
2229
2212
|
};
|
|
2230
2213
|
|
|
2231
|
-
/*! @azure/msal-common v16.0
|
|
2214
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2232
2215
|
/**
|
|
2233
2216
|
* Returns the AccountInfo interface for this account.
|
|
2234
2217
|
*/
|
|
@@ -2403,7 +2386,7 @@
|
|
|
2403
2386
|
entity.hasOwnProperty("authorityType"));
|
|
2404
2387
|
}
|
|
2405
2388
|
|
|
2406
|
-
/*! @azure/msal-common v16.0
|
|
2389
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
2407
2390
|
|
|
2408
2391
|
/*
|
|
2409
2392
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3500,7 +3483,7 @@
|
|
|
3500
3483
|
}
|
|
3501
3484
|
}
|
|
3502
3485
|
|
|
3503
|
-
/*! @azure/msal-common v16.0
|
|
3486
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3504
3487
|
/*
|
|
3505
3488
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3506
3489
|
* Licensed under the MIT License.
|
|
@@ -3541,7 +3524,7 @@
|
|
|
3541
3524
|
"upgradedCacheCount",
|
|
3542
3525
|
]);
|
|
3543
3526
|
|
|
3544
|
-
/*! @azure/msal-common v16.0
|
|
3527
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3545
3528
|
|
|
3546
3529
|
/*
|
|
3547
3530
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3596,7 +3579,7 @@
|
|
|
3596
3579
|
}
|
|
3597
3580
|
}
|
|
3598
3581
|
|
|
3599
|
-
/*! @azure/msal-common v16.0
|
|
3582
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3600
3583
|
|
|
3601
3584
|
/*
|
|
3602
3585
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3690,7 +3673,7 @@
|
|
|
3690
3673
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3691
3674
|
}
|
|
3692
3675
|
|
|
3693
|
-
/*! @azure/msal-common v16.0
|
|
3676
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3694
3677
|
|
|
3695
3678
|
/*
|
|
3696
3679
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3709,27 +3692,63 @@
|
|
|
3709
3692
|
}
|
|
3710
3693
|
}
|
|
3711
3694
|
|
|
3712
|
-
/*! @azure/msal-common v16.0
|
|
3695
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3713
3696
|
/*
|
|
3714
3697
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3715
3698
|
* Licensed under the MIT License.
|
|
3716
3699
|
*/
|
|
3717
|
-
|
|
3700
|
+
/**
|
|
3701
|
+
* MSAL-defined interaction required error code indicating no tokens are found in cache.
|
|
3702
|
+
* @public
|
|
3703
|
+
*/
|
|
3718
3704
|
const noTokensFound = "no_tokens_found";
|
|
3705
|
+
/**
|
|
3706
|
+
* MSAL-defined error code indicating a native account is unavailable on the platform.
|
|
3707
|
+
* @public
|
|
3708
|
+
*/
|
|
3719
3709
|
const nativeAccountUnavailable = "native_account_unavailable";
|
|
3710
|
+
/**
|
|
3711
|
+
* MSAL-defined error code indicating the refresh token has expired and user interaction is needed.
|
|
3712
|
+
* @public
|
|
3713
|
+
*/
|
|
3720
3714
|
const refreshTokenExpired = "refresh_token_expired";
|
|
3715
|
+
/**
|
|
3716
|
+
* MSAL-defined error code indicating UI/UX is not allowed (e.g., blocked by policy), requiring alternate interaction.
|
|
3717
|
+
* @public
|
|
3718
|
+
*/
|
|
3721
3719
|
const uxNotAllowed = "ux_not_allowed";
|
|
3722
|
-
|
|
3720
|
+
/**
|
|
3721
|
+
* Server-originated error code indicating interaction is required to complete the request.
|
|
3722
|
+
* @public
|
|
3723
|
+
*/
|
|
3723
3724
|
const interactionRequired = "interaction_required";
|
|
3725
|
+
/**
|
|
3726
|
+
* Server-originated error code indicating user consent is required.
|
|
3727
|
+
* @public
|
|
3728
|
+
*/
|
|
3724
3729
|
const consentRequired = "consent_required";
|
|
3730
|
+
/**
|
|
3731
|
+
* Server-originated error code indicating user login is required.
|
|
3732
|
+
* @public
|
|
3733
|
+
*/
|
|
3725
3734
|
const loginRequired = "login_required";
|
|
3726
|
-
|
|
3735
|
+
/**
|
|
3736
|
+
* Server-originated error code indicating the token is invalid or corrupted.
|
|
3737
|
+
* @public
|
|
3738
|
+
*/
|
|
3739
|
+
const badToken = "bad_token";
|
|
3740
|
+
/**
|
|
3741
|
+
* Server-originated error code indicating the user is in an interrupted state and interaction is required.
|
|
3742
|
+
* @public
|
|
3743
|
+
*/
|
|
3744
|
+
const interruptedUser = "interrupted_user";
|
|
3727
3745
|
|
|
3728
3746
|
var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
3729
3747
|
__proto__: null,
|
|
3730
3748
|
badToken: badToken,
|
|
3731
3749
|
consentRequired: consentRequired,
|
|
3732
3750
|
interactionRequired: interactionRequired,
|
|
3751
|
+
interruptedUser: interruptedUser,
|
|
3733
3752
|
loginRequired: loginRequired,
|
|
3734
3753
|
nativeAccountUnavailable: nativeAccountUnavailable,
|
|
3735
3754
|
noTokensFound: noTokensFound,
|
|
@@ -3737,7 +3756,7 @@
|
|
|
3737
3756
|
uxNotAllowed: uxNotAllowed
|
|
3738
3757
|
});
|
|
3739
3758
|
|
|
3740
|
-
/*! @azure/msal-common v16.0
|
|
3759
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3741
3760
|
|
|
3742
3761
|
/*
|
|
3743
3762
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3752,6 +3771,7 @@
|
|
|
3752
3771
|
loginRequired,
|
|
3753
3772
|
badToken,
|
|
3754
3773
|
uxNotAllowed,
|
|
3774
|
+
interruptedUser,
|
|
3755
3775
|
];
|
|
3756
3776
|
const InteractionRequiredAuthSubErrorMessage = [
|
|
3757
3777
|
"message_only",
|
|
@@ -3761,6 +3781,7 @@
|
|
|
3761
3781
|
"consent_required",
|
|
3762
3782
|
"bad_token",
|
|
3763
3783
|
"ux_not_allowed",
|
|
3784
|
+
"interrupted_user",
|
|
3764
3785
|
];
|
|
3765
3786
|
/**
|
|
3766
3787
|
* Error thrown when user interaction is required.
|
|
@@ -3803,7 +3824,7 @@
|
|
|
3803
3824
|
return new InteractionRequiredAuthError(errorCode, errorMessage);
|
|
3804
3825
|
}
|
|
3805
3826
|
|
|
3806
|
-
/*! @azure/msal-common v16.0
|
|
3827
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3807
3828
|
|
|
3808
3829
|
/*
|
|
3809
3830
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3871,7 +3892,7 @@
|
|
|
3871
3892
|
}
|
|
3872
3893
|
}
|
|
3873
3894
|
|
|
3874
|
-
/*! @azure/msal-common v16.0
|
|
3895
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3875
3896
|
/*
|
|
3876
3897
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3877
3898
|
* Licensed under the MIT License.
|
|
@@ -3936,7 +3957,7 @@
|
|
|
3936
3957
|
return cachedAtSec > nowSeconds();
|
|
3937
3958
|
}
|
|
3938
3959
|
|
|
3939
|
-
/*! @azure/msal-common v16.0
|
|
3960
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
3940
3961
|
/*
|
|
3941
3962
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3942
3963
|
* Licensed under the MIT License.
|
|
@@ -4007,7 +4028,7 @@
|
|
|
4007
4028
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
4008
4029
|
const SetUserData = "setUserData";
|
|
4009
4030
|
|
|
4010
|
-
/*! @azure/msal-common v16.0
|
|
4031
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4011
4032
|
/*
|
|
4012
4033
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4013
4034
|
* Licensed under the MIT License.
|
|
@@ -4102,7 +4123,7 @@
|
|
|
4102
4123
|
};
|
|
4103
4124
|
};
|
|
4104
4125
|
|
|
4105
|
-
/*! @azure/msal-common v16.0
|
|
4126
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4106
4127
|
|
|
4107
4128
|
/*
|
|
4108
4129
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4182,7 +4203,7 @@
|
|
|
4182
4203
|
}
|
|
4183
4204
|
}
|
|
4184
4205
|
|
|
4185
|
-
/*! @azure/msal-common v16.0
|
|
4206
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4186
4207
|
/*
|
|
4187
4208
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4188
4209
|
* Licensed under the MIT License.
|
|
@@ -4209,7 +4230,7 @@
|
|
|
4209
4230
|
}
|
|
4210
4231
|
}
|
|
4211
4232
|
|
|
4212
|
-
/*! @azure/msal-common v16.0
|
|
4233
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4213
4234
|
|
|
4214
4235
|
/*
|
|
4215
4236
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4468,7 +4489,7 @@
|
|
|
4468
4489
|
return metadata.expiresAt <= nowSeconds();
|
|
4469
4490
|
}
|
|
4470
4491
|
|
|
4471
|
-
/*! @azure/msal-common v16.0
|
|
4492
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4472
4493
|
|
|
4473
4494
|
/*
|
|
4474
4495
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4804,7 +4825,7 @@
|
|
|
4804
4825
|
return baseAccount;
|
|
4805
4826
|
}
|
|
4806
4827
|
|
|
4807
|
-
/*! @azure/msal-common v16.0
|
|
4828
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4808
4829
|
/*
|
|
4809
4830
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4810
4831
|
* Licensed under the MIT License.
|
|
@@ -4814,7 +4835,7 @@
|
|
|
4814
4835
|
UPN: "UPN",
|
|
4815
4836
|
};
|
|
4816
4837
|
|
|
4817
|
-
/*! @azure/msal-common v16.0
|
|
4838
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4818
4839
|
/*
|
|
4819
4840
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4820
4841
|
* Licensed under the MIT License.
|
|
@@ -4832,7 +4853,7 @@
|
|
|
4832
4853
|
}
|
|
4833
4854
|
}
|
|
4834
4855
|
|
|
4835
|
-
/*! @azure/msal-common v16.0
|
|
4856
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4836
4857
|
/*
|
|
4837
4858
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4838
4859
|
* Licensed under the MIT License.
|
|
@@ -4853,7 +4874,7 @@
|
|
|
4853
4874
|
};
|
|
4854
4875
|
}
|
|
4855
4876
|
|
|
4856
|
-
/*! @azure/msal-common v16.0
|
|
4877
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4857
4878
|
|
|
4858
4879
|
/*
|
|
4859
4880
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4939,7 +4960,7 @@
|
|
|
4939
4960
|
}
|
|
4940
4961
|
}
|
|
4941
4962
|
|
|
4942
|
-
/*! @azure/msal-common v16.0
|
|
4963
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4943
4964
|
|
|
4944
4965
|
/*
|
|
4945
4966
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4970,7 +4991,7 @@
|
|
|
4970
4991
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
4971
4992
|
}
|
|
4972
4993
|
|
|
4973
|
-
/*! @azure/msal-common v16.0
|
|
4994
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
4974
4995
|
|
|
4975
4996
|
/*
|
|
4976
4997
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5084,7 +5105,7 @@
|
|
|
5084
5105
|
return response;
|
|
5085
5106
|
}
|
|
5086
5107
|
|
|
5087
|
-
/*! @azure/msal-common v16.0
|
|
5108
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5088
5109
|
/*
|
|
5089
5110
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5090
5111
|
* Licensed under the MIT License.
|
|
@@ -5096,7 +5117,7 @@
|
|
|
5096
5117
|
response.hasOwnProperty("jwks_uri"));
|
|
5097
5118
|
}
|
|
5098
5119
|
|
|
5099
|
-
/*! @azure/msal-common v16.0
|
|
5120
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5100
5121
|
/*
|
|
5101
5122
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5102
5123
|
* Licensed under the MIT License.
|
|
@@ -5106,7 +5127,7 @@
|
|
|
5106
5127
|
response.hasOwnProperty("metadata"));
|
|
5107
5128
|
}
|
|
5108
5129
|
|
|
5109
|
-
/*! @azure/msal-common v16.0
|
|
5130
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5110
5131
|
/*
|
|
5111
5132
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5112
5133
|
* Licensed under the MIT License.
|
|
@@ -5116,7 +5137,7 @@
|
|
|
5116
5137
|
response.hasOwnProperty("error_description"));
|
|
5117
5138
|
}
|
|
5118
5139
|
|
|
5119
|
-
/*! @azure/msal-common v16.0
|
|
5140
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5120
5141
|
|
|
5121
5142
|
/*
|
|
5122
5143
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5221,7 +5242,7 @@
|
|
|
5221
5242
|
},
|
|
5222
5243
|
};
|
|
5223
5244
|
|
|
5224
|
-
/*! @azure/msal-common v16.0
|
|
5245
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
5225
5246
|
|
|
5226
5247
|
/*
|
|
5227
5248
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6041,7 +6062,7 @@
|
|
|
6041
6062
|
};
|
|
6042
6063
|
}
|
|
6043
6064
|
|
|
6044
|
-
/*! @azure/msal-common v16.0
|
|
6065
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6045
6066
|
|
|
6046
6067
|
/*
|
|
6047
6068
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6075,7 +6096,7 @@
|
|
|
6075
6096
|
}
|
|
6076
6097
|
}
|
|
6077
6098
|
|
|
6078
|
-
/*! @azure/msal-common v16.0
|
|
6099
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6079
6100
|
|
|
6080
6101
|
/*
|
|
6081
6102
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6335,7 +6356,7 @@
|
|
|
6335
6356
|
}
|
|
6336
6357
|
}
|
|
6337
6358
|
|
|
6338
|
-
/*! @azure/msal-common v16.0
|
|
6359
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6339
6360
|
|
|
6340
6361
|
/*
|
|
6341
6362
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6560,7 +6581,7 @@
|
|
|
6560
6581
|
}
|
|
6561
6582
|
}
|
|
6562
6583
|
|
|
6563
|
-
/*! @azure/msal-common v16.0
|
|
6584
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6564
6585
|
|
|
6565
6586
|
/*
|
|
6566
6587
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6669,7 +6690,7 @@
|
|
|
6669
6690
|
}
|
|
6670
6691
|
}
|
|
6671
6692
|
|
|
6672
|
-
/*! @azure/msal-common v16.0
|
|
6693
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6673
6694
|
|
|
6674
6695
|
/*
|
|
6675
6696
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6684,7 +6705,7 @@
|
|
|
6684
6705
|
},
|
|
6685
6706
|
};
|
|
6686
6707
|
|
|
6687
|
-
/*! @azure/msal-common v16.0
|
|
6708
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6688
6709
|
|
|
6689
6710
|
/*
|
|
6690
6711
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6908,7 +6929,7 @@
|
|
|
6908
6929
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
6909
6930
|
}
|
|
6910
6931
|
|
|
6911
|
-
/*! @azure/msal-common v16.0
|
|
6932
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6912
6933
|
|
|
6913
6934
|
/*
|
|
6914
6935
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6966,7 +6987,7 @@
|
|
|
6966
6987
|
}
|
|
6967
6988
|
}
|
|
6968
6989
|
|
|
6969
|
-
/*! @azure/msal-common v16.0
|
|
6990
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6970
6991
|
/*
|
|
6971
6992
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6972
6993
|
* Licensed under the MIT License.
|
|
@@ -6983,7 +7004,7 @@
|
|
|
6983
7004
|
unexpectedError: unexpectedError
|
|
6984
7005
|
});
|
|
6985
7006
|
|
|
6986
|
-
/*! @azure/msal-common v16.0
|
|
7007
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
6987
7008
|
|
|
6988
7009
|
/*
|
|
6989
7010
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7244,7 +7265,7 @@
|
|
|
7244
7265
|
}
|
|
7245
7266
|
}
|
|
7246
7267
|
|
|
7247
|
-
/*! @azure/msal-common v16.0
|
|
7268
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7248
7269
|
|
|
7249
7270
|
/*
|
|
7250
7271
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7265,7 +7286,7 @@
|
|
|
7265
7286
|
return new JoseHeaderError(code);
|
|
7266
7287
|
}
|
|
7267
7288
|
|
|
7268
|
-
/*! @azure/msal-common v16.0
|
|
7289
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7269
7290
|
/*
|
|
7270
7291
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7271
7292
|
* Licensed under the MIT License.
|
|
@@ -7273,7 +7294,7 @@
|
|
|
7273
7294
|
const missingKidError = "missing_kid_error";
|
|
7274
7295
|
const missingAlgError = "missing_alg_error";
|
|
7275
7296
|
|
|
7276
|
-
/*! @azure/msal-common v16.0
|
|
7297
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7277
7298
|
|
|
7278
7299
|
/*
|
|
7279
7300
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7313,7 +7334,7 @@
|
|
|
7313
7334
|
}
|
|
7314
7335
|
}
|
|
7315
7336
|
|
|
7316
|
-
/*! @azure/msal-common v16.0
|
|
7337
|
+
/*! @azure/msal-common v16.1.0 2026-02-24 */
|
|
7317
7338
|
|
|
7318
7339
|
/*
|
|
7319
7340
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -10139,7 +10160,7 @@
|
|
|
10139
10160
|
|
|
10140
10161
|
/* eslint-disable header/header */
|
|
10141
10162
|
const name = "@azure/msal-browser";
|
|
10142
|
-
const version = "5.
|
|
10163
|
+
const version = "5.3.0";
|
|
10143
10164
|
|
|
10144
10165
|
/*
|
|
10145
10166
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -16346,6 +16367,10 @@
|
|
|
16346
16367
|
const result = this.acquireTokenSilentNoIframe(silentRequest, cacheLookupPolicy).catch(async (refreshTokenError) => {
|
|
16347
16368
|
const shouldTryToResolveSilently = checkIfRefreshTokenErrorCanBeResolvedSilently(refreshTokenError, cacheLookupPolicy);
|
|
16348
16369
|
if (shouldTryToResolveSilently) {
|
|
16370
|
+
const silentRefreshReason = `${refreshTokenError.errorCode}${refreshTokenError.subError
|
|
16371
|
+
? `|${refreshTokenError.subError}`
|
|
16372
|
+
: ""}`;
|
|
16373
|
+
this.performanceClient.addFields({ silentRefreshReason }, request.correlationId);
|
|
16349
16374
|
if (!this.activeIframeRequest) {
|
|
16350
16375
|
let _resolve;
|
|
16351
16376
|
// Always set the active request tracker immediately after checking it to prevent races
|