@azure/msal-browser 5.8.0 → 5.9.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.d.ts.map +1 -1
- package/dist/cache/CookieStorage.mjs +22 -9
- package/dist/cache/CookieStorage.mjs.map +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.mjs +1 -1
- package/dist/crypto/BrowserCrypto.mjs +1 -1
- package/dist/crypto/CryptoOps.mjs +1 -1
- package/dist/crypto/PkceGenerator.mjs +1 -1
- package/dist/crypto/SignedHttpRequest.mjs +1 -1
- package/dist/custom-auth-path/app/PublicClientApplication.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
- package/dist/custom-auth-path/cache/AccountManager.mjs +1 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +1 -1
- package/dist/custom-auth-path/cache/CacheHelpers.mjs +1 -1
- package/dist/custom-auth-path/cache/CacheKeys.mjs +1 -1
- package/dist/custom-auth-path/cache/CookieStorage.d.ts.map +1 -1
- package/dist/custom-auth-path/cache/CookieStorage.mjs +22 -9
- package/dist/custom-auth-path/cache/CookieStorage.mjs.map +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.mjs +1 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +1 -1
- package/dist/custom-auth-path/crypto/CryptoOps.mjs +1 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/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.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +2 -3
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +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/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +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/cache/CookieStorage.d.ts.map +1 -1
- package/dist/redirect-bridge/config/Configuration.mjs +1 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +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 +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 +93 -79
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/types/cache/CookieStorage.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +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 +94 -79
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +94 -79
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +2 -2
- package/lib/redirect-bridge/msal-redirect-bridge.cjs +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.cjs.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.js +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.min.js +1 -1
- package/lib/redirect-bridge/types/cache/CookieStorage.d.ts.map +1 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
- package/lib/redirect-bridge/types/packageMetadata.d.ts +1 -1
- package/lib/types/cache/CookieStorage.d.ts.map +1 -1
- package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
- package/lib/types/packageMetadata.d.ts +1 -1
- package/package.json +2 -2
- package/src/cache/CookieStorage.ts +22 -9
- package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +2 -3
- package/src/packageMetadata.ts +1 -1
package/lib/msal-browser.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.9.0 2026-04-28 */
|
|
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.5.
|
|
9
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
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.5.
|
|
241
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
242
242
|
/*
|
|
243
243
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
244
244
|
* Licensed under the MIT License.
|
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
const RESOURCE = "resource";
|
|
291
291
|
const CLI_DATA = "clidata";
|
|
292
292
|
|
|
293
|
-
/*! @azure/msal-common v16.5.
|
|
293
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
294
294
|
/*
|
|
295
295
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
296
296
|
* Licensed under the MIT License.
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
-
/*! @azure/msal-common v16.5.
|
|
324
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
325
325
|
|
|
326
326
|
/*
|
|
327
327
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -341,7 +341,7 @@
|
|
|
341
341
|
return new ClientConfigurationError(errorCode);
|
|
342
342
|
}
|
|
343
343
|
|
|
344
|
-
/*! @azure/msal-common v16.5.
|
|
344
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
345
345
|
/*
|
|
346
346
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
347
347
|
* Licensed under the MIT License.
|
|
@@ -421,7 +421,7 @@
|
|
|
421
421
|
}
|
|
422
422
|
}
|
|
423
423
|
|
|
424
|
-
/*! @azure/msal-common v16.5.
|
|
424
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
425
425
|
|
|
426
426
|
/*
|
|
427
427
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -444,7 +444,7 @@
|
|
|
444
444
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
445
445
|
}
|
|
446
446
|
|
|
447
|
-
/*! @azure/msal-common v16.5.
|
|
447
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
448
448
|
/*
|
|
449
449
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
450
450
|
* Licensed under the MIT License.
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
urlParseError: urlParseError
|
|
499
499
|
});
|
|
500
500
|
|
|
501
|
-
/*! @azure/msal-common v16.5.
|
|
501
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
502
502
|
/*
|
|
503
503
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
504
504
|
* Licensed under the MIT License.
|
|
@@ -586,7 +586,7 @@
|
|
|
586
586
|
userCanceled: userCanceled
|
|
587
587
|
});
|
|
588
588
|
|
|
589
|
-
/*! @azure/msal-common v16.5.
|
|
589
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
590
590
|
|
|
591
591
|
/*
|
|
592
592
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -781,7 +781,7 @@
|
|
|
781
781
|
}
|
|
782
782
|
}
|
|
783
783
|
|
|
784
|
-
/*! @azure/msal-common v16.5.
|
|
784
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
785
785
|
|
|
786
786
|
/*
|
|
787
787
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1170,7 +1170,7 @@
|
|
|
1170
1170
|
}
|
|
1171
1171
|
}
|
|
1172
1172
|
|
|
1173
|
-
/*! @azure/msal-common v16.5.
|
|
1173
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1174
1174
|
|
|
1175
1175
|
/*
|
|
1176
1176
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1279,7 +1279,7 @@
|
|
|
1279
1279
|
}
|
|
1280
1280
|
}
|
|
1281
1281
|
|
|
1282
|
-
/*! @azure/msal-common v16.5.
|
|
1282
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1283
1283
|
|
|
1284
1284
|
/*
|
|
1285
1285
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1318,7 +1318,7 @@
|
|
|
1318
1318
|
},
|
|
1319
1319
|
};
|
|
1320
1320
|
|
|
1321
|
-
/*! @azure/msal-common v16.5.
|
|
1321
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1322
1322
|
/*
|
|
1323
1323
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1324
1324
|
* Licensed under the MIT License.
|
|
@@ -1593,12 +1593,12 @@
|
|
|
1593
1593
|
}
|
|
1594
1594
|
}
|
|
1595
1595
|
|
|
1596
|
-
/*! @azure/msal-common v16.5.
|
|
1596
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1597
1597
|
/* eslint-disable header/header */
|
|
1598
1598
|
const name$1 = "@azure/msal-common";
|
|
1599
|
-
const version$1 = "16.5.
|
|
1599
|
+
const version$1 = "16.5.2";
|
|
1600
1600
|
|
|
1601
|
-
/*! @azure/msal-common v16.5.
|
|
1601
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1602
1602
|
/*
|
|
1603
1603
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1604
1604
|
* Licensed under the MIT License.
|
|
@@ -1618,7 +1618,7 @@
|
|
|
1618
1618
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
1619
1619
|
};
|
|
1620
1620
|
|
|
1621
|
-
/*! @azure/msal-common v16.5.
|
|
1621
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1622
1622
|
/*
|
|
1623
1623
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1624
1624
|
* Licensed under the MIT License.
|
|
@@ -1701,7 +1701,7 @@
|
|
|
1701
1701
|
return updatedAccountInfo;
|
|
1702
1702
|
}
|
|
1703
1703
|
|
|
1704
|
-
/*! @azure/msal-common v16.5.
|
|
1704
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1705
1705
|
|
|
1706
1706
|
/*
|
|
1707
1707
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1781,7 +1781,7 @@
|
|
|
1781
1781
|
}
|
|
1782
1782
|
}
|
|
1783
1783
|
|
|
1784
|
-
/*! @azure/msal-common v16.5.
|
|
1784
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1785
1785
|
|
|
1786
1786
|
/*
|
|
1787
1787
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1938,7 +1938,7 @@
|
|
|
1938
1938
|
}
|
|
1939
1939
|
}
|
|
1940
1940
|
|
|
1941
|
-
/*! @azure/msal-common v16.5.
|
|
1941
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1942
1942
|
|
|
1943
1943
|
/*
|
|
1944
1944
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2095,7 +2095,7 @@
|
|
|
2095
2095
|
return null;
|
|
2096
2096
|
}
|
|
2097
2097
|
|
|
2098
|
-
/*! @azure/msal-common v16.5.
|
|
2098
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2099
2099
|
/*
|
|
2100
2100
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2101
2101
|
* Licensed under the MIT License.
|
|
@@ -2103,7 +2103,7 @@
|
|
|
2103
2103
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2104
2104
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2105
2105
|
|
|
2106
|
-
/*! @azure/msal-common v16.5.
|
|
2106
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2107
2107
|
|
|
2108
2108
|
/*
|
|
2109
2109
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2141,7 +2141,7 @@
|
|
|
2141
2141
|
}
|
|
2142
2142
|
}
|
|
2143
2143
|
|
|
2144
|
-
/*! @azure/msal-common v16.5.
|
|
2144
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2145
2145
|
|
|
2146
2146
|
/*
|
|
2147
2147
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2179,7 +2179,7 @@
|
|
|
2179
2179
|
};
|
|
2180
2180
|
}
|
|
2181
2181
|
|
|
2182
|
-
/*! @azure/msal-common v16.5.
|
|
2182
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2183
2183
|
/*
|
|
2184
2184
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2185
2185
|
* Licensed under the MIT License.
|
|
@@ -2194,7 +2194,7 @@
|
|
|
2194
2194
|
Ciam: 3,
|
|
2195
2195
|
};
|
|
2196
2196
|
|
|
2197
|
-
/*! @azure/msal-common v16.5.
|
|
2197
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2198
2198
|
/*
|
|
2199
2199
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2200
2200
|
* Licensed under the MIT License.
|
|
@@ -2216,7 +2216,7 @@
|
|
|
2216
2216
|
return null;
|
|
2217
2217
|
}
|
|
2218
2218
|
|
|
2219
|
-
/*! @azure/msal-common v16.5.
|
|
2219
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2220
2220
|
/*
|
|
2221
2221
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2222
2222
|
* Licensed under the MIT License.
|
|
@@ -2240,7 +2240,7 @@
|
|
|
2240
2240
|
EAR: "EAR",
|
|
2241
2241
|
};
|
|
2242
2242
|
|
|
2243
|
-
/*! @azure/msal-common v16.5.
|
|
2243
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2244
2244
|
/**
|
|
2245
2245
|
* Returns the AccountInfo interface for this account.
|
|
2246
2246
|
*/
|
|
@@ -2415,7 +2415,7 @@
|
|
|
2415
2415
|
entity.hasOwnProperty("authorityType"));
|
|
2416
2416
|
}
|
|
2417
2417
|
|
|
2418
|
-
/*! @azure/msal-common v16.5.
|
|
2418
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2419
2419
|
|
|
2420
2420
|
/*
|
|
2421
2421
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2453,8 +2453,10 @@
|
|
|
2453
2453
|
const allAccounts = this.getAllAccounts(accountFilter, correlationId);
|
|
2454
2454
|
if (allAccounts.length > 1) {
|
|
2455
2455
|
// If one or more accounts are found, prioritize accounts that have an ID token
|
|
2456
|
-
const sortedAccounts = allAccounts.sort((
|
|
2457
|
-
|
|
2456
|
+
const sortedAccounts = allAccounts.sort((a, b) => {
|
|
2457
|
+
const aHasClaims = a.idTokenClaims ? 1 : 0;
|
|
2458
|
+
const bHasClaims = b.idTokenClaims ? 1 : 0;
|
|
2459
|
+
return bHasClaims - aHasClaims;
|
|
2458
2460
|
});
|
|
2459
2461
|
return sortedAccounts[0];
|
|
2460
2462
|
}
|
|
@@ -3545,7 +3547,7 @@
|
|
|
3545
3547
|
}
|
|
3546
3548
|
}
|
|
3547
3549
|
|
|
3548
|
-
/*! @azure/msal-common v16.5.
|
|
3550
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3549
3551
|
/*
|
|
3550
3552
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3551
3553
|
* Licensed under the MIT License.
|
|
@@ -3596,7 +3598,7 @@
|
|
|
3596
3598
|
"redirectBridgeMessageVersion",
|
|
3597
3599
|
]);
|
|
3598
3600
|
|
|
3599
|
-
/*! @azure/msal-common v16.5.
|
|
3601
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3600
3602
|
|
|
3601
3603
|
/*
|
|
3602
3604
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3651,7 +3653,7 @@
|
|
|
3651
3653
|
}
|
|
3652
3654
|
}
|
|
3653
3655
|
|
|
3654
|
-
/*! @azure/msal-common v16.5.
|
|
3656
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3655
3657
|
|
|
3656
3658
|
/*
|
|
3657
3659
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3746,7 +3748,7 @@
|
|
|
3746
3748
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3747
3749
|
}
|
|
3748
3750
|
|
|
3749
|
-
/*! @azure/msal-common v16.5.
|
|
3751
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3750
3752
|
/*
|
|
3751
3753
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3752
3754
|
* Licensed under the MIT License.
|
|
@@ -3773,7 +3775,7 @@
|
|
|
3773
3775
|
}
|
|
3774
3776
|
}
|
|
3775
3777
|
|
|
3776
|
-
/*! @azure/msal-common v16.5.
|
|
3778
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3777
3779
|
/*
|
|
3778
3780
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3779
3781
|
* Licensed under the MIT License.
|
|
@@ -3838,7 +3840,7 @@
|
|
|
3838
3840
|
return cachedAtSec > nowSeconds();
|
|
3839
3841
|
}
|
|
3840
3842
|
|
|
3841
|
-
/*! @azure/msal-common v16.5.
|
|
3843
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3842
3844
|
|
|
3843
3845
|
/*
|
|
3844
3846
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4097,7 +4099,7 @@
|
|
|
4097
4099
|
return metadata.expiresAt <= nowSeconds();
|
|
4098
4100
|
}
|
|
4099
4101
|
|
|
4100
|
-
/*! @azure/msal-common v16.5.
|
|
4102
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4101
4103
|
/*
|
|
4102
4104
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4103
4105
|
* Licensed under the MIT License.
|
|
@@ -4168,7 +4170,7 @@
|
|
|
4168
4170
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
4169
4171
|
const SetUserData = "setUserData";
|
|
4170
4172
|
|
|
4171
|
-
/*! @azure/msal-common v16.5.
|
|
4173
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4172
4174
|
/*
|
|
4173
4175
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4174
4176
|
* Licensed under the MIT License.
|
|
@@ -4261,7 +4263,7 @@
|
|
|
4261
4263
|
};
|
|
4262
4264
|
};
|
|
4263
4265
|
|
|
4264
|
-
/*! @azure/msal-common v16.5.
|
|
4266
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4265
4267
|
|
|
4266
4268
|
/*
|
|
4267
4269
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4341,7 +4343,7 @@
|
|
|
4341
4343
|
}
|
|
4342
4344
|
}
|
|
4343
4345
|
|
|
4344
|
-
/*! @azure/msal-common v16.5.
|
|
4346
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4345
4347
|
/*
|
|
4346
4348
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4347
4349
|
* Licensed under the MIT License.
|
|
@@ -4405,7 +4407,7 @@
|
|
|
4405
4407
|
uxNotAllowed: uxNotAllowed
|
|
4406
4408
|
});
|
|
4407
4409
|
|
|
4408
|
-
/*! @azure/msal-common v16.5.
|
|
4410
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4409
4411
|
|
|
4410
4412
|
/*
|
|
4411
4413
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4473,7 +4475,7 @@
|
|
|
4473
4475
|
return new InteractionRequiredAuthError(errorCode, errorMessage);
|
|
4474
4476
|
}
|
|
4475
4477
|
|
|
4476
|
-
/*! @azure/msal-common v16.5.
|
|
4478
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4477
4479
|
|
|
4478
4480
|
/*
|
|
4479
4481
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4492,7 +4494,7 @@
|
|
|
4492
4494
|
}
|
|
4493
4495
|
}
|
|
4494
4496
|
|
|
4495
|
-
/*! @azure/msal-common v16.5.
|
|
4497
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4496
4498
|
|
|
4497
4499
|
/*
|
|
4498
4500
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4560,7 +4562,7 @@
|
|
|
4560
4562
|
}
|
|
4561
4563
|
}
|
|
4562
4564
|
|
|
4563
|
-
/*! @azure/msal-common v16.5.
|
|
4565
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4564
4566
|
|
|
4565
4567
|
/*
|
|
4566
4568
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4908,7 +4910,7 @@
|
|
|
4908
4910
|
return baseAccount;
|
|
4909
4911
|
}
|
|
4910
4912
|
|
|
4911
|
-
/*! @azure/msal-common v16.5.
|
|
4913
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4912
4914
|
/*
|
|
4913
4915
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4914
4916
|
* Licensed under the MIT License.
|
|
@@ -4918,7 +4920,7 @@
|
|
|
4918
4920
|
UPN: "UPN",
|
|
4919
4921
|
};
|
|
4920
4922
|
|
|
4921
|
-
/*! @azure/msal-common v16.5.
|
|
4923
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4922
4924
|
/*
|
|
4923
4925
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4924
4926
|
* Licensed under the MIT License.
|
|
@@ -4936,7 +4938,7 @@
|
|
|
4936
4938
|
}
|
|
4937
4939
|
}
|
|
4938
4940
|
|
|
4939
|
-
/*! @azure/msal-common v16.5.
|
|
4941
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4940
4942
|
/*
|
|
4941
4943
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4942
4944
|
* Licensed under the MIT License.
|
|
@@ -4957,7 +4959,7 @@
|
|
|
4957
4959
|
};
|
|
4958
4960
|
}
|
|
4959
4961
|
|
|
4960
|
-
/*! @azure/msal-common v16.5.
|
|
4962
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4961
4963
|
|
|
4962
4964
|
/*
|
|
4963
4965
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5043,7 +5045,7 @@
|
|
|
5043
5045
|
}
|
|
5044
5046
|
}
|
|
5045
5047
|
|
|
5046
|
-
/*! @azure/msal-common v16.5.
|
|
5048
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5047
5049
|
|
|
5048
5050
|
/*
|
|
5049
5051
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5074,7 +5076,7 @@
|
|
|
5074
5076
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
5075
5077
|
}
|
|
5076
5078
|
|
|
5077
|
-
/*! @azure/msal-common v16.5.
|
|
5079
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5078
5080
|
|
|
5079
5081
|
/*
|
|
5080
5082
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5188,7 +5190,7 @@
|
|
|
5188
5190
|
return response;
|
|
5189
5191
|
}
|
|
5190
5192
|
|
|
5191
|
-
/*! @azure/msal-common v16.5.
|
|
5193
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5192
5194
|
/*
|
|
5193
5195
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5194
5196
|
* Licensed under the MIT License.
|
|
@@ -5200,7 +5202,7 @@
|
|
|
5200
5202
|
response.hasOwnProperty("jwks_uri"));
|
|
5201
5203
|
}
|
|
5202
5204
|
|
|
5203
|
-
/*! @azure/msal-common v16.5.
|
|
5205
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5204
5206
|
/*
|
|
5205
5207
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5206
5208
|
* Licensed under the MIT License.
|
|
@@ -5210,7 +5212,7 @@
|
|
|
5210
5212
|
response.hasOwnProperty("metadata"));
|
|
5211
5213
|
}
|
|
5212
5214
|
|
|
5213
|
-
/*! @azure/msal-common v16.5.
|
|
5215
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5214
5216
|
/*
|
|
5215
5217
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5216
5218
|
* Licensed under the MIT License.
|
|
@@ -5220,7 +5222,7 @@
|
|
|
5220
5222
|
response.hasOwnProperty("error_description"));
|
|
5221
5223
|
}
|
|
5222
5224
|
|
|
5223
|
-
/*! @azure/msal-common v16.5.
|
|
5225
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5224
5226
|
|
|
5225
5227
|
/*
|
|
5226
5228
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5325,7 +5327,7 @@
|
|
|
5325
5327
|
},
|
|
5326
5328
|
};
|
|
5327
5329
|
|
|
5328
|
-
/*! @azure/msal-common v16.5.
|
|
5330
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5329
5331
|
|
|
5330
5332
|
/*
|
|
5331
5333
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6145,7 +6147,7 @@
|
|
|
6145
6147
|
};
|
|
6146
6148
|
}
|
|
6147
6149
|
|
|
6148
|
-
/*! @azure/msal-common v16.5.
|
|
6150
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6149
6151
|
|
|
6150
6152
|
/*
|
|
6151
6153
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6179,7 +6181,7 @@
|
|
|
6179
6181
|
}
|
|
6180
6182
|
}
|
|
6181
6183
|
|
|
6182
|
-
/*! @azure/msal-common v16.5.
|
|
6184
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6183
6185
|
|
|
6184
6186
|
/*
|
|
6185
6187
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6436,7 +6438,7 @@
|
|
|
6436
6438
|
}
|
|
6437
6439
|
}
|
|
6438
6440
|
|
|
6439
|
-
/*! @azure/msal-common v16.5.
|
|
6441
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6440
6442
|
|
|
6441
6443
|
/*
|
|
6442
6444
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6657,7 +6659,7 @@
|
|
|
6657
6659
|
}
|
|
6658
6660
|
}
|
|
6659
6661
|
|
|
6660
|
-
/*! @azure/msal-common v16.5.
|
|
6662
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6661
6663
|
|
|
6662
6664
|
/*
|
|
6663
6665
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6773,7 +6775,7 @@
|
|
|
6773
6775
|
}
|
|
6774
6776
|
}
|
|
6775
6777
|
|
|
6776
|
-
/*! @azure/msal-common v16.5.
|
|
6778
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6777
6779
|
|
|
6778
6780
|
/*
|
|
6779
6781
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6788,7 +6790,7 @@
|
|
|
6788
6790
|
},
|
|
6789
6791
|
};
|
|
6790
6792
|
|
|
6791
|
-
/*! @azure/msal-common v16.5.
|
|
6793
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6792
6794
|
|
|
6793
6795
|
/*
|
|
6794
6796
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7011,7 +7013,7 @@
|
|
|
7011
7013
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
7012
7014
|
}
|
|
7013
7015
|
|
|
7014
|
-
/*! @azure/msal-common v16.5.
|
|
7016
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7015
7017
|
|
|
7016
7018
|
/*
|
|
7017
7019
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7044,7 +7046,7 @@
|
|
|
7044
7046
|
return Object.prototype.hasOwnProperty.call(params, "resource");
|
|
7045
7047
|
}
|
|
7046
7048
|
|
|
7047
|
-
/*! @azure/msal-common v16.5.
|
|
7049
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7048
7050
|
|
|
7049
7051
|
/*
|
|
7050
7052
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7102,7 +7104,7 @@
|
|
|
7102
7104
|
}
|
|
7103
7105
|
}
|
|
7104
7106
|
|
|
7105
|
-
/*! @azure/msal-common v16.5.
|
|
7107
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7106
7108
|
/*
|
|
7107
7109
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7108
7110
|
* Licensed under the MIT License.
|
|
@@ -7119,7 +7121,7 @@
|
|
|
7119
7121
|
unexpectedError: unexpectedError
|
|
7120
7122
|
});
|
|
7121
7123
|
|
|
7122
|
-
/*! @azure/msal-common v16.5.
|
|
7124
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7123
7125
|
|
|
7124
7126
|
/*
|
|
7125
7127
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7380,7 +7382,7 @@
|
|
|
7380
7382
|
}
|
|
7381
7383
|
}
|
|
7382
7384
|
|
|
7383
|
-
/*! @azure/msal-common v16.5.
|
|
7385
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7384
7386
|
|
|
7385
7387
|
/*
|
|
7386
7388
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7401,7 +7403,7 @@
|
|
|
7401
7403
|
return new JoseHeaderError(code);
|
|
7402
7404
|
}
|
|
7403
7405
|
|
|
7404
|
-
/*! @azure/msal-common v16.5.
|
|
7406
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7405
7407
|
/*
|
|
7406
7408
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7407
7409
|
* Licensed under the MIT License.
|
|
@@ -7409,7 +7411,7 @@
|
|
|
7409
7411
|
const missingKidError = "missing_kid_error";
|
|
7410
7412
|
const missingAlgError = "missing_alg_error";
|
|
7411
7413
|
|
|
7412
|
-
/*! @azure/msal-common v16.5.
|
|
7414
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7413
7415
|
|
|
7414
7416
|
/*
|
|
7415
7417
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7449,7 +7451,7 @@
|
|
|
7449
7451
|
}
|
|
7450
7452
|
}
|
|
7451
7453
|
|
|
7452
|
-
/*! @azure/msal-common v16.5.
|
|
7454
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7453
7455
|
|
|
7454
7456
|
/*
|
|
7455
7457
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -9904,14 +9906,20 @@
|
|
|
9904
9906
|
return Promise.resolve();
|
|
9905
9907
|
}
|
|
9906
9908
|
getItem(key) {
|
|
9907
|
-
const name =
|
|
9909
|
+
const name = encodeURIComponent(key);
|
|
9908
9910
|
const cookieList = document.cookie.split(";");
|
|
9909
9911
|
for (let i = 0; i < cookieList.length; i++) {
|
|
9910
|
-
const cookie = cookieList[i];
|
|
9911
|
-
const
|
|
9912
|
-
const
|
|
9913
|
-
if (
|
|
9914
|
-
|
|
9912
|
+
const cookie = cookieList[i].trim();
|
|
9913
|
+
const eqIndex = cookie.indexOf("=");
|
|
9914
|
+
const rawKey = eqIndex === -1 ? cookie : cookie.substring(0, eqIndex);
|
|
9915
|
+
if (rawKey === name) {
|
|
9916
|
+
const rawValue = eqIndex === -1 ? "" : cookie.substring(eqIndex + 1);
|
|
9917
|
+
try {
|
|
9918
|
+
return decodeURIComponent(rawValue);
|
|
9919
|
+
}
|
|
9920
|
+
catch {
|
|
9921
|
+
return rawValue;
|
|
9922
|
+
}
|
|
9915
9923
|
}
|
|
9916
9924
|
}
|
|
9917
9925
|
return "";
|
|
@@ -9942,8 +9950,15 @@
|
|
|
9942
9950
|
const cookieList = document.cookie.split(";");
|
|
9943
9951
|
const keys = [];
|
|
9944
9952
|
cookieList.forEach((cookie) => {
|
|
9945
|
-
const
|
|
9946
|
-
|
|
9953
|
+
const trimmed = cookie.trim();
|
|
9954
|
+
const eqIndex = trimmed.indexOf("=");
|
|
9955
|
+
const rawKey = eqIndex === -1 ? trimmed : trimmed.substring(0, eqIndex);
|
|
9956
|
+
try {
|
|
9957
|
+
keys.push(decodeURIComponent(rawKey));
|
|
9958
|
+
}
|
|
9959
|
+
catch {
|
|
9960
|
+
// Skip cookies with malformed percent-encoded sequences in the key
|
|
9961
|
+
}
|
|
9947
9962
|
});
|
|
9948
9963
|
return keys;
|
|
9949
9964
|
}
|
|
@@ -10374,7 +10389,7 @@
|
|
|
10374
10389
|
|
|
10375
10390
|
/* eslint-disable header/header */
|
|
10376
10391
|
const name = "@azure/msal-browser";
|
|
10377
|
-
const version = "5.
|
|
10392
|
+
const version = "5.9.0";
|
|
10378
10393
|
|
|
10379
10394
|
/*
|
|
10380
10395
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|