@azure/msal-browser 5.2.0 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/IPublicClientApplication.mjs +1 -1
- package/dist/app/PublicClientApplication.mjs +1 -1
- package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
- package/dist/cache/AccountManager.mjs +1 -1
- package/dist/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/cache/BrowserCacheManager.mjs +1 -1
- package/dist/cache/CacheHelpers.mjs +1 -1
- package/dist/cache/CacheKeys.mjs +1 -1
- package/dist/cache/CookieStorage.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 +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.d.ts.map +1 -1
- package/dist/controllers/StandardController.mjs +5 -1
- 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-path/app/PublicClientApplication.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
- package/dist/custom-auth-path/cache/AccountManager.mjs +1 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +1 -1
- package/dist/custom-auth-path/cache/CacheHelpers.mjs +1 -1
- package/dist/custom-auth-path/cache/CacheKeys.mjs +1 -1
- package/dist/custom-auth-path/cache/CookieStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/EncryptedData.mjs +1 -1
- package/dist/custom-auth-path/cache/LocalStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/MemoryStorage.mjs +1 -1
- package/dist/custom-auth-path/cache/SessionStorage.mjs +1 -1
- package/dist/custom-auth-path/config/Configuration.mjs +1 -1
- package/dist/custom-auth-path/controllers/StandardController.d.ts.map +1 -1
- package/dist/custom-auth-path/controllers/StandardController.mjs +5 -1
- package/dist/custom-auth-path/controllers/StandardController.mjs.map +1 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +1 -1
- package/dist/custom-auth-path/crypto/CryptoOps.mjs +1 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/index.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
- package/dist/custom-auth-path/encode/Base64Decode.mjs +1 -1
- package/dist/custom-auth-path/encode/Base64Encode.mjs +1 -1
- package/dist/custom-auth-path/error/BrowserAuthError.mjs +1 -1
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +1 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/error/NativeAuthError.mjs +1 -1
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +1 -1
- package/dist/custom-auth-path/event/EventHandler.mjs +1 -1
- package/dist/custom-auth-path/event/EventType.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/PopupClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +1 -1
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +1 -1
- package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +1 -1
- package/dist/custom-auth-path/log-strings-mapping.json +2 -2
- package/dist/custom-auth-path/navigation/NavigationClient.mjs +1 -1
- package/dist/custom-auth-path/network/FetchClient.mjs +1 -1
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +1 -1
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/custom-auth-path/packageMetadata.d.ts +1 -1
- package/dist/custom-auth-path/packageMetadata.mjs +2 -2
- package/dist/custom-auth-path/protocol/Authorize.mjs +1 -1
- package/dist/custom-auth-path/request/RequestHelpers.mjs +1 -1
- package/dist/custom-auth-path/response/ResponseHandler.mjs +1 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs +1 -1
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
- package/dist/custom-auth-path/utils/BrowserConstants.mjs +1 -1
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/custom-auth-path/utils/BrowserUtils.mjs +1 -1
- package/dist/custom-auth-path/utils/Helpers.mjs +1 -1
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +1 -1
- package/dist/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/dist/encode/Base64Decode.mjs +1 -1
- package/dist/encode/Base64Encode.mjs +1 -1
- package/dist/error/BrowserAuthError.mjs +1 -1
- package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
- package/dist/error/NativeAuthError.mjs +1 -1
- package/dist/error/NativeAuthErrorCodes.mjs +1 -1
- package/dist/error/NestedAppAuthError.mjs +1 -1
- package/dist/event/EventHandler.mjs +1 -1
- package/dist/event/EventMessage.mjs +1 -1
- package/dist/event/EventType.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
- package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
- package/dist/interaction_client/PopupClient.mjs +1 -1
- package/dist/interaction_client/RedirectClient.mjs +1 -1
- package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
- package/dist/interaction_client/SilentCacheClient.mjs +1 -1
- package/dist/interaction_client/SilentIframeClient.mjs +1 -1
- package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
- package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
- package/dist/interaction_handler/InteractionHandler.mjs +1 -1
- package/dist/interaction_handler/SilentHandler.mjs +1 -1
- package/dist/log-strings-mapping.json +2 -2
- package/dist/naa/BridgeError.mjs +1 -1
- package/dist/naa/BridgeProxy.mjs +1 -1
- package/dist/naa/BridgeStatusCode.mjs +1 -1
- package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
- package/dist/navigation/NavigationClient.mjs +1 -1
- package/dist/network/FetchClient.mjs +1 -1
- package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
- package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
- package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/packageMetadata.d.ts +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/protocol/Authorize.mjs +1 -1
- package/dist/redirect-bridge/cache/CacheKeys.mjs +1 -1
- package/dist/redirect-bridge/config/Configuration.mjs +1 -1
- package/dist/redirect-bridge/controllers/StandardController.d.ts.map +1 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/dist/redirect-bridge/encode/Base64Decode.mjs +1 -1
- package/dist/redirect-bridge/error/BrowserAuthError.mjs +1 -1
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/redirect-bridge/navigation/NavigationClient.mjs +1 -1
- package/dist/redirect-bridge/packageMetadata.d.ts +1 -1
- package/dist/redirect-bridge/redirect_bridge/index.mjs +2 -2
- package/dist/redirect-bridge/redirect_bridge/index.mjs.map +1 -1
- package/dist/redirect-bridge/utils/BrowserConstants.mjs +1 -1
- package/dist/redirect-bridge/utils/BrowserUtils.mjs +1 -1
- package/dist/request/RequestHelpers.mjs +1 -1
- package/dist/response/ResponseHandler.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
- package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
- package/dist/utils/BrowserConstants.mjs +1 -1
- package/dist/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/utils/BrowserUtils.mjs +1 -1
- package/dist/utils/Helpers.mjs +1 -1
- package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/log-strings-mapping.json +2 -2
- package/lib/custom-auth-path/msal-custom-auth.cjs +112 -90
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/types/controllers/StandardController.d.ts.map +1 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
- package/lib/log-strings-mapping.json +2 -2
- package/lib/msal-browser.cjs +178 -102
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +178 -102
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +2 -2
- package/lib/redirect-bridge/msal-redirect-bridge.js +11 -28
- package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.min.js +2 -2
- package/lib/types/controllers/StandardController.d.ts.map +1 -1
- package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/types/packageMetadata.d.ts +1 -1
- package/package.json +2 -2
- package/src/controllers/StandardController.ts +9 -0
- package/src/packageMetadata.ts +1 -1
- package/src/redirect_bridge/index.ts +1 -1
package/lib/msal-browser.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.
|
|
1
|
+
/*! @azure/msal-browser v5.4.0 2026-03-02 */
|
|
2
2
|
'use strict';
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msal = {}));
|
|
7
7
|
})(this, (function (exports) { 'use strict';
|
|
8
8
|
|
|
9
|
-
/*! @azure/msal-common v16.0
|
|
9
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
10
10
|
/*
|
|
11
11
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
12
12
|
* Licensed under the MIT License.
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
// Token renewal offset default in seconds
|
|
239
239
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
240
240
|
|
|
241
|
-
/*! @azure/msal-common v16.0
|
|
241
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
242
242
|
/*
|
|
243
243
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
244
244
|
* Licensed under the MIT License.
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
const EAR_JWK = "ear_jwk";
|
|
289
289
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
290
290
|
|
|
291
|
-
/*! @azure/msal-common v16.0
|
|
291
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
292
292
|
/*
|
|
293
293
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
294
294
|
* Licensed under the MIT License.
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
-
/*! @azure/msal-common v16.0
|
|
322
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
323
323
|
|
|
324
324
|
/*
|
|
325
325
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -339,7 +339,7 @@
|
|
|
339
339
|
return new ClientConfigurationError(errorCode);
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
-
/*! @azure/msal-common v16.0
|
|
342
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
343
343
|
/*
|
|
344
344
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
345
345
|
* Licensed under the MIT License.
|
|
@@ -417,26 +417,9 @@
|
|
|
417
417
|
return null;
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
|
-
/**
|
|
421
|
-
* Tests if a given string matches a given pattern, with support for wildcards and queries.
|
|
422
|
-
* @param pattern Wildcard pattern to string match. Supports "*" for wildcards and "?" for queries
|
|
423
|
-
* @param input String to match against
|
|
424
|
-
*/
|
|
425
|
-
static matchPattern(pattern, input) {
|
|
426
|
-
/**
|
|
427
|
-
* Wildcard support: https://stackoverflow.com/a/3117248/4888559
|
|
428
|
-
* Queries: replaces "?" in string with escaped "\?" for regex test
|
|
429
|
-
*/
|
|
430
|
-
// eslint-disable-next-line security/detect-non-literal-regexp
|
|
431
|
-
const regex = new RegExp(pattern
|
|
432
|
-
.replace(/\\/g, "\\\\")
|
|
433
|
-
.replace(/\*/g, "[^ ]*")
|
|
434
|
-
.replace(/\?/g, "\\?"));
|
|
435
|
-
return regex.test(input);
|
|
436
|
-
}
|
|
437
420
|
}
|
|
438
421
|
|
|
439
|
-
/*! @azure/msal-common v16.0
|
|
422
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
440
423
|
|
|
441
424
|
/*
|
|
442
425
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -459,7 +442,7 @@
|
|
|
459
442
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
460
443
|
}
|
|
461
444
|
|
|
462
|
-
/*! @azure/msal-common v16.0
|
|
445
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
463
446
|
/*
|
|
464
447
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
465
448
|
* Licensed under the MIT License.
|
|
@@ -513,7 +496,7 @@
|
|
|
513
496
|
urlParseError: urlParseError
|
|
514
497
|
});
|
|
515
498
|
|
|
516
|
-
/*! @azure/msal-common v16.0
|
|
499
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
517
500
|
/*
|
|
518
501
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
519
502
|
* Licensed under the MIT License.
|
|
@@ -597,7 +580,7 @@
|
|
|
597
580
|
userCanceled: userCanceled
|
|
598
581
|
});
|
|
599
582
|
|
|
600
|
-
/*! @azure/msal-common v16.0
|
|
583
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
601
584
|
|
|
602
585
|
/*
|
|
603
586
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -792,7 +775,7 @@
|
|
|
792
775
|
}
|
|
793
776
|
}
|
|
794
777
|
|
|
795
|
-
/*! @azure/msal-common v16.0
|
|
778
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
796
779
|
|
|
797
780
|
/*
|
|
798
781
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1159,7 +1142,7 @@
|
|
|
1159
1142
|
parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
|
|
1160
1143
|
}
|
|
1161
1144
|
|
|
1162
|
-
/*! @azure/msal-common v16.0
|
|
1145
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1163
1146
|
|
|
1164
1147
|
/*
|
|
1165
1148
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1268,7 +1251,7 @@
|
|
|
1268
1251
|
}
|
|
1269
1252
|
}
|
|
1270
1253
|
|
|
1271
|
-
/*! @azure/msal-common v16.0
|
|
1254
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1272
1255
|
|
|
1273
1256
|
/*
|
|
1274
1257
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1307,7 +1290,7 @@
|
|
|
1307
1290
|
},
|
|
1308
1291
|
};
|
|
1309
1292
|
|
|
1310
|
-
/*! @azure/msal-common v16.0
|
|
1293
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1311
1294
|
/*
|
|
1312
1295
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1313
1296
|
* Licensed under the MIT License.
|
|
@@ -1582,12 +1565,12 @@
|
|
|
1582
1565
|
}
|
|
1583
1566
|
}
|
|
1584
1567
|
|
|
1585
|
-
/*! @azure/msal-common v16.0
|
|
1568
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1586
1569
|
/* eslint-disable header/header */
|
|
1587
1570
|
const name$1 = "@azure/msal-common";
|
|
1588
|
-
const version$1 = "16.0
|
|
1571
|
+
const version$1 = "16.2.0";
|
|
1589
1572
|
|
|
1590
|
-
/*! @azure/msal-common v16.0
|
|
1573
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1591
1574
|
/*
|
|
1592
1575
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1593
1576
|
* Licensed under the MIT License.
|
|
@@ -1607,7 +1590,7 @@
|
|
|
1607
1590
|
AzureUsGovernment: "https://login.microsoftonline.us",
|
|
1608
1591
|
};
|
|
1609
1592
|
|
|
1610
|
-
/*! @azure/msal-common v16.0
|
|
1593
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1611
1594
|
/*
|
|
1612
1595
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1613
1596
|
* Licensed under the MIT License.
|
|
@@ -1689,7 +1672,7 @@
|
|
|
1689
1672
|
return updatedAccountInfo;
|
|
1690
1673
|
}
|
|
1691
1674
|
|
|
1692
|
-
/*! @azure/msal-common v16.0
|
|
1675
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1693
1676
|
|
|
1694
1677
|
/*
|
|
1695
1678
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1769,7 +1752,7 @@
|
|
|
1769
1752
|
}
|
|
1770
1753
|
}
|
|
1771
1754
|
|
|
1772
|
-
/*! @azure/msal-common v16.0
|
|
1755
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1773
1756
|
|
|
1774
1757
|
/*
|
|
1775
1758
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1926,7 +1909,7 @@
|
|
|
1926
1909
|
}
|
|
1927
1910
|
}
|
|
1928
1911
|
|
|
1929
|
-
/*! @azure/msal-common v16.0
|
|
1912
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
1930
1913
|
|
|
1931
1914
|
/*
|
|
1932
1915
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2083,7 +2066,7 @@
|
|
|
2083
2066
|
return null;
|
|
2084
2067
|
}
|
|
2085
2068
|
|
|
2086
|
-
/*! @azure/msal-common v16.0
|
|
2069
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2087
2070
|
/*
|
|
2088
2071
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2089
2072
|
* Licensed under the MIT License.
|
|
@@ -2091,7 +2074,7 @@
|
|
|
2091
2074
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
2092
2075
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
2093
2076
|
|
|
2094
|
-
/*! @azure/msal-common v16.0
|
|
2077
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2095
2078
|
|
|
2096
2079
|
/*
|
|
2097
2080
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2129,7 +2112,7 @@
|
|
|
2129
2112
|
}
|
|
2130
2113
|
}
|
|
2131
2114
|
|
|
2132
|
-
/*! @azure/msal-common v16.0
|
|
2115
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2133
2116
|
|
|
2134
2117
|
/*
|
|
2135
2118
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2167,7 +2150,7 @@
|
|
|
2167
2150
|
};
|
|
2168
2151
|
}
|
|
2169
2152
|
|
|
2170
|
-
/*! @azure/msal-common v16.0
|
|
2153
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2171
2154
|
/*
|
|
2172
2155
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2173
2156
|
* Licensed under the MIT License.
|
|
@@ -2182,7 +2165,7 @@
|
|
|
2182
2165
|
Ciam: 3,
|
|
2183
2166
|
};
|
|
2184
2167
|
|
|
2185
|
-
/*! @azure/msal-common v16.0
|
|
2168
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2186
2169
|
/*
|
|
2187
2170
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2188
2171
|
* Licensed under the MIT License.
|
|
@@ -2204,7 +2187,7 @@
|
|
|
2204
2187
|
return null;
|
|
2205
2188
|
}
|
|
2206
2189
|
|
|
2207
|
-
/*! @azure/msal-common v16.0
|
|
2190
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2208
2191
|
/*
|
|
2209
2192
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2210
2193
|
* Licensed under the MIT License.
|
|
@@ -2228,7 +2211,7 @@
|
|
|
2228
2211
|
EAR: "EAR",
|
|
2229
2212
|
};
|
|
2230
2213
|
|
|
2231
|
-
/*! @azure/msal-common v16.0
|
|
2214
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2232
2215
|
/**
|
|
2233
2216
|
* Returns the AccountInfo interface for this account.
|
|
2234
2217
|
*/
|
|
@@ -2403,7 +2386,7 @@
|
|
|
2403
2386
|
entity.hasOwnProperty("authorityType"));
|
|
2404
2387
|
}
|
|
2405
2388
|
|
|
2406
|
-
/*! @azure/msal-common v16.0
|
|
2389
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
2407
2390
|
|
|
2408
2391
|
/*
|
|
2409
2392
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3500,7 +3483,7 @@
|
|
|
3500
3483
|
}
|
|
3501
3484
|
}
|
|
3502
3485
|
|
|
3503
|
-
/*! @azure/msal-common v16.0
|
|
3486
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3504
3487
|
/*
|
|
3505
3488
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3506
3489
|
* Licensed under the MIT License.
|
|
@@ -3515,6 +3498,12 @@
|
|
|
3515
3498
|
InProgress: 1,
|
|
3516
3499
|
Completed: 2,
|
|
3517
3500
|
};
|
|
3501
|
+
/**
|
|
3502
|
+
* Prefix used to mark telemetry field names as dynamic.
|
|
3503
|
+
* Fields with this prefix in addFields/incrementFields calls will be routed
|
|
3504
|
+
* to the PerformanceEvent.ext sub-object.
|
|
3505
|
+
*/
|
|
3506
|
+
const EXT_FIELD_PREFIX = "ext.";
|
|
3518
3507
|
const IntFields = new Set([
|
|
3519
3508
|
"accessTokenSize",
|
|
3520
3509
|
"durationMs",
|
|
@@ -3541,7 +3530,7 @@
|
|
|
3541
3530
|
"upgradedCacheCount",
|
|
3542
3531
|
]);
|
|
3543
3532
|
|
|
3544
|
-
/*! @azure/msal-common v16.0
|
|
3533
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3545
3534
|
|
|
3546
3535
|
/*
|
|
3547
3536
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3596,7 +3585,7 @@
|
|
|
3596
3585
|
}
|
|
3597
3586
|
}
|
|
3598
3587
|
|
|
3599
|
-
/*! @azure/msal-common v16.0
|
|
3588
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3600
3589
|
|
|
3601
3590
|
/*
|
|
3602
3591
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3690,7 +3679,7 @@
|
|
|
3690
3679
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3691
3680
|
}
|
|
3692
3681
|
|
|
3693
|
-
/*! @azure/msal-common v16.0
|
|
3682
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3694
3683
|
|
|
3695
3684
|
/*
|
|
3696
3685
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3709,27 +3698,63 @@
|
|
|
3709
3698
|
}
|
|
3710
3699
|
}
|
|
3711
3700
|
|
|
3712
|
-
/*! @azure/msal-common v16.0
|
|
3701
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3713
3702
|
/*
|
|
3714
3703
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3715
3704
|
* Licensed under the MIT License.
|
|
3716
3705
|
*/
|
|
3717
|
-
|
|
3706
|
+
/**
|
|
3707
|
+
* MSAL-defined interaction required error code indicating no tokens are found in cache.
|
|
3708
|
+
* @public
|
|
3709
|
+
*/
|
|
3718
3710
|
const noTokensFound = "no_tokens_found";
|
|
3711
|
+
/**
|
|
3712
|
+
* MSAL-defined error code indicating a native account is unavailable on the platform.
|
|
3713
|
+
* @public
|
|
3714
|
+
*/
|
|
3719
3715
|
const nativeAccountUnavailable = "native_account_unavailable";
|
|
3716
|
+
/**
|
|
3717
|
+
* MSAL-defined error code indicating the refresh token has expired and user interaction is needed.
|
|
3718
|
+
* @public
|
|
3719
|
+
*/
|
|
3720
3720
|
const refreshTokenExpired = "refresh_token_expired";
|
|
3721
|
+
/**
|
|
3722
|
+
* MSAL-defined error code indicating UI/UX is not allowed (e.g., blocked by policy), requiring alternate interaction.
|
|
3723
|
+
* @public
|
|
3724
|
+
*/
|
|
3721
3725
|
const uxNotAllowed = "ux_not_allowed";
|
|
3722
|
-
|
|
3726
|
+
/**
|
|
3727
|
+
* Server-originated error code indicating interaction is required to complete the request.
|
|
3728
|
+
* @public
|
|
3729
|
+
*/
|
|
3723
3730
|
const interactionRequired = "interaction_required";
|
|
3731
|
+
/**
|
|
3732
|
+
* Server-originated error code indicating user consent is required.
|
|
3733
|
+
* @public
|
|
3734
|
+
*/
|
|
3724
3735
|
const consentRequired = "consent_required";
|
|
3736
|
+
/**
|
|
3737
|
+
* Server-originated error code indicating user login is required.
|
|
3738
|
+
* @public
|
|
3739
|
+
*/
|
|
3725
3740
|
const loginRequired = "login_required";
|
|
3726
|
-
|
|
3741
|
+
/**
|
|
3742
|
+
* Server-originated error code indicating the token is invalid or corrupted.
|
|
3743
|
+
* @public
|
|
3744
|
+
*/
|
|
3745
|
+
const badToken = "bad_token";
|
|
3746
|
+
/**
|
|
3747
|
+
* Server-originated error code indicating the user is in an interrupted state and interaction is required.
|
|
3748
|
+
* @public
|
|
3749
|
+
*/
|
|
3750
|
+
const interruptedUser = "interrupted_user";
|
|
3727
3751
|
|
|
3728
3752
|
var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
|
|
3729
3753
|
__proto__: null,
|
|
3730
3754
|
badToken: badToken,
|
|
3731
3755
|
consentRequired: consentRequired,
|
|
3732
3756
|
interactionRequired: interactionRequired,
|
|
3757
|
+
interruptedUser: interruptedUser,
|
|
3733
3758
|
loginRequired: loginRequired,
|
|
3734
3759
|
nativeAccountUnavailable: nativeAccountUnavailable,
|
|
3735
3760
|
noTokensFound: noTokensFound,
|
|
@@ -3737,7 +3762,7 @@
|
|
|
3737
3762
|
uxNotAllowed: uxNotAllowed
|
|
3738
3763
|
});
|
|
3739
3764
|
|
|
3740
|
-
/*! @azure/msal-common v16.0
|
|
3765
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3741
3766
|
|
|
3742
3767
|
/*
|
|
3743
3768
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3752,6 +3777,7 @@
|
|
|
3752
3777
|
loginRequired,
|
|
3753
3778
|
badToken,
|
|
3754
3779
|
uxNotAllowed,
|
|
3780
|
+
interruptedUser,
|
|
3755
3781
|
];
|
|
3756
3782
|
const InteractionRequiredAuthSubErrorMessage = [
|
|
3757
3783
|
"message_only",
|
|
@@ -3761,6 +3787,7 @@
|
|
|
3761
3787
|
"consent_required",
|
|
3762
3788
|
"bad_token",
|
|
3763
3789
|
"ux_not_allowed",
|
|
3790
|
+
"interrupted_user",
|
|
3764
3791
|
];
|
|
3765
3792
|
/**
|
|
3766
3793
|
* Error thrown when user interaction is required.
|
|
@@ -3803,7 +3830,7 @@
|
|
|
3803
3830
|
return new InteractionRequiredAuthError(errorCode, errorMessage);
|
|
3804
3831
|
}
|
|
3805
3832
|
|
|
3806
|
-
/*! @azure/msal-common v16.0
|
|
3833
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3807
3834
|
|
|
3808
3835
|
/*
|
|
3809
3836
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3871,7 +3898,7 @@
|
|
|
3871
3898
|
}
|
|
3872
3899
|
}
|
|
3873
3900
|
|
|
3874
|
-
/*! @azure/msal-common v16.0
|
|
3901
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3875
3902
|
/*
|
|
3876
3903
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3877
3904
|
* Licensed under the MIT License.
|
|
@@ -3936,7 +3963,7 @@
|
|
|
3936
3963
|
return cachedAtSec > nowSeconds();
|
|
3937
3964
|
}
|
|
3938
3965
|
|
|
3939
|
-
/*! @azure/msal-common v16.0
|
|
3966
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
3940
3967
|
/*
|
|
3941
3968
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3942
3969
|
* Licensed under the MIT License.
|
|
@@ -4007,7 +4034,7 @@
|
|
|
4007
4034
|
const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
|
|
4008
4035
|
const SetUserData = "setUserData";
|
|
4009
4036
|
|
|
4010
|
-
/*! @azure/msal-common v16.0
|
|
4037
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4011
4038
|
/*
|
|
4012
4039
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4013
4040
|
* Licensed under the MIT License.
|
|
@@ -4030,8 +4057,7 @@
|
|
|
4030
4057
|
const inProgressEvent = telemetryClient.startMeasurement(eventName, correlationId);
|
|
4031
4058
|
if (correlationId) {
|
|
4032
4059
|
// Track number of times this API is called in a single request
|
|
4033
|
-
|
|
4034
|
-
telemetryClient.incrementFields({ [eventCount]: 1 }, correlationId);
|
|
4060
|
+
telemetryClient.incrementFields({ [`ext.${eventName}CallCount`]: 1 }, correlationId);
|
|
4035
4061
|
}
|
|
4036
4062
|
try {
|
|
4037
4063
|
const result = callback(...args);
|
|
@@ -4075,8 +4101,7 @@
|
|
|
4075
4101
|
const inProgressEvent = telemetryClient.startMeasurement(eventName, correlationId);
|
|
4076
4102
|
if (correlationId) {
|
|
4077
4103
|
// Track number of times this API is called in a single request
|
|
4078
|
-
|
|
4079
|
-
telemetryClient.incrementFields({ [eventCount]: 1 }, correlationId);
|
|
4104
|
+
telemetryClient.incrementFields({ [`ext.${eventName}CallCount`]: 1 }, correlationId);
|
|
4080
4105
|
}
|
|
4081
4106
|
return callback(...args)
|
|
4082
4107
|
.then((response) => {
|
|
@@ -4102,7 +4127,7 @@
|
|
|
4102
4127
|
};
|
|
4103
4128
|
};
|
|
4104
4129
|
|
|
4105
|
-
/*! @azure/msal-common v16.0
|
|
4130
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4106
4131
|
|
|
4107
4132
|
/*
|
|
4108
4133
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4182,7 +4207,7 @@
|
|
|
4182
4207
|
}
|
|
4183
4208
|
}
|
|
4184
4209
|
|
|
4185
|
-
/*! @azure/msal-common v16.0
|
|
4210
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4186
4211
|
/*
|
|
4187
4212
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4188
4213
|
* Licensed under the MIT License.
|
|
@@ -4209,7 +4234,7 @@
|
|
|
4209
4234
|
}
|
|
4210
4235
|
}
|
|
4211
4236
|
|
|
4212
|
-
/*! @azure/msal-common v16.0
|
|
4237
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4213
4238
|
|
|
4214
4239
|
/*
|
|
4215
4240
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4468,7 +4493,7 @@
|
|
|
4468
4493
|
return metadata.expiresAt <= nowSeconds();
|
|
4469
4494
|
}
|
|
4470
4495
|
|
|
4471
|
-
/*! @azure/msal-common v16.0
|
|
4496
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4472
4497
|
|
|
4473
4498
|
/*
|
|
4474
4499
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4804,7 +4829,7 @@
|
|
|
4804
4829
|
return baseAccount;
|
|
4805
4830
|
}
|
|
4806
4831
|
|
|
4807
|
-
/*! @azure/msal-common v16.0
|
|
4832
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4808
4833
|
/*
|
|
4809
4834
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4810
4835
|
* Licensed under the MIT License.
|
|
@@ -4814,7 +4839,7 @@
|
|
|
4814
4839
|
UPN: "UPN",
|
|
4815
4840
|
};
|
|
4816
4841
|
|
|
4817
|
-
/*! @azure/msal-common v16.0
|
|
4842
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4818
4843
|
/*
|
|
4819
4844
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4820
4845
|
* Licensed under the MIT License.
|
|
@@ -4832,7 +4857,7 @@
|
|
|
4832
4857
|
}
|
|
4833
4858
|
}
|
|
4834
4859
|
|
|
4835
|
-
/*! @azure/msal-common v16.0
|
|
4860
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4836
4861
|
/*
|
|
4837
4862
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4838
4863
|
* Licensed under the MIT License.
|
|
@@ -4853,7 +4878,7 @@
|
|
|
4853
4878
|
};
|
|
4854
4879
|
}
|
|
4855
4880
|
|
|
4856
|
-
/*! @azure/msal-common v16.0
|
|
4881
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4857
4882
|
|
|
4858
4883
|
/*
|
|
4859
4884
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4939,7 +4964,7 @@
|
|
|
4939
4964
|
}
|
|
4940
4965
|
}
|
|
4941
4966
|
|
|
4942
|
-
/*! @azure/msal-common v16.0
|
|
4967
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4943
4968
|
|
|
4944
4969
|
/*
|
|
4945
4970
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4970,7 +4995,7 @@
|
|
|
4970
4995
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
4971
4996
|
}
|
|
4972
4997
|
|
|
4973
|
-
/*! @azure/msal-common v16.0
|
|
4998
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
4974
4999
|
|
|
4975
5000
|
/*
|
|
4976
5001
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5084,7 +5109,7 @@
|
|
|
5084
5109
|
return response;
|
|
5085
5110
|
}
|
|
5086
5111
|
|
|
5087
|
-
/*! @azure/msal-common v16.0
|
|
5112
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
5088
5113
|
/*
|
|
5089
5114
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5090
5115
|
* Licensed under the MIT License.
|
|
@@ -5096,7 +5121,7 @@
|
|
|
5096
5121
|
response.hasOwnProperty("jwks_uri"));
|
|
5097
5122
|
}
|
|
5098
5123
|
|
|
5099
|
-
/*! @azure/msal-common v16.0
|
|
5124
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
5100
5125
|
/*
|
|
5101
5126
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5102
5127
|
* Licensed under the MIT License.
|
|
@@ -5106,7 +5131,7 @@
|
|
|
5106
5131
|
response.hasOwnProperty("metadata"));
|
|
5107
5132
|
}
|
|
5108
5133
|
|
|
5109
|
-
/*! @azure/msal-common v16.0
|
|
5134
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
5110
5135
|
/*
|
|
5111
5136
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5112
5137
|
* Licensed under the MIT License.
|
|
@@ -5116,7 +5141,7 @@
|
|
|
5116
5141
|
response.hasOwnProperty("error_description"));
|
|
5117
5142
|
}
|
|
5118
5143
|
|
|
5119
|
-
/*! @azure/msal-common v16.0
|
|
5144
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
5120
5145
|
|
|
5121
5146
|
/*
|
|
5122
5147
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5221,7 +5246,7 @@
|
|
|
5221
5246
|
},
|
|
5222
5247
|
};
|
|
5223
5248
|
|
|
5224
|
-
/*! @azure/msal-common v16.0
|
|
5249
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
5225
5250
|
|
|
5226
5251
|
/*
|
|
5227
5252
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6041,7 +6066,7 @@
|
|
|
6041
6066
|
};
|
|
6042
6067
|
}
|
|
6043
6068
|
|
|
6044
|
-
/*! @azure/msal-common v16.0
|
|
6069
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6045
6070
|
|
|
6046
6071
|
/*
|
|
6047
6072
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6075,7 +6100,7 @@
|
|
|
6075
6100
|
}
|
|
6076
6101
|
}
|
|
6077
6102
|
|
|
6078
|
-
/*! @azure/msal-common v16.0
|
|
6103
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6079
6104
|
|
|
6080
6105
|
/*
|
|
6081
6106
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6335,7 +6360,7 @@
|
|
|
6335
6360
|
}
|
|
6336
6361
|
}
|
|
6337
6362
|
|
|
6338
|
-
/*! @azure/msal-common v16.0
|
|
6363
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6339
6364
|
|
|
6340
6365
|
/*
|
|
6341
6366
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6560,7 +6585,7 @@
|
|
|
6560
6585
|
}
|
|
6561
6586
|
}
|
|
6562
6587
|
|
|
6563
|
-
/*! @azure/msal-common v16.0
|
|
6588
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6564
6589
|
|
|
6565
6590
|
/*
|
|
6566
6591
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6669,7 +6694,7 @@
|
|
|
6669
6694
|
}
|
|
6670
6695
|
}
|
|
6671
6696
|
|
|
6672
|
-
/*! @azure/msal-common v16.0
|
|
6697
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6673
6698
|
|
|
6674
6699
|
/*
|
|
6675
6700
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6684,7 +6709,7 @@
|
|
|
6684
6709
|
},
|
|
6685
6710
|
};
|
|
6686
6711
|
|
|
6687
|
-
/*! @azure/msal-common v16.0
|
|
6712
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6688
6713
|
|
|
6689
6714
|
/*
|
|
6690
6715
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6908,7 +6933,7 @@
|
|
|
6908
6933
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
6909
6934
|
}
|
|
6910
6935
|
|
|
6911
|
-
/*! @azure/msal-common v16.0
|
|
6936
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6912
6937
|
|
|
6913
6938
|
/*
|
|
6914
6939
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6966,7 +6991,7 @@
|
|
|
6966
6991
|
}
|
|
6967
6992
|
}
|
|
6968
6993
|
|
|
6969
|
-
/*! @azure/msal-common v16.0
|
|
6994
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6970
6995
|
/*
|
|
6971
6996
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6972
6997
|
* Licensed under the MIT License.
|
|
@@ -6983,7 +7008,7 @@
|
|
|
6983
7008
|
unexpectedError: unexpectedError
|
|
6984
7009
|
});
|
|
6985
7010
|
|
|
6986
|
-
/*! @azure/msal-common v16.0
|
|
7011
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
6987
7012
|
|
|
6988
7013
|
/*
|
|
6989
7014
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7244,7 +7269,7 @@
|
|
|
7244
7269
|
}
|
|
7245
7270
|
}
|
|
7246
7271
|
|
|
7247
|
-
/*! @azure/msal-common v16.0
|
|
7272
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
7248
7273
|
|
|
7249
7274
|
/*
|
|
7250
7275
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7265,7 +7290,7 @@
|
|
|
7265
7290
|
return new JoseHeaderError(code);
|
|
7266
7291
|
}
|
|
7267
7292
|
|
|
7268
|
-
/*! @azure/msal-common v16.0
|
|
7293
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
7269
7294
|
/*
|
|
7270
7295
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7271
7296
|
* Licensed under the MIT License.
|
|
@@ -7273,7 +7298,7 @@
|
|
|
7273
7298
|
const missingKidError = "missing_kid_error";
|
|
7274
7299
|
const missingAlgError = "missing_alg_error";
|
|
7275
7300
|
|
|
7276
|
-
/*! @azure/msal-common v16.0
|
|
7301
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
7277
7302
|
|
|
7278
7303
|
/*
|
|
7279
7304
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7313,7 +7338,7 @@
|
|
|
7313
7338
|
}
|
|
7314
7339
|
}
|
|
7315
7340
|
|
|
7316
|
-
/*! @azure/msal-common v16.0
|
|
7341
|
+
/*! @azure/msal-common v16.2.0 2026-03-02 */
|
|
7317
7342
|
|
|
7318
7343
|
/*
|
|
7319
7344
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7612,9 +7637,13 @@
|
|
|
7612
7637
|
if (error) {
|
|
7613
7638
|
addError(error, this.logger, rootEvent);
|
|
7614
7639
|
}
|
|
7615
|
-
// Add sub-measurement attribute to root event.
|
|
7640
|
+
// Add sub-measurement attribute to root event's ext field.
|
|
7616
7641
|
if (!isRoot) {
|
|
7617
|
-
rootEvent
|
|
7642
|
+
rootEvent.ext = {
|
|
7643
|
+
...rootEvent.ext,
|
|
7644
|
+
...event.ext,
|
|
7645
|
+
};
|
|
7646
|
+
rootEvent.ext[event.name + "DurationMs"] = Math.floor(event.durationMs);
|
|
7618
7647
|
return { ...rootEvent };
|
|
7619
7648
|
}
|
|
7620
7649
|
if (isRoot &&
|
|
@@ -7660,10 +7689,32 @@
|
|
|
7660
7689
|
addFields(fields, correlationId) {
|
|
7661
7690
|
const event = this.eventsByCorrelationId.get(correlationId);
|
|
7662
7691
|
if (event) {
|
|
7663
|
-
|
|
7692
|
+
const staticFields = {};
|
|
7693
|
+
const dynamicFields = {};
|
|
7694
|
+
for (const key in fields) {
|
|
7695
|
+
if (key.startsWith(EXT_FIELD_PREFIX)) {
|
|
7696
|
+
const dynamicKey = key.slice(EXT_FIELD_PREFIX.length);
|
|
7697
|
+
const value = fields[key];
|
|
7698
|
+
if (typeof value === "string" ||
|
|
7699
|
+
typeof value === "number") {
|
|
7700
|
+
dynamicFields[dynamicKey] = value;
|
|
7701
|
+
}
|
|
7702
|
+
}
|
|
7703
|
+
else {
|
|
7704
|
+
staticFields[key] = fields[key];
|
|
7705
|
+
}
|
|
7706
|
+
}
|
|
7707
|
+
const updatedEvent = {
|
|
7664
7708
|
...event,
|
|
7665
|
-
...
|
|
7666
|
-
}
|
|
7709
|
+
...staticFields,
|
|
7710
|
+
};
|
|
7711
|
+
if (Object.keys(dynamicFields).length) {
|
|
7712
|
+
updatedEvent.ext = {
|
|
7713
|
+
...updatedEvent.ext,
|
|
7714
|
+
...dynamicFields,
|
|
7715
|
+
};
|
|
7716
|
+
}
|
|
7717
|
+
this.eventsByCorrelationId.set(correlationId, updatedEvent);
|
|
7667
7718
|
}
|
|
7668
7719
|
else {
|
|
7669
7720
|
this.logger.trace("0thl6s", correlationId);
|
|
@@ -7678,13 +7729,32 @@
|
|
|
7678
7729
|
const event = this.eventsByCorrelationId.get(correlationId);
|
|
7679
7730
|
if (event) {
|
|
7680
7731
|
for (const counter in fields) {
|
|
7681
|
-
if (
|
|
7682
|
-
event
|
|
7732
|
+
if (counter.startsWith(EXT_FIELD_PREFIX)) {
|
|
7733
|
+
event.ext = event.ext || {};
|
|
7734
|
+
// Route to ext sub-object
|
|
7735
|
+
const dynamicKey = counter.slice(EXT_FIELD_PREFIX.length);
|
|
7736
|
+
const currentValue = event.ext[dynamicKey];
|
|
7737
|
+
if (currentValue === undefined) {
|
|
7738
|
+
event.ext[dynamicKey] = 0;
|
|
7739
|
+
}
|
|
7740
|
+
else if (isNaN(Number(currentValue))) {
|
|
7741
|
+
return;
|
|
7742
|
+
}
|
|
7743
|
+
event.ext[dynamicKey] =
|
|
7744
|
+
(Number(event.ext[dynamicKey]) || 0) +
|
|
7745
|
+
(fields[counter] ?? 0);
|
|
7683
7746
|
}
|
|
7684
|
-
else
|
|
7685
|
-
|
|
7747
|
+
else {
|
|
7748
|
+
/* eslint-disable custom-msal/no-dynamic-telemetry-fields -- internal dispatching of static fields by name */
|
|
7749
|
+
if (!event.hasOwnProperty(counter)) {
|
|
7750
|
+
event[counter] = 0;
|
|
7751
|
+
}
|
|
7752
|
+
else if (isNaN(Number(event[counter]))) {
|
|
7753
|
+
return;
|
|
7754
|
+
}
|
|
7755
|
+
event[counter] += fields[counter];
|
|
7756
|
+
/* eslint-enable custom-msal/no-dynamic-telemetry-fields */
|
|
7686
7757
|
}
|
|
7687
|
-
event[counter] += fields[counter];
|
|
7688
7758
|
}
|
|
7689
7759
|
}
|
|
7690
7760
|
else {
|
|
@@ -7777,9 +7847,11 @@
|
|
|
7777
7847
|
*/
|
|
7778
7848
|
truncateIntegralFields(event) {
|
|
7779
7849
|
this.intFields.forEach((key) => {
|
|
7850
|
+
/* eslint-disable custom-msal/no-dynamic-telemetry-fields -- internal truncation of known integer fields */
|
|
7780
7851
|
if (key in event && typeof event[key] === "number") {
|
|
7781
7852
|
event[key] = Math.floor(event[key]);
|
|
7782
7853
|
}
|
|
7854
|
+
/* eslint-enable custom-msal/no-dynamic-telemetry-fields */
|
|
7783
7855
|
});
|
|
7784
7856
|
}
|
|
7785
7857
|
/**
|
|
@@ -10139,7 +10211,7 @@
|
|
|
10139
10211
|
|
|
10140
10212
|
/* eslint-disable header/header */
|
|
10141
10213
|
const name = "@azure/msal-browser";
|
|
10142
|
-
const version = "5.
|
|
10214
|
+
const version = "5.4.0";
|
|
10143
10215
|
|
|
10144
10216
|
/*
|
|
10145
10217
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -16346,6 +16418,10 @@
|
|
|
16346
16418
|
const result = this.acquireTokenSilentNoIframe(silentRequest, cacheLookupPolicy).catch(async (refreshTokenError) => {
|
|
16347
16419
|
const shouldTryToResolveSilently = checkIfRefreshTokenErrorCanBeResolvedSilently(refreshTokenError, cacheLookupPolicy);
|
|
16348
16420
|
if (shouldTryToResolveSilently) {
|
|
16421
|
+
const silentRefreshReason = `${refreshTokenError.errorCode}${refreshTokenError.subError
|
|
16422
|
+
? `|${refreshTokenError.subError}`
|
|
16423
|
+
: ""}`;
|
|
16424
|
+
this.performanceClient.addFields({ silentRefreshReason }, request.correlationId);
|
|
16349
16425
|
if (!this.activeIframeRequest) {
|
|
16350
16426
|
let _resolve;
|
|
16351
16427
|
// Always set the active request tracker immediately after checking it to prevent races
|