@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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CookieStorage.d.ts","sourceRoot":"","sources":["../../../../src/cache/CookieStorage.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAKrD,eAAO,MAAM,eAAe;;;CAGlB,CAAC;AACX,MAAM,MAAM,eAAe,GACvB,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,CAAC;AAE3D,qBAAa,aAAc,YAAW,cAAc,CAAC,MAAM,CAAC;IACxD,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAI3B,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI;
|
|
1
|
+
{"version":3,"file":"CookieStorage.d.ts","sourceRoot":"","sources":["../../../../src/cache/CookieStorage.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAKrD,eAAO,MAAM,eAAe;;;CAGlB,CAAC;AACX,MAAM,MAAM,eAAe,GACvB,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,CAAC;AAE3D,qBAAa,aAAc,YAAW,cAAc,CAAC,MAAM,CAAC;IACxD,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAI3B,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI;IAqBnC,WAAW,IAAI,MAAM,GAAG,IAAI;IAI5B,OAAO,CACH,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,cAAc,CAAC,EAAE,MAAM,EACvB,MAAM,GAAE,OAAc,EACtB,QAAQ,GAAE,eAAqC,GAChD,IAAI;IAkBD,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC;IAMlC,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAK7B,OAAO,IAAI,MAAM,EAAE;IAkBnB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAIjC,WAAW,IAAI,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;CAIxC;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM,CAMtE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SignInApiClient.d.ts","sourceRoot":"","sources":["../../../../../../../src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAG5D,OAAO,EACH,sBAAsB,EACtB,8BAA8B,EAC9B,qBAAqB,EACrB,uBAAuB,EACvB,qBAAqB,EACrB,0BAA0B,EAC7B,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACH,uBAAuB,EACvB,sBAAsB,EACtB,wBAAwB,EACxB,mBAAmB,EACtB,MAAM,6BAA6B,CAAC;AAErC,qBAAa,eAAgB,SAAQ,aAAa;IAC9C,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAS;gBAGnC,oBAAoB,EAAE,MAAM,EAC5B,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,WAAW,EACvB,YAAY,CAAC,EAAE,MAAM,EACrB,wBAAwB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAWrD;;;;OAIG;IACG,QAAQ,CACV,MAAM,EAAE,qBAAqB,GAC9B,OAAO,CAAC,sBAAsB,CAAC;IAsBlC;;;;OAIG;IACG,gBAAgB,CAClB,MAAM,EAAE,sBAAsB,GAC/B,OAAO,CAAC,uBAAuB,CAAC;IAoBnC;;;;;OAKG;IACG,yBAAyB,CAC3B,MAAM,EAAE,0BAA0B,GACnC,OAAO,CAAC,mBAAmB,CAAC;IAczB,oBAAoB,CACtB,MAAM,EAAE,qBAAqB,GAC9B,OAAO,CAAC,mBAAmB,CAAC;IAczB,iCAAiC,CACnC,MAAM,EAAE,8BAA8B,GACvC,OAAO,CAAC,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"SignInApiClient.d.ts","sourceRoot":"","sources":["../../../../../../../src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAG5D,OAAO,EACH,sBAAsB,EACtB,8BAA8B,EAC9B,qBAAqB,EACrB,uBAAuB,EACvB,qBAAqB,EACrB,0BAA0B,EAC7B,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACH,uBAAuB,EACvB,sBAAsB,EACtB,wBAAwB,EACxB,mBAAmB,EACtB,MAAM,6BAA6B,CAAC;AAErC,qBAAa,eAAgB,SAAQ,aAAa;IAC9C,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAS;gBAGnC,oBAAoB,EAAE,MAAM,EAC5B,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,WAAW,EACvB,YAAY,CAAC,EAAE,MAAM,EACrB,wBAAwB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAWrD;;;;OAIG;IACG,QAAQ,CACV,MAAM,EAAE,qBAAqB,GAC9B,OAAO,CAAC,sBAAsB,CAAC;IAsBlC;;;;OAIG;IACG,gBAAgB,CAClB,MAAM,EAAE,sBAAsB,GAC/B,OAAO,CAAC,uBAAuB,CAAC;IAoBnC;;;;;OAKG;IACG,yBAAyB,CAC3B,MAAM,EAAE,0BAA0B,GACnC,OAAO,CAAC,mBAAmB,CAAC;IAczB,oBAAoB,CACtB,MAAM,EAAE,qBAAqB,GAC9B,OAAO,CAAC,mBAAmB,CAAC;IAczB,iCAAiC,CACnC,MAAM,EAAE,8BAA8B,GACvC,OAAO,CAAC,mBAAmB,CAAC;IAc/B;;;OAGG;IACG,kBAAkB,CACpB,MAAM,EAAE,uBAAuB,GAChC,OAAO,CAAC,wBAAwB,CAAC;YAkBtB,aAAa;IAoB3B,OAAO,CAAC,MAAM,CAAC,0BAA0B;CAoC5C"}
|
package/lib/msal-browser.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.9.0 2026-04-28 */
|
|
2
2
|
'use strict';
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
/*! @azure/msal-common v16.5.
|
|
5
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6
6
|
/*
|
|
7
7
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8
8
|
* Licensed under the MIT License.
|
|
@@ -234,7 +234,7 @@ const JsonWebTokenTypes$1 = {
|
|
|
234
234
|
// Token renewal offset default in seconds
|
|
235
235
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
236
236
|
|
|
237
|
-
/*! @azure/msal-common v16.5.
|
|
237
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
238
238
|
/*
|
|
239
239
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
240
240
|
* Licensed under the MIT License.
|
|
@@ -286,7 +286,7 @@ const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
|
286
286
|
const RESOURCE = "resource";
|
|
287
287
|
const CLI_DATA = "clidata";
|
|
288
288
|
|
|
289
|
-
/*! @azure/msal-common v16.5.
|
|
289
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
290
290
|
/*
|
|
291
291
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
292
292
|
* Licensed under the MIT License.
|
|
@@ -317,7 +317,7 @@ function createAuthError(code, additionalMessage) {
|
|
|
317
317
|
return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
/*! @azure/msal-common v16.5.
|
|
320
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
321
321
|
|
|
322
322
|
/*
|
|
323
323
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -337,7 +337,7 @@ function createClientConfigurationError(errorCode) {
|
|
|
337
337
|
return new ClientConfigurationError(errorCode);
|
|
338
338
|
}
|
|
339
339
|
|
|
340
|
-
/*! @azure/msal-common v16.5.
|
|
340
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
341
341
|
/*
|
|
342
342
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
343
343
|
* Licensed under the MIT License.
|
|
@@ -417,7 +417,7 @@ class StringUtils {
|
|
|
417
417
|
}
|
|
418
418
|
}
|
|
419
419
|
|
|
420
|
-
/*! @azure/msal-common v16.5.
|
|
420
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
421
421
|
|
|
422
422
|
/*
|
|
423
423
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -440,7 +440,7 @@ function createClientAuthError(errorCode, additionalMessage) {
|
|
|
440
440
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
441
441
|
}
|
|
442
442
|
|
|
443
|
-
/*! @azure/msal-common v16.5.
|
|
443
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
444
444
|
/*
|
|
445
445
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
446
446
|
* Licensed under the MIT License.
|
|
@@ -494,7 +494,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
494
494
|
urlParseError: urlParseError
|
|
495
495
|
});
|
|
496
496
|
|
|
497
|
-
/*! @azure/msal-common v16.5.
|
|
497
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
498
498
|
/*
|
|
499
499
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
500
500
|
* Licensed under the MIT License.
|
|
@@ -582,7 +582,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
582
582
|
userCanceled: userCanceled
|
|
583
583
|
});
|
|
584
584
|
|
|
585
|
-
/*! @azure/msal-common v16.5.
|
|
585
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
586
586
|
|
|
587
587
|
/*
|
|
588
588
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -777,7 +777,7 @@ class ScopeSet {
|
|
|
777
777
|
}
|
|
778
778
|
}
|
|
779
779
|
|
|
780
|
-
/*! @azure/msal-common v16.5.
|
|
780
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
781
781
|
|
|
782
782
|
/*
|
|
783
783
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1166,7 +1166,7 @@ function addResource(parameters, resource) {
|
|
|
1166
1166
|
}
|
|
1167
1167
|
}
|
|
1168
1168
|
|
|
1169
|
-
/*! @azure/msal-common v16.5.
|
|
1169
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1170
1170
|
|
|
1171
1171
|
/*
|
|
1172
1172
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1275,7 +1275,7 @@ function normalizeUrlForComparison(url) {
|
|
|
1275
1275
|
}
|
|
1276
1276
|
}
|
|
1277
1277
|
|
|
1278
|
-
/*! @azure/msal-common v16.5.
|
|
1278
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1279
1279
|
|
|
1280
1280
|
/*
|
|
1281
1281
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1314,7 +1314,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
|
|
|
1314
1314
|
},
|
|
1315
1315
|
};
|
|
1316
1316
|
|
|
1317
|
-
/*! @azure/msal-common v16.5.
|
|
1317
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1318
1318
|
/*
|
|
1319
1319
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1320
1320
|
* Licensed under the MIT License.
|
|
@@ -1589,12 +1589,12 @@ class Logger {
|
|
|
1589
1589
|
}
|
|
1590
1590
|
}
|
|
1591
1591
|
|
|
1592
|
-
/*! @azure/msal-common v16.5.
|
|
1592
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1593
1593
|
/* eslint-disable header/header */
|
|
1594
1594
|
const name$1 = "@azure/msal-common";
|
|
1595
|
-
const version$1 = "16.5.
|
|
1595
|
+
const version$1 = "16.5.2";
|
|
1596
1596
|
|
|
1597
|
-
/*! @azure/msal-common v16.5.
|
|
1597
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1598
1598
|
/*
|
|
1599
1599
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1600
1600
|
* Licensed under the MIT License.
|
|
@@ -1614,7 +1614,7 @@ const AzureCloudInstance = {
|
|
|
1614
1614
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
1615
1615
|
};
|
|
1616
1616
|
|
|
1617
|
-
/*! @azure/msal-common v16.5.
|
|
1617
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1618
1618
|
/*
|
|
1619
1619
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1620
1620
|
* Licensed under the MIT License.
|
|
@@ -1697,7 +1697,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
|
|
|
1697
1697
|
return updatedAccountInfo;
|
|
1698
1698
|
}
|
|
1699
1699
|
|
|
1700
|
-
/*! @azure/msal-common v16.5.
|
|
1700
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1701
1701
|
|
|
1702
1702
|
/*
|
|
1703
1703
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1777,7 +1777,7 @@ function checkMaxAge(authTime, maxAge) {
|
|
|
1777
1777
|
}
|
|
1778
1778
|
}
|
|
1779
1779
|
|
|
1780
|
-
/*! @azure/msal-common v16.5.
|
|
1780
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1781
1781
|
|
|
1782
1782
|
/*
|
|
1783
1783
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1934,7 +1934,7 @@ class UrlString {
|
|
|
1934
1934
|
}
|
|
1935
1935
|
}
|
|
1936
1936
|
|
|
1937
|
-
/*! @azure/msal-common v16.5.
|
|
1937
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
1938
1938
|
|
|
1939
1939
|
/*
|
|
1940
1940
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2091,7 +2091,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2091
2091
|
return null;
|
|
2092
2092
|
}
|
|
2093
2093
|
|
|
2094
|
-
/*! @azure/msal-common v16.5.
|
|
2094
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2095
2095
|
/*
|
|
2096
2096
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2097
2097
|
* Licensed under the MIT License.
|
|
@@ -2099,7 +2099,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2099
2099
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2100
2100
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2101
2101
|
|
|
2102
|
-
/*! @azure/msal-common v16.5.
|
|
2102
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2103
2103
|
|
|
2104
2104
|
/*
|
|
2105
2105
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2137,7 +2137,7 @@ function createCacheError(e) {
|
|
|
2137
2137
|
}
|
|
2138
2138
|
}
|
|
2139
2139
|
|
|
2140
|
-
/*! @azure/msal-common v16.5.
|
|
2140
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2141
2141
|
|
|
2142
2142
|
/*
|
|
2143
2143
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2175,7 +2175,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
|
|
|
2175
2175
|
};
|
|
2176
2176
|
}
|
|
2177
2177
|
|
|
2178
|
-
/*! @azure/msal-common v16.5.
|
|
2178
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2179
2179
|
/*
|
|
2180
2180
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2181
2181
|
* Licensed under the MIT License.
|
|
@@ -2190,7 +2190,7 @@ const AuthorityType = {
|
|
|
2190
2190
|
Ciam: 3,
|
|
2191
2191
|
};
|
|
2192
2192
|
|
|
2193
|
-
/*! @azure/msal-common v16.5.
|
|
2193
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2194
2194
|
/*
|
|
2195
2195
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2196
2196
|
* Licensed under the MIT License.
|
|
@@ -2212,7 +2212,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
|
|
|
2212
2212
|
return null;
|
|
2213
2213
|
}
|
|
2214
2214
|
|
|
2215
|
-
/*! @azure/msal-common v16.5.
|
|
2215
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2216
2216
|
/*
|
|
2217
2217
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2218
2218
|
* Licensed under the MIT License.
|
|
@@ -2236,7 +2236,7 @@ const ProtocolMode = {
|
|
|
2236
2236
|
EAR: "EAR",
|
|
2237
2237
|
};
|
|
2238
2238
|
|
|
2239
|
-
/*! @azure/msal-common v16.5.
|
|
2239
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2240
2240
|
/**
|
|
2241
2241
|
* Returns the AccountInfo interface for this account.
|
|
2242
2242
|
*/
|
|
@@ -2411,7 +2411,7 @@ function isAccountEntity(entity) {
|
|
|
2411
2411
|
entity.hasOwnProperty("authorityType"));
|
|
2412
2412
|
}
|
|
2413
2413
|
|
|
2414
|
-
/*! @azure/msal-common v16.5.
|
|
2414
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
2415
2415
|
|
|
2416
2416
|
/*
|
|
2417
2417
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2449,8 +2449,10 @@ class CacheManager {
|
|
|
2449
2449
|
const allAccounts = this.getAllAccounts(accountFilter, correlationId);
|
|
2450
2450
|
if (allAccounts.length > 1) {
|
|
2451
2451
|
// If one or more accounts are found, prioritize accounts that have an ID token
|
|
2452
|
-
const sortedAccounts = allAccounts.sort((
|
|
2453
|
-
|
|
2452
|
+
const sortedAccounts = allAccounts.sort((a, b) => {
|
|
2453
|
+
const aHasClaims = a.idTokenClaims ? 1 : 0;
|
|
2454
|
+
const bHasClaims = b.idTokenClaims ? 1 : 0;
|
|
2455
|
+
return bHasClaims - aHasClaims;
|
|
2454
2456
|
});
|
|
2455
2457
|
return sortedAccounts[0];
|
|
2456
2458
|
}
|
|
@@ -3541,7 +3543,7 @@ class DefaultStorageClass extends CacheManager {
|
|
|
3541
3543
|
}
|
|
3542
3544
|
}
|
|
3543
3545
|
|
|
3544
|
-
/*! @azure/msal-common v16.5.
|
|
3546
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3545
3547
|
/*
|
|
3546
3548
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3547
3549
|
* Licensed under the MIT License.
|
|
@@ -3592,7 +3594,7 @@ const IntFields = new Set([
|
|
|
3592
3594
|
"redirectBridgeMessageVersion",
|
|
3593
3595
|
]);
|
|
3594
3596
|
|
|
3595
|
-
/*! @azure/msal-common v16.5.
|
|
3597
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3596
3598
|
|
|
3597
3599
|
/*
|
|
3598
3600
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3647,7 +3649,7 @@ class StubPerformanceClient {
|
|
|
3647
3649
|
}
|
|
3648
3650
|
}
|
|
3649
3651
|
|
|
3650
|
-
/*! @azure/msal-common v16.5.
|
|
3652
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3651
3653
|
|
|
3652
3654
|
/*
|
|
3653
3655
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3742,7 +3744,7 @@ function isOidcProtocolMode(config) {
|
|
|
3742
3744
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3743
3745
|
}
|
|
3744
3746
|
|
|
3745
|
-
/*! @azure/msal-common v16.5.
|
|
3747
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3746
3748
|
/*
|
|
3747
3749
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3748
3750
|
* Licensed under the MIT License.
|
|
@@ -3769,7 +3771,7 @@ function isOidcProtocolMode(config) {
|
|
|
3769
3771
|
}
|
|
3770
3772
|
}
|
|
3771
3773
|
|
|
3772
|
-
/*! @azure/msal-common v16.5.
|
|
3774
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3773
3775
|
/*
|
|
3774
3776
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3775
3777
|
* Licensed under the MIT License.
|
|
@@ -3834,7 +3836,7 @@ function wasClockTurnedBack(cachedAt) {
|
|
|
3834
3836
|
return cachedAtSec > nowSeconds();
|
|
3835
3837
|
}
|
|
3836
3838
|
|
|
3837
|
-
/*! @azure/msal-common v16.5.
|
|
3839
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
3838
3840
|
|
|
3839
3841
|
/*
|
|
3840
3842
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4093,7 +4095,7 @@ function isAuthorityMetadataExpired(metadata) {
|
|
|
4093
4095
|
return metadata.expiresAt <= nowSeconds();
|
|
4094
4096
|
}
|
|
4095
4097
|
|
|
4096
|
-
/*! @azure/msal-common v16.5.
|
|
4098
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4097
4099
|
/*
|
|
4098
4100
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4099
4101
|
* Licensed under the MIT License.
|
|
@@ -4164,7 +4166,7 @@ const RegionDiscoveryGetCurrentVersion = "regionDiscoveryGetCurrentVersion";
|
|
|
4164
4166
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
4165
4167
|
const SetUserData = "setUserData";
|
|
4166
4168
|
|
|
4167
|
-
/*! @azure/msal-common v16.5.
|
|
4169
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4168
4170
|
/*
|
|
4169
4171
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4170
4172
|
* Licensed under the MIT License.
|
|
@@ -4257,7 +4259,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
4257
4259
|
};
|
|
4258
4260
|
};
|
|
4259
4261
|
|
|
4260
|
-
/*! @azure/msal-common v16.5.
|
|
4262
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4261
4263
|
|
|
4262
4264
|
/*
|
|
4263
4265
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4337,7 +4339,7 @@ class PopTokenGenerator {
|
|
|
4337
4339
|
}
|
|
4338
4340
|
}
|
|
4339
4341
|
|
|
4340
|
-
/*! @azure/msal-common v16.5.
|
|
4342
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4341
4343
|
/*
|
|
4342
4344
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4343
4345
|
* Licensed under the MIT License.
|
|
@@ -4401,7 +4403,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
4401
4403
|
uxNotAllowed: uxNotAllowed
|
|
4402
4404
|
});
|
|
4403
4405
|
|
|
4404
|
-
/*! @azure/msal-common v16.5.
|
|
4406
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4405
4407
|
|
|
4406
4408
|
/*
|
|
4407
4409
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4469,7 +4471,7 @@ function createInteractionRequiredAuthError(errorCode, errorMessage) {
|
|
|
4469
4471
|
return new InteractionRequiredAuthError(errorCode, errorMessage);
|
|
4470
4472
|
}
|
|
4471
4473
|
|
|
4472
|
-
/*! @azure/msal-common v16.5.
|
|
4474
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4473
4475
|
|
|
4474
4476
|
/*
|
|
4475
4477
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4488,7 +4490,7 @@ class ServerError extends AuthError {
|
|
|
4488
4490
|
}
|
|
4489
4491
|
}
|
|
4490
4492
|
|
|
4491
|
-
/*! @azure/msal-common v16.5.
|
|
4493
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4492
4494
|
|
|
4493
4495
|
/*
|
|
4494
4496
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4556,7 +4558,7 @@ function parseRequestState(base64Decode, state) {
|
|
|
4556
4558
|
}
|
|
4557
4559
|
}
|
|
4558
4560
|
|
|
4559
|
-
/*! @azure/msal-common v16.5.
|
|
4561
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4560
4562
|
|
|
4561
4563
|
/*
|
|
4562
4564
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4904,7 +4906,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
|
|
|
4904
4906
|
return baseAccount;
|
|
4905
4907
|
}
|
|
4906
4908
|
|
|
4907
|
-
/*! @azure/msal-common v16.5.
|
|
4909
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4908
4910
|
/*
|
|
4909
4911
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4910
4912
|
* Licensed under the MIT License.
|
|
@@ -4914,7 +4916,7 @@ const CcsCredentialType = {
|
|
|
4914
4916
|
UPN: "UPN",
|
|
4915
4917
|
};
|
|
4916
4918
|
|
|
4917
|
-
/*! @azure/msal-common v16.5.
|
|
4919
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4918
4920
|
/*
|
|
4919
4921
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4920
4922
|
* Licensed under the MIT License.
|
|
@@ -4932,7 +4934,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
|
|
|
4932
4934
|
}
|
|
4933
4935
|
}
|
|
4934
4936
|
|
|
4935
|
-
/*! @azure/msal-common v16.5.
|
|
4937
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4936
4938
|
/*
|
|
4937
4939
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4938
4940
|
* Licensed under the MIT License.
|
|
@@ -4953,7 +4955,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
|
4953
4955
|
};
|
|
4954
4956
|
}
|
|
4955
4957
|
|
|
4956
|
-
/*! @azure/msal-common v16.5.
|
|
4958
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
4957
4959
|
|
|
4958
4960
|
/*
|
|
4959
4961
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5039,7 +5041,7 @@ class ThrottlingUtils {
|
|
|
5039
5041
|
}
|
|
5040
5042
|
}
|
|
5041
5043
|
|
|
5042
|
-
/*! @azure/msal-common v16.5.
|
|
5044
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5043
5045
|
|
|
5044
5046
|
/*
|
|
5045
5047
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5070,7 +5072,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
|
|
|
5070
5072
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
5071
5073
|
}
|
|
5072
5074
|
|
|
5073
|
-
/*! @azure/msal-common v16.5.
|
|
5075
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5074
5076
|
|
|
5075
5077
|
/*
|
|
5076
5078
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5184,7 +5186,7 @@ async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId
|
|
|
5184
5186
|
return response;
|
|
5185
5187
|
}
|
|
5186
5188
|
|
|
5187
|
-
/*! @azure/msal-common v16.5.
|
|
5189
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5188
5190
|
/*
|
|
5189
5191
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5190
5192
|
* Licensed under the MIT License.
|
|
@@ -5196,7 +5198,7 @@ function isOpenIdConfigResponse(response) {
|
|
|
5196
5198
|
response.hasOwnProperty("jwks_uri"));
|
|
5197
5199
|
}
|
|
5198
5200
|
|
|
5199
|
-
/*! @azure/msal-common v16.5.
|
|
5201
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5200
5202
|
/*
|
|
5201
5203
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5202
5204
|
* Licensed under the MIT License.
|
|
@@ -5206,7 +5208,7 @@ function isCloudInstanceDiscoveryResponse(response) {
|
|
|
5206
5208
|
response.hasOwnProperty("metadata"));
|
|
5207
5209
|
}
|
|
5208
5210
|
|
|
5209
|
-
/*! @azure/msal-common v16.5.
|
|
5211
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5210
5212
|
/*
|
|
5211
5213
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5212
5214
|
* Licensed under the MIT License.
|
|
@@ -5216,7 +5218,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
|
5216
5218
|
response.hasOwnProperty("error_description"));
|
|
5217
5219
|
}
|
|
5218
5220
|
|
|
5219
|
-
/*! @azure/msal-common v16.5.
|
|
5221
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5220
5222
|
|
|
5221
5223
|
/*
|
|
5222
5224
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5321,7 +5323,7 @@ RegionDiscovery.IMDS_OPTIONS = {
|
|
|
5321
5323
|
},
|
|
5322
5324
|
};
|
|
5323
5325
|
|
|
5324
|
-
/*! @azure/msal-common v16.5.
|
|
5326
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
5325
5327
|
|
|
5326
5328
|
/*
|
|
5327
5329
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6141,7 +6143,7 @@ function buildStaticAuthorityOptions(authOptions) {
|
|
|
6141
6143
|
};
|
|
6142
6144
|
}
|
|
6143
6145
|
|
|
6144
|
-
/*! @azure/msal-common v16.5.
|
|
6146
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6145
6147
|
|
|
6146
6148
|
/*
|
|
6147
6149
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6175,7 +6177,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
|
|
|
6175
6177
|
}
|
|
6176
6178
|
}
|
|
6177
6179
|
|
|
6178
|
-
/*! @azure/msal-common v16.5.
|
|
6180
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6179
6181
|
|
|
6180
6182
|
/*
|
|
6181
6183
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6432,7 +6434,7 @@ class AuthorizationCodeClient {
|
|
|
6432
6434
|
}
|
|
6433
6435
|
}
|
|
6434
6436
|
|
|
6435
|
-
/*! @azure/msal-common v16.5.
|
|
6437
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6436
6438
|
|
|
6437
6439
|
/*
|
|
6438
6440
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6653,7 +6655,7 @@ class RefreshTokenClient {
|
|
|
6653
6655
|
}
|
|
6654
6656
|
}
|
|
6655
6657
|
|
|
6656
|
-
/*! @azure/msal-common v16.5.
|
|
6658
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6657
6659
|
|
|
6658
6660
|
/*
|
|
6659
6661
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6769,7 +6771,7 @@ class SilentFlowClient {
|
|
|
6769
6771
|
}
|
|
6770
6772
|
}
|
|
6771
6773
|
|
|
6772
|
-
/*! @azure/msal-common v16.5.
|
|
6774
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6773
6775
|
|
|
6774
6776
|
/*
|
|
6775
6777
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6784,7 +6786,7 @@ const StubbedNetworkModule = {
|
|
|
6784
6786
|
},
|
|
6785
6787
|
};
|
|
6786
6788
|
|
|
6787
|
-
/*! @azure/msal-common v16.5.
|
|
6789
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
6788
6790
|
|
|
6789
6791
|
/*
|
|
6790
6792
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7007,7 +7009,7 @@ function extractLoginHint(account) {
|
|
|
7007
7009
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
7008
7010
|
}
|
|
7009
7011
|
|
|
7010
|
-
/*! @azure/msal-common v16.5.
|
|
7012
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7011
7013
|
|
|
7012
7014
|
/*
|
|
7013
7015
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7040,7 +7042,7 @@ function containsResourceParam(params) {
|
|
|
7040
7042
|
return Object.prototype.hasOwnProperty.call(params, "resource");
|
|
7041
7043
|
}
|
|
7042
7044
|
|
|
7043
|
-
/*! @azure/msal-common v16.5.
|
|
7045
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7044
7046
|
|
|
7045
7047
|
/*
|
|
7046
7048
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7098,7 +7100,7 @@ class AuthenticationHeaderParser {
|
|
|
7098
7100
|
}
|
|
7099
7101
|
}
|
|
7100
7102
|
|
|
7101
|
-
/*! @azure/msal-common v16.5.
|
|
7103
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7102
7104
|
/*
|
|
7103
7105
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7104
7106
|
* Licensed under the MIT License.
|
|
@@ -7115,7 +7117,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
7115
7117
|
unexpectedError: unexpectedError
|
|
7116
7118
|
});
|
|
7117
7119
|
|
|
7118
|
-
/*! @azure/msal-common v16.5.
|
|
7120
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7119
7121
|
|
|
7120
7122
|
/*
|
|
7121
7123
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7376,7 +7378,7 @@ class ServerTelemetryManager {
|
|
|
7376
7378
|
}
|
|
7377
7379
|
}
|
|
7378
7380
|
|
|
7379
|
-
/*! @azure/msal-common v16.5.
|
|
7381
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7380
7382
|
|
|
7381
7383
|
/*
|
|
7382
7384
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7397,7 +7399,7 @@ function createJoseHeaderError(code) {
|
|
|
7397
7399
|
return new JoseHeaderError(code);
|
|
7398
7400
|
}
|
|
7399
7401
|
|
|
7400
|
-
/*! @azure/msal-common v16.5.
|
|
7402
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7401
7403
|
/*
|
|
7402
7404
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7403
7405
|
* Licensed under the MIT License.
|
|
@@ -7405,7 +7407,7 @@ function createJoseHeaderError(code) {
|
|
|
7405
7407
|
const missingKidError = "missing_kid_error";
|
|
7406
7408
|
const missingAlgError = "missing_alg_error";
|
|
7407
7409
|
|
|
7408
|
-
/*! @azure/msal-common v16.5.
|
|
7410
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7409
7411
|
|
|
7410
7412
|
/*
|
|
7411
7413
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7445,7 +7447,7 @@ class JoseHeader {
|
|
|
7445
7447
|
}
|
|
7446
7448
|
}
|
|
7447
7449
|
|
|
7448
|
-
/*! @azure/msal-common v16.5.
|
|
7450
|
+
/*! @azure/msal-common v16.5.2 2026-04-28 */
|
|
7449
7451
|
|
|
7450
7452
|
/*
|
|
7451
7453
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -9900,14 +9902,20 @@ class CookieStorage {
|
|
|
9900
9902
|
return Promise.resolve();
|
|
9901
9903
|
}
|
|
9902
9904
|
getItem(key) {
|
|
9903
|
-
const name =
|
|
9905
|
+
const name = encodeURIComponent(key);
|
|
9904
9906
|
const cookieList = document.cookie.split(";");
|
|
9905
9907
|
for (let i = 0; i < cookieList.length; i++) {
|
|
9906
|
-
const cookie = cookieList[i];
|
|
9907
|
-
const
|
|
9908
|
-
const
|
|
9909
|
-
if (
|
|
9910
|
-
|
|
9908
|
+
const cookie = cookieList[i].trim();
|
|
9909
|
+
const eqIndex = cookie.indexOf("=");
|
|
9910
|
+
const rawKey = eqIndex === -1 ? cookie : cookie.substring(0, eqIndex);
|
|
9911
|
+
if (rawKey === name) {
|
|
9912
|
+
const rawValue = eqIndex === -1 ? "" : cookie.substring(eqIndex + 1);
|
|
9913
|
+
try {
|
|
9914
|
+
return decodeURIComponent(rawValue);
|
|
9915
|
+
}
|
|
9916
|
+
catch {
|
|
9917
|
+
return rawValue;
|
|
9918
|
+
}
|
|
9911
9919
|
}
|
|
9912
9920
|
}
|
|
9913
9921
|
return "";
|
|
@@ -9938,8 +9946,15 @@ class CookieStorage {
|
|
|
9938
9946
|
const cookieList = document.cookie.split(";");
|
|
9939
9947
|
const keys = [];
|
|
9940
9948
|
cookieList.forEach((cookie) => {
|
|
9941
|
-
const
|
|
9942
|
-
|
|
9949
|
+
const trimmed = cookie.trim();
|
|
9950
|
+
const eqIndex = trimmed.indexOf("=");
|
|
9951
|
+
const rawKey = eqIndex === -1 ? trimmed : trimmed.substring(0, eqIndex);
|
|
9952
|
+
try {
|
|
9953
|
+
keys.push(decodeURIComponent(rawKey));
|
|
9954
|
+
}
|
|
9955
|
+
catch {
|
|
9956
|
+
// Skip cookies with malformed percent-encoded sequences in the key
|
|
9957
|
+
}
|
|
9943
9958
|
});
|
|
9944
9959
|
return keys;
|
|
9945
9960
|
}
|
|
@@ -10370,7 +10385,7 @@ const EventType = {
|
|
|
10370
10385
|
|
|
10371
10386
|
/* eslint-disable header/header */
|
|
10372
10387
|
const name = "@azure/msal-browser";
|
|
10373
|
-
const version = "5.
|
|
10388
|
+
const version = "5.9.0";
|
|
10374
10389
|
|
|
10375
10390
|
/*
|
|
10376
10391
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|