@azure/msal-browser 5.10.1 → 5.12.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 +44 -2
- package/dist/app/PublicClientApplication.mjs.map +1 -1
- package/dist/broker/nativeBroker/NativeStatusCodes.mjs +3 -3
- package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +18 -32
- package/dist/broker/nativeBroker/PlatformAuthProvider.mjs.map +1 -1
- package/dist/cache/AccountManager.mjs +1 -1
- package/dist/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/cache/BrowserCacheManager.mjs +12 -1
- package/dist/cache/BrowserCacheManager.mjs.map +1 -1
- package/dist/cache/CacheHelpers.mjs +1 -1
- package/dist/cache/CacheKeys.mjs +2 -3
- package/dist/cache/CacheKeys.mjs.map +1 -1
- package/dist/cache/CookieStorage.mjs +1 -1
- package/dist/cache/DatabaseStorage.mjs +1 -1
- package/dist/cache/EncryptedData.mjs +1 -1
- package/dist/cache/LocalStorage.mjs +1 -1
- package/dist/cache/MemoryStorage.mjs +1 -1
- package/dist/cache/SessionStorage.mjs +1 -1
- package/dist/cache/TokenCache.mjs +1 -1
- package/dist/config/Configuration.mjs +3 -2
- package/dist/config/Configuration.mjs.map +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.mjs +4 -4
- package/dist/controllers/StandardController.mjs.map +1 -1
- package/dist/crypto/BrowserCrypto.mjs +1 -1
- package/dist/crypto/CryptoOps.mjs +1 -1
- package/dist/crypto/PkceGenerator.mjs +1 -1
- package/dist/crypto/SignedHttpRequest.mjs +1 -1
- package/dist/custom_auth/CustomAuthConstants.mjs +11 -2
- package/dist/custom_auth/CustomAuthConstants.mjs.map +1 -1
- package/dist/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs +2 -2
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs.map +1 -1
- package/dist/custom_auth/core/CustomAuthAuthority.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +1 -1
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +1 -1
- package/dist/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
- package/dist/custom_auth/core/error/CustomAuthError.mjs +1 -1
- package/dist/custom_auth/core/error/HttpError.mjs +1 -1
- package/dist/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
- package/dist/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
- package/dist/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
- package/dist/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
- package/dist/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
- package/dist/custom_auth/core/error/ParsedUrlError.mjs +1 -1
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
- package/dist/custom_auth/core/error/UnexpectedError.mjs +1 -1
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
- package/dist/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
- package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs +1 -1
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +21 -3
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +6 -6
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +3 -3
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +3 -3
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +3 -3
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
- package/dist/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
- package/dist/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
- package/dist/custom_auth/core/utils/CustomHeaderUtils.mjs +56 -0
- package/dist/custom_auth/core/utils/CustomHeaderUtils.mjs.map +1 -0
- package/dist/custom_auth/core/utils/UrlUtils.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
- package/dist/custom_auth/index.mjs +1 -1
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +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 +4 -4
- package/dist/error/NativeAuthError.mjs.map +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 +4 -3
- package/dist/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -1
- package/dist/interaction_client/PopupClient.mjs +27 -7
- package/dist/interaction_client/PopupClient.mjs.map +1 -1
- package/dist/interaction_client/RedirectClient.mjs +6 -1
- package/dist/interaction_client/RedirectClient.mjs.map +1 -1
- package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
- package/dist/interaction_client/SilentCacheClient.mjs +1 -1
- package/dist/interaction_client/SilentIframeClient.mjs +11 -4
- package/dist/interaction_client/SilentIframeClient.mjs.map +1 -1
- package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
- package/dist/interaction_client/StandardInteractionClient.mjs +6 -4
- package/dist/interaction_client/StandardInteractionClient.mjs.map +1 -1
- package/dist/interaction_handler/InteractionHandler.mjs +1 -1
- package/dist/interaction_handler/SilentHandler.mjs +2 -1
- package/dist/interaction_handler/SilentHandler.mjs.map +1 -1
- package/dist/log-strings-mapping.json +1203 -1187
- 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 +10 -2
- package/dist/operatingcontext/BaseOperatingContext.mjs.map +1 -1
- package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
- package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/protocol/Authorize.mjs +1 -1
- package/dist/redirect_bridge/index.mjs +4 -5
- package/dist/redirect_bridge/index.mjs.map +1 -1
- package/dist/request/RequestHelpers.mjs +1 -1
- package/dist/response/ResponseHandler.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
- package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
- package/dist/utils/BrowserConstants.mjs +1 -1
- package/dist/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/utils/BrowserUtils.mjs +15 -5
- package/dist/utils/BrowserUtils.mjs.map +1 -1
- package/dist/utils/Helpers.mjs +1 -1
- package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/log-strings-mapping.json +33 -17
- package/lib/custom-auth-path/msal-custom-auth.cjs +342 -169
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/msal-custom-auth.js +342 -169
- package/lib/custom-auth-path/msal-custom-auth.js.map +1 -1
- package/lib/log-strings-mapping.json +13 -9
- package/lib/msal-browser.cjs +275 -167
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +275 -167
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +2 -2
- package/lib/redirect-bridge/msal-redirect-bridge.cjs +59 -50
- package/lib/redirect-bridge/msal-redirect-bridge.cjs.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.js +59 -50
- package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.min.js +2 -2
- package/package.json +2 -2
- package/src/app/PublicClientApplication.ts +85 -1
- package/src/broker/nativeBroker/NativeStatusCodes.ts +1 -1
- package/src/broker/nativeBroker/PlatformAuthProvider.ts +34 -30
- package/src/cache/BrowserCacheManager.ts +17 -0
- package/src/config/Configuration.ts +5 -0
- package/src/controllers/StandardController.ts +6 -3
- package/src/custom_auth/CustomAuthConstants.ts +10 -0
- package/src/custom_auth/configuration/CustomAuthConfiguration.ts +2 -0
- package/src/custom_auth/configuration/CustomAuthRequestInterceptor.ts +54 -0
- package/src/custom_auth/controller/CustomAuthStandardController.ts +3 -1
- package/src/custom_auth/core/network_client/custom_auth_api/BaseApiClient.ts +41 -2
- package/src/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.ts +17 -5
- package/src/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.ts +8 -2
- package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +8 -3
- package/src/custom_auth/core/network_client/custom_auth_api/SignupApiClient.ts +8 -2
- package/src/custom_auth/core/utils/CustomHeaderUtils.ts +75 -0
- package/src/custom_auth/index.ts +4 -0
- package/src/error/NativeAuthError.ts +2 -2
- package/src/interaction_client/PlatformAuthInteractionClient.ts +5 -1
- package/src/interaction_client/PopupClient.ts +65 -27
- package/src/interaction_client/RedirectClient.ts +5 -0
- package/src/interaction_client/SilentIframeClient.ts +49 -19
- package/src/interaction_client/StandardInteractionClient.ts +11 -5
- package/src/interaction_handler/SilentHandler.ts +1 -0
- package/src/operatingcontext/BaseOperatingContext.ts +15 -1
- package/src/packageMetadata.ts +1 -1
- package/src/redirect_bridge/index.ts +3 -7
- package/src/utils/BrowserUtils.ts +28 -7
- package/types/app/PublicClientApplication.d.ts +37 -1
- package/types/app/PublicClientApplication.d.ts.map +1 -1
- package/types/broker/nativeBroker/NativeStatusCodes.d.ts +1 -1
- package/types/broker/nativeBroker/PlatformAuthProvider.d.ts +7 -12
- package/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
- package/types/cache/BrowserCacheManager.d.ts.map +1 -1
- package/types/config/Configuration.d.ts +4 -0
- package/types/config/Configuration.d.ts.map +1 -1
- package/types/controllers/StandardController.d.ts.map +1 -1
- package/types/custom_auth/CustomAuthConstants.d.ts +5 -1
- package/types/custom_auth/CustomAuthConstants.d.ts.map +1 -1
- package/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +2 -0
- package/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +1 -1
- package/types/custom_auth/configuration/CustomAuthRequestInterceptor.d.ts +42 -0
- package/types/custom_auth/configuration/CustomAuthRequestInterceptor.d.ts.map +1 -0
- package/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
- package/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +6 -2
- package/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +1 -1
- package/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +3 -1
- package/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +1 -1
- package/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +3 -1
- package/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +1 -1
- package/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +3 -1
- package/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
- package/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +3 -1
- package/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +1 -1
- package/types/custom_auth/core/utils/CustomHeaderUtils.d.ts +21 -0
- package/types/custom_auth/core/utils/CustomHeaderUtils.d.ts.map +1 -0
- package/types/custom_auth/index.d.ts +1 -0
- package/types/custom_auth/index.d.ts.map +1 -1
- package/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
- package/types/interaction_client/PopupClient.d.ts +11 -1
- package/types/interaction_client/PopupClient.d.ts.map +1 -1
- package/types/interaction_client/RedirectClient.d.ts.map +1 -1
- package/types/interaction_client/SilentIframeClient.d.ts +20 -1
- package/types/interaction_client/SilentIframeClient.d.ts.map +1 -1
- package/types/interaction_client/StandardInteractionClient.d.ts.map +1 -1
- package/types/interaction_handler/SilentHandler.d.ts.map +1 -1
- package/types/operatingcontext/BaseOperatingContext.d.ts +8 -1
- package/types/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
- package/types/packageMetadata.d.ts +1 -1
- package/types/redirect_bridge/index.d.ts.map +1 -1
- package/types/utils/BrowserUtils.d.ts +17 -2
- package/types/utils/BrowserUtils.d.ts.map +1 -1
package/dist/naa/BridgeError.mjs
CHANGED
package/dist/naa/BridgeProxy.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.12.0 2026-06-05 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import { RequestParameterBuilder, StringUtils, Constants, createClientAuthError, ClientAuthErrorCodes, TimeUtils, AuthToken, getTenantIdFromIdTokenClaims, buildTenantProfile, AuthError, InteractionRequiredAuthError, ServerError, ClientAuthError } from '@azure/msal-common/browser';
|
|
4
4
|
import { isBridgeError } from '../BridgeError.mjs';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.12.0 2026-06-05 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import { LogLevel, Logger } from '@azure/msal-common/browser';
|
|
4
4
|
import { buildConfiguration } from '../config/Configuration.mjs';
|
|
@@ -42,7 +42,7 @@ class BaseOperatingContext {
|
|
|
42
42
|
return;
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
|
-
constructor(config) {
|
|
45
|
+
constructor(config, responseHandlers) {
|
|
46
46
|
/*
|
|
47
47
|
* If loaded in an environment where window is not available,
|
|
48
48
|
* set internal flag to false so that further requests fail.
|
|
@@ -50,6 +50,7 @@ class BaseOperatingContext {
|
|
|
50
50
|
*/
|
|
51
51
|
this.browserEnvironment = typeof window !== "undefined";
|
|
52
52
|
this.config = buildConfiguration(config, this.browserEnvironment);
|
|
53
|
+
this.responseHandlers = responseHandlers;
|
|
53
54
|
let sessionStorage;
|
|
54
55
|
try {
|
|
55
56
|
sessionStorage = window[BrowserCacheLocation.SessionStorage];
|
|
@@ -86,6 +87,13 @@ class BaseOperatingContext {
|
|
|
86
87
|
getConfig() {
|
|
87
88
|
return this.config;
|
|
88
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* Returns the internal response handlers supplied by PublicClientApplication, if any.
|
|
92
|
+
* @returns AuthResponseHandlers | undefined
|
|
93
|
+
*/
|
|
94
|
+
getResponseHandlers() {
|
|
95
|
+
return this.responseHandlers;
|
|
96
|
+
}
|
|
89
97
|
/**
|
|
90
98
|
* Returns the MSAL Logger
|
|
91
99
|
* @returns Logger
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseOperatingContext.mjs","sources":["../../src/operatingcontext/BaseOperatingContext.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;AAAA;;;AAGG;
|
|
1
|
+
{"version":3,"file":"BaseOperatingContext.mjs","sources":["../../src/operatingcontext/BaseOperatingContext.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
package/dist/packageMetadata.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.12.0 2026-06-05 */
|
|
2
2
|
'use strict';
|
|
3
3
|
/* eslint-disable header/header */
|
|
4
4
|
const name = "@azure/msal-browser";
|
|
5
|
-
const version = "5.
|
|
5
|
+
const version = "5.12.0";
|
|
6
6
|
|
|
7
7
|
export { name, version };
|
|
8
8
|
//# sourceMappingURL=packageMetadata.mjs.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.12.0 2026-06-05 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import { createClientConfigurationError, ClientConfigurationErrorCodes, invokeAsync, RequestParameterBuilder, Constants, AuthorizeProtocol, ThrottlingUtils, ResponseHandler, PerformanceEvents, TimeUtils, ProtocolMode, PopTokenGenerator, ProtocolUtils } from '@azure/msal-common/browser';
|
|
4
4
|
import { GetStandardParams, HandleResponsePlatformBroker, HandleCodeResponse, DecryptEarResponse, NativeInteractionClientAcquireToken } from '../telemetry/BrowserPerformanceEvents.mjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.12.0 2026-06-05 */
|
|
2
2
|
'use strict';
|
|
3
|
-
import { parseAuthResponseFromUrl, getHomepage } from '../utils/BrowserUtils.mjs';
|
|
3
|
+
import { parseAuthResponseFromUrl, clearAuthResponseFromUrl, getHomepage } from '../utils/BrowserUtils.mjs';
|
|
4
4
|
import { InteractionType, TemporaryCacheKeys, ApiId, INTERACTION_TYPE } from '../utils/BrowserConstants.mjs';
|
|
5
5
|
import { DEFAULT_REDIRECT_TIMEOUT_MS } from '../config/Configuration.mjs';
|
|
6
6
|
import { NavigationClient } from '../navigation/NavigationClient.mjs';
|
|
@@ -24,15 +24,14 @@ import { PREFIX } from '../cache/CacheKeys.mjs';
|
|
|
24
24
|
* @throws {AuthError} If the state is missing required 'id' or 'meta' attributes.
|
|
25
25
|
*/
|
|
26
26
|
async function broadcastResponseToMainFrame(navigationClient) {
|
|
27
|
+
document.title = "Microsoft Authentication";
|
|
27
28
|
let parsedResponse;
|
|
28
29
|
try {
|
|
29
30
|
parsedResponse = parseAuthResponseFromUrl();
|
|
30
31
|
}
|
|
31
32
|
catch (error) {
|
|
32
33
|
// Clear hash and query string before re-throwing parse errors
|
|
33
|
-
|
|
34
|
-
window.history.replaceState(null, "", `${window.location.origin}${window.location.pathname}`);
|
|
35
|
-
}
|
|
34
|
+
clearAuthResponseFromUrl(window);
|
|
36
35
|
throw error;
|
|
37
36
|
}
|
|
38
37
|
const { payload, urlHash, urlQuery, hasResponseInHash, hasResponseInQuery, libraryState, } = parsedResponse;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../src/redirect_bridge/index.ts"],"sourcesContent":[null],"names":["BrowserUtils.getHomepage"],"mappings":";;;;;;;;AAAA;;;AAGG;AAeH;;;;;;;;;;;;AAYG;AACI,eAAe,4BAA4B,CAC9C,gBAAmC,EAAA;AAEnC,IAAA,IAAI,cAAc,CAAC;IACnB,IAAI;QACA,cAAc,GAAG,wBAAwB,EAAE,CAAC;AAC/C,KAAA;AAAC,IAAA,OAAO,KAAK,EAAE;;
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../src/redirect_bridge/index.ts"],"sourcesContent":[null],"names":["BrowserUtils.clearAuthResponseFromUrl","BrowserUtils.getHomepage"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.12.0 2026-06-05 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import { invokeAsync, ProtocolMode, Constants, createClientConfigurationError, ClientConfigurationErrorCodes } from '@azure/msal-common/browser';
|
|
4
4
|
import { InitializeBaseRequest } from '../telemetry/BrowserPerformanceEvents.mjs';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.12.0 2026-06-05 */
|
|
2
2
|
'use strict';
|
|
3
3
|
import { RequestParameterBuilder, ProtocolUtils, UrlString, UrlUtils } from '@azure/msal-common/browser';
|
|
4
4
|
export { invoke, invokeAsync } from '@azure/msal-common/browser';
|
|
5
5
|
import { WaitForBridgeLateResponse } from '../telemetry/BrowserPerformanceEvents.mjs';
|
|
6
6
|
import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
|
|
7
|
+
import { base64Decode } from '../encode/Base64Decode.mjs';
|
|
7
8
|
import { InteractionType, BrowserCacheLocation } from './BrowserConstants.mjs';
|
|
8
9
|
import { createNewGuid } from '../crypto/BrowserCrypto.mjs';
|
|
9
10
|
import { createBrowserConfigurationAuthError } from '../error/BrowserConfigurationAuthError.mjs';
|
|
10
11
|
import { timedOut, emptyResponse, noStateInHash, unableToParseState, interactionInProgressCancelled, redirectBridgeEmptyResponse, blockIframeReload, redirectInIframe, blockNestedPopups, nonBrowserEnvironment, uninitializedPublicClientApplication } from '../error/BrowserAuthErrorCodes.mjs';
|
|
11
|
-
import { base64Decode } from '../encode/Base64Decode.mjs';
|
|
12
12
|
import { inMemRedirectUnavailable } from '../error/BrowserConfigurationAuthErrorCodes.mjs';
|
|
13
13
|
|
|
14
14
|
/*
|
|
@@ -100,6 +100,16 @@ function clearHash(contentWindow) {
|
|
|
100
100
|
contentWindow.history.replaceState(null, "", `${contentWindow.location.origin}${contentWindow.location.pathname}${contentWindow.location.search}`);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* Strips both hash and query string from the given window's URL by replacing
|
|
105
|
+
* with origin + pathname only. Used to remove auth response parameters
|
|
106
|
+
* (auth code, state, etc.) before the window is closed or navigated away.
|
|
107
|
+
*/
|
|
108
|
+
function clearAuthResponseFromUrl(contentWindow) {
|
|
109
|
+
if (typeof contentWindow.history?.replaceState === "function") {
|
|
110
|
+
contentWindow.history.replaceState(null, "", `${contentWindow.location.origin}${contentWindow.location.pathname}`);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
103
113
|
/**
|
|
104
114
|
* Replaces current hash with hash from provided url
|
|
105
115
|
*/
|
|
@@ -158,7 +168,7 @@ function cancelPendingBridgeResponse(logger, correlationId) {
|
|
|
158
168
|
activeBridgeMonitor = null;
|
|
159
169
|
}
|
|
160
170
|
}
|
|
161
|
-
async function waitForBridgeResponse(timeoutMs, logger,
|
|
171
|
+
async function waitForBridgeResponse(timeoutMs, logger, request, performanceClient, experimentalConfig) {
|
|
162
172
|
return new Promise((resolve, reject) => {
|
|
163
173
|
logger.verbose("1rf6em", request.correlationId);
|
|
164
174
|
const correlationId = request.correlationId;
|
|
@@ -166,7 +176,7 @@ async function waitForBridgeResponse(timeoutMs, logger, browserCrypto, request,
|
|
|
166
176
|
redirectBridgeTimeoutMs: timeoutMs,
|
|
167
177
|
lateResponseExperimentEnabled: experimentalConfig?.iframeTimeoutTelemetry || false,
|
|
168
178
|
}, correlationId);
|
|
169
|
-
const { libraryState } = ProtocolUtils.parseRequestState(
|
|
179
|
+
const { libraryState } = ProtocolUtils.parseRequestState(base64Decode, request.state || "");
|
|
170
180
|
const channel = new BroadcastChannel(libraryState.id);
|
|
171
181
|
let responseString = undefined;
|
|
172
182
|
let timedOut$1 = false;
|
|
@@ -345,5 +355,5 @@ function createGuid() {
|
|
|
345
355
|
}
|
|
346
356
|
const addClientCapabilitiesToClaims = RequestParameterBuilder.addClientCapabilitiesToClaims;
|
|
347
357
|
|
|
348
|
-
export { addClientCapabilitiesToClaims, blockAPICallsBeforeInitialize, blockAcquireTokenInPopups, blockNonBrowserEnvironment, blockRedirectInIframe, blockReloadInHiddenIframes, cancelPendingBridgeResponse, clearHash, createGuid, getCurrentUri, getHomepage, isInIframe, isInPopup, parseAuthResponseFromUrl, preconnect, preflightCheck, redirectPreflightCheck, replaceHash, waitForBridgeResponse };
|
|
358
|
+
export { addClientCapabilitiesToClaims, blockAPICallsBeforeInitialize, blockAcquireTokenInPopups, blockNonBrowserEnvironment, blockRedirectInIframe, blockReloadInHiddenIframes, cancelPendingBridgeResponse, clearAuthResponseFromUrl, clearHash, createGuid, getCurrentUri, getHomepage, isInIframe, isInPopup, parseAuthResponseFromUrl, preconnect, preflightCheck, redirectPreflightCheck, replaceHash, waitForBridgeResponse };
|
|
349
359
|
//# sourceMappingURL=BrowserUtils.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BrowserUtils.mjs","sources":["../../src/utils/BrowserUtils.ts"],"sourcesContent":[null],"names":["BrowserAuthErrorCodes.emptyResponse","BrowserAuthErrorCodes.noStateInHash","BrowserAuthErrorCodes.unableToParseState","BrowserAuthErrorCodes.interactionInProgressCancelled","timedOut","BrowserPerformanceEvents.WaitForBridgeLateResponse","BrowserAuthErrorCodes.timedOut","BrowserAuthErrorCodes.blockIframeReload","BrowserAuthErrorCodes.redirectInIframe","BrowserAuthErrorCodes.blockNestedPopups","BrowserAuthErrorCodes.nonBrowserEnvironment","BrowserAuthErrorCodes.uninitializedPublicClientApplication","BrowserConfigurationAuthErrorCodes.inMemRedirectUnavailable","BrowserCrypto.createNewGuid"],"mappings":";;;;;;;;;;;;;AAAA;;;AAGG;
|
|
1
|
+
{"version":3,"file":"BrowserUtils.mjs","sources":["../../src/utils/BrowserUtils.ts"],"sourcesContent":[null],"names":["BrowserAuthErrorCodes.emptyResponse","BrowserAuthErrorCodes.noStateInHash","BrowserAuthErrorCodes.unableToParseState","BrowserAuthErrorCodes.interactionInProgressCancelled","timedOut","BrowserPerformanceEvents.WaitForBridgeLateResponse","BrowserAuthErrorCodes.timedOut","BrowserAuthErrorCodes.blockIframeReload","BrowserAuthErrorCodes.redirectInIframe","BrowserAuthErrorCodes.blockNestedPopups","BrowserAuthErrorCodes.nonBrowserEnvironment","BrowserAuthErrorCodes.uninitializedPublicClientApplication","BrowserConfigurationAuthErrorCodes.inMemRedirectUnavailable","BrowserCrypto.createNewGuid"],"mappings":"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"}
|
package/dist/utils/Helpers.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2026-
|
|
3
|
-
"packageVersion": "5.
|
|
4
|
-
"totalStrings":
|
|
2
|
+
"timestamp": "2026-06-05T22:27:38.359Z",
|
|
3
|
+
"packageVersion": "5.12.0",
|
|
4
|
+
"totalStrings": 443,
|
|
5
5
|
"mappings": {
|
|
6
6
|
"0yfud8": {
|
|
7
7
|
"message": "Failed to get access token from cache.",
|
|
@@ -903,6 +903,14 @@
|
|
|
903
903
|
"message": "Could not initialize Nested App Auth bridge ('${ex}')",
|
|
904
904
|
"level": "infoPii"
|
|
905
905
|
},
|
|
906
|
+
"1rf6em": {
|
|
907
|
+
"message": "BrowserUtils.waitForBridgeResponse - started",
|
|
908
|
+
"level": "verbose"
|
|
909
|
+
},
|
|
910
|
+
"18y01k": {
|
|
911
|
+
"message": "BrowserUtils.cancelPendingBridgeResponse - Cancelling pending bridge monitor",
|
|
912
|
+
"level": "verbose"
|
|
913
|
+
},
|
|
906
914
|
"04a00a": {
|
|
907
915
|
"message": "Processing token response.",
|
|
908
916
|
"level": "verbose"
|
|
@@ -931,14 +939,6 @@
|
|
|
931
939
|
"message": "getRedirectUri called",
|
|
932
940
|
"level": "verbose"
|
|
933
941
|
},
|
|
934
|
-
"1rf6em": {
|
|
935
|
-
"message": "BrowserUtils.waitForBridgeResponse - started",
|
|
936
|
-
"level": "verbose"
|
|
937
|
-
},
|
|
938
|
-
"18y01k": {
|
|
939
|
-
"message": "BrowserUtils.cancelPendingBridgeResponse - Cancelling pending bridge monitor",
|
|
940
|
-
"level": "verbose"
|
|
941
|
-
},
|
|
942
942
|
"0yrmwo": {
|
|
943
943
|
"message": "Clearing keystore failed with unknown error",
|
|
944
944
|
"level": "error"
|
|
@@ -1215,6 +1215,10 @@
|
|
|
1215
1215
|
"message": "error opening popup '${e.message}'",
|
|
1216
1216
|
"level": "error"
|
|
1217
1217
|
},
|
|
1218
|
+
"1s1yfs": {
|
|
1219
|
+
"message": "Could not set document.title on popup window",
|
|
1220
|
+
"level": "verbose"
|
|
1221
|
+
},
|
|
1218
1222
|
"0c2awd": {
|
|
1219
1223
|
"message": "Opening popup window to: '${urlNavigate}'",
|
|
1220
1224
|
"level": "verbosePii"
|
|
@@ -1515,10 +1519,6 @@
|
|
|
1515
1519
|
"message": "Non-browser environment detected, returning false",
|
|
1516
1520
|
"level": "trace"
|
|
1517
1521
|
},
|
|
1518
|
-
"07660b": {
|
|
1519
|
-
"message": "isPlatformBrokerAvailable called",
|
|
1520
|
-
"level": "trace"
|
|
1521
|
-
},
|
|
1522
1522
|
"1e88vg": {
|
|
1523
1523
|
"message": "There is already an instance of MSAL.js in the window with the same client id.",
|
|
1524
1524
|
"level": "warning"
|
|
@@ -1543,6 +1543,10 @@
|
|
|
1543
1543
|
"message": "The ID Token Claims tied to the provided account do not contain a login_hint claim, logoutHint will not be added to logout request",
|
|
1544
1544
|
"level": "verbose"
|
|
1545
1545
|
},
|
|
1546
|
+
"0u5bmc": {
|
|
1547
|
+
"message": "Extracted login_hint claim from account ID Token Claims to be used as logoutHint",
|
|
1548
|
+
"level": "verbose"
|
|
1549
|
+
},
|
|
1546
1550
|
"0ljv63": {
|
|
1547
1551
|
"message": "postLogoutRedirectUri passed as null, not setting post logout redirect uri",
|
|
1548
1552
|
"level": "verbose"
|
|
@@ -1575,14 +1579,18 @@
|
|
|
1575
1579
|
"message": "logoutHint was not set and account was not passed into logout request, logoutHint will not be set",
|
|
1576
1580
|
"level": "verbose"
|
|
1577
1581
|
},
|
|
1578
|
-
"
|
|
1579
|
-
"message": "Setting logoutHint to
|
|
1582
|
+
"0d7s8p": {
|
|
1583
|
+
"message": "Setting logoutHint value to loginHint of the account provided",
|
|
1580
1584
|
"level": "verbose"
|
|
1581
1585
|
},
|
|
1582
1586
|
"0546u4": {
|
|
1583
1587
|
"message": "initializeLogoutRequest called",
|
|
1584
1588
|
"level": "verbose"
|
|
1585
1589
|
},
|
|
1590
|
+
"1ptwx4": {
|
|
1591
|
+
"message": "CustomAuthRequestInterceptor.addAdditionalHeaderFields threw an error; continuing without additional headers: ${e}",
|
|
1592
|
+
"level": "warningPii"
|
|
1593
|
+
},
|
|
1586
1594
|
"149ouc": {
|
|
1587
1595
|
"message": "Persistent keystore deleted",
|
|
1588
1596
|
"level": "verbose"
|
|
@@ -1758,6 +1766,14 @@
|
|
|
1758
1766
|
"12mj4a": {
|
|
1759
1767
|
"message": "PlatformAuthDOMHandler: createProvider called",
|
|
1760
1768
|
"level": "trace"
|
|
1769
|
+
},
|
|
1770
|
+
"1m3lhk": {
|
|
1771
|
+
"message": "Additional header field \"${trimmedName}\" uses reserved prefix \"${reservedPrefix}\". Ignoring.",
|
|
1772
|
+
"level": "warningPii"
|
|
1773
|
+
},
|
|
1774
|
+
"0vzpop": {
|
|
1775
|
+
"message": "Additional header field \"${trimmedName}\" must start with the \"${CustomHeaderConstants.REQUIRED_PREFIX}\" prefix. Ignoring.",
|
|
1776
|
+
"level": "warningPii"
|
|
1761
1777
|
}
|
|
1762
1778
|
}
|
|
1763
1779
|
}
|