@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.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @azure/msal-browser v4.
|
|
1
|
+
/*! @azure/msal-browser v4.18.0 2025-07-30 */
|
|
2
2
|
'use strict';
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6
6
|
/*
|
|
7
7
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8
8
|
* Licensed under the MIT License.
|
|
@@ -281,7 +281,7 @@ const JsonWebTokenTypes = {
|
|
|
281
281
|
// Token renewal offset default in seconds
|
|
282
282
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
283
283
|
|
|
284
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
284
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
285
285
|
/*
|
|
286
286
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
287
287
|
* Licensed under the MIT License.
|
|
@@ -298,7 +298,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
298
298
|
unexpectedError: unexpectedError
|
|
299
299
|
});
|
|
300
300
|
|
|
301
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
301
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
302
302
|
|
|
303
303
|
/*
|
|
304
304
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -347,7 +347,7 @@ function createAuthError(code, additionalMessage) {
|
|
|
347
347
|
: AuthErrorMessages[code]);
|
|
348
348
|
}
|
|
349
349
|
|
|
350
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
350
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
351
351
|
/*
|
|
352
352
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
353
353
|
* Licensed under the MIT License.
|
|
@@ -445,7 +445,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
445
445
|
userTimeoutReached: userTimeoutReached
|
|
446
446
|
});
|
|
447
447
|
|
|
448
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
448
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
449
449
|
|
|
450
450
|
/*
|
|
451
451
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -697,7 +697,7 @@ function createClientAuthError(errorCode, additionalMessage) {
|
|
|
697
697
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
698
698
|
}
|
|
699
699
|
|
|
700
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
700
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
701
701
|
|
|
702
702
|
/*
|
|
703
703
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -736,7 +736,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
|
|
|
736
736
|
},
|
|
737
737
|
};
|
|
738
738
|
|
|
739
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
739
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
740
740
|
|
|
741
741
|
/*
|
|
742
742
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -927,12 +927,12 @@ class Logger {
|
|
|
927
927
|
}
|
|
928
928
|
}
|
|
929
929
|
|
|
930
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
930
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
931
931
|
/* eslint-disable header/header */
|
|
932
932
|
const name$1 = "@azure/msal-common";
|
|
933
933
|
const version$1 = "15.9.0";
|
|
934
934
|
|
|
935
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
935
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
936
936
|
/*
|
|
937
937
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
938
938
|
* Licensed under the MIT License.
|
|
@@ -952,7 +952,7 @@ const AzureCloudInstance = {
|
|
|
952
952
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
953
953
|
};
|
|
954
954
|
|
|
955
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
955
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
956
956
|
|
|
957
957
|
/*
|
|
958
958
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1013,7 +1013,7 @@ function checkMaxAge(authTime, maxAge) {
|
|
|
1013
1013
|
}
|
|
1014
1014
|
}
|
|
1015
1015
|
|
|
1016
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1016
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1017
1017
|
/*
|
|
1018
1018
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1019
1019
|
* Licensed under the MIT License.
|
|
@@ -1068,7 +1068,7 @@ function wasClockTurnedBack(cachedAt) {
|
|
|
1068
1068
|
return cachedAtSec > nowSeconds();
|
|
1069
1069
|
}
|
|
1070
1070
|
|
|
1071
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1071
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1072
1072
|
|
|
1073
1073
|
/*
|
|
1074
1074
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1395,7 +1395,7 @@ function isAuthorityMetadataExpired(metadata) {
|
|
|
1395
1395
|
return metadata.expiresAt <= nowSeconds();
|
|
1396
1396
|
}
|
|
1397
1397
|
|
|
1398
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1398
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1399
1399
|
/*
|
|
1400
1400
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1401
1401
|
* Licensed under the MIT License.
|
|
@@ -1451,7 +1451,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
1451
1451
|
urlParseError: urlParseError
|
|
1452
1452
|
});
|
|
1453
1453
|
|
|
1454
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1454
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1455
1455
|
|
|
1456
1456
|
/*
|
|
1457
1457
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1594,7 +1594,7 @@ function createClientConfigurationError(errorCode) {
|
|
|
1594
1594
|
return new ClientConfigurationError(errorCode);
|
|
1595
1595
|
}
|
|
1596
1596
|
|
|
1597
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1597
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1598
1598
|
/*
|
|
1599
1599
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1600
1600
|
* Licensed under the MIT License.
|
|
@@ -1691,7 +1691,7 @@ class StringUtils {
|
|
|
1691
1691
|
}
|
|
1692
1692
|
}
|
|
1693
1693
|
|
|
1694
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1694
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1695
1695
|
|
|
1696
1696
|
/*
|
|
1697
1697
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1882,7 +1882,7 @@ class ScopeSet {
|
|
|
1882
1882
|
}
|
|
1883
1883
|
}
|
|
1884
1884
|
|
|
1885
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1885
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1886
1886
|
|
|
1887
1887
|
/*
|
|
1888
1888
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1922,7 +1922,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
|
|
|
1922
1922
|
};
|
|
1923
1923
|
}
|
|
1924
1924
|
|
|
1925
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
1925
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
1926
1926
|
/*
|
|
1927
1927
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1928
1928
|
* Licensed under the MIT License.
|
|
@@ -2001,7 +2001,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
|
|
|
2001
2001
|
return updatedAccountInfo;
|
|
2002
2002
|
}
|
|
2003
2003
|
|
|
2004
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2004
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2005
2005
|
/*
|
|
2006
2006
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2007
2007
|
* Licensed under the MIT License.
|
|
@@ -2016,7 +2016,7 @@ const AuthorityType = {
|
|
|
2016
2016
|
Ciam: 3,
|
|
2017
2017
|
};
|
|
2018
2018
|
|
|
2019
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2019
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2020
2020
|
/*
|
|
2021
2021
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2022
2022
|
* Licensed under the MIT License.
|
|
@@ -2038,7 +2038,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
|
|
|
2038
2038
|
return null;
|
|
2039
2039
|
}
|
|
2040
2040
|
|
|
2041
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2041
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2042
2042
|
/*
|
|
2043
2043
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2044
2044
|
* Licensed under the MIT License.
|
|
@@ -2062,7 +2062,7 @@ const ProtocolMode = {
|
|
|
2062
2062
|
EAR: "EAR",
|
|
2063
2063
|
};
|
|
2064
2064
|
|
|
2065
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2065
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2066
2066
|
|
|
2067
2067
|
/*
|
|
2068
2068
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2305,7 +2305,7 @@ class AccountEntity {
|
|
|
2305
2305
|
}
|
|
2306
2306
|
}
|
|
2307
2307
|
|
|
2308
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2308
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2309
2309
|
|
|
2310
2310
|
/*
|
|
2311
2311
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2370,7 +2370,7 @@ function mapToQueryString(parameters, encodeExtraParams = true, extraQueryParame
|
|
|
2370
2370
|
return queryParameterArray.join("&");
|
|
2371
2371
|
}
|
|
2372
2372
|
|
|
2373
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2373
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2374
2374
|
|
|
2375
2375
|
/*
|
|
2376
2376
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2534,7 +2534,7 @@ class UrlString {
|
|
|
2534
2534
|
}
|
|
2535
2535
|
}
|
|
2536
2536
|
|
|
2537
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2537
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2538
2538
|
|
|
2539
2539
|
/*
|
|
2540
2540
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2673,7 +2673,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2673
2673
|
return null;
|
|
2674
2674
|
}
|
|
2675
2675
|
|
|
2676
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2676
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2677
2677
|
/*
|
|
2678
2678
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2679
2679
|
* Licensed under the MIT License.
|
|
@@ -2681,7 +2681,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
|
|
|
2681
2681
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2682
2682
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2683
2683
|
|
|
2684
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2684
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2685
2685
|
|
|
2686
2686
|
/*
|
|
2687
2687
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2726,7 +2726,7 @@ function createCacheError(e) {
|
|
|
2726
2726
|
}
|
|
2727
2727
|
}
|
|
2728
2728
|
|
|
2729
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
2729
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
2730
2730
|
|
|
2731
2731
|
/*
|
|
2732
2732
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3893,7 +3893,7 @@ class DefaultStorageClass extends CacheManager {
|
|
|
3893
3893
|
}
|
|
3894
3894
|
}
|
|
3895
3895
|
|
|
3896
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
3896
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
3897
3897
|
/*
|
|
3898
3898
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3899
3899
|
* Licensed under the MIT License.
|
|
@@ -4405,7 +4405,7 @@ const IntFields = new Set([
|
|
|
4405
4405
|
"encryptedCacheExpiredCount",
|
|
4406
4406
|
]);
|
|
4407
4407
|
|
|
4408
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4408
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4409
4409
|
|
|
4410
4410
|
/*
|
|
4411
4411
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4484,7 +4484,7 @@ class StubPerformanceClient {
|
|
|
4484
4484
|
}
|
|
4485
4485
|
}
|
|
4486
4486
|
|
|
4487
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4487
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4488
4488
|
|
|
4489
4489
|
/*
|
|
4490
4490
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4584,7 +4584,7 @@ function isOidcProtocolMode(config) {
|
|
|
4584
4584
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
4585
4585
|
}
|
|
4586
4586
|
|
|
4587
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4587
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4588
4588
|
/*
|
|
4589
4589
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4590
4590
|
* Licensed under the MIT License.
|
|
@@ -4594,7 +4594,7 @@ const CcsCredentialType = {
|
|
|
4594
4594
|
UPN: "UPN",
|
|
4595
4595
|
};
|
|
4596
4596
|
|
|
4597
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4597
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4598
4598
|
/*
|
|
4599
4599
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4600
4600
|
* Licensed under the MIT License.
|
|
@@ -4644,7 +4644,7 @@ const INSTANCE_AWARE = "instance_aware";
|
|
|
4644
4644
|
const EAR_JWK = "ear_jwk";
|
|
4645
4645
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
4646
4646
|
|
|
4647
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
4647
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
4648
4648
|
|
|
4649
4649
|
/*
|
|
4650
4650
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5024,7 +5024,7 @@ function addPostBodyParameters(parameters, bodyParameters) {
|
|
|
5024
5024
|
});
|
|
5025
5025
|
}
|
|
5026
5026
|
|
|
5027
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5027
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5028
5028
|
/*
|
|
5029
5029
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5030
5030
|
* Licensed under the MIT License.
|
|
@@ -5036,7 +5036,7 @@ function isOpenIdConfigResponse(response) {
|
|
|
5036
5036
|
response.hasOwnProperty("jwks_uri"));
|
|
5037
5037
|
}
|
|
5038
5038
|
|
|
5039
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5039
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5040
5040
|
/*
|
|
5041
5041
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5042
5042
|
* Licensed under the MIT License.
|
|
@@ -5046,7 +5046,7 @@ function isCloudInstanceDiscoveryResponse(response) {
|
|
|
5046
5046
|
response.hasOwnProperty("metadata"));
|
|
5047
5047
|
}
|
|
5048
5048
|
|
|
5049
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5049
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5050
5050
|
/*
|
|
5051
5051
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5052
5052
|
* Licensed under the MIT License.
|
|
@@ -5056,7 +5056,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
|
|
|
5056
5056
|
response.hasOwnProperty("error_description"));
|
|
5057
5057
|
}
|
|
5058
5058
|
|
|
5059
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5059
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5060
5060
|
/*
|
|
5061
5061
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5062
5062
|
* Licensed under the MIT License.
|
|
@@ -5152,7 +5152,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
|
|
|
5152
5152
|
};
|
|
5153
5153
|
};
|
|
5154
5154
|
|
|
5155
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5155
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5156
5156
|
|
|
5157
5157
|
/*
|
|
5158
5158
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5258,7 +5258,7 @@ RegionDiscovery.IMDS_OPTIONS = {
|
|
|
5258
5258
|
},
|
|
5259
5259
|
};
|
|
5260
5260
|
|
|
5261
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
5261
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
5262
5262
|
|
|
5263
5263
|
/*
|
|
5264
5264
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6097,7 +6097,7 @@ function buildStaticAuthorityOptions(authOptions) {
|
|
|
6097
6097
|
};
|
|
6098
6098
|
}
|
|
6099
6099
|
|
|
6100
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6100
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6101
6101
|
|
|
6102
6102
|
/*
|
|
6103
6103
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6128,7 +6128,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
|
|
|
6128
6128
|
}
|
|
6129
6129
|
}
|
|
6130
6130
|
|
|
6131
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6131
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6132
6132
|
|
|
6133
6133
|
/*
|
|
6134
6134
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6147,7 +6147,7 @@ class ServerError extends AuthError {
|
|
|
6147
6147
|
}
|
|
6148
6148
|
}
|
|
6149
6149
|
|
|
6150
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6150
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6151
6151
|
/*
|
|
6152
6152
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6153
6153
|
* Licensed under the MIT License.
|
|
@@ -6168,7 +6168,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
|
|
|
6168
6168
|
};
|
|
6169
6169
|
}
|
|
6170
6170
|
|
|
6171
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6171
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6172
6172
|
|
|
6173
6173
|
/*
|
|
6174
6174
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6255,7 +6255,7 @@ class ThrottlingUtils {
|
|
|
6255
6255
|
}
|
|
6256
6256
|
}
|
|
6257
6257
|
|
|
6258
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6258
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6259
6259
|
|
|
6260
6260
|
/*
|
|
6261
6261
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6286,7 +6286,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
|
|
|
6286
6286
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
6287
6287
|
}
|
|
6288
6288
|
|
|
6289
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6289
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6290
6290
|
|
|
6291
6291
|
/*
|
|
6292
6292
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6434,7 +6434,7 @@ class BaseClient {
|
|
|
6434
6434
|
}
|
|
6435
6435
|
}
|
|
6436
6436
|
|
|
6437
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6437
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6438
6438
|
/*
|
|
6439
6439
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6440
6440
|
* Licensed under the MIT License.
|
|
@@ -6462,7 +6462,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
|
6462
6462
|
uxNotAllowed: uxNotAllowed
|
|
6463
6463
|
});
|
|
6464
6464
|
|
|
6465
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6465
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6466
6466
|
|
|
6467
6467
|
/*
|
|
6468
6468
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6552,7 +6552,7 @@ function createInteractionRequiredAuthError(errorCode) {
|
|
|
6552
6552
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
6553
6553
|
}
|
|
6554
6554
|
|
|
6555
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6555
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6556
6556
|
|
|
6557
6557
|
/*
|
|
6558
6558
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6624,7 +6624,7 @@ class ProtocolUtils {
|
|
|
6624
6624
|
}
|
|
6625
6625
|
}
|
|
6626
6626
|
|
|
6627
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6627
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6628
6628
|
|
|
6629
6629
|
/*
|
|
6630
6630
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6706,7 +6706,7 @@ class PopTokenGenerator {
|
|
|
6706
6706
|
}
|
|
6707
6707
|
}
|
|
6708
6708
|
|
|
6709
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6709
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6710
6710
|
/*
|
|
6711
6711
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6712
6712
|
* Licensed under the MIT License.
|
|
@@ -6733,7 +6733,7 @@ class PopTokenGenerator {
|
|
|
6733
6733
|
}
|
|
6734
6734
|
}
|
|
6735
6735
|
|
|
6736
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
6736
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
6737
6737
|
|
|
6738
6738
|
/*
|
|
6739
6739
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7064,7 +7064,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
|
|
|
7064
7064
|
return baseAccount;
|
|
7065
7065
|
}
|
|
7066
7066
|
|
|
7067
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7067
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7068
7068
|
/*
|
|
7069
7069
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7070
7070
|
* Licensed under the MIT License.
|
|
@@ -7082,7 +7082,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
|
|
|
7082
7082
|
}
|
|
7083
7083
|
}
|
|
7084
7084
|
|
|
7085
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7085
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7086
7086
|
|
|
7087
7087
|
/*
|
|
7088
7088
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7317,7 +7317,7 @@ class AuthorizationCodeClient extends BaseClient {
|
|
|
7317
7317
|
}
|
|
7318
7318
|
}
|
|
7319
7319
|
|
|
7320
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7320
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7321
7321
|
|
|
7322
7322
|
/*
|
|
7323
7323
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7526,7 +7526,7 @@ class RefreshTokenClient extends BaseClient {
|
|
|
7526
7526
|
}
|
|
7527
7527
|
}
|
|
7528
7528
|
|
|
7529
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7529
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7530
7530
|
|
|
7531
7531
|
/*
|
|
7532
7532
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7624,7 +7624,7 @@ class SilentFlowClient extends BaseClient {
|
|
|
7624
7624
|
}
|
|
7625
7625
|
}
|
|
7626
7626
|
|
|
7627
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7627
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7628
7628
|
|
|
7629
7629
|
/*
|
|
7630
7630
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7639,7 +7639,7 @@ const StubbedNetworkModule = {
|
|
|
7639
7639
|
},
|
|
7640
7640
|
};
|
|
7641
7641
|
|
|
7642
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7642
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7643
7643
|
|
|
7644
7644
|
/*
|
|
7645
7645
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7863,7 +7863,7 @@ function extractLoginHint(account) {
|
|
|
7863
7863
|
return account.idTokenClaims?.login_hint || null;
|
|
7864
7864
|
}
|
|
7865
7865
|
|
|
7866
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7866
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7867
7867
|
|
|
7868
7868
|
/*
|
|
7869
7869
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7921,7 +7921,7 @@ class AuthenticationHeaderParser {
|
|
|
7921
7921
|
}
|
|
7922
7922
|
}
|
|
7923
7923
|
|
|
7924
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
7924
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
7925
7925
|
|
|
7926
7926
|
/*
|
|
7927
7927
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8184,7 +8184,7 @@ class ServerTelemetryManager {
|
|
|
8184
8184
|
}
|
|
8185
8185
|
}
|
|
8186
8186
|
|
|
8187
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
8187
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
8188
8188
|
/*
|
|
8189
8189
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
8190
8190
|
* Licensed under the MIT License.
|
|
@@ -8192,7 +8192,7 @@ class ServerTelemetryManager {
|
|
|
8192
8192
|
const missingKidError = "missing_kid_error";
|
|
8193
8193
|
const missingAlgError = "missing_alg_error";
|
|
8194
8194
|
|
|
8195
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
8195
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
8196
8196
|
|
|
8197
8197
|
/*
|
|
8198
8198
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8217,7 +8217,7 @@ function createJoseHeaderError(code) {
|
|
|
8217
8217
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
8218
8218
|
}
|
|
8219
8219
|
|
|
8220
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
8220
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
8221
8221
|
|
|
8222
8222
|
/*
|
|
8223
8223
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -8257,7 +8257,7 @@ class JoseHeader {
|
|
|
8257
8257
|
}
|
|
8258
8258
|
}
|
|
8259
8259
|
|
|
8260
|
-
/*! @azure/msal-common v15.9.0 2025-07-
|
|
8260
|
+
/*! @azure/msal-common v15.9.0 2025-07-30 */
|
|
8261
8261
|
|
|
8262
8262
|
/*
|
|
8263
8263
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -10361,7 +10361,7 @@ function buildConfiguration({ auth: userInputAuth, cache: userInputCache, system
|
|
|
10361
10361
|
|
|
10362
10362
|
/* eslint-disable header/header */
|
|
10363
10363
|
const name = "@azure/msal-browser";
|
|
10364
|
-
const version = "4.
|
|
10364
|
+
const version = "4.18.0";
|
|
10365
10365
|
|
|
10366
10366
|
/*
|
|
10367
10367
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|