@azure/msal-browser 4.16.0 → 4.18.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/app/PublicClientNext.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/CookieStorage.mjs +1 -1
- package/dist/cache/DatabaseStorage.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/ControllerFactory.mjs +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.mjs +1 -1
- package/dist/controllers/UnknownOperatingContextController.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/CookieStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.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/cache/TokenCache.mjs +1 -1
- package/dist/custom-auth-path/config/Configuration.mjs +1 -1
- package/dist/custom-auth-path/controllers/ControllerFactory.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/CustomAuthActionInputs.d.ts +3 -0
- package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts.map +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.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +8 -2
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs.map +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.d.ts +5 -0
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +10 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +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/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/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/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 +4 -1
- 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/ApiRequestTypes.d.ts +1 -0
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +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.d.ts +1 -0
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +18 -2
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs.map +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.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +8 -4
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +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.d.ts +5 -0
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +8 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +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/SignInSubmitCredentialResult.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.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +2 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +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.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +6 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +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.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +2 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +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/auth_flow/state/SignInStateParameters.d.ts +1 -0
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +10 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +3 -0
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +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/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/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/MsalFrameStatsUtils.mjs +1 -1
- package/dist/custom_auth/CustomAuthActionInputs.d.ts +3 -0
- package/dist/custom_auth/CustomAuthActionInputs.d.ts.map +1 -1
- package/dist/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/dist/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +5 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
- package/dist/custom_auth/core/utils/ArgumentValidator.d.ts +1 -0
- package/dist/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -1
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -1
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +5 -0
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -1
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
- package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +3 -0
- package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.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/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/operatingcontext/UnknownOperatingContext.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/request/RequestHelpers.mjs +1 -1
- package/dist/response/ResponseHandler.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceMeasurement.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/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/msal-custom-auth.cjs +126 -66
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts +3 -0
- package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.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/controller/CustomAuthStandardController.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +5 -0
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +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/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +1 -0
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts +1 -0
- package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +5 -0
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +1 -0
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +3 -0
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -1
- package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
- package/lib/msal-browser.cjs +66 -66
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +66 -66
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +61 -61
- package/lib/types/custom_auth/CustomAuthActionInputs.d.ts +3 -0
- package/lib/types/custom_auth/CustomAuthActionInputs.d.ts.map +1 -1
- package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +5 -0
- package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +1 -0
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
- package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts +1 -0
- package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -1
- package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -1
- package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +5 -0
- package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +1 -0
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -1
- package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
- package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +3 -0
- package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -1
- package/lib/types/packageMetadata.d.ts +1 -1
- package/package.json +1 -1
- package/src/custom_auth/CustomAuthActionInputs.ts +3 -0
- package/src/custom_auth/controller/CustomAuthStandardController.ts +18 -10
- package/src/custom_auth/core/auth_flow/AuthFlowErrorBase.ts +12 -0
- package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +3 -0
- package/src/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.ts +1 -0
- package/src/custom_auth/core/utils/ArgumentValidator.ts +22 -0
- package/src/custom_auth/get_account/auth_flow/CustomAuthAccountData.ts +24 -9
- package/src/custom_auth/sign_in/auth_flow/error_type/SignInError.ts +8 -0
- package/src/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.ts +1 -0
- package/src/custom_auth/sign_in/auth_flow/state/SignInContinuationState.ts +10 -0
- package/src/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.ts +1 -0
- package/src/custom_auth/sign_in/auth_flow/state/SignInStateParameters.ts +1 -0
- package/src/custom_auth/sign_in/interaction_client/SignInClient.ts +9 -0
- package/src/custom_auth/sign_in/interaction_client/parameter/SignInParams.ts +3 -0
- package/src/packageMetadata.ts +1 -1
package/lib/msal-browser.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v4.
|
|
1
|
+
/*! @azure/msal-browser v4.18.0 2025-07-30 */
|
|
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 v15.9.0 2025-07-
|
|
9
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
10
10
|
/*
|
|
11
11
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
12
12
|
* Licensed under the MIT License.
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
// Token renewal offset default in seconds
|
|
286
286
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
287
287
|
|
|
288
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
288
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
289
289
|
/*
|
|
290
290
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
291
291
|
* Licensed under the MIT License.
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
unexpectedError: unexpectedError
|
|
303
303
|
});
|
|
304
304
|
|
|
305
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
305
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
306
306
|
|
|
307
307
|
/*
|
|
308
308
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -351,7 +351,7 @@
|
|
|
351
351
|
: AuthErrorMessages[code]);
|
|
352
352
|
}
|
|
353
353
|
|
|
354
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
354
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
355
355
|
/*
|
|
356
356
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
357
357
|
* Licensed under the MIT License.
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
userTimeoutReached: userTimeoutReached
|
|
450
450
|
});
|
|
451
451
|
|
|
452
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
452
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
453
453
|
|
|
454
454
|
/*
|
|
455
455
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -701,7 +701,7 @@
|
|
|
701
701
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
702
702
|
}
|
|
703
703
|
|
|
704
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
704
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
705
705
|
|
|
706
706
|
/*
|
|
707
707
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -740,7 +740,7 @@
|
|
|
740
740
|
},
|
|
741
741
|
};
|
|
742
742
|
|
|
743
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
743
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
744
744
|
|
|
745
745
|
/*
|
|
746
746
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -931,12 +931,12 @@
|
|
|
931
931
|
}
|
|
932
932
|
}
|
|
933
933
|
|
|
934
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
934
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
935
935
|
/* eslint-disable header/header */
|
|
936
936
|
const name$1 = "@azure/msal-common";
|
|
937
937
|
const version$1 = "15.9.0";
|
|
938
938
|
|
|
939
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
939
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
940
940
|
/*
|
|
941
941
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
942
942
|
* Licensed under the MIT License.
|
|
@@ -956,7 +956,7 @@
|
|
|
956
956
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
957
957
|
};
|
|
958
958
|
|
|
959
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
959
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
960
960
|
|
|
961
961
|
/*
|
|
962
962
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1017,7 +1017,7 @@
|
|
|
1017
1017
|
}
|
|
1018
1018
|
}
|
|
1019
1019
|
|
|
1020
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1020
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1021
1021
|
/*
|
|
1022
1022
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1023
1023
|
* Licensed under the MIT License.
|
|
@@ -1072,7 +1072,7 @@
|
|
|
1072
1072
|
return cachedAtSec > nowSeconds();
|
|
1073
1073
|
}
|
|
1074
1074
|
|
|
1075
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1075
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1076
1076
|
|
|
1077
1077
|
/*
|
|
1078
1078
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1399,7 +1399,7 @@
|
|
|
1399
1399
|
return metadata.expiresAt <= nowSeconds();
|
|
1400
1400
|
}
|
|
1401
1401
|
|
|
1402
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1402
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1403
1403
|
/*
|
|
1404
1404
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1405
1405
|
* Licensed under the MIT License.
|
|
@@ -1455,7 +1455,7 @@
|
|
|
1455
1455
|
urlParseError: urlParseError
|
|
1456
1456
|
});
|
|
1457
1457
|
|
|
1458
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1458
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1459
1459
|
|
|
1460
1460
|
/*
|
|
1461
1461
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1598,7 +1598,7 @@
|
|
|
1598
1598
|
return new ClientConfigurationError(errorCode);
|
|
1599
1599
|
}
|
|
1600
1600
|
|
|
1601
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1601
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1602
1602
|
/*
|
|
1603
1603
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1604
1604
|
* Licensed under the MIT License.
|
|
@@ -1695,7 +1695,7 @@
|
|
|
1695
1695
|
}
|
|
1696
1696
|
}
|
|
1697
1697
|
|
|
1698
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1698
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1699
1699
|
|
|
1700
1700
|
/*
|
|
1701
1701
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1886,7 +1886,7 @@
|
|
|
1886
1886
|
}
|
|
1887
1887
|
}
|
|
1888
1888
|
|
|
1889
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1889
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1890
1890
|
|
|
1891
1891
|
/*
|
|
1892
1892
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1926,7 +1926,7 @@
|
|
|
1926
1926
|
};
|
|
1927
1927
|
}
|
|
1928
1928
|
|
|
1929
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1929
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1930
1930
|
/*
|
|
1931
1931
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1932
1932
|
* Licensed under the MIT License.
|
|
@@ -2005,7 +2005,7 @@
|
|
|
2005
2005
|
return updatedAccountInfo;
|
|
2006
2006
|
}
|
|
2007
2007
|
|
|
2008
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2008
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2009
2009
|
/*
|
|
2010
2010
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2011
2011
|
* Licensed under the MIT License.
|
|
@@ -2020,7 +2020,7 @@
|
|
|
2020
2020
|
Ciam: 3,
|
|
2021
2021
|
};
|
|
2022
2022
|
|
|
2023
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2023
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2024
2024
|
/*
|
|
2025
2025
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2026
2026
|
* Licensed under the MIT License.
|
|
@@ -2042,7 +2042,7 @@
|
|
|
2042
2042
|
return null;
|
|
2043
2043
|
}
|
|
2044
2044
|
|
|
2045
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2045
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2046
2046
|
/*
|
|
2047
2047
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2048
2048
|
* Licensed under the MIT License.
|
|
@@ -2066,7 +2066,7 @@
|
|
|
2066
2066
|
EAR: "EAR",
|
|
2067
2067
|
};
|
|
2068
2068
|
|
|
2069
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2069
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2070
2070
|
|
|
2071
2071
|
/*
|
|
2072
2072
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2309,7 +2309,7 @@
|
|
|
2309
2309
|
}
|
|
2310
2310
|
}
|
|
2311
2311
|
|
|
2312
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2312
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2313
2313
|
|
|
2314
2314
|
/*
|
|
2315
2315
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2374,7 +2374,7 @@
|
|
|
2374
2374
|
return queryParameterArray.join("&");
|
|
2375
2375
|
}
|
|
2376
2376
|
|
|
2377
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2377
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2378
2378
|
|
|
2379
2379
|
/*
|
|
2380
2380
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2538,7 +2538,7 @@
|
|
|
2538
2538
|
}
|
|
2539
2539
|
}
|
|
2540
2540
|
|
|
2541
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2541
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2542
2542
|
|
|
2543
2543
|
/*
|
|
2544
2544
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2677,7 +2677,7 @@
|
|
|
2677
2677
|
return null;
|
|
2678
2678
|
}
|
|
2679
2679
|
|
|
2680
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2680
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2681
2681
|
/*
|
|
2682
2682
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2683
2683
|
* Licensed under the MIT License.
|
|
@@ -2685,7 +2685,7 @@
|
|
|
2685
2685
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2686
2686
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2687
2687
|
|
|
2688
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2688
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2689
2689
|
|
|
2690
2690
|
/*
|
|
2691
2691
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2730,7 +2730,7 @@
|
|
|
2730
2730
|
}
|
|
2731
2731
|
}
|
|
2732
2732
|
|
|
2733
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2733
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2734
2734
|
|
|
2735
2735
|
/*
|
|
2736
2736
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3897,7 +3897,7 @@
|
|
|
3897
3897
|
}
|
|
3898
3898
|
}
|
|
3899
3899
|
|
|
3900
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
3900
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
3901
3901
|
/*
|
|
3902
3902
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3903
3903
|
* Licensed under the MIT License.
|
|
@@ -4409,7 +4409,7 @@
|
|
|
4409
4409
|
"encryptedCacheExpiredCount",
|
|
4410
4410
|
]);
|
|
4411
4411
|
|
|
4412
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4412
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4413
4413
|
|
|
4414
4414
|
/*
|
|
4415
4415
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4488,7 +4488,7 @@
|
|
|
4488
4488
|
}
|
|
4489
4489
|
}
|
|
4490
4490
|
|
|
4491
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4491
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4492
4492
|
|
|
4493
4493
|
/*
|
|
4494
4494
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4588,7 +4588,7 @@
|
|
|
4588
4588
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
4589
4589
|
}
|
|
4590
4590
|
|
|
4591
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4591
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4592
4592
|
/*
|
|
4593
4593
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4594
4594
|
* Licensed under the MIT License.
|
|
@@ -4598,7 +4598,7 @@
|
|
|
4598
4598
|
UPN: "UPN",
|
|
4599
4599
|
};
|
|
4600
4600
|
|
|
4601
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4601
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4602
4602
|
/*
|
|
4603
4603
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4604
4604
|
* Licensed under the MIT License.
|
|
@@ -4648,7 +4648,7 @@
|
|
|
4648
4648
|
const EAR_JWK = "ear_jwk";
|
|
4649
4649
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
4650
4650
|
|
|
4651
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4651
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4652
4652
|
|
|
4653
4653
|
/*
|
|
4654
4654
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5028,7 +5028,7 @@
|
|
|
5028
5028
|
});
|
|
5029
5029
|
}
|
|
5030
5030
|
|
|
5031
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5031
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5032
5032
|
/*
|
|
5033
5033
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5034
5034
|
* Licensed under the MIT License.
|
|
@@ -5040,7 +5040,7 @@
|
|
|
5040
5040
|
response.hasOwnProperty("jwks_uri"));
|
|
5041
5041
|
}
|
|
5042
5042
|
|
|
5043
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5043
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5044
5044
|
/*
|
|
5045
5045
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5046
5046
|
* Licensed under the MIT License.
|
|
@@ -5050,7 +5050,7 @@
|
|
|
5050
5050
|
response.hasOwnProperty("metadata"));
|
|
5051
5051
|
}
|
|
5052
5052
|
|
|
5053
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5053
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5054
5054
|
/*
|
|
5055
5055
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5056
5056
|
* Licensed under the MIT License.
|
|
@@ -5060,7 +5060,7 @@
|
|
|
5060
5060
|
response.hasOwnProperty("error_description"));
|
|
5061
5061
|
}
|
|
5062
5062
|
|
|
5063
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5063
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5064
5064
|
/*
|
|
5065
5065
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5066
5066
|
* Licensed under the MIT License.
|
|
@@ -5156,7 +5156,7 @@
|
|
|
5156
5156
|
};
|
|
5157
5157
|
};
|
|
5158
5158
|
|
|
5159
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5159
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5160
5160
|
|
|
5161
5161
|
/*
|
|
5162
5162
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5262,7 +5262,7 @@
|
|
|
5262
5262
|
},
|
|
5263
5263
|
};
|
|
5264
5264
|
|
|
5265
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5265
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5266
5266
|
|
|
5267
5267
|
/*
|
|
5268
5268
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6101,7 +6101,7 @@
|
|
|
6101
6101
|
};
|
|
6102
6102
|
}
|
|
6103
6103
|
|
|
6104
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6104
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6105
6105
|
|
|
6106
6106
|
/*
|
|
6107
6107
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6132,7 +6132,7 @@
|
|
|
6132
6132
|
}
|
|
6133
6133
|
}
|
|
6134
6134
|
|
|
6135
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6135
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6136
6136
|
|
|
6137
6137
|
/*
|
|
6138
6138
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6151,7 +6151,7 @@
|
|
|
6151
6151
|
}
|
|
6152
6152
|
}
|
|
6153
6153
|
|
|
6154
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6154
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6155
6155
|
/*
|
|
6156
6156
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6157
6157
|
* Licensed under the MIT License.
|
|
@@ -6172,7 +6172,7 @@
|
|
|
6172
6172
|
};
|
|
6173
6173
|
}
|
|
6174
6174
|
|
|
6175
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6175
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6176
6176
|
|
|
6177
6177
|
/*
|
|
6178
6178
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6259,7 +6259,7 @@
|
|
|
6259
6259
|
}
|
|
6260
6260
|
}
|
|
6261
6261
|
|
|
6262
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6262
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6263
6263
|
|
|
6264
6264
|
/*
|
|
6265
6265
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6290,7 +6290,7 @@
|
|
|
6290
6290
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
6291
6291
|
}
|
|
6292
6292
|
|
|
6293
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6293
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6294
6294
|
|
|
6295
6295
|
/*
|
|
6296
6296
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6438,7 +6438,7 @@
|
|
|
6438
6438
|
}
|
|
6439
6439
|
}
|
|
6440
6440
|
|
|
6441
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6441
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6442
6442
|
/*
|
|
6443
6443
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6444
6444
|
* Licensed under the MIT License.
|
|
@@ -6466,7 +6466,7 @@
|
|
|
6466
6466
|
uxNotAllowed: uxNotAllowed
|
|
6467
6467
|
});
|
|
6468
6468
|
|
|
6469
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6469
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6470
6470
|
|
|
6471
6471
|
/*
|
|
6472
6472
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6556,7 +6556,7 @@
|
|
|
6556
6556
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
6557
6557
|
}
|
|
6558
6558
|
|
|
6559
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6559
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6560
6560
|
|
|
6561
6561
|
/*
|
|
6562
6562
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6628,7 +6628,7 @@
|
|
|
6628
6628
|
}
|
|
6629
6629
|
}
|
|
6630
6630
|
|
|
6631
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6631
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6632
6632
|
|
|
6633
6633
|
/*
|
|
6634
6634
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6710,7 +6710,7 @@
|
|
|
6710
6710
|
}
|
|
6711
6711
|
}
|
|
6712
6712
|
|
|
6713
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6713
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6714
6714
|
/*
|
|
6715
6715
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6716
6716
|
* Licensed under the MIT License.
|
|
@@ -6737,7 +6737,7 @@
|
|
|
6737
6737
|
}
|
|
6738
6738
|
}
|
|
6739
6739
|
|
|
6740
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6740
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6741
6741
|
|
|
6742
6742
|
/*
|
|
6743
6743
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7068,7 +7068,7 @@
|
|
|
7068
7068
|
return baseAccount;
|
|
7069
7069
|
}
|
|
7070
7070
|
|
|
7071
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7071
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7072
7072
|
/*
|
|
7073
7073
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7074
7074
|
* Licensed under the MIT License.
|
|
@@ -7086,7 +7086,7 @@
|
|
|
7086
7086
|
}
|
|
7087
7087
|
}
|
|
7088
7088
|
|
|
7089
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7089
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7090
7090
|
|
|
7091
7091
|
/*
|
|
7092
7092
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7321,7 +7321,7 @@
|
|
|
7321
7321
|
}
|
|
7322
7322
|
}
|
|
7323
7323
|
|
|
7324
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7324
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7325
7325
|
|
|
7326
7326
|
/*
|
|
7327
7327
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7530,7 +7530,7 @@
|
|
|
7530
7530
|
}
|
|
7531
7531
|
}
|
|
7532
7532
|
|
|
7533
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7533
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7534
7534
|
|
|
7535
7535
|
/*
|
|
7536
7536
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7628,7 +7628,7 @@
|
|
|
7628
7628
|
}
|
|
7629
7629
|
}
|
|
7630
7630
|
|
|
7631
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7631
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7632
7632
|
|
|
7633
7633
|
/*
|
|
7634
7634
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7643,7 +7643,7 @@
|
|
|
7643
7643
|
},
|
|
7644
7644
|
};
|
|
7645
7645
|
|
|
7646
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7646
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7647
7647
|
|
|
7648
7648
|
/*
|
|
7649
7649
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7867,7 +7867,7 @@
|
|
|
7867
7867
|
return account.idTokenClaims?.login_hint || null;
|
|
7868
7868
|
}
|
|
7869
7869
|
|
|
7870
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7870
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7871
7871
|
|
|
7872
7872
|
/*
|
|
7873
7873
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7925,7 +7925,7 @@
|
|
|
7925
7925
|
}
|
|
7926
7926
|
}
|
|
7927
7927
|
|
|
7928
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7928
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7929
7929
|
|
|
7930
7930
|
/*
|
|
7931
7931
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8188,7 +8188,7 @@
|
|
|
8188
8188
|
}
|
|
8189
8189
|
}
|
|
8190
8190
|
|
|
8191
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
8191
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
8192
8192
|
/*
|
|
8193
8193
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8194
8194
|
* Licensed under the MIT License.
|
|
@@ -8196,7 +8196,7 @@
|
|
|
8196
8196
|
const missingKidError = "missing_kid_error";
|
|
8197
8197
|
const missingAlgError = "missing_alg_error";
|
|
8198
8198
|
|
|
8199
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
8199
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
8200
8200
|
|
|
8201
8201
|
/*
|
|
8202
8202
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8221,7 +8221,7 @@
|
|
|
8221
8221
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
8222
8222
|
}
|
|
8223
8223
|
|
|
8224
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
8224
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
8225
8225
|
|
|
8226
8226
|
/*
|
|
8227
8227
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8261,7 +8261,7 @@
|
|
|
8261
8261
|
}
|
|
8262
8262
|
}
|
|
8263
8263
|
|
|
8264
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
8264
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
8265
8265
|
|
|
8266
8266
|
/*
|
|
8267
8267
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -10365,7 +10365,7 @@
|
|
|
10365
10365
|
|
|
10366
10366
|
/* eslint-disable header/header */
|
|
10367
10367
|
const name = "@azure/msal-browser";
|
|
10368
|
-
const version = "4.
|
|
10368
|
+
const version = "4.18.0";
|
|
10369
10369
|
|
|
10370
10370
|
/*
|
|
10371
10371
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|