@azure/msal-browser 4.28.0 → 4.28.2
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 +3 -3
- package/dist/cache/BrowserCacheManager.mjs.map +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.d.ts.map +1 -1
- package/dist/cache/TokenCache.mjs +18 -13
- package/dist/cache/TokenCache.mjs.map +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 +3 -3
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs.map +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/cache/TokenCache.d.ts.map +1 -1
- package/dist/custom-auth-path/cache/TokenCache.mjs +18 -13
- package/dist/custom-auth-path/cache/TokenCache.mjs.map +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/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/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.d.ts.map +1 -1
- package/dist/custom-auth-path/protocol/Authorize.mjs +5 -1
- package/dist/custom-auth-path/protocol/Authorize.mjs.map +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/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/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.d.ts.map +1 -1
- package/dist/protocol/Authorize.mjs +5 -1
- package/dist/protocol/Authorize.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/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/Helpers.mjs +1 -1
- package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/msal-custom-auth.cjs +147 -83
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/msal-custom-auth.js +147 -83
- package/lib/custom-auth-path/msal-custom-auth.js.map +1 -1
- package/lib/custom-auth-path/types/cache/TokenCache.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/custom-auth-path/types/protocol/Authorize.d.ts.map +1 -1
- package/lib/msal-browser.cjs +149 -85
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +149 -85
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +62 -62
- package/lib/types/cache/TokenCache.d.ts.map +1 -1
- package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
- package/lib/types/packageMetadata.d.ts +1 -1
- package/lib/types/protocol/Authorize.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/cache/BrowserCacheManager.ts +3 -3
- package/src/cache/TokenCache.ts +37 -25
- package/src/packageMetadata.ts +1 -1
- package/src/protocol/Authorize.ts +14 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @azure/msal-browser v4.28.
|
|
1
|
+
/*! @azure/msal-browser v4.28.2 2026-02-10 */
|
|
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.msalCustomAuth = {}));
|
|
7
7
|
})(this, (function (exports) { 'use strict';
|
|
8
8
|
|
|
9
|
-
/*! @azure/msal-common v15.14.
|
|
9
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
10
10
|
/*
|
|
11
11
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
12
12
|
* Licensed under the MIT License.
|
|
@@ -280,7 +280,7 @@
|
|
|
280
280
|
// Token renewal offset default in seconds
|
|
281
281
|
const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
|
|
282
282
|
|
|
283
|
-
/*! @azure/msal-common v15.14.
|
|
283
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
284
284
|
/*
|
|
285
285
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
286
286
|
* Licensed under the MIT License.
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
const unexpectedError = "unexpected_error";
|
|
292
292
|
const postRequestFailed$1 = "post_request_failed";
|
|
293
293
|
|
|
294
|
-
/*! @azure/msal-common v15.14.
|
|
294
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
295
295
|
|
|
296
296
|
/*
|
|
297
297
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
: AuthErrorMessages[code]);
|
|
327
327
|
}
|
|
328
328
|
|
|
329
|
-
/*! @azure/msal-common v15.14.
|
|
329
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
330
330
|
/*
|
|
331
331
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
332
332
|
* Licensed under the MIT License.
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
const nestedAppAuthBridgeDisabled = "nested_app_auth_bridge_disabled";
|
|
378
378
|
const platformBrokerError = "platform_broker_error";
|
|
379
379
|
|
|
380
|
-
/*! @azure/msal-common v15.14.
|
|
380
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
381
381
|
|
|
382
382
|
/*
|
|
383
383
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -452,7 +452,7 @@
|
|
|
452
452
|
return new ClientAuthError(errorCode, additionalMessage);
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
/*! @azure/msal-common v15.14.
|
|
455
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
456
456
|
|
|
457
457
|
/*
|
|
458
458
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -491,7 +491,7 @@
|
|
|
491
491
|
},
|
|
492
492
|
};
|
|
493
493
|
|
|
494
|
-
/*! @azure/msal-common v15.14.
|
|
494
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
495
495
|
|
|
496
496
|
/*
|
|
497
497
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -682,12 +682,12 @@
|
|
|
682
682
|
}
|
|
683
683
|
}
|
|
684
684
|
|
|
685
|
-
/*! @azure/msal-common v15.14.
|
|
685
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
686
686
|
/* eslint-disable header/header */
|
|
687
687
|
const name$1 = "@azure/msal-common";
|
|
688
|
-
const version$1 = "15.14.
|
|
688
|
+
const version$1 = "15.14.2";
|
|
689
689
|
|
|
690
|
-
/*! @azure/msal-common v15.14.
|
|
690
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
691
691
|
/*
|
|
692
692
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
693
693
|
* Licensed under the MIT License.
|
|
@@ -696,7 +696,7 @@
|
|
|
696
696
|
// AzureCloudInstance is not specified.
|
|
697
697
|
None: "none"};
|
|
698
698
|
|
|
699
|
-
/*! @azure/msal-common v15.14.
|
|
699
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
700
700
|
/*
|
|
701
701
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
702
702
|
* Licensed under the MIT License.
|
|
@@ -726,7 +726,7 @@
|
|
|
726
726
|
const invalidAuthorizePostBodyParameters = "invalid_authorize_post_body_parameters";
|
|
727
727
|
const invalidPlatformBrokerConfiguration = "invalid_platform_broker_configuration";
|
|
728
728
|
|
|
729
|
-
/*! @azure/msal-common v15.14.
|
|
729
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
730
730
|
|
|
731
731
|
/*
|
|
732
732
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -772,7 +772,7 @@
|
|
|
772
772
|
return new ClientConfigurationError(errorCode);
|
|
773
773
|
}
|
|
774
774
|
|
|
775
|
-
/*! @azure/msal-common v15.14.
|
|
775
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
776
776
|
/*
|
|
777
777
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
778
778
|
* Licensed under the MIT License.
|
|
@@ -869,7 +869,7 @@
|
|
|
869
869
|
}
|
|
870
870
|
}
|
|
871
871
|
|
|
872
|
-
/*! @azure/msal-common v15.14.
|
|
872
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
873
873
|
|
|
874
874
|
/*
|
|
875
875
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1064,7 +1064,7 @@
|
|
|
1064
1064
|
}
|
|
1065
1065
|
}
|
|
1066
1066
|
|
|
1067
|
-
/*! @azure/msal-common v15.14.
|
|
1067
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1068
1068
|
|
|
1069
1069
|
/*
|
|
1070
1070
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1104,7 +1104,7 @@
|
|
|
1104
1104
|
};
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
|
-
/*! @azure/msal-common v15.14.
|
|
1107
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1108
1108
|
/*
|
|
1109
1109
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1110
1110
|
* Licensed under the MIT License.
|
|
@@ -1186,7 +1186,7 @@
|
|
|
1186
1186
|
return updatedAccountInfo;
|
|
1187
1187
|
}
|
|
1188
1188
|
|
|
1189
|
-
/*! @azure/msal-common v15.14.
|
|
1189
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1190
1190
|
/*
|
|
1191
1191
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1192
1192
|
* Licensed under the MIT License.
|
|
@@ -1201,7 +1201,7 @@
|
|
|
1201
1201
|
Ciam: 3,
|
|
1202
1202
|
};
|
|
1203
1203
|
|
|
1204
|
-
/*! @azure/msal-common v15.14.
|
|
1204
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1205
1205
|
/*
|
|
1206
1206
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1207
1207
|
* Licensed under the MIT License.
|
|
@@ -1223,7 +1223,7 @@
|
|
|
1223
1223
|
return null;
|
|
1224
1224
|
}
|
|
1225
1225
|
|
|
1226
|
-
/*! @azure/msal-common v15.14.
|
|
1226
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1227
1227
|
/*
|
|
1228
1228
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1229
1229
|
* Licensed under the MIT License.
|
|
@@ -1247,7 +1247,7 @@
|
|
|
1247
1247
|
EAR: "EAR",
|
|
1248
1248
|
};
|
|
1249
1249
|
|
|
1250
|
-
/*! @azure/msal-common v15.14.
|
|
1250
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1251
1251
|
|
|
1252
1252
|
/*
|
|
1253
1253
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1281,6 +1281,13 @@
|
|
|
1281
1281
|
* Returns the AccountInfo interface for this account.
|
|
1282
1282
|
*/
|
|
1283
1283
|
static getAccountInfo(accountEntity) {
|
|
1284
|
+
const tenantProfiles = accountEntity.tenantProfiles || [];
|
|
1285
|
+
// Ensure at least the home tenant profile exists
|
|
1286
|
+
if (tenantProfiles.length === 0 &&
|
|
1287
|
+
accountEntity.realm &&
|
|
1288
|
+
accountEntity.localAccountId) {
|
|
1289
|
+
tenantProfiles.push(buildTenantProfile(accountEntity.homeAccountId, accountEntity.localAccountId, accountEntity.realm));
|
|
1290
|
+
}
|
|
1284
1291
|
return {
|
|
1285
1292
|
homeAccountId: accountEntity.homeAccountId,
|
|
1286
1293
|
environment: accountEntity.environment,
|
|
@@ -1292,7 +1299,7 @@
|
|
|
1292
1299
|
nativeAccountId: accountEntity.nativeAccountId,
|
|
1293
1300
|
authorityType: accountEntity.authorityType,
|
|
1294
1301
|
// Deserialize tenant profiles array into a Map
|
|
1295
|
-
tenantProfiles: new Map(
|
|
1302
|
+
tenantProfiles: new Map(tenantProfiles.map((tenantProfile) => {
|
|
1296
1303
|
return [tenantProfile.tenantId, tenantProfile];
|
|
1297
1304
|
})),
|
|
1298
1305
|
dataBoundary: accountEntity.dataBoundary,
|
|
@@ -1393,7 +1400,14 @@
|
|
|
1393
1400
|
account.cloudGraphHostName = cloudGraphHostName;
|
|
1394
1401
|
account.msGraphHost = msGraphHost;
|
|
1395
1402
|
// Serialize tenant profiles map into an array
|
|
1396
|
-
|
|
1403
|
+
const tenantProfiles = Array.from(accountInfo.tenantProfiles?.values() || []);
|
|
1404
|
+
// Ensure at least the home tenant profile exists
|
|
1405
|
+
if (tenantProfiles.length === 0 &&
|
|
1406
|
+
accountInfo.tenantId &&
|
|
1407
|
+
accountInfo.localAccountId) {
|
|
1408
|
+
tenantProfiles.push(buildTenantProfile(accountInfo.homeAccountId, accountInfo.localAccountId, accountInfo.tenantId, accountInfo.idTokenClaims));
|
|
1409
|
+
}
|
|
1410
|
+
account.tenantProfiles = tenantProfiles;
|
|
1397
1411
|
account.dataBoundary = accountInfo.dataBoundary;
|
|
1398
1412
|
return account;
|
|
1399
1413
|
}
|
|
@@ -1468,7 +1482,7 @@
|
|
|
1468
1482
|
}
|
|
1469
1483
|
}
|
|
1470
1484
|
|
|
1471
|
-
/*! @azure/msal-common v15.14.
|
|
1485
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1472
1486
|
|
|
1473
1487
|
/*
|
|
1474
1488
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1549,7 +1563,7 @@
|
|
|
1549
1563
|
}
|
|
1550
1564
|
}
|
|
1551
1565
|
|
|
1552
|
-
/*! @azure/msal-common v15.14.
|
|
1566
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1553
1567
|
|
|
1554
1568
|
/*
|
|
1555
1569
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1665,7 +1679,7 @@
|
|
|
1665
1679
|
}
|
|
1666
1680
|
}
|
|
1667
1681
|
|
|
1668
|
-
/*! @azure/msal-common v15.14.
|
|
1682
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1669
1683
|
|
|
1670
1684
|
/*
|
|
1671
1685
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1829,7 +1843,7 @@
|
|
|
1829
1843
|
}
|
|
1830
1844
|
}
|
|
1831
1845
|
|
|
1832
|
-
/*! @azure/msal-common v15.14.
|
|
1846
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1833
1847
|
|
|
1834
1848
|
/*
|
|
1835
1849
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -1858,6 +1872,27 @@
|
|
|
1858
1872
|
authorization_endpoint: "https://login.microsoftonline.us/{tenantid}/oauth2/v2.0/authorize",
|
|
1859
1873
|
end_session_endpoint: "https://login.microsoftonline.us/{tenantid}/oauth2/v2.0/logout",
|
|
1860
1874
|
},
|
|
1875
|
+
"login.sovcloud-identity.fr": {
|
|
1876
|
+
token_endpoint: "https://login.sovcloud-identity.fr/{tenantid}/oauth2/v2.0/token",
|
|
1877
|
+
jwks_uri: "https://login.sovcloud-identity.fr/{tenantid}/discovery/v2.0/keys",
|
|
1878
|
+
issuer: "https://login.sovcloud-identity.fr/{tenantid}/v2.0",
|
|
1879
|
+
authorization_endpoint: "https://login.sovcloud-identity.fr/{tenantid}/oauth2/v2.0/authorize",
|
|
1880
|
+
end_session_endpoint: "https://login.sovcloud-identity.fr/{tenantid}/oauth2/v2.0/logout",
|
|
1881
|
+
},
|
|
1882
|
+
"login.sovcloud-identity.de": {
|
|
1883
|
+
token_endpoint: "https://login.sovcloud-identity.de/{tenantid}/oauth2/v2.0/token",
|
|
1884
|
+
jwks_uri: "https://login.sovcloud-identity.de/{tenantid}/discovery/v2.0/keys",
|
|
1885
|
+
issuer: "https://login.sovcloud-identity.de/{tenantid}/v2.0",
|
|
1886
|
+
authorization_endpoint: "https://login.sovcloud-identity.de/{tenantid}/oauth2/v2.0/authorize",
|
|
1887
|
+
end_session_endpoint: "https://login.sovcloud-identity.de/{tenantid}/oauth2/v2.0/logout",
|
|
1888
|
+
},
|
|
1889
|
+
"login.sovcloud-identity.sg": {
|
|
1890
|
+
token_endpoint: "https://login.sovcloud-identity.sg/common/oauth2/v2.0/token",
|
|
1891
|
+
jwks_uri: "https://login.sovcloud-identity.sg/common/discovery/v2.0/keys",
|
|
1892
|
+
issuer: "https://login.sovcloud-identity.sg/{tenantid}/v2.0",
|
|
1893
|
+
authorization_endpoint: "https://login.sovcloud-identity.sg/common/oauth2/v2.0/authorize",
|
|
1894
|
+
end_session_endpoint: "https://login.sovcloud-identity.sg/common/oauth2/v2.0/logout",
|
|
1895
|
+
},
|
|
1861
1896
|
},
|
|
1862
1897
|
instanceDiscoveryMetadata: {
|
|
1863
1898
|
metadata: [
|
|
@@ -1897,6 +1932,21 @@
|
|
|
1897
1932
|
preferred_cache: "login-us.microsoftonline.com",
|
|
1898
1933
|
aliases: ["login-us.microsoftonline.com"],
|
|
1899
1934
|
},
|
|
1935
|
+
{
|
|
1936
|
+
preferred_network: "login.sovcloud-identity.fr",
|
|
1937
|
+
preferred_cache: "login.sovcloud-identity.fr",
|
|
1938
|
+
aliases: ["login.sovcloud-identity.fr"],
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
preferred_network: "login.sovcloud-identity.de",
|
|
1942
|
+
preferred_cache: "login.sovcloud-identity.de",
|
|
1943
|
+
aliases: ["login.sovcloud-identity.de"],
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
preferred_network: "login.sovcloud-identity.sg",
|
|
1947
|
+
preferred_cache: "login.sovcloud-identity.sg",
|
|
1948
|
+
aliases: ["login.sovcloud-identity.sg"],
|
|
1949
|
+
},
|
|
1900
1950
|
],
|
|
1901
1951
|
},
|
|
1902
1952
|
};
|
|
@@ -1968,7 +2018,7 @@
|
|
|
1968
2018
|
return null;
|
|
1969
2019
|
}
|
|
1970
2020
|
|
|
1971
|
-
/*! @azure/msal-common v15.14.
|
|
2021
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1972
2022
|
/*
|
|
1973
2023
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1974
2024
|
* Licensed under the MIT License.
|
|
@@ -1976,7 +2026,7 @@
|
|
|
1976
2026
|
const cacheQuotaExceeded = "cache_quota_exceeded";
|
|
1977
2027
|
const cacheErrorUnknown = "cache_error_unknown";
|
|
1978
2028
|
|
|
1979
|
-
/*! @azure/msal-common v15.14.
|
|
2029
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
1980
2030
|
|
|
1981
2031
|
/*
|
|
1982
2032
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -2021,7 +2071,7 @@
|
|
|
2021
2071
|
}
|
|
2022
2072
|
}
|
|
2023
2073
|
|
|
2024
|
-
/*! @azure/msal-common v15.14.
|
|
2074
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
2025
2075
|
|
|
2026
2076
|
/*
|
|
2027
2077
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3131,7 +3181,7 @@
|
|
|
3131
3181
|
}
|
|
3132
3182
|
}
|
|
3133
3183
|
|
|
3134
|
-
/*! @azure/msal-common v15.14.
|
|
3184
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
3135
3185
|
/*
|
|
3136
3186
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3137
3187
|
* Licensed under the MIT License.
|
|
@@ -3403,7 +3453,7 @@
|
|
|
3403
3453
|
const PerformanceEventStatus = {
|
|
3404
3454
|
InProgress: 1};
|
|
3405
3455
|
|
|
3406
|
-
/*! @azure/msal-common v15.14.
|
|
3456
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
3407
3457
|
|
|
3408
3458
|
/*
|
|
3409
3459
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3482,7 +3532,7 @@
|
|
|
3482
3532
|
}
|
|
3483
3533
|
}
|
|
3484
3534
|
|
|
3485
|
-
/*! @azure/msal-common v15.14.
|
|
3535
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
3486
3536
|
|
|
3487
3537
|
/*
|
|
3488
3538
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -3582,7 +3632,7 @@
|
|
|
3582
3632
|
return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
|
|
3583
3633
|
}
|
|
3584
3634
|
|
|
3585
|
-
/*! @azure/msal-common v15.14.
|
|
3635
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
3586
3636
|
/*
|
|
3587
3637
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3588
3638
|
* Licensed under the MIT License.
|
|
@@ -3592,7 +3642,7 @@
|
|
|
3592
3642
|
UPN: "UPN",
|
|
3593
3643
|
};
|
|
3594
3644
|
|
|
3595
|
-
/*! @azure/msal-common v15.14.
|
|
3645
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
3596
3646
|
/*
|
|
3597
3647
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3598
3648
|
* Licensed under the MIT License.
|
|
@@ -3642,7 +3692,7 @@
|
|
|
3642
3692
|
const EAR_JWK = "ear_jwk";
|
|
3643
3693
|
const EAR_JWE_CRYPTO = "ear_jwe_crypto";
|
|
3644
3694
|
|
|
3645
|
-
/*! @azure/msal-common v15.14.
|
|
3695
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
3646
3696
|
|
|
3647
3697
|
/*
|
|
3648
3698
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4022,7 +4072,7 @@
|
|
|
4022
4072
|
});
|
|
4023
4073
|
}
|
|
4024
4074
|
|
|
4025
|
-
/*! @azure/msal-common v15.14.
|
|
4075
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
4026
4076
|
/*
|
|
4027
4077
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4028
4078
|
* Licensed under the MIT License.
|
|
@@ -4034,7 +4084,7 @@
|
|
|
4034
4084
|
response.hasOwnProperty("jwks_uri"));
|
|
4035
4085
|
}
|
|
4036
4086
|
|
|
4037
|
-
/*! @azure/msal-common v15.14.
|
|
4087
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
4038
4088
|
/*
|
|
4039
4089
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4040
4090
|
* Licensed under the MIT License.
|
|
@@ -4044,7 +4094,7 @@
|
|
|
4044
4094
|
response.hasOwnProperty("metadata"));
|
|
4045
4095
|
}
|
|
4046
4096
|
|
|
4047
|
-
/*! @azure/msal-common v15.14.
|
|
4097
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
4048
4098
|
/*
|
|
4049
4099
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4050
4100
|
* Licensed under the MIT License.
|
|
@@ -4054,7 +4104,7 @@
|
|
|
4054
4104
|
response.hasOwnProperty("error_description"));
|
|
4055
4105
|
}
|
|
4056
4106
|
|
|
4057
|
-
/*! @azure/msal-common v15.14.
|
|
4107
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
4058
4108
|
/*
|
|
4059
4109
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4060
4110
|
* Licensed under the MIT License.
|
|
@@ -4150,7 +4200,7 @@
|
|
|
4150
4200
|
};
|
|
4151
4201
|
};
|
|
4152
4202
|
|
|
4153
|
-
/*! @azure/msal-common v15.14.
|
|
4203
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
4154
4204
|
|
|
4155
4205
|
/*
|
|
4156
4206
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4256,7 +4306,7 @@
|
|
|
4256
4306
|
},
|
|
4257
4307
|
};
|
|
4258
4308
|
|
|
4259
|
-
/*! @azure/msal-common v15.14.
|
|
4309
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
4260
4310
|
/*
|
|
4261
4311
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4262
4312
|
* Licensed under the MIT License.
|
|
@@ -4321,7 +4371,7 @@
|
|
|
4321
4371
|
return cachedAtSec > nowSeconds();
|
|
4322
4372
|
}
|
|
4323
4373
|
|
|
4324
|
-
/*! @azure/msal-common v15.14.
|
|
4374
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
4325
4375
|
|
|
4326
4376
|
/*
|
|
4327
4377
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -4583,7 +4633,7 @@
|
|
|
4583
4633
|
return metadata.expiresAt <= nowSeconds();
|
|
4584
4634
|
}
|
|
4585
4635
|
|
|
4586
|
-
/*! @azure/msal-common v15.14.
|
|
4636
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
4587
4637
|
|
|
4588
4638
|
/*
|
|
4589
4639
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5422,7 +5472,7 @@
|
|
|
5422
5472
|
};
|
|
5423
5473
|
}
|
|
5424
5474
|
|
|
5425
|
-
/*! @azure/msal-common v15.14.
|
|
5475
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5426
5476
|
|
|
5427
5477
|
/*
|
|
5428
5478
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5453,7 +5503,7 @@
|
|
|
5453
5503
|
}
|
|
5454
5504
|
}
|
|
5455
5505
|
|
|
5456
|
-
/*! @azure/msal-common v15.14.
|
|
5506
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5457
5507
|
|
|
5458
5508
|
/*
|
|
5459
5509
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5472,7 +5522,7 @@
|
|
|
5472
5522
|
}
|
|
5473
5523
|
}
|
|
5474
5524
|
|
|
5475
|
-
/*! @azure/msal-common v15.14.
|
|
5525
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5476
5526
|
/*
|
|
5477
5527
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5478
5528
|
* Licensed under the MIT License.
|
|
@@ -5493,7 +5543,7 @@
|
|
|
5493
5543
|
};
|
|
5494
5544
|
}
|
|
5495
5545
|
|
|
5496
|
-
/*! @azure/msal-common v15.14.
|
|
5546
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5497
5547
|
|
|
5498
5548
|
/*
|
|
5499
5549
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5580,7 +5630,7 @@
|
|
|
5580
5630
|
}
|
|
5581
5631
|
}
|
|
5582
5632
|
|
|
5583
|
-
/*! @azure/msal-common v15.14.
|
|
5633
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5584
5634
|
|
|
5585
5635
|
/*
|
|
5586
5636
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5611,7 +5661,7 @@
|
|
|
5611
5661
|
return new NetworkError(error, httpStatus, responseHeaders);
|
|
5612
5662
|
}
|
|
5613
5663
|
|
|
5614
|
-
/*! @azure/msal-common v15.14.
|
|
5664
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5615
5665
|
|
|
5616
5666
|
/*
|
|
5617
5667
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5759,7 +5809,7 @@
|
|
|
5759
5809
|
}
|
|
5760
5810
|
}
|
|
5761
5811
|
|
|
5762
|
-
/*! @azure/msal-common v15.14.
|
|
5812
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5763
5813
|
/*
|
|
5764
5814
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5765
5815
|
* Licensed under the MIT License.
|
|
@@ -5775,7 +5825,7 @@
|
|
|
5775
5825
|
const loginRequired = "login_required";
|
|
5776
5826
|
const badToken = "bad_token";
|
|
5777
5827
|
|
|
5778
|
-
/*! @azure/msal-common v15.14.
|
|
5828
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5779
5829
|
|
|
5780
5830
|
/*
|
|
5781
5831
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5847,7 +5897,7 @@
|
|
|
5847
5897
|
return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
|
|
5848
5898
|
}
|
|
5849
5899
|
|
|
5850
|
-
/*! @azure/msal-common v15.14.
|
|
5900
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5851
5901
|
|
|
5852
5902
|
/*
|
|
5853
5903
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -5919,7 +5969,7 @@
|
|
|
5919
5969
|
}
|
|
5920
5970
|
}
|
|
5921
5971
|
|
|
5922
|
-
/*! @azure/msal-common v15.14.
|
|
5972
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
5923
5973
|
|
|
5924
5974
|
/*
|
|
5925
5975
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6001,7 +6051,7 @@
|
|
|
6001
6051
|
}
|
|
6002
6052
|
}
|
|
6003
6053
|
|
|
6004
|
-
/*! @azure/msal-common v15.14.
|
|
6054
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
6005
6055
|
/*
|
|
6006
6056
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6007
6057
|
* Licensed under the MIT License.
|
|
@@ -6028,7 +6078,7 @@
|
|
|
6028
6078
|
}
|
|
6029
6079
|
}
|
|
6030
6080
|
|
|
6031
|
-
/*! @azure/msal-common v15.14.
|
|
6081
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
6032
6082
|
|
|
6033
6083
|
/*
|
|
6034
6084
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6140,10 +6190,15 @@
|
|
|
6140
6190
|
if (handlingRefreshTokenResponse &&
|
|
6141
6191
|
!forceCacheRefreshTokenResponse &&
|
|
6142
6192
|
cacheRecord.account) {
|
|
6143
|
-
const
|
|
6144
|
-
|
|
6145
|
-
|
|
6193
|
+
const cachedAccounts = this.cacheStorage.getAllAccounts({
|
|
6194
|
+
homeAccountId: cacheRecord.account.homeAccountId,
|
|
6195
|
+
environment: cacheRecord.account.environment,
|
|
6196
|
+
}, request.correlationId);
|
|
6197
|
+
if (cachedAccounts.length < 1) {
|
|
6146
6198
|
this.logger.warning("Account used to refresh tokens not in persistence, refreshed tokens will not be stored in the cache");
|
|
6199
|
+
this.performanceClient?.addFields({
|
|
6200
|
+
acntLoggedOut: true,
|
|
6201
|
+
}, request.correlationId);
|
|
6147
6202
|
return await ResponseHandler.generateAuthenticationResult(this.cryptoObj, authority, cacheRecord, false, request, idTokenClaims, requestStateObj, undefined, serverRequestId);
|
|
6148
6203
|
}
|
|
6149
6204
|
}
|
|
@@ -6362,7 +6417,7 @@
|
|
|
6362
6417
|
return baseAccount;
|
|
6363
6418
|
}
|
|
6364
6419
|
|
|
6365
|
-
/*! @azure/msal-common v15.14.
|
|
6420
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
6366
6421
|
/*
|
|
6367
6422
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
6368
6423
|
* Licensed under the MIT License.
|
|
@@ -6380,7 +6435,7 @@
|
|
|
6380
6435
|
}
|
|
6381
6436
|
}
|
|
6382
6437
|
|
|
6383
|
-
/*! @azure/msal-common v15.14.
|
|
6438
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
6384
6439
|
|
|
6385
6440
|
/*
|
|
6386
6441
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6616,7 +6671,7 @@
|
|
|
6616
6671
|
}
|
|
6617
6672
|
}
|
|
6618
6673
|
|
|
6619
|
-
/*! @azure/msal-common v15.14.
|
|
6674
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
6620
6675
|
|
|
6621
6676
|
/*
|
|
6622
6677
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6828,7 +6883,7 @@
|
|
|
6828
6883
|
}
|
|
6829
6884
|
}
|
|
6830
6885
|
|
|
6831
|
-
/*! @azure/msal-common v15.14.
|
|
6886
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
6832
6887
|
|
|
6833
6888
|
/*
|
|
6834
6889
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6926,7 +6981,7 @@
|
|
|
6926
6981
|
}
|
|
6927
6982
|
}
|
|
6928
6983
|
|
|
6929
|
-
/*! @azure/msal-common v15.14.
|
|
6984
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
6930
6985
|
|
|
6931
6986
|
/*
|
|
6932
6987
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -6941,7 +6996,7 @@
|
|
|
6941
6996
|
},
|
|
6942
6997
|
};
|
|
6943
6998
|
|
|
6944
|
-
/*! @azure/msal-common v15.14.
|
|
6999
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
6945
7000
|
|
|
6946
7001
|
/*
|
|
6947
7002
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7165,7 +7220,7 @@
|
|
|
7165
7220
|
return account.loginHint || account.idTokenClaims?.login_hint || null;
|
|
7166
7221
|
}
|
|
7167
7222
|
|
|
7168
|
-
/*! @azure/msal-common v15.14.
|
|
7223
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
7169
7224
|
|
|
7170
7225
|
/*
|
|
7171
7226
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7428,7 +7483,7 @@
|
|
|
7428
7483
|
}
|
|
7429
7484
|
}
|
|
7430
7485
|
|
|
7431
|
-
/*! @azure/msal-common v15.14.
|
|
7486
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
7432
7487
|
/*
|
|
7433
7488
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7434
7489
|
* Licensed under the MIT License.
|
|
@@ -7436,7 +7491,7 @@
|
|
|
7436
7491
|
const missingKidError = "missing_kid_error";
|
|
7437
7492
|
const missingAlgError = "missing_alg_error";
|
|
7438
7493
|
|
|
7439
|
-
/*! @azure/msal-common v15.14.
|
|
7494
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
7440
7495
|
|
|
7441
7496
|
/*
|
|
7442
7497
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7461,7 +7516,7 @@
|
|
|
7461
7516
|
return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
|
|
7462
7517
|
}
|
|
7463
7518
|
|
|
7464
|
-
/*! @azure/msal-common v15.14.
|
|
7519
|
+
/*! @azure/msal-common v15.14.2 2026-02-10 */
|
|
7465
7520
|
|
|
7466
7521
|
/*
|
|
7467
7522
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -7896,7 +7951,7 @@
|
|
|
7896
7951
|
|
|
7897
7952
|
/* eslint-disable header/header */
|
|
7898
7953
|
const name = "@azure/msal-browser";
|
|
7899
|
-
const version = "4.28.
|
|
7954
|
+
const version = "4.28.2";
|
|
7900
7955
|
|
|
7901
7956
|
/*
|
|
7902
7957
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -16036,7 +16091,7 @@
|
|
|
16036
16091
|
* @param request
|
|
16037
16092
|
*/
|
|
16038
16093
|
async hydrateCache(result, request) {
|
|
16039
|
-
const idTokenEntity = createIdTokenEntity(result.account
|
|
16094
|
+
const idTokenEntity = createIdTokenEntity(result.account.homeAccountId, result.account.environment, result.idToken, this.clientId, result.tenantId);
|
|
16040
16095
|
let claimsHash;
|
|
16041
16096
|
if (request.claims) {
|
|
16042
16097
|
claimsHash = await this.cryptoImpl.hashString(request.claims);
|
|
@@ -16048,7 +16103,7 @@
|
|
|
16048
16103
|
*
|
|
16049
16104
|
* The next MSAL VFuture should map these both to same value if possible
|
|
16050
16105
|
*/
|
|
16051
|
-
const accessTokenEntity = createAccessTokenEntity(result.account
|
|
16106
|
+
const accessTokenEntity = createAccessTokenEntity(result.account.homeAccountId, result.account.environment, result.accessToken, this.clientId, result.tenantId, result.scopes.join(" "),
|
|
16052
16107
|
// Access token expiresOn stored in seconds, converting from AuthenticationResult expiresOn stored as Date
|
|
16053
16108
|
result.expiresOn
|
|
16054
16109
|
? toSecondsFromDate(result.expiresOn)
|
|
@@ -17345,6 +17400,8 @@
|
|
|
17345
17400
|
addCodeChallengeParams(parameters, request.codeChallenge, Constants.S256_CODE_CHALLENGE_METHOD);
|
|
17346
17401
|
const queryParams = new Map();
|
|
17347
17402
|
addExtraQueryParameters(queryParams, request.extraQueryParameters || {});
|
|
17403
|
+
// Add correlationId to query params so gateway can propagate it to IDPs
|
|
17404
|
+
addCorrelationId(queryParams, request.correlationId);
|
|
17348
17405
|
const url = getAuthorizeUrl(authority, queryParams, config.auth.encodeExtraQueryParams, request.extraQueryParameters);
|
|
17349
17406
|
return createForm(frame, url, parameters);
|
|
17350
17407
|
}
|
|
@@ -17358,6 +17415,8 @@
|
|
|
17358
17415
|
addPostBodyParameters(parameters, request.authorizePostBodyParameters || {});
|
|
17359
17416
|
const queryParams = new Map();
|
|
17360
17417
|
addExtraQueryParameters(queryParams, request.extraQueryParameters || {});
|
|
17418
|
+
// Add correlationId to query params so gateway can propagate it to IDPs
|
|
17419
|
+
addCorrelationId(queryParams, request.correlationId);
|
|
17361
17420
|
const url = getAuthorizeUrl(authority, queryParams, config.auth.encodeExtraQueryParams, request.extraQueryParameters);
|
|
17362
17421
|
return createForm(frame, url, parameters);
|
|
17363
17422
|
}
|
|
@@ -19651,10 +19710,9 @@
|
|
|
19651
19710
|
authorityMetadata: this.config.auth.authorityMetadata,
|
|
19652
19711
|
skipAuthorityMetadataCache: this.config.auth.skipAuthorityMetadataCache,
|
|
19653
19712
|
};
|
|
19654
|
-
const
|
|
19655
|
-
|
|
19656
|
-
|
|
19657
|
-
const cacheRecordAccount = await invokeAsync(this.loadAccount.bind(this), PerformanceEvents.LoadAccount, this.logger, this.performanceClient, correlationId)(request, options.clientInfo || response.client_info || "", correlationId, idTokenClaims, authority);
|
|
19713
|
+
const authorityString = request.authority || this.config.auth.authority;
|
|
19714
|
+
const authority = await createDiscoveredInstance(Authority.generateAuthority(authorityString, request.azureCloudOptions), this.config.system.networkClient, this.storage, authorityOptions, this.logger, correlationId, this.performanceClient);
|
|
19715
|
+
const cacheRecordAccount = await invokeAsync(this.loadAccount.bind(this), PerformanceEvents.LoadAccount, this.logger, this.performanceClient, correlationId)(request, options.clientInfo || response.client_info || "", correlationId, authority, idTokenClaims);
|
|
19658
19716
|
const idToken = await invokeAsync(this.loadIdToken.bind(this), PerformanceEvents.LoadIdToken, this.logger, this.performanceClient, correlationId)(response, cacheRecordAccount.homeAccountId, cacheRecordAccount.environment, cacheRecordAccount.realm, correlationId, kmsi);
|
|
19659
19717
|
const accessToken = await invokeAsync(this.loadAccessToken.bind(this), PerformanceEvents.LoadAccessToken, this.logger, this.performanceClient, correlationId)(request, response, cacheRecordAccount.homeAccountId, cacheRecordAccount.environment, cacheRecordAccount.realm, options, correlationId, kmsi);
|
|
19660
19718
|
const refreshToken = await invokeAsync(this.loadRefreshToken.bind(this), PerformanceEvents.LoadRefreshToken, this.logger, this.performanceClient, correlationId)(response, cacheRecordAccount.homeAccountId, cacheRecordAccount.environment, correlationId, kmsi);
|
|
@@ -19664,7 +19722,7 @@
|
|
|
19664
19722
|
idToken,
|
|
19665
19723
|
accessToken,
|
|
19666
19724
|
refreshToken,
|
|
19667
|
-
},
|
|
19725
|
+
}, authority, idTokenClaims);
|
|
19668
19726
|
}
|
|
19669
19727
|
catch (error) {
|
|
19670
19728
|
rootMeasurement.end({ success: false }, error);
|
|
@@ -19680,20 +19738,20 @@
|
|
|
19680
19738
|
* @param requestHomeAccountId
|
|
19681
19739
|
* @returns `AccountEntity`
|
|
19682
19740
|
*/
|
|
19683
|
-
async loadAccount(request, clientInfo, correlationId,
|
|
19741
|
+
async loadAccount(request, clientInfo, correlationId, authority, idTokenClaims) {
|
|
19684
19742
|
this.logger.verbose("TokenCache - loading account");
|
|
19685
19743
|
if (request.account) {
|
|
19686
19744
|
const accountEntity = AccountEntity.createFromAccountInfo(request.account);
|
|
19687
19745
|
await this.storage.setAccount(accountEntity, correlationId, isKmsi(idTokenClaims || {}), ApiId.loadExternalTokens);
|
|
19688
19746
|
return accountEntity;
|
|
19689
19747
|
}
|
|
19690
|
-
else if (!
|
|
19691
|
-
this.logger.error("TokenCache - if an account is not provided on the request,
|
|
19748
|
+
else if (!clientInfo && !idTokenClaims) {
|
|
19749
|
+
this.logger.error("TokenCache - if an account is not provided on the request, clientInfo or idToken must be provided instead.");
|
|
19692
19750
|
throw createBrowserAuthError(unableToLoadToken);
|
|
19693
19751
|
}
|
|
19694
19752
|
const homeAccountId = AccountEntity.generateHomeAccountId(clientInfo, authority.authorityType, this.logger, this.cryptoObj, idTokenClaims);
|
|
19695
19753
|
const claimsTenantId = idTokenClaims?.tid;
|
|
19696
|
-
const cachedAccount = buildAccountToCache(this.storage, authority, homeAccountId, base64Decode, correlationId, idTokenClaims, clientInfo, authority.
|
|
19754
|
+
const cachedAccount = buildAccountToCache(this.storage, authority, homeAccountId, base64Decode, correlationId, idTokenClaims, clientInfo, authority.getPreferredCache(), claimsTenantId, undefined, // authCodePayload
|
|
19697
19755
|
undefined, // nativeAccountId
|
|
19698
19756
|
this.logger);
|
|
19699
19757
|
await this.storage.setAccount(cachedAccount, correlationId, isKmsi(idTokenClaims || {}), ApiId.loadExternalTokens);
|
|
@@ -19765,9 +19823,15 @@
|
|
|
19765
19823
|
this.logger.verbose("TokenCache - no refresh token found in response");
|
|
19766
19824
|
return null;
|
|
19767
19825
|
}
|
|
19826
|
+
const expiresOn = response.refresh_token_expires_in
|
|
19827
|
+
? response.refresh_token_expires_in + nowSeconds()
|
|
19828
|
+
: undefined;
|
|
19829
|
+
this.performanceClient.addFields({
|
|
19830
|
+
extRtExpiresOnSeconds: expiresOn,
|
|
19831
|
+
}, correlationId);
|
|
19768
19832
|
this.logger.verbose("TokenCache - loading refresh token");
|
|
19769
19833
|
const refreshTokenEntity = createRefreshTokenEntity(homeAccountId, environment, response.refresh_token, this.config.auth.clientId, response.foci, undefined, // userAssertionHash
|
|
19770
|
-
|
|
19834
|
+
expiresOn);
|
|
19771
19835
|
await this.storage.setRefreshTokenCredential(refreshTokenEntity, correlationId, kmsi);
|
|
19772
19836
|
return refreshTokenEntity;
|
|
19773
19837
|
}
|
|
@@ -19779,7 +19843,7 @@
|
|
|
19779
19843
|
* @param authority
|
|
19780
19844
|
* @returns `AuthenticationResult`
|
|
19781
19845
|
*/
|
|
19782
|
-
generateAuthenticationResult(request, cacheRecord,
|
|
19846
|
+
generateAuthenticationResult(request, cacheRecord, authority, idTokenClaims) {
|
|
19783
19847
|
let accessToken = "";
|
|
19784
19848
|
let responseScopes = [];
|
|
19785
19849
|
let expiresOn = null;
|