@azure/msal-browser 5.8.0 → 5.10.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 +4 -17
- 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 +22 -9
- package/dist/cache/CookieStorage.mjs.map +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.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/CustomAuthConstants.mjs +50 -0
- package/dist/custom_auth/CustomAuthConstants.mjs.map +1 -0
- package/dist/custom_auth/CustomAuthPublicClientApplication.mjs +97 -0
- package/dist/custom_auth/CustomAuthPublicClientApplication.mjs.map +1 -0
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs +332 -0
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs.map +1 -0
- package/dist/custom_auth/core/CustomAuthAuthority.mjs +82 -0
- package/dist/custom_auth/core/CustomAuthAuthority.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +134 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +59 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +42 -0
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +56 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +46 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +181 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +42 -0
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +46 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +140 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs.map +1 -0
- package/dist/custom_auth/core/error/CustomAuthApiError.mjs +35 -0
- package/dist/custom_auth/core/error/CustomAuthApiError.mjs.map +1 -0
- package/dist/custom_auth/core/error/CustomAuthError.mjs +22 -0
- package/dist/custom_auth/core/error/CustomAuthError.mjs.map +1 -0
- package/dist/custom_auth/core/error/HttpError.mjs +17 -0
- package/dist/custom_auth/core/error/HttpError.mjs.map +1 -0
- package/dist/custom_auth/core/error/HttpErrorCodes.mjs +11 -0
- package/dist/custom_auth/core/error/HttpErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidArgumentError.mjs +18 -0
- package/dist/custom_auth/core/error/InvalidArgumentError.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidConfigurationError.mjs +17 -0
- package/dist/custom_auth/core/error/InvalidConfigurationError.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +12 -0
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/MethodNotImplementedError.mjs +18 -0
- package/dist/custom_auth/core/error/MethodNotImplementedError.mjs.map +1 -0
- package/dist/custom_auth/core/error/MsalCustomAuthError.mjs +17 -0
- package/dist/custom_auth/core/error/MsalCustomAuthError.mjs.map +1 -0
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs +17 -0
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +1 -0
- package/dist/custom_auth/core/error/ParsedUrlError.mjs +17 -0
- package/dist/custom_auth/core/error/ParsedUrlError.mjs.map +1 -0
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs +10 -0
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/UnexpectedError.mjs +30 -0
- package/dist/custom_auth/core/error/UnexpectedError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs +17 -0
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UserAccountAttributeError.mjs +18 -0
- package/dist/custom_auth/core/error/UserAccountAttributeError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs +17 -0
- package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +69 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +25 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs +110 -0
- package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +24 -0
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs +88 -0
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +24 -0
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +87 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +22 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +24 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +51 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +94 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +134 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +78 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +30 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +20 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +54 -0
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs +15 -0
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +1 -0
- package/dist/custom_auth/core/telemetry/PublicApiId.mjs +40 -0
- package/dist/custom_auth/core/telemetry/PublicApiId.mjs.map +1 -0
- package/dist/custom_auth/core/utils/ArgumentValidator.mjs +37 -0
- package/dist/custom_auth/core/utils/ArgumentValidator.mjs.map +1 -0
- package/dist/custom_auth/core/utils/UrlUtils.mjs +34 -0
- package/dist/custom_auth/core/utils/UrlUtils.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +126 -0
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +47 -0
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +49 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +48 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +48 -0
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +1 -0
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +122 -0
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +1 -0
- package/dist/custom_auth/index.mjs +69 -0
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs +35 -0
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +67 -0
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +43 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +106 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +24 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +24 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +64 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +25 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +157 -0
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs +13 -0
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +69 -0
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +49 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +75 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +56 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +51 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +107 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +25 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +60 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +24 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +64 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs +93 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs +248 -0
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +1 -0
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +44 -0
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +91 -0
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +48 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +60 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +48 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +60 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +54 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +84 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +155 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +24 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +24 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +89 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +26 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs +247 -0
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +1 -0
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +37 -0
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +1 -0
- 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 +2 -2
- package/dist/interaction_client/BaseInteractionClient.mjs.map +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 +613 -9
- 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.mjs +2 -2
- package/dist/protocol/Authorize.mjs +1 -1
- package/dist/redirect_bridge/index.mjs +131 -0
- package/dist/redirect_bridge/index.mjs.map +1 -0
- 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 +5 -9
- package/lib/custom-auth-path/msal-custom-auth.cjs +95 -94
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/msal-custom-auth.js +22247 -0
- package/lib/custom-auth-path/msal-custom-auth.js.map +1 -0
- package/lib/log-strings-mapping.json +5 -9
- package/lib/msal-browser.cjs +96 -94
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +96 -94
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +2 -2
- package/lib/redirect-bridge/msal-redirect-bridge.cjs +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.cjs.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.js +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.min.js +1 -1
- package/package.json +15 -13
- package/src/cache/BrowserCacheManager.ts +5 -23
- package/src/cache/CookieStorage.ts +22 -9
- package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +2 -3
- package/src/packageMetadata.ts +1 -1
- package/types/cache/BrowserCacheManager.d.ts.map +1 -0
- package/types/cache/CookieStorage.d.ts.map +1 -0
- package/types/custom_auth/CustomAuthConstants.d.ts +35 -0
- package/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -0
- package/types/custom_auth/index.d.cts +1 -0
- package/types/index.d.cts +1 -0
- package/types/packageMetadata.d.ts +3 -0
- package/types/packageMetadata.d.ts.map +1 -0
- package/types/redirect_bridge/index.d.cts +1 -0
- package/dist/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/cache/CookieStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/app/IPublicClientApplication.d.ts +0 -48
- package/dist/custom-auth-path/app/IPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/app/PublicClientApplication.d.ts +0 -247
- package/dist/custom-auth-path/app/PublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/app/PublicClientApplication.mjs +0 -275
- package/dist/custom-auth-path/app/PublicClientApplication.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +0 -16
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +0 -156
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +0 -272
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +0 -91
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AccountManager.d.ts +0 -24
- package/dist/custom-auth-path/cache/AccountManager.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AccountManager.mjs +0 -50
- package/dist/custom-auth-path/cache/AccountManager.mjs.map +0 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts +0 -58
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +0 -148
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts +0 -364
- package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +0 -1385
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CacheHelpers.d.ts +0 -16
- package/dist/custom-auth-path/cache/CacheHelpers.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CacheHelpers.mjs +0 -46
- package/dist/custom-auth-path/cache/CacheHelpers.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CacheKeys.d.ts +0 -15
- package/dist/custom-auth-path/cache/CacheKeys.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CacheKeys.mjs +0 -33
- package/dist/custom-auth-path/cache/CacheKeys.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CookieStorage.d.ts +0 -23
- package/dist/custom-auth-path/cache/CookieStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CookieStorage.mjs +0 -82
- package/dist/custom-auth-path/cache/CookieStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.d.ts +0 -57
- package/dist/custom-auth-path/cache/DatabaseStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.mjs +0 -209
- package/dist/custom-auth-path/cache/DatabaseStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/EncryptedData.d.ts +0 -8
- package/dist/custom-auth-path/cache/EncryptedData.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/EncryptedData.mjs +0 -14
- package/dist/custom-auth-path/cache/EncryptedData.mjs.map +0 -1
- package/dist/custom-auth-path/cache/IAsyncStorage.d.ts +0 -33
- package/dist/custom-auth-path/cache/IAsyncStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/IWindowStorage.d.ts +0 -42
- package/dist/custom-auth-path/cache/IWindowStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/LocalStorage.d.ts +0 -51
- package/dist/custom-auth-path/cache/LocalStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/LocalStorage.mjs +0 -310
- package/dist/custom-auth-path/cache/LocalStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/MemoryStorage.d.ts +0 -16
- package/dist/custom-auth-path/cache/MemoryStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/MemoryStorage.mjs +0 -49
- package/dist/custom-auth-path/cache/MemoryStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/SessionStorage.d.ts +0 -14
- package/dist/custom-auth-path/cache/SessionStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/SessionStorage.mjs +0 -47
- package/dist/custom-auth-path/cache/SessionStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/TokenCache.d.ts +0 -20
- package/dist/custom-auth-path/cache/TokenCache.d.ts.map +0 -1
- package/dist/custom-auth-path/config/Configuration.d.ts +0 -198
- package/dist/custom-auth-path/config/Configuration.d.ts.map +0 -1
- package/dist/custom-auth-path/config/Configuration.mjs +0 -135
- package/dist/custom-auth-path/config/Configuration.mjs.map +0 -1
- package/dist/custom-auth-path/controllers/IController.d.ts +0 -3
- package/dist/custom-auth-path/controllers/IController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts +0 -159
- package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/StandardController.d.ts +0 -398
- package/dist/custom-auth-path/controllers/StandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/StandardController.mjs +0 -1519
- package/dist/custom-auth-path/controllers/StandardController.mjs.map +0 -1
- package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts +0 -96
- package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +0 -306
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/CryptoOps.d.ts +0 -77
- package/dist/custom-auth-path/crypto/CryptoOps.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/CryptoOps.mjs +0 -194
- package/dist/custom-auth-path/crypto/CryptoOps.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.d.ts +0 -9
- package/dist/custom-auth-path/crypto/PkceGenerator.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs +0 -64
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts +0 -32
- package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +0 -50
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +0 -97
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +0 -332
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +0 -82
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +0 -134
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +0 -59
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +0 -42
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +0 -56
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +0 -46
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +0 -181
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +0 -42
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +0 -46
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +0 -140
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +0 -35
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +0 -22
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +0 -11
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +0 -12
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +0 -10
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +0 -30
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +0 -110
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +0 -88
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +0 -87
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +0 -22
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +0 -51
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +0 -94
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +0 -135
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +0 -78
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +0 -30
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +0 -20
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +0 -54
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +0 -15
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +0 -40
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +0 -37
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +0 -34
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +0 -126
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +0 -47
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +0 -49
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +0 -122
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/index.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/index.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +0 -35
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +0 -67
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +0 -43
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +0 -106
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +0 -64
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +0 -157
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +0 -13
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +0 -49
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +0 -75
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +0 -56
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +0 -51
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +0 -107
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +0 -64
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +0 -93
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +0 -248
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +0 -44
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +0 -91
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +0 -54
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +0 -84
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +0 -155
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +0 -89
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +0 -26
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +0 -247
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +0 -37
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/encode/Base64Decode.d.ts.map +0 -1
- package/dist/custom-auth-path/encode/Base64Decode.mjs +0 -44
- package/dist/custom-auth-path/encode/Base64Decode.mjs.map +0 -1
- package/dist/custom-auth-path/encode/Base64Encode.d.ts.map +0 -1
- package/dist/custom-auth-path/encode/Base64Encode.mjs +0 -48
- package/dist/custom-auth-path/encode/Base64Encode.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthError.mjs +0 -27
- package/dist/custom-auth-path/error/BrowserAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +0 -56
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +0 -25
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +0 -11
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthError.mjs +0 -70
- package/dist/custom-auth-path/error/NativeAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +0 -12
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/NestedAppAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventHandler.mjs +0 -110
- package/dist/custom-auth-path/event/EventHandler.mjs.map +0 -1
- package/dist/custom-auth-path/event/EventMessage.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventType.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventType.mjs +0 -31
- package/dist/custom-auth-path/event/EventType.mjs.map +0 -1
- package/dist/custom-auth-path/index.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +0 -143
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +0 -17
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +0 -645
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/PopupClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/PopupClient.mjs +0 -438
- package/dist/custom-auth-path/interaction_client/PopupClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +0 -452
- package/dist/custom-auth-path/interaction_client/RedirectClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +0 -83
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +0 -59
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +0 -224
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +0 -76
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +0 -215
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +0 -96
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +0 -85
- package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs.map +0 -1
- package/dist/custom-auth-path/log-strings-mapping.json +0 -1767
- package/dist/custom-auth-path/naa/AccountInfo.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/AuthBridge.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/AuthResult.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeAccountContext.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeCapabilities.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeError.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeProxy.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeStatusCode.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/IBridgeProxy.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/InitContext.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/TokenRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/TokenResponse.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/INavigationClient.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationClient.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationClient.mjs +0 -48
- package/dist/custom-auth-path/navigation/NavigationClient.mjs.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationOptions.d.ts.map +0 -1
- package/dist/custom-auth-path/network/FetchClient.d.ts.map +0 -1
- package/dist/custom-auth-path/network/FetchClient.mjs +0 -128
- package/dist/custom-auth-path/network/FetchClient.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +0 -105
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +0 -51
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/packageMetadata.d.ts +0 -3
- package/dist/custom-auth-path/packageMetadata.d.ts.map +0 -1
- package/dist/custom-auth-path/packageMetadata.mjs +0 -8
- package/dist/custom-auth-path/packageMetadata.mjs.map +0 -1
- package/dist/custom-auth-path/protocol/Authorize.d.ts.map +0 -1
- package/dist/custom-auth-path/protocol/Authorize.mjs +0 -313
- package/dist/custom-auth-path/protocol/Authorize.mjs.map +0 -1
- package/dist/custom-auth-path/redirect_bridge/index.d.ts.map +0 -1
- package/dist/custom-auth-path/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/ClearCacheRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/EndSessionRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/dist/custom-auth-path/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/PopupRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/PopupWindowAttributes.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RedirectRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RequestHelpers.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RequestHelpers.mjs +0 -83
- package/dist/custom-auth-path/request/RequestHelpers.mjs.map +0 -1
- package/dist/custom-auth-path/request/SilentRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/SsoSilentRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/response/AuthenticationResult.d.ts.map +0 -1
- package/dist/custom-auth-path/response/ResponseHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/response/ResponseHandler.mjs +0 -46
- package/dist/custom-auth-path/response/ResponseHandler.mjs.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs +0 -131
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs +0 -50
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserConstants.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserConstants.mjs +0 -190
- package/dist/custom-auth-path/utils/BrowserConstants.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +0 -28
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserUtils.mjs +0 -348
- package/dist/custom-auth-path/utils/BrowserUtils.mjs.map +0 -1
- package/dist/custom-auth-path/utils/Helpers.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/Helpers.mjs +0 -20
- package/dist/custom-auth-path/utils/Helpers.mjs.map +0 -1
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +0 -27
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs.map +0 -1
- package/dist/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/dist/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/dist/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/dist/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/dist/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/dist/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/dist/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/dist/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/dist/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/dist/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/dist/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/dist/custom_auth/core/error/HttpError.d.ts +0 -5
- package/dist/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/dist/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/dist/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/dist/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/dist/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/dist/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/dist/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/dist/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/dist/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/dist/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/dist/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/dist/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/dist/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/dist/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/dist/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/dist/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/dist/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/dist/custom_auth/index.d.ts +0 -84
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/dist/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/dist/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/dist/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/dist/encode/Base64Decode.d.ts +0 -15
- package/dist/encode/Base64Encode.d.ts +0 -20
- package/dist/error/BrowserAuthError.d.ts +0 -12
- package/dist/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/dist/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/dist/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/dist/error/NativeAuthError.d.ts +0 -27
- package/dist/error/NativeAuthErrorCodes.d.ts +0 -5
- package/dist/error/NestedAppAuthError.d.ts +0 -6
- package/dist/event/EventHandler.d.ts +0 -49
- package/dist/event/EventMessage.d.ts +0 -41
- package/dist/event/EventType.d.ts +0 -24
- package/dist/index.d.ts +0 -73
- package/dist/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/dist/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/dist/interaction_client/PopupClient.d.ts +0 -106
- package/dist/interaction_client/RedirectClient.d.ts +0 -77
- package/dist/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/dist/interaction_client/SilentCacheClient.d.ts +0 -17
- package/dist/interaction_client/SilentIframeClient.d.ts +0 -57
- package/dist/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/dist/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/dist/interaction_handler/InteractionHandler.d.ts +0 -33
- package/dist/interaction_handler/SilentHandler.d.ts +0 -17
- package/dist/naa/AccountInfo.d.ts +0 -13
- package/dist/naa/AuthBridge.d.ts +0 -9
- package/dist/naa/AuthResult.d.ts +0 -7
- package/dist/naa/BridgeAccountContext.d.ts +0 -13
- package/dist/naa/BridgeCapabilities.d.ts +0 -4
- package/dist/naa/BridgeError.d.ts +0 -10
- package/dist/naa/BridgeProxy.d.ts +0 -69
- package/dist/naa/BridgeRequest.d.ts +0 -8
- package/dist/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/dist/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/dist/naa/BridgeStatusCode.d.ts +0 -12
- package/dist/naa/IBridgeProxy.d.ts +0 -11
- package/dist/naa/InitContext.d.ts +0 -9
- package/dist/naa/TokenRequest.d.ts +0 -21
- package/dist/naa/TokenResponse.d.ts +0 -14
- package/dist/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/dist/navigation/INavigationClient.d.ts +0 -17
- package/dist/navigation/NavigationClient.d.ts +0 -23
- package/dist/navigation/NavigationOptions.d.ts +0 -13
- package/dist/network/FetchClient.d.ts +0 -21
- package/dist/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/dist/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/dist/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/dist/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/dist/packageMetadata.d.ts +0 -3
- package/dist/packageMetadata.d.ts.map +0 -1
- package/dist/protocol/Authorize.d.ts +0 -102
- package/dist/redirect-bridge/app/IPublicClientApplication.d.ts +0 -48
- package/dist/redirect-bridge/app/IPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/app/PublicClientApplication.d.ts +0 -247
- package/dist/redirect-bridge/app/PublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/dist/redirect-bridge/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/dist/redirect-bridge/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/AccountManager.d.ts +0 -24
- package/dist/redirect-bridge/cache/AccountManager.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/AsyncMemoryStorage.d.ts +0 -58
- package/dist/redirect-bridge/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/BrowserCacheManager.d.ts +0 -364
- package/dist/redirect-bridge/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheHelpers.d.ts +0 -16
- package/dist/redirect-bridge/cache/CacheHelpers.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheKeys.d.ts +0 -15
- package/dist/redirect-bridge/cache/CacheKeys.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheKeys.mjs +0 -10
- package/dist/redirect-bridge/cache/CacheKeys.mjs.map +0 -1
- package/dist/redirect-bridge/cache/CookieStorage.d.ts +0 -23
- package/dist/redirect-bridge/cache/CookieStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/DatabaseStorage.d.ts +0 -57
- package/dist/redirect-bridge/cache/DatabaseStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/EncryptedData.d.ts +0 -8
- package/dist/redirect-bridge/cache/EncryptedData.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/IAsyncStorage.d.ts +0 -33
- package/dist/redirect-bridge/cache/IAsyncStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/IWindowStorage.d.ts +0 -42
- package/dist/redirect-bridge/cache/IWindowStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/LocalStorage.d.ts +0 -51
- package/dist/redirect-bridge/cache/LocalStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/MemoryStorage.d.ts +0 -16
- package/dist/redirect-bridge/cache/MemoryStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/SessionStorage.d.ts +0 -14
- package/dist/redirect-bridge/cache/SessionStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/TokenCache.d.ts +0 -20
- package/dist/redirect-bridge/cache/TokenCache.d.ts.map +0 -1
- package/dist/redirect-bridge/config/Configuration.d.ts +0 -198
- package/dist/redirect-bridge/config/Configuration.d.ts.map +0 -1
- package/dist/redirect-bridge/config/Configuration.mjs +0 -10
- package/dist/redirect-bridge/config/Configuration.mjs.map +0 -1
- package/dist/redirect-bridge/controllers/IController.d.ts +0 -3
- package/dist/redirect-bridge/controllers/IController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/NestedAppAuthController.d.ts +0 -159
- package/dist/redirect-bridge/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/StandardController.d.ts +0 -398
- package/dist/redirect-bridge/controllers/StandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/dist/redirect-bridge/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/BrowserCrypto.d.ts +0 -96
- package/dist/redirect-bridge/crypto/BrowserCrypto.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/CryptoOps.d.ts +0 -77
- package/dist/redirect-bridge/crypto/CryptoOps.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/PkceGenerator.d.ts +0 -9
- package/dist/redirect-bridge/crypto/PkceGenerator.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/SignedHttpRequest.d.ts +0 -32
- package/dist/redirect-bridge/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/dist/redirect-bridge/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/HttpError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/dist/redirect-bridge/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/dist/redirect-bridge/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/dist/redirect-bridge/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/index.d.ts +0 -84
- package/dist/redirect-bridge/custom_auth/index.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/encode/Base64Decode.d.ts +0 -15
- package/dist/redirect-bridge/encode/Base64Decode.d.ts.map +0 -1
- package/dist/redirect-bridge/encode/Base64Decode.mjs +0 -44
- package/dist/redirect-bridge/encode/Base64Decode.mjs.map +0 -1
- package/dist/redirect-bridge/encode/Base64Encode.d.ts +0 -20
- package/dist/redirect-bridge/encode/Base64Encode.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthError.d.ts +0 -12
- package/dist/redirect-bridge/error/BrowserAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthError.mjs +0 -27
- package/dist/redirect-bridge/error/BrowserAuthError.mjs.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs +0 -14
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs.map +0 -1
- package/dist/redirect-bridge/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/dist/redirect-bridge/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/dist/redirect-bridge/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NativeAuthError.d.ts +0 -27
- package/dist/redirect-bridge/error/NativeAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NativeAuthErrorCodes.d.ts +0 -5
- package/dist/redirect-bridge/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NestedAppAuthError.d.ts +0 -6
- package/dist/redirect-bridge/error/NestedAppAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventHandler.d.ts +0 -49
- package/dist/redirect-bridge/event/EventHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventMessage.d.ts +0 -41
- package/dist/redirect-bridge/event/EventMessage.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventType.d.ts +0 -24
- package/dist/redirect-bridge/event/EventType.d.ts.map +0 -1
- package/dist/redirect-bridge/index.d.ts +0 -73
- package/dist/redirect-bridge/index.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/dist/redirect-bridge/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/dist/redirect-bridge/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/dist/redirect-bridge/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/PopupClient.d.ts +0 -106
- package/dist/redirect-bridge/interaction_client/PopupClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/RedirectClient.d.ts +0 -77
- package/dist/redirect-bridge/interaction_client/RedirectClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/dist/redirect-bridge/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentCacheClient.d.ts +0 -17
- package/dist/redirect-bridge/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentIframeClient.d.ts +0 -57
- package/dist/redirect-bridge/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/dist/redirect-bridge/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/dist/redirect-bridge/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_handler/InteractionHandler.d.ts +0 -33
- package/dist/redirect-bridge/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_handler/SilentHandler.d.ts +0 -17
- package/dist/redirect-bridge/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AccountInfo.d.ts +0 -13
- package/dist/redirect-bridge/naa/AccountInfo.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AuthBridge.d.ts +0 -9
- package/dist/redirect-bridge/naa/AuthBridge.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AuthResult.d.ts +0 -7
- package/dist/redirect-bridge/naa/AuthResult.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeAccountContext.d.ts +0 -13
- package/dist/redirect-bridge/naa/BridgeAccountContext.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeCapabilities.d.ts +0 -4
- package/dist/redirect-bridge/naa/BridgeCapabilities.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeError.d.ts +0 -10
- package/dist/redirect-bridge/naa/BridgeError.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeProxy.d.ts +0 -69
- package/dist/redirect-bridge/naa/BridgeProxy.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeRequest.d.ts +0 -8
- package/dist/redirect-bridge/naa/BridgeRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/dist/redirect-bridge/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/dist/redirect-bridge/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeStatusCode.d.ts +0 -12
- package/dist/redirect-bridge/naa/BridgeStatusCode.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/IBridgeProxy.d.ts +0 -11
- package/dist/redirect-bridge/naa/IBridgeProxy.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/InitContext.d.ts +0 -9
- package/dist/redirect-bridge/naa/InitContext.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/TokenRequest.d.ts +0 -21
- package/dist/redirect-bridge/naa/TokenRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/TokenResponse.d.ts +0 -14
- package/dist/redirect-bridge/naa/TokenResponse.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/dist/redirect-bridge/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/INavigationClient.d.ts +0 -17
- package/dist/redirect-bridge/navigation/INavigationClient.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationClient.d.ts +0 -23
- package/dist/redirect-bridge/navigation/NavigationClient.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationClient.mjs +0 -48
- package/dist/redirect-bridge/navigation/NavigationClient.mjs.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationOptions.d.ts +0 -13
- package/dist/redirect-bridge/navigation/NavigationOptions.d.ts.map +0 -1
- package/dist/redirect-bridge/network/FetchClient.d.ts +0 -21
- package/dist/redirect-bridge/network/FetchClient.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/dist/redirect-bridge/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/dist/redirect-bridge/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/dist/redirect-bridge/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/dist/redirect-bridge/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/packageMetadata.d.ts +0 -3
- package/dist/redirect-bridge/packageMetadata.d.ts.map +0 -1
- package/dist/redirect-bridge/protocol/Authorize.d.ts +0 -102
- package/dist/redirect-bridge/protocol/Authorize.d.ts.map +0 -1
- package/dist/redirect-bridge/redirect_bridge/index.d.ts +0 -16
- package/dist/redirect-bridge/redirect_bridge/index.d.ts.map +0 -1
- package/dist/redirect-bridge/redirect_bridge/index.mjs +0 -131
- package/dist/redirect-bridge/redirect_bridge/index.mjs.map +0 -1
- package/dist/redirect-bridge/request/AuthorizationCodeRequest.d.ts +0 -27
- package/dist/redirect-bridge/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/ClearCacheRequest.d.ts +0 -15
- package/dist/redirect-bridge/request/ClearCacheRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/EndSessionPopupRequest.d.ts +0 -24
- package/dist/redirect-bridge/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/EndSessionRequest.d.ts +0 -11
- package/dist/redirect-bridge/request/EndSessionRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/dist/redirect-bridge/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/dist/redirect-bridge/request/InitializeApplicationRequest.d.ts +0 -10
- package/dist/redirect-bridge/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/PopupRequest.d.ts +0 -25
- package/dist/redirect-bridge/request/PopupRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/PopupWindowAttributes.d.ts +0 -16
- package/dist/redirect-bridge/request/PopupWindowAttributes.d.ts.map +0 -1
- package/dist/redirect-bridge/request/RedirectRequest.d.ts +0 -16
- package/dist/redirect-bridge/request/RedirectRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/RequestHelpers.d.ts +0 -28
- package/dist/redirect-bridge/request/RequestHelpers.d.ts.map +0 -1
- package/dist/redirect-bridge/request/SilentRequest.d.ts +0 -52
- package/dist/redirect-bridge/request/SilentRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/SsoSilentRequest.d.ts +0 -6
- package/dist/redirect-bridge/request/SsoSilentRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/response/AuthenticationResult.d.ts +0 -5
- package/dist/redirect-bridge/response/AuthenticationResult.d.ts.map +0 -1
- package/dist/redirect-bridge/response/ResponseHandler.d.ts +0 -8
- package/dist/redirect-bridge/response/ResponseHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/dist/redirect-bridge/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/dist/redirect-bridge/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/dist/redirect-bridge/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/dist/redirect-bridge/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserConstants.d.ts +0 -182
- package/dist/redirect-bridge/utils/BrowserConstants.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserConstants.mjs +0 -43
- package/dist/redirect-bridge/utils/BrowserConstants.mjs.map +0 -1
- package/dist/redirect-bridge/utils/BrowserProtocolUtils.d.ts +0 -12
- package/dist/redirect-bridge/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserUtils.d.ts +0 -111
- package/dist/redirect-bridge/utils/BrowserUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserUtils.mjs +0 -97
- package/dist/redirect-bridge/utils/BrowserUtils.mjs.map +0 -1
- package/dist/redirect-bridge/utils/Helpers.d.ts +0 -7
- package/dist/redirect-bridge/utils/Helpers.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/dist/redirect-bridge/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/dist/redirect_bridge/index.d.ts +0 -16
- package/dist/request/AuthorizationCodeRequest.d.ts +0 -27
- package/dist/request/ClearCacheRequest.d.ts +0 -15
- package/dist/request/EndSessionPopupRequest.d.ts +0 -24
- package/dist/request/EndSessionRequest.d.ts +0 -11
- package/dist/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/dist/request/InitializeApplicationRequest.d.ts +0 -10
- package/dist/request/PopupRequest.d.ts +0 -25
- package/dist/request/PopupWindowAttributes.d.ts +0 -16
- package/dist/request/RedirectRequest.d.ts +0 -16
- package/dist/request/RequestHelpers.d.ts +0 -28
- package/dist/request/SilentRequest.d.ts +0 -52
- package/dist/request/SsoSilentRequest.d.ts +0 -6
- package/dist/response/AuthenticationResult.d.ts +0 -5
- package/dist/response/ResponseHandler.d.ts +0 -8
- package/dist/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/dist/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/dist/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/dist/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/dist/utils/BrowserConstants.d.ts +0 -182
- package/dist/utils/BrowserProtocolUtils.d.ts +0 -12
- package/dist/utils/BrowserUtils.d.ts +0 -111
- package/dist/utils/Helpers.d.ts +0 -7
- package/dist/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/AccountManager.d.ts +0 -24
- package/lib/custom-auth-path/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CacheKeys.d.ts +0 -15
- package/lib/custom-auth-path/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CookieStorage.d.ts +0 -23
- package/lib/custom-auth-path/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/EncryptedData.d.ts +0 -8
- package/lib/custom-auth-path/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/LocalStorage.d.ts +0 -51
- package/lib/custom-auth-path/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/SessionStorage.d.ts +0 -14
- package/lib/custom-auth-path/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/TokenCache.d.ts +0 -20
- package/lib/custom-auth-path/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/custom-auth-path/types/config/Configuration.d.ts +0 -198
- package/lib/custom-auth-path/types/config/Configuration.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/IController.d.ts +0 -3
- package/lib/custom-auth-path/types/controllers/IController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/StandardController.d.ts +0 -398
- package/lib/custom-auth-path/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/index.d.ts +0 -84
- package/lib/custom-auth-path/types/custom_auth/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/encode/Base64Decode.d.ts +0 -15
- package/lib/custom-auth-path/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/encode/Base64Encode.d.ts +0 -20
- package/lib/custom-auth-path/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NativeAuthError.d.ts +0 -27
- package/lib/custom-auth-path/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventHandler.d.ts +0 -49
- package/lib/custom-auth-path/types/event/EventHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventMessage.d.ts +0 -41
- package/lib/custom-auth-path/types/event/EventMessage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventType.d.ts +0 -24
- package/lib/custom-auth-path/types/event/EventType.d.ts.map +0 -1
- package/lib/custom-auth-path/types/index.d.ts +0 -73
- package/lib/custom-auth-path/types/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AccountInfo.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AuthBridge.d.ts +0 -9
- package/lib/custom-auth-path/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AuthResult.d.ts +0 -7
- package/lib/custom-auth-path/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeError.d.ts +0 -10
- package/lib/custom-auth-path/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/InitContext.d.ts +0 -9
- package/lib/custom-auth-path/types/naa/InitContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/TokenRequest.d.ts +0 -21
- package/lib/custom-auth-path/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/TokenResponse.d.ts +0 -14
- package/lib/custom-auth-path/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/custom-auth-path/types/network/FetchClient.d.ts +0 -21
- package/lib/custom-auth-path/types/network/FetchClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/packageMetadata.d.ts +0 -3
- package/lib/custom-auth-path/types/packageMetadata.d.ts.map +0 -1
- package/lib/custom-auth-path/types/protocol/Authorize.d.ts +0 -102
- package/lib/custom-auth-path/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/custom-auth-path/types/redirect_bridge/index.d.ts +0 -16
- package/lib/custom-auth-path/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/custom-auth-path/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/PopupRequest.d.ts +0 -25
- package/lib/custom-auth-path/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/RedirectRequest.d.ts +0 -16
- package/lib/custom-auth-path/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/RequestHelpers.d.ts +0 -28
- package/lib/custom-auth-path/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/SilentRequest.d.ts +0 -52
- package/lib/custom-auth-path/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/response/ResponseHandler.d.ts +0 -8
- package/lib/custom-auth-path/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/Helpers.d.ts +0 -7
- package/lib/custom-auth-path/types/utils/Helpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/redirect-bridge/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/redirect-bridge/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/redirect-bridge/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/redirect-bridge/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/AccountManager.d.ts +0 -24
- package/lib/redirect-bridge/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/redirect-bridge/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/redirect-bridge/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/redirect-bridge/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CacheKeys.d.ts +0 -15
- package/lib/redirect-bridge/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CookieStorage.d.ts +0 -23
- package/lib/redirect-bridge/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/redirect-bridge/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/EncryptedData.d.ts +0 -8
- package/lib/redirect-bridge/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/redirect-bridge/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/redirect-bridge/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/LocalStorage.d.ts +0 -51
- package/lib/redirect-bridge/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/redirect-bridge/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/SessionStorage.d.ts +0 -14
- package/lib/redirect-bridge/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/TokenCache.d.ts +0 -20
- package/lib/redirect-bridge/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/redirect-bridge/types/config/Configuration.d.ts +0 -198
- package/lib/redirect-bridge/types/config/Configuration.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/IController.d.ts +0 -3
- package/lib/redirect-bridge/types/controllers/IController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/redirect-bridge/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/StandardController.d.ts +0 -398
- package/lib/redirect-bridge/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/redirect-bridge/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/redirect-bridge/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/redirect-bridge/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/redirect-bridge/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/redirect-bridge/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/redirect-bridge/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/redirect-bridge/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/redirect-bridge/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/index.d.ts +0 -84
- package/lib/redirect-bridge/types/custom_auth/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/encode/Base64Decode.d.ts +0 -15
- package/lib/redirect-bridge/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/encode/Base64Encode.d.ts +0 -20
- package/lib/redirect-bridge/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/redirect-bridge/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/redirect-bridge/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NativeAuthError.d.ts +0 -27
- package/lib/redirect-bridge/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/redirect-bridge/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/redirect-bridge/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventHandler.d.ts +0 -49
- package/lib/redirect-bridge/types/event/EventHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventMessage.d.ts +0 -41
- package/lib/redirect-bridge/types/event/EventMessage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventType.d.ts +0 -24
- package/lib/redirect-bridge/types/event/EventType.d.ts.map +0 -1
- package/lib/redirect-bridge/types/index.d.ts +0 -73
- package/lib/redirect-bridge/types/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/redirect-bridge/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/redirect-bridge/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/redirect-bridge/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/redirect-bridge/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/redirect-bridge/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/redirect-bridge/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/redirect-bridge/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/redirect-bridge/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/redirect-bridge/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/redirect-bridge/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/redirect-bridge/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/redirect-bridge/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AccountInfo.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AuthBridge.d.ts +0 -9
- package/lib/redirect-bridge/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AuthResult.d.ts +0 -7
- package/lib/redirect-bridge/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/redirect-bridge/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeError.d.ts +0 -10
- package/lib/redirect-bridge/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/redirect-bridge/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/redirect-bridge/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/redirect-bridge/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/redirect-bridge/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/redirect-bridge/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/InitContext.d.ts +0 -9
- package/lib/redirect-bridge/types/naa/InitContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/TokenRequest.d.ts +0 -21
- package/lib/redirect-bridge/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/TokenResponse.d.ts +0 -14
- package/lib/redirect-bridge/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/redirect-bridge/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/redirect-bridge/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/redirect-bridge/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/redirect-bridge/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/redirect-bridge/types/network/FetchClient.d.ts +0 -21
- package/lib/redirect-bridge/types/network/FetchClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/redirect-bridge/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/redirect-bridge/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/redirect-bridge/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/redirect-bridge/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/packageMetadata.d.ts +0 -3
- package/lib/redirect-bridge/types/packageMetadata.d.ts.map +0 -1
- package/lib/redirect-bridge/types/protocol/Authorize.d.ts +0 -102
- package/lib/redirect-bridge/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/redirect-bridge/types/redirect_bridge/index.d.ts +0 -16
- package/lib/redirect-bridge/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/redirect-bridge/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/redirect-bridge/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/redirect-bridge/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/redirect-bridge/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/redirect-bridge/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/redirect-bridge/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/PopupRequest.d.ts +0 -25
- package/lib/redirect-bridge/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/redirect-bridge/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/RedirectRequest.d.ts +0 -16
- package/lib/redirect-bridge/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/RequestHelpers.d.ts +0 -28
- package/lib/redirect-bridge/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/SilentRequest.d.ts +0 -52
- package/lib/redirect-bridge/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/redirect-bridge/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/redirect-bridge/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/response/ResponseHandler.d.ts +0 -8
- package/lib/redirect-bridge/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/redirect-bridge/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/redirect-bridge/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/redirect-bridge/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/redirect-bridge/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/Helpers.d.ts +0 -7
- package/lib/redirect-bridge/types/utils/Helpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/redirect-bridge/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/lib/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/types/cache/AccountManager.d.ts +0 -24
- package/lib/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/types/cache/CacheKeys.d.ts +0 -15
- package/lib/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/types/cache/CookieStorage.d.ts +0 -23
- package/lib/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/types/cache/EncryptedData.d.ts +0 -8
- package/lib/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/types/cache/LocalStorage.d.ts +0 -51
- package/lib/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/types/cache/SessionStorage.d.ts +0 -14
- package/lib/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/types/cache/TokenCache.d.ts +0 -20
- package/lib/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/types/config/Configuration.d.ts +0 -198
- package/lib/types/config/Configuration.d.ts.map +0 -1
- package/lib/types/controllers/IController.d.ts +0 -3
- package/lib/types/controllers/IController.d.ts.map +0 -1
- package/lib/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/types/controllers/StandardController.d.ts +0 -398
- package/lib/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/types/custom_auth/index.d.ts +0 -84
- package/lib/types/custom_auth/index.d.ts.map +0 -1
- package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/types/encode/Base64Decode.d.ts +0 -15
- package/lib/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/types/encode/Base64Encode.d.ts +0 -20
- package/lib/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/NativeAuthError.d.ts +0 -27
- package/lib/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/types/event/EventHandler.d.ts +0 -49
- package/lib/types/event/EventHandler.d.ts.map +0 -1
- package/lib/types/event/EventMessage.d.ts +0 -41
- package/lib/types/event/EventMessage.d.ts.map +0 -1
- package/lib/types/event/EventType.d.ts +0 -24
- package/lib/types/event/EventType.d.ts.map +0 -1
- package/lib/types/index.d.ts +0 -73
- package/lib/types/index.d.ts.map +0 -1
- package/lib/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/types/naa/AccountInfo.d.ts +0 -13
- package/lib/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/types/naa/AuthBridge.d.ts +0 -9
- package/lib/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/types/naa/AuthResult.d.ts +0 -7
- package/lib/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/types/naa/BridgeError.d.ts +0 -10
- package/lib/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/types/naa/InitContext.d.ts +0 -9
- package/lib/types/naa/InitContext.d.ts.map +0 -1
- package/lib/types/naa/TokenRequest.d.ts +0 -21
- package/lib/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/types/naa/TokenResponse.d.ts +0 -14
- package/lib/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/types/network/FetchClient.d.ts +0 -21
- package/lib/types/network/FetchClient.d.ts.map +0 -1
- package/lib/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/types/packageMetadata.d.ts +0 -3
- package/lib/types/packageMetadata.d.ts.map +0 -1
- package/lib/types/protocol/Authorize.d.ts +0 -102
- package/lib/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/types/redirect_bridge/index.d.ts +0 -16
- package/lib/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/types/request/PopupRequest.d.ts +0 -25
- package/lib/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/types/request/RedirectRequest.d.ts +0 -16
- package/lib/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/types/request/RequestHelpers.d.ts +0 -28
- package/lib/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/types/request/SilentRequest.d.ts +0 -52
- package/lib/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/types/response/ResponseHandler.d.ts +0 -8
- package/lib/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/types/utils/Helpers.d.ts +0 -7
- package/lib/types/utils/Helpers.d.ts.map +0 -1
- package/lib/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- /package/dist/{custom-auth-path/custom_auth → custom_auth}/index.mjs.map +0 -0
- /package/{dist → types}/app/IPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/app/IPublicClientApplication.d.ts.map +0 -0
- /package/{dist → types}/app/PublicClientApplication.d.ts +0 -0
- /package/{dist → types}/app/PublicClientApplication.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/NativeStatusCodes.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -0
- /package/{dist → types}/cache/AccountManager.d.ts +0 -0
- /package/{dist → types}/cache/AccountManager.d.ts.map +0 -0
- /package/{dist → types}/cache/AsyncMemoryStorage.d.ts +0 -0
- /package/{dist → types}/cache/AsyncMemoryStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/BrowserCacheManager.d.ts +0 -0
- /package/{dist → types}/cache/CacheHelpers.d.ts +0 -0
- /package/{dist → types}/cache/CacheHelpers.d.ts.map +0 -0
- /package/{dist → types}/cache/CacheKeys.d.ts +0 -0
- /package/{dist → types}/cache/CacheKeys.d.ts.map +0 -0
- /package/{dist → types}/cache/CookieStorage.d.ts +0 -0
- /package/{dist → types}/cache/DatabaseStorage.d.ts +0 -0
- /package/{dist → types}/cache/DatabaseStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/EncryptedData.d.ts +0 -0
- /package/{dist → types}/cache/EncryptedData.d.ts.map +0 -0
- /package/{dist → types}/cache/IAsyncStorage.d.ts +0 -0
- /package/{dist → types}/cache/IAsyncStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/IWindowStorage.d.ts +0 -0
- /package/{dist → types}/cache/IWindowStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/LocalStorage.d.ts +0 -0
- /package/{dist → types}/cache/LocalStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/MemoryStorage.d.ts +0 -0
- /package/{dist → types}/cache/MemoryStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/SessionStorage.d.ts +0 -0
- /package/{dist → types}/cache/SessionStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/TokenCache.d.ts +0 -0
- /package/{dist → types}/cache/TokenCache.d.ts.map +0 -0
- /package/{dist → types}/config/Configuration.d.ts +0 -0
- /package/{dist → types}/config/Configuration.d.ts.map +0 -0
- /package/{dist → types}/controllers/IController.d.ts +0 -0
- /package/{dist → types}/controllers/IController.d.ts.map +0 -0
- /package/{dist → types}/controllers/NestedAppAuthController.d.ts +0 -0
- /package/{dist → types}/controllers/NestedAppAuthController.d.ts.map +0 -0
- /package/{dist → types}/controllers/StandardController.d.ts +0 -0
- /package/{dist → types}/controllers/StandardController.d.ts.map +0 -0
- /package/{dist → types}/controllers/UnknownOperatingContextController.d.ts +0 -0
- /package/{dist → types}/controllers/UnknownOperatingContextController.d.ts.map +0 -0
- /package/{dist → types}/crypto/BrowserCrypto.d.ts +0 -0
- /package/{dist → types}/crypto/BrowserCrypto.d.ts.map +0 -0
- /package/{dist → types}/crypto/CryptoOps.d.ts +0 -0
- /package/{dist → types}/crypto/CryptoOps.d.ts.map +0 -0
- /package/{dist → types}/crypto/PkceGenerator.d.ts +0 -0
- /package/{dist → types}/crypto/PkceGenerator.d.ts.map +0 -0
- /package/{dist → types}/crypto/SignedHttpRequest.d.ts +0 -0
- /package/{dist → types}/crypto/SignedHttpRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/CustomAuthActionInputs.d.ts +0 -0
- /package/{dist → types}/custom_auth/CustomAuthActionInputs.d.ts.map +0 -0
- /package/{dist → types}/custom_auth/CustomAuthConstants.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/UserAccountAttributes.d.ts +0 -0
- /package/{dist → types}/custom_auth/UserAccountAttributes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -0
- /package/{dist → types}/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/controller/CustomAuthStandardController.d.ts +0 -0
- /package/{dist → types}/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -0
- /package/{dist → types}/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/CustomAuthAuthority.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/CustomAuthApiError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/CustomAuthError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/CustomAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/HttpError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/HttpError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/HttpErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidArgumentError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/ParsedUrlError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UnexpectedError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UnexpectedError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/telemetry/PublicApiId.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/utils/ArgumentValidator.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/utils/UrlUtils.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/utils/UrlUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/index.d.ts +0 -0
- /package/{dist → types}/custom_auth/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -0
- /package/{dist → types}/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/encode/Base64Decode.d.ts +0 -0
- /package/{dist → types}/encode/Base64Decode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/encode/Base64Encode.d.ts +0 -0
- /package/{dist → types}/encode/Base64Encode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserAuthError.d.ts +0 -0
- /package/{dist → types}/error/BrowserAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/BrowserAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserConfigurationAuthError.d.ts +0 -0
- /package/{dist → types}/error/BrowserConfigurationAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NativeAuthError.d.ts +0 -0
- /package/{dist → types}/error/NativeAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NativeAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/NativeAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NestedAppAuthError.d.ts +0 -0
- /package/{dist → types}/error/NestedAppAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventHandler.d.ts +0 -0
- /package/{dist → types}/event/EventHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventMessage.d.ts +0 -0
- /package/{dist → types}/event/EventMessage.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventType.d.ts +0 -0
- /package/{dist → types}/event/EventType.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/index.d.ts +0 -0
- /package/{dist → types}/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/BaseInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/BaseInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/PlatformAuthInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/PopupClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/PopupClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/RedirectClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/RedirectClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentAuthCodeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentAuthCodeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentCacheClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentCacheClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentIframeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentIframeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentRefreshClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentRefreshClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/StandardInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/StandardInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_handler/InteractionHandler.d.ts +0 -0
- /package/{dist → types}/interaction_handler/InteractionHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_handler/SilentHandler.d.ts +0 -0
- /package/{dist → types}/interaction_handler/SilentHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AccountInfo.d.ts +0 -0
- /package/{dist → types}/naa/AccountInfo.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AuthBridge.d.ts +0 -0
- /package/{dist → types}/naa/AuthBridge.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AuthResult.d.ts +0 -0
- /package/{dist → types}/naa/AuthResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeAccountContext.d.ts +0 -0
- /package/{dist → types}/naa/BridgeAccountContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeCapabilities.d.ts +0 -0
- /package/{dist → types}/naa/BridgeCapabilities.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeError.d.ts +0 -0
- /package/{dist → types}/naa/BridgeError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeProxy.d.ts +0 -0
- /package/{dist → types}/naa/BridgeProxy.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeRequest.d.ts +0 -0
- /package/{dist → types}/naa/BridgeRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeRequestEnvelope.d.ts +0 -0
- /package/{dist → types}/naa/BridgeRequestEnvelope.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeResponseEnvelope.d.ts +0 -0
- /package/{dist → types}/naa/BridgeResponseEnvelope.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeStatusCode.d.ts +0 -0
- /package/{dist → types}/naa/BridgeStatusCode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/IBridgeProxy.d.ts +0 -0
- /package/{dist → types}/naa/IBridgeProxy.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/InitContext.d.ts +0 -0
- /package/{dist → types}/naa/InitContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/TokenRequest.d.ts +0 -0
- /package/{dist → types}/naa/TokenRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/TokenResponse.d.ts +0 -0
- /package/{dist → types}/naa/TokenResponse.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/mapping/NestedAppAuthAdapter.d.ts +0 -0
- /package/{dist → types}/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/INavigationClient.d.ts +0 -0
- /package/{dist → types}/navigation/INavigationClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/NavigationClient.d.ts +0 -0
- /package/{dist → types}/navigation/NavigationClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/NavigationOptions.d.ts +0 -0
- /package/{dist → types}/navigation/NavigationOptions.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/network/FetchClient.d.ts +0 -0
- /package/{dist → types}/network/FetchClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/BaseOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/BaseOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/NestedAppOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/StandardOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/StandardOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/UnknownOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/UnknownOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/protocol/Authorize.d.ts +0 -0
- /package/{dist → types}/protocol/Authorize.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/redirect_bridge/index.d.ts +0 -0
- /package/{dist → types}/redirect_bridge/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/AuthorizationCodeRequest.d.ts +0 -0
- /package/{dist → types}/request/AuthorizationCodeRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/ClearCacheRequest.d.ts +0 -0
- /package/{dist → types}/request/ClearCacheRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/EndSessionPopupRequest.d.ts +0 -0
- /package/{dist → types}/request/EndSessionPopupRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/EndSessionRequest.d.ts +0 -0
- /package/{dist → types}/request/EndSessionRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/HandleRedirectPromiseOptions.d.ts +0 -0
- /package/{dist → types}/request/HandleRedirectPromiseOptions.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/InitializeApplicationRequest.d.ts +0 -0
- /package/{dist → types}/request/InitializeApplicationRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/PopupRequest.d.ts +0 -0
- /package/{dist → types}/request/PopupRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/PopupWindowAttributes.d.ts +0 -0
- /package/{dist → types}/request/PopupWindowAttributes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/RedirectRequest.d.ts +0 -0
- /package/{dist → types}/request/RedirectRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/RequestHelpers.d.ts +0 -0
- /package/{dist → types}/request/RequestHelpers.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/SilentRequest.d.ts +0 -0
- /package/{dist → types}/request/SilentRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/SsoSilentRequest.d.ts +0 -0
- /package/{dist → types}/request/SsoSilentRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/response/AuthenticationResult.d.ts +0 -0
- /package/{dist → types}/response/AuthenticationResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/response/ResponseHandler.d.ts +0 -0
- /package/{dist → types}/response/ResponseHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceClient.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceEvents.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceEvents.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceMeasurement.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserRootPerformanceEvents.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserConstants.d.ts +0 -0
- /package/{dist → types}/utils/BrowserConstants.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserProtocolUtils.d.ts +0 -0
- /package/{dist → types}/utils/BrowserProtocolUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserUtils.d.ts +0 -0
- /package/{dist → types}/utils/BrowserUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/Helpers.d.ts +0 -0
- /package/{dist → types}/utils/Helpers.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/MsalFrameStatsUtils.d.ts +0 -0
- /package/{dist → types}/utils/MsalFrameStatsUtils.d.ts.map +0 -0
|
@@ -1,1519 +0,0 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.8.0 2026-04-21 */
|
|
2
|
-
'use strict';
|
|
3
|
-
import { CryptoOps } from '../crypto/CryptoOps.mjs';
|
|
4
|
-
import { DEFAULT_CRYPTO_IMPLEMENTATION, buildStaticAuthorityOptions, invokeAsync, enforceResourceParameter, InteractionRequiredAuthError, createClientAuthError, ClientAuthErrorCodes, AccountEntityUtils, AuthToken, CacheHelpers, TimeUtils, Constants, AuthError, getRequestThumbprint, InteractionRequiredAuthErrorCodes } from '@azure/msal-common/browser';
|
|
5
|
-
import { InitializeCache, HandleNativeRedirectPromiseMeasurement, HandleRedirectPromiseMeasurement, NativeInteractionClientAcquireTokenRedirect, AcquireTokenByCodeAsync, SilentCacheClientAcquireToken, SilentRefreshClientAcquireToken, SilentIframeClientAcquireToken, NativeInteractionClientAcquireToken, AcquireTokenSilentAsync, InitializeSilentRequest, AcquireTokenBySilentIframe, AwaitConcurrentIframe, AcquireTokenFromCache, AcquireTokenByRefreshToken, GeneratePkceCodes } from '../telemetry/BrowserPerformanceEvents.mjs';
|
|
6
|
-
import { InitializeClientApplication, AcquireTokenRedirect, AcquireTokenPreRedirect, AcquireTokenPopup, SsoCapable, SsoSilent, AcquireTokenByCode, AcquireTokenSilent } from '../telemetry/BrowserRootPerformanceEvents.mjs';
|
|
7
|
-
import { BrowserCacheManager, DEFAULT_BROWSER_CACHE_MANAGER } from '../cache/BrowserCacheManager.mjs';
|
|
8
|
-
import { SSO_CAPABLE } from '../cache/CacheKeys.mjs';
|
|
9
|
-
import { getAllAccounts, getAccount, setActiveAccount, getActiveAccount } from '../cache/AccountManager.mjs';
|
|
10
|
-
import { BrowserCacheLocation, INTERACTION_TYPE, InteractionType, ApiId, CacheLookupPolicy, DEFAULT_REQUEST, iFrameRenewalPolicies, BrowserConstants } from '../utils/BrowserConstants.mjs';
|
|
11
|
-
import { blockAPICallsBeforeInitialize, redirectPreflightCheck, preflightCheck as preflightCheck$1, blockNonBrowserEnvironment } from '../utils/BrowserUtils.mjs';
|
|
12
|
-
import { EventType } from '../event/EventType.mjs';
|
|
13
|
-
import { EventHandler } from '../event/EventHandler.mjs';
|
|
14
|
-
import { base64Decode } from '../encode/Base64Decode.mjs';
|
|
15
|
-
import { PopupClient } from '../interaction_client/PopupClient.mjs';
|
|
16
|
-
import { RedirectClient } from '../interaction_client/RedirectClient.mjs';
|
|
17
|
-
import { SilentIframeClient } from '../interaction_client/SilentIframeClient.mjs';
|
|
18
|
-
import { SilentRefreshClient } from '../interaction_client/SilentRefreshClient.mjs';
|
|
19
|
-
import { PlatformAuthInteractionClient } from '../interaction_client/PlatformAuthInteractionClient.mjs';
|
|
20
|
-
import { NativeAuthError, isFatalNativeAuthError } from '../error/NativeAuthError.mjs';
|
|
21
|
-
import { SilentCacheClient } from '../interaction_client/SilentCacheClient.mjs';
|
|
22
|
-
import { SilentAuthCodeClient } from '../interaction_client/SilentAuthCodeClient.mjs';
|
|
23
|
-
import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
|
|
24
|
-
import { createNewGuid } from '../crypto/BrowserCrypto.mjs';
|
|
25
|
-
import { initializeSilentRequest } from '../request/RequestHelpers.mjs';
|
|
26
|
-
import { generatePkceCodes } from '../crypto/PkceGenerator.mjs';
|
|
27
|
-
import { getPlatformAuthProvider, isPlatformAuthAllowed } from '../broker/nativeBroker/PlatformAuthProvider.mjs';
|
|
28
|
-
import { collectInstanceStats } from '../utils/MsalFrameStatsUtils.mjs';
|
|
29
|
-
import { spaCodeAndNativeAccountIdPresent, unableToAcquireTokenFromNativePlatform, authCodeOrNativeAccountIdRequired, nativeConnectionNotEstablished, noAccountError } from '../error/BrowserAuthErrorCodes.mjs';
|
|
30
|
-
|
|
31
|
-
/*
|
|
32
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
33
|
-
* Licensed under the MIT License.
|
|
34
|
-
*/
|
|
35
|
-
function preflightCheck(initialized, performanceEvent, config, request) {
|
|
36
|
-
try {
|
|
37
|
-
preflightCheck$1(initialized);
|
|
38
|
-
enforceResourceParameter(config.auth.isMcp, request);
|
|
39
|
-
}
|
|
40
|
-
catch (e) {
|
|
41
|
-
performanceEvent.end({ success: false }, e, request.account);
|
|
42
|
-
throw e;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
class StandardController {
|
|
46
|
-
/**
|
|
47
|
-
* @constructor
|
|
48
|
-
* Constructor for the PublicClientApplication used to instantiate the PublicClientApplication object
|
|
49
|
-
*
|
|
50
|
-
* Important attributes in the Configuration object for auth are:
|
|
51
|
-
* - clientID: the application ID of your application. You can obtain one by registering your application with our Application registration portal : https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/RegisteredAppsPreview
|
|
52
|
-
* - authority: the authority URL for your application.
|
|
53
|
-
* - redirect_uri: the uri of your application registered in the portal.
|
|
54
|
-
*
|
|
55
|
-
* In Azure AD, authority is a URL indicating the Azure active directory that MSAL uses to obtain tokens.
|
|
56
|
-
* It is of the form https://login.microsoftonline.com/{Enter_the_Tenant_Info_Here}
|
|
57
|
-
* If your application supports Accounts in one organizational directory, replace "Enter_the_Tenant_Info_Here" value with the Tenant Id or Tenant name (for example, contoso.microsoft.com).
|
|
58
|
-
* If your application supports Accounts in any organizational directory, replace "Enter_the_Tenant_Info_Here" value with organizations.
|
|
59
|
-
* If your application supports Accounts in any organizational directory and personal Microsoft accounts, replace "Enter_the_Tenant_Info_Here" value with common.
|
|
60
|
-
* To restrict support to Personal Microsoft accounts only, replace "Enter_the_Tenant_Info_Here" value with consumers.
|
|
61
|
-
*
|
|
62
|
-
* In Azure B2C, authority is of the form https://{instance}/tfp/{tenant}/{policyName}/
|
|
63
|
-
* Full B2C functionality will be available in this library in future versions.
|
|
64
|
-
*
|
|
65
|
-
* @param configuration Object for the MSAL PublicClientApplication instance
|
|
66
|
-
*/
|
|
67
|
-
constructor(operatingContext) {
|
|
68
|
-
this.operatingContext = operatingContext;
|
|
69
|
-
this.isBrowserEnvironment =
|
|
70
|
-
this.operatingContext.isBrowserEnvironment();
|
|
71
|
-
// Set the configuration.
|
|
72
|
-
this.config = operatingContext.getConfig();
|
|
73
|
-
this.initialized = false;
|
|
74
|
-
// Initialize logger
|
|
75
|
-
this.logger = this.operatingContext.getLogger();
|
|
76
|
-
// Initialize the network module class.
|
|
77
|
-
this.networkClient = this.config.system.networkClient;
|
|
78
|
-
// Initialize the navigation client class.
|
|
79
|
-
this.navigationClient = this.config.system.navigationClient;
|
|
80
|
-
// Initialize redirectResponse Map
|
|
81
|
-
this.redirectResponse = new Map();
|
|
82
|
-
// Initial hybrid spa map
|
|
83
|
-
this.hybridAuthCodeResponses = new Map();
|
|
84
|
-
// Initialize performance client
|
|
85
|
-
this.performanceClient = this.config.telemetry.client;
|
|
86
|
-
// Initialize the crypto class.
|
|
87
|
-
this.browserCrypto = this.isBrowserEnvironment
|
|
88
|
-
? new CryptoOps(this.logger, this.performanceClient)
|
|
89
|
-
: DEFAULT_CRYPTO_IMPLEMENTATION;
|
|
90
|
-
this.eventHandler = new EventHandler(this.logger);
|
|
91
|
-
// Initialize the browser storage class.
|
|
92
|
-
this.browserStorage = this.isBrowserEnvironment
|
|
93
|
-
? new BrowserCacheManager(this.config.auth.clientId, this.config.cache, this.browserCrypto, this.logger, this.performanceClient, this.eventHandler, buildStaticAuthorityOptions(this.config.auth))
|
|
94
|
-
: DEFAULT_BROWSER_CACHE_MANAGER(this.config.auth.clientId, this.logger, this.performanceClient, this.eventHandler);
|
|
95
|
-
// initialize in memory storage for native flows
|
|
96
|
-
const nativeCacheOptions = {
|
|
97
|
-
cacheLocation: BrowserCacheLocation.MemoryStorage,
|
|
98
|
-
cacheRetentionDays: 5,
|
|
99
|
-
};
|
|
100
|
-
this.nativeInternalStorage = new BrowserCacheManager(this.config.auth.clientId, nativeCacheOptions, this.browserCrypto, this.logger, this.performanceClient, this.eventHandler);
|
|
101
|
-
this.activeSilentTokenRequests = new Map();
|
|
102
|
-
// Register listener functions
|
|
103
|
-
this.trackStateChange = this.trackStateChange.bind(this);
|
|
104
|
-
// Register listener functions
|
|
105
|
-
this.trackStateChangeWithMeasurement =
|
|
106
|
-
this.trackStateChangeWithMeasurement.bind(this);
|
|
107
|
-
}
|
|
108
|
-
static async createController(operatingContext, request) {
|
|
109
|
-
const controller = new StandardController(operatingContext);
|
|
110
|
-
await controller.initialize(request);
|
|
111
|
-
return controller;
|
|
112
|
-
}
|
|
113
|
-
trackStateChange(correlationId, event) {
|
|
114
|
-
if (!correlationId) {
|
|
115
|
-
return;
|
|
116
|
-
}
|
|
117
|
-
if (event.type === "visibilitychange") {
|
|
118
|
-
this.logger.info("16v6hv", correlationId);
|
|
119
|
-
this.performanceClient.incrementFields({ visibilityChangeCount: 1 }, correlationId);
|
|
120
|
-
}
|
|
121
|
-
else if (event.type === "online") {
|
|
122
|
-
this.logger.info("0zirfd", correlationId);
|
|
123
|
-
this.performanceClient.incrementFields({ onlineStatusChangeCount: 1 }, correlationId);
|
|
124
|
-
}
|
|
125
|
-
else if (event.type === "offline") {
|
|
126
|
-
this.logger.info("1xk9ef", correlationId);
|
|
127
|
-
this.performanceClient.incrementFields({ onlineStatusChangeCount: 1 }, correlationId);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* Initializer function to perform async startup tasks such as connecting to WAM extension
|
|
132
|
-
* @param request {?InitializeApplicationRequest} correlation id
|
|
133
|
-
*/
|
|
134
|
-
async initialize(request) {
|
|
135
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
136
|
-
this.logger.trace("1f7joy", correlationId);
|
|
137
|
-
if (this.initialized) {
|
|
138
|
-
this.logger.info("061m5x", correlationId);
|
|
139
|
-
return;
|
|
140
|
-
}
|
|
141
|
-
if (!this.isBrowserEnvironment) {
|
|
142
|
-
this.logger.info("19fvpi", correlationId);
|
|
143
|
-
this.initialized = true;
|
|
144
|
-
this.eventHandler.emitEvent(EventType.INITIALIZE_END, correlationId);
|
|
145
|
-
return;
|
|
146
|
-
}
|
|
147
|
-
const allowPlatformBroker = this.config.system.allowPlatformBroker;
|
|
148
|
-
const initMeasurement = this.performanceClient.startMeasurement(InitializeClientApplication, correlationId);
|
|
149
|
-
this.eventHandler.emitEvent(EventType.INITIALIZE_START, correlationId);
|
|
150
|
-
// Broker applications are initialized twice, so we avoid double-counting it
|
|
151
|
-
this.logMultipleInstances(initMeasurement, correlationId);
|
|
152
|
-
initMeasurement.add({ isMcp: this.config.auth.isMcp });
|
|
153
|
-
await invokeAsync(this.browserStorage.initialize.bind(this.browserStorage), InitializeCache, this.logger, this.performanceClient, correlationId)(correlationId);
|
|
154
|
-
if (allowPlatformBroker) {
|
|
155
|
-
try {
|
|
156
|
-
// check if platform authentication is available via DOM or browser extension and create relevant handlers
|
|
157
|
-
this.platformAuthProvider = await getPlatformAuthProvider(this.logger, this.performanceClient, correlationId, this.config.system.nativeBrokerHandshakeTimeout);
|
|
158
|
-
}
|
|
159
|
-
catch (e) {
|
|
160
|
-
this.logger.verbose(e, correlationId);
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
if (this.config.cache.cacheLocation ===
|
|
164
|
-
BrowserCacheLocation.LocalStorage) {
|
|
165
|
-
this.eventHandler.subscribeCrossTab();
|
|
166
|
-
}
|
|
167
|
-
!this.config.system.navigatePopups &&
|
|
168
|
-
(await this.preGeneratePkceCodes(correlationId));
|
|
169
|
-
this.initialized = true;
|
|
170
|
-
this.eventHandler.emitEvent(EventType.INITIALIZE_END, correlationId);
|
|
171
|
-
initMeasurement.end({
|
|
172
|
-
allowPlatformBroker: allowPlatformBroker,
|
|
173
|
-
success: true,
|
|
174
|
-
});
|
|
175
|
-
}
|
|
176
|
-
// #region Redirect Flow
|
|
177
|
-
/**
|
|
178
|
-
* Event handler function which allows users to fire events after the PublicClientApplication object
|
|
179
|
-
* has loaded during redirect flows. This should be invoked on all page loads involved in redirect
|
|
180
|
-
* auth flows.
|
|
181
|
-
* @param hash Hash to process. Defaults to the current value of window.location.hash. Only needs to be provided explicitly if the response to be handled is not contained in the current value.
|
|
182
|
-
* @param options Object containing optional configuration for redirect promise handling.
|
|
183
|
-
* @returns Token response or null. If the return value is null, then no auth redirect was detected.
|
|
184
|
-
*/
|
|
185
|
-
async handleRedirectPromise(options) {
|
|
186
|
-
this.logger.verbose("02l8bm", "");
|
|
187
|
-
// Block token acquisition before initialize has been called
|
|
188
|
-
blockAPICallsBeforeInitialize(this.initialized);
|
|
189
|
-
if (this.isBrowserEnvironment) {
|
|
190
|
-
/**
|
|
191
|
-
* Store the promise on the PublicClientApplication instance if this is the first invocation of handleRedirectPromise,
|
|
192
|
-
* otherwise return the promise from the first invocation. Prevents race conditions when handleRedirectPromise is called
|
|
193
|
-
* several times concurrently.
|
|
194
|
-
*/
|
|
195
|
-
const redirectResponseKey = options?.hash || "";
|
|
196
|
-
let response = this.redirectResponse.get(redirectResponseKey);
|
|
197
|
-
if (typeof response === "undefined") {
|
|
198
|
-
response = this.handleRedirectPromiseInternal(options);
|
|
199
|
-
this.redirectResponse.set(redirectResponseKey, response);
|
|
200
|
-
this.logger.verbose("1wn9kp", "");
|
|
201
|
-
}
|
|
202
|
-
else {
|
|
203
|
-
this.logger.verbose("0w0gm3", "");
|
|
204
|
-
}
|
|
205
|
-
return response;
|
|
206
|
-
}
|
|
207
|
-
this.logger.verbose("12xi63", "");
|
|
208
|
-
return null;
|
|
209
|
-
}
|
|
210
|
-
/**
|
|
211
|
-
* The internal details of handleRedirectPromise. This is separated out to a helper to allow handleRedirectPromise to memoize requests
|
|
212
|
-
* @param hash
|
|
213
|
-
* @returns
|
|
214
|
-
*/
|
|
215
|
-
async handleRedirectPromiseInternal(options) {
|
|
216
|
-
if (!this.browserStorage.isInteractionInProgress(true)) {
|
|
217
|
-
this.logger.info("0le6uv", "");
|
|
218
|
-
return null;
|
|
219
|
-
}
|
|
220
|
-
const interactionType = this.browserStorage.getInteractionInProgress()?.type;
|
|
221
|
-
if (interactionType === INTERACTION_TYPE.SIGNOUT) {
|
|
222
|
-
this.logger.verbose("1ywcv2", "");
|
|
223
|
-
this.browserStorage.setInteractionInProgress(false);
|
|
224
|
-
return Promise.resolve(null);
|
|
225
|
-
}
|
|
226
|
-
const loggedInAccounts = this.getAllAccounts();
|
|
227
|
-
const platformBrokerRequest = this.browserStorage.getCachedNativeRequest();
|
|
228
|
-
const useNative = platformBrokerRequest && !options?.hash;
|
|
229
|
-
let rootMeasurement;
|
|
230
|
-
let redirectResponse;
|
|
231
|
-
let cachedRedirectRequest;
|
|
232
|
-
try {
|
|
233
|
-
if (useNative && this.platformAuthProvider) {
|
|
234
|
-
const correlationId = platformBrokerRequest?.correlationId || "";
|
|
235
|
-
this.eventHandler.emitEvent(EventType.HANDLE_REDIRECT_START, correlationId, InteractionType.Redirect);
|
|
236
|
-
rootMeasurement = this.performanceClient.startMeasurement(AcquireTokenRedirect, correlationId);
|
|
237
|
-
this.logger.trace("12v7is", correlationId);
|
|
238
|
-
rootMeasurement.add({
|
|
239
|
-
isPlatformBrokerRequest: true,
|
|
240
|
-
});
|
|
241
|
-
const nativeClient = new PlatformAuthInteractionClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, ApiId.handleRedirectPromise, this.performanceClient, this.platformAuthProvider, platformBrokerRequest.accountId, this.nativeInternalStorage, platformBrokerRequest.correlationId);
|
|
242
|
-
redirectResponse = invokeAsync(nativeClient.handleRedirectPromise.bind(nativeClient), HandleNativeRedirectPromiseMeasurement, this.logger, this.performanceClient, rootMeasurement.event.correlationId)();
|
|
243
|
-
}
|
|
244
|
-
else {
|
|
245
|
-
const [standardRequest, codeVerifier] = this.browserStorage.getCachedRequest("");
|
|
246
|
-
cachedRedirectRequest = standardRequest;
|
|
247
|
-
const correlationId = standardRequest.correlationId;
|
|
248
|
-
this.eventHandler.emitEvent(EventType.HANDLE_REDIRECT_START, correlationId, InteractionType.Redirect);
|
|
249
|
-
// Reset rootMeasurement now that we have correlationId
|
|
250
|
-
rootMeasurement = this.performanceClient.startMeasurement(AcquireTokenRedirect, correlationId);
|
|
251
|
-
this.logger.trace("0znzs5", correlationId);
|
|
252
|
-
const redirectClient = this.createRedirectClient(correlationId);
|
|
253
|
-
redirectResponse = invokeAsync(redirectClient.handleRedirectPromise.bind(redirectClient), HandleRedirectPromiseMeasurement, this.logger, this.performanceClient, rootMeasurement.event.correlationId)(standardRequest, codeVerifier, rootMeasurement, options);
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
catch (e) {
|
|
257
|
-
this.browserStorage.resetRequestCache("");
|
|
258
|
-
throw e;
|
|
259
|
-
}
|
|
260
|
-
return redirectResponse
|
|
261
|
-
.then((result) => {
|
|
262
|
-
if (result) {
|
|
263
|
-
this.browserStorage.resetRequestCache(result.correlationId);
|
|
264
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_SUCCESS, result.correlationId, InteractionType.Redirect, result);
|
|
265
|
-
this.logger.verbose("0ui8f5", result.correlationId);
|
|
266
|
-
// Emit login event if number of accounts change
|
|
267
|
-
const isLoggingIn = loggedInAccounts.length < this.getAllAccounts().length;
|
|
268
|
-
if (isLoggingIn) {
|
|
269
|
-
this.eventHandler.emitEvent(EventType.LOGIN_SUCCESS, result.correlationId, InteractionType.Redirect, result.account);
|
|
270
|
-
this.logger.verbose("16im3l", result.correlationId);
|
|
271
|
-
}
|
|
272
|
-
rootMeasurement.end({
|
|
273
|
-
success: true,
|
|
274
|
-
}, undefined, result.account);
|
|
275
|
-
// Fire-and-forget SSO capability verification in background
|
|
276
|
-
this.verifySsoCapability(cachedRedirectRequest, InteractionType.Redirect);
|
|
277
|
-
}
|
|
278
|
-
else {
|
|
279
|
-
/*
|
|
280
|
-
* Instrument an event only if an error code is set. Otherwise, discard it when the redirect response
|
|
281
|
-
* is empty and the error code is missing.
|
|
282
|
-
*/
|
|
283
|
-
if (rootMeasurement.event.errorCode) {
|
|
284
|
-
rootMeasurement.end({ success: false }, undefined);
|
|
285
|
-
}
|
|
286
|
-
else {
|
|
287
|
-
rootMeasurement.discard();
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
this.eventHandler.emitEvent(EventType.HANDLE_REDIRECT_END, rootMeasurement.event.correlationId, InteractionType.Redirect);
|
|
291
|
-
return result;
|
|
292
|
-
})
|
|
293
|
-
.catch((e) => {
|
|
294
|
-
this.browserStorage.resetRequestCache(rootMeasurement.event.correlationId);
|
|
295
|
-
const eventError = e;
|
|
296
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_FAILURE, rootMeasurement.event.correlationId, InteractionType.Redirect, null, eventError);
|
|
297
|
-
this.eventHandler.emitEvent(EventType.HANDLE_REDIRECT_END, rootMeasurement.event.correlationId, InteractionType.Redirect);
|
|
298
|
-
rootMeasurement.end({
|
|
299
|
-
success: false,
|
|
300
|
-
}, eventError);
|
|
301
|
-
throw e;
|
|
302
|
-
});
|
|
303
|
-
}
|
|
304
|
-
/**
|
|
305
|
-
* Use when you want to obtain an access_token for your API by redirecting the user's browser window to the authorization endpoint. This function redirects
|
|
306
|
-
* the page, so any code that follows this function will not execute.
|
|
307
|
-
*
|
|
308
|
-
* IMPORTANT: It is NOT recommended to have code that is dependent on the resolution of the Promise. This function will navigate away from the current
|
|
309
|
-
* browser window. It currently returns a Promise in order to reflect the asynchronous nature of the code running in this function.
|
|
310
|
-
*
|
|
311
|
-
* @param request
|
|
312
|
-
*/
|
|
313
|
-
async acquireTokenRedirect(request) {
|
|
314
|
-
// Preflight request
|
|
315
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
316
|
-
this.logger.verbose("0os66p", correlationId);
|
|
317
|
-
const atrMeasurement = this.performanceClient.startMeasurement(AcquireTokenPreRedirect, correlationId);
|
|
318
|
-
atrMeasurement.add({
|
|
319
|
-
scenarioId: request.scenarioId,
|
|
320
|
-
});
|
|
321
|
-
const configOnRedirectNavigateCb = this.config.auth.onRedirectNavigate;
|
|
322
|
-
this.config.auth.onRedirectNavigate = (url) => {
|
|
323
|
-
const navigate = typeof configOnRedirectNavigateCb === "function"
|
|
324
|
-
? configOnRedirectNavigateCb(url)
|
|
325
|
-
: undefined;
|
|
326
|
-
atrMeasurement.add({
|
|
327
|
-
navigateCallbackResult: navigate !== false,
|
|
328
|
-
});
|
|
329
|
-
atrMeasurement.event =
|
|
330
|
-
atrMeasurement.end({ success: true }, undefined, request.account) || atrMeasurement.event;
|
|
331
|
-
return navigate;
|
|
332
|
-
};
|
|
333
|
-
try {
|
|
334
|
-
redirectPreflightCheck(this.initialized, this.config);
|
|
335
|
-
enforceResourceParameter(this.config.auth.isMcp, request);
|
|
336
|
-
this.browserStorage.setInteractionInProgress(true, INTERACTION_TYPE.SIGNIN);
|
|
337
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_START, correlationId, InteractionType.Redirect, request);
|
|
338
|
-
let result;
|
|
339
|
-
if (this.platformAuthProvider &&
|
|
340
|
-
this.canUsePlatformBroker(request)) {
|
|
341
|
-
const nativeClient = new PlatformAuthInteractionClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, ApiId.acquireTokenRedirect, this.performanceClient, this.platformAuthProvider, this.getNativeAccountId(request), this.nativeInternalStorage, correlationId);
|
|
342
|
-
result = invokeAsync(nativeClient.acquireTokenRedirect.bind(nativeClient), NativeInteractionClientAcquireTokenRedirect, this.logger, this.performanceClient, correlationId)(request, atrMeasurement).catch((e) => {
|
|
343
|
-
atrMeasurement.add({
|
|
344
|
-
brokerErrorName: e.name,
|
|
345
|
-
brokerErrorCode: e.errorCode,
|
|
346
|
-
});
|
|
347
|
-
if (e instanceof NativeAuthError &&
|
|
348
|
-
isFatalNativeAuthError(e)) {
|
|
349
|
-
this.platformAuthProvider = undefined; // If extension gets uninstalled during session prevent future requests from continuing to attempt platform broker calls
|
|
350
|
-
const redirectClient = this.createRedirectClient(correlationId);
|
|
351
|
-
return redirectClient.acquireToken(request);
|
|
352
|
-
}
|
|
353
|
-
else if (e instanceof InteractionRequiredAuthError) {
|
|
354
|
-
this.logger.verbose("1ipyz4", correlationId);
|
|
355
|
-
const redirectClient = this.createRedirectClient(correlationId);
|
|
356
|
-
return redirectClient.acquireToken(request);
|
|
357
|
-
}
|
|
358
|
-
throw e;
|
|
359
|
-
});
|
|
360
|
-
}
|
|
361
|
-
else {
|
|
362
|
-
const redirectClient = this.createRedirectClient(correlationId);
|
|
363
|
-
result = redirectClient.acquireToken(request);
|
|
364
|
-
}
|
|
365
|
-
return await result;
|
|
366
|
-
}
|
|
367
|
-
catch (e) {
|
|
368
|
-
this.browserStorage.resetRequestCache(correlationId);
|
|
369
|
-
/*
|
|
370
|
-
* Pre-redirect event completes before navigation occurs.
|
|
371
|
-
* Timed out navigation needs to be instrumented separately as a post-redirect event.
|
|
372
|
-
*/
|
|
373
|
-
if (atrMeasurement.event.status === 2) {
|
|
374
|
-
this.performanceClient
|
|
375
|
-
.startMeasurement(AcquireTokenRedirect, correlationId)
|
|
376
|
-
.end({ success: false }, e, request.account);
|
|
377
|
-
}
|
|
378
|
-
else {
|
|
379
|
-
atrMeasurement.end({ success: false }, e, request.account);
|
|
380
|
-
}
|
|
381
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_FAILURE, correlationId, InteractionType.Redirect, null, e);
|
|
382
|
-
throw e;
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
// #endregion
|
|
386
|
-
// #region Popup Flow
|
|
387
|
-
/**
|
|
388
|
-
* Use when you want to obtain an access_token for your API via opening a popup window in the user's browser
|
|
389
|
-
*
|
|
390
|
-
* @param request
|
|
391
|
-
*
|
|
392
|
-
* @returns A promise that is fulfilled when this function has completed, or rejected if an error was raised.
|
|
393
|
-
*/
|
|
394
|
-
acquireTokenPopup(request) {
|
|
395
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
396
|
-
const atPopupMeasurement = this.performanceClient.startMeasurement(AcquireTokenPopup, correlationId);
|
|
397
|
-
atPopupMeasurement.add({
|
|
398
|
-
scenarioId: request.scenarioId,
|
|
399
|
-
});
|
|
400
|
-
try {
|
|
401
|
-
this.logger.verbose("0ch87b", correlationId);
|
|
402
|
-
preflightCheck(this.initialized, atPopupMeasurement, this.config, request);
|
|
403
|
-
this.browserStorage.setInteractionInProgress(true, INTERACTION_TYPE.SIGNIN, request.overrideInteractionInProgress, correlationId);
|
|
404
|
-
}
|
|
405
|
-
catch (e) {
|
|
406
|
-
// Since this function is syncronous we need to reject
|
|
407
|
-
return Promise.reject(e);
|
|
408
|
-
}
|
|
409
|
-
// If logged in, emit acquire token events
|
|
410
|
-
const loggedInAccounts = this.getAllAccounts();
|
|
411
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_START, correlationId, InteractionType.Popup, request);
|
|
412
|
-
let result;
|
|
413
|
-
const pkce = this.getPreGeneratedPkceCodes(correlationId);
|
|
414
|
-
if (this.canUsePlatformBroker(request)) {
|
|
415
|
-
atPopupMeasurement.add({
|
|
416
|
-
isPlatformBrokerRequest: true,
|
|
417
|
-
});
|
|
418
|
-
result = this.acquireTokenNative({
|
|
419
|
-
...request,
|
|
420
|
-
correlationId,
|
|
421
|
-
}, ApiId.acquireTokenPopup)
|
|
422
|
-
.then((response) => {
|
|
423
|
-
atPopupMeasurement.end({
|
|
424
|
-
success: true,
|
|
425
|
-
isNativeBroker: true,
|
|
426
|
-
}, undefined, response.account);
|
|
427
|
-
return response;
|
|
428
|
-
})
|
|
429
|
-
.catch((e) => {
|
|
430
|
-
atPopupMeasurement.add({
|
|
431
|
-
brokerErrorName: e.name,
|
|
432
|
-
brokerErrorCode: e.errorCode,
|
|
433
|
-
});
|
|
434
|
-
if (e instanceof NativeAuthError &&
|
|
435
|
-
isFatalNativeAuthError(e)) {
|
|
436
|
-
this.platformAuthProvider = undefined; // If extension gets uninstalled during session prevent future requests from continuing to attempt platform broker calls
|
|
437
|
-
const popupClient = this.createPopupClient(correlationId);
|
|
438
|
-
return popupClient.acquireToken(request, pkce);
|
|
439
|
-
}
|
|
440
|
-
else if (e instanceof InteractionRequiredAuthError) {
|
|
441
|
-
this.logger.verbose("0yy5fw", correlationId);
|
|
442
|
-
const popupClient = this.createPopupClient(correlationId);
|
|
443
|
-
return popupClient.acquireToken(request, pkce);
|
|
444
|
-
}
|
|
445
|
-
throw e;
|
|
446
|
-
});
|
|
447
|
-
}
|
|
448
|
-
else {
|
|
449
|
-
const popupClient = this.createPopupClient(correlationId);
|
|
450
|
-
result = popupClient.acquireToken(request, pkce);
|
|
451
|
-
}
|
|
452
|
-
return result
|
|
453
|
-
.then((result) => {
|
|
454
|
-
/*
|
|
455
|
-
* If logged in, emit acquire token events
|
|
456
|
-
*/
|
|
457
|
-
const isLoggingIn = loggedInAccounts.length < this.getAllAccounts().length;
|
|
458
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_SUCCESS, correlationId, InteractionType.Popup, result);
|
|
459
|
-
if (isLoggingIn) {
|
|
460
|
-
this.eventHandler.emitEvent(EventType.LOGIN_SUCCESS, correlationId, InteractionType.Popup, result.account);
|
|
461
|
-
}
|
|
462
|
-
atPopupMeasurement.end({
|
|
463
|
-
success: true,
|
|
464
|
-
accessTokenSize: result.accessToken.length,
|
|
465
|
-
idTokenSize: result.idToken.length,
|
|
466
|
-
}, undefined, result.account);
|
|
467
|
-
// SSO capability verification in background
|
|
468
|
-
this.verifySsoCapability(request, InteractionType.Popup);
|
|
469
|
-
return result;
|
|
470
|
-
})
|
|
471
|
-
.catch((e) => {
|
|
472
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_FAILURE, correlationId, InteractionType.Popup, null, e);
|
|
473
|
-
atPopupMeasurement.end({
|
|
474
|
-
success: false,
|
|
475
|
-
}, e, request.account);
|
|
476
|
-
// Since this function is syncronous we need to reject
|
|
477
|
-
return Promise.reject(e);
|
|
478
|
-
})
|
|
479
|
-
.finally(async () => {
|
|
480
|
-
this.browserStorage.setInteractionInProgress(false);
|
|
481
|
-
if (!this.config.system.navigatePopups) {
|
|
482
|
-
await this.preGeneratePkceCodes(correlationId);
|
|
483
|
-
}
|
|
484
|
-
});
|
|
485
|
-
}
|
|
486
|
-
trackStateChangeWithMeasurement(event) {
|
|
487
|
-
const measurement = this.ssoSilentMeasurement ||
|
|
488
|
-
this.acquireTokenByCodeAsyncMeasurement;
|
|
489
|
-
if (!measurement) {
|
|
490
|
-
return;
|
|
491
|
-
}
|
|
492
|
-
if (event.type === "visibilitychange") {
|
|
493
|
-
this.logger.info("0yzimq", measurement.event.correlationId);
|
|
494
|
-
measurement.increment({
|
|
495
|
-
visibilityChangeCount: 1,
|
|
496
|
-
});
|
|
497
|
-
}
|
|
498
|
-
else if (event.type === "online") {
|
|
499
|
-
this.logger.info("1caf53", measurement.event.correlationId);
|
|
500
|
-
measurement.increment({
|
|
501
|
-
onlineStatusChangeCount: 1,
|
|
502
|
-
});
|
|
503
|
-
}
|
|
504
|
-
else if (event.type === "offline") {
|
|
505
|
-
this.logger.info("0fdyk7", measurement.event.correlationId);
|
|
506
|
-
measurement.increment({
|
|
507
|
-
onlineStatusChangeCount: 1,
|
|
508
|
-
});
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
addStateChangeListeners(listener) {
|
|
512
|
-
document.addEventListener("visibilitychange", listener);
|
|
513
|
-
window.addEventListener("online", listener);
|
|
514
|
-
window.addEventListener("offline", listener);
|
|
515
|
-
}
|
|
516
|
-
removeStateChangeListeners(listener) {
|
|
517
|
-
document.removeEventListener("visibilitychange", listener);
|
|
518
|
-
window.removeEventListener("online", listener);
|
|
519
|
-
window.removeEventListener("offline", listener);
|
|
520
|
-
}
|
|
521
|
-
/**
|
|
522
|
-
* Reads the cached ssoCapable value from localStorage.
|
|
523
|
-
* @returns The cached ssoCapable boolean value, or undefined if not cached or expired.
|
|
524
|
-
*/
|
|
525
|
-
getCachedSsoCapable() {
|
|
526
|
-
try {
|
|
527
|
-
const cachedValue = window.localStorage.getItem(SSO_CAPABLE);
|
|
528
|
-
if (cachedValue) {
|
|
529
|
-
const parsed = JSON.parse(cachedValue);
|
|
530
|
-
if (parsed &&
|
|
531
|
-
typeof parsed.ssoCapable === "boolean" &&
|
|
532
|
-
parsed.expiresOn &&
|
|
533
|
-
Date.now() < parsed.expiresOn) {
|
|
534
|
-
return parsed.ssoCapable;
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
}
|
|
538
|
-
catch {
|
|
539
|
-
// If parsing fails, return undefined
|
|
540
|
-
}
|
|
541
|
-
return undefined;
|
|
542
|
-
}
|
|
543
|
-
/**
|
|
544
|
-
* SSO capability verification in the background.
|
|
545
|
-
* This method makes an iframe request to /authorize to verify SSO capability without calling /token.
|
|
546
|
-
* This method does not block the caller and tracks telemetry for success/failure.
|
|
547
|
-
* This method only executes if verifySSO is set to true in the auth configuration.
|
|
548
|
-
* The result is cached in localStorage with a 24-hour TTL; the SSO verification call
|
|
549
|
-
* is only attempted when the cached value is absent or expired.
|
|
550
|
-
* @param request - The original request used for the authentication flow
|
|
551
|
-
* @param interactionType - The interactionType of the AT operation for logging purposes
|
|
552
|
-
*/
|
|
553
|
-
verifySsoCapability(request, interactionType) {
|
|
554
|
-
// Check if SSO capability verification is enabled
|
|
555
|
-
if (!this.config.auth.verifySSO) {
|
|
556
|
-
return;
|
|
557
|
-
}
|
|
558
|
-
// Check TTL: derive ssoCapable state from localStorage and skip if not expired
|
|
559
|
-
const ssoCacheKey = SSO_CAPABLE;
|
|
560
|
-
const SSO_CAPABLE_TTL_MS = 24 * 60 * 60 * 1000; // 24 hours
|
|
561
|
-
const cachedSsoCapable = this.getCachedSsoCapable();
|
|
562
|
-
if (cachedSsoCapable !== undefined) {
|
|
563
|
-
this.logger.verbose("13poou", "");
|
|
564
|
-
return;
|
|
565
|
-
}
|
|
566
|
-
const correlationId = createNewGuid();
|
|
567
|
-
const ssoCapableMeasurement = this.performanceClient.startMeasurement(SsoCapable, correlationId);
|
|
568
|
-
ssoCapableMeasurement.add({
|
|
569
|
-
"ext.interactionType": interactionType,
|
|
570
|
-
});
|
|
571
|
-
this.logger.verbose("0pbr0i", correlationId);
|
|
572
|
-
/*
|
|
573
|
-
* Use setTimeout to ensure this runs in a separate macrotask after the current call stack completes
|
|
574
|
-
* This ensures the result is returned to the caller before the SSO verification starts and doesn't affect performance
|
|
575
|
-
*/
|
|
576
|
-
setTimeout(() => {
|
|
577
|
-
const ssoVerificationRequest = {
|
|
578
|
-
...request,
|
|
579
|
-
correlationId: correlationId,
|
|
580
|
-
};
|
|
581
|
-
const silentIframeClient = this.createSilentIframeClient(correlationId);
|
|
582
|
-
silentIframeClient
|
|
583
|
-
.verifySso(ssoVerificationRequest)
|
|
584
|
-
.then((result) => {
|
|
585
|
-
this.logger.verbose("1gd1iv", correlationId);
|
|
586
|
-
// TBD to add profileTelemetry later in localStorage with 24h TTL
|
|
587
|
-
try {
|
|
588
|
-
const cacheEntry = JSON.stringify({
|
|
589
|
-
ssoCapable: result,
|
|
590
|
-
expiresOn: Date.now() + SSO_CAPABLE_TTL_MS,
|
|
591
|
-
});
|
|
592
|
-
window.localStorage.setItem(ssoCacheKey, cacheEntry);
|
|
593
|
-
}
|
|
594
|
-
catch {
|
|
595
|
-
this.logger.warning("18lmoj", correlationId);
|
|
596
|
-
}
|
|
597
|
-
ssoCapableMeasurement.end({
|
|
598
|
-
fromCache: false,
|
|
599
|
-
success: result,
|
|
600
|
-
}, undefined);
|
|
601
|
-
})
|
|
602
|
-
.catch((error) => {
|
|
603
|
-
this.logger.warning("05g83w", correlationId);
|
|
604
|
-
// reset the cache
|
|
605
|
-
try {
|
|
606
|
-
window.localStorage.removeItem(ssoCacheKey);
|
|
607
|
-
}
|
|
608
|
-
catch {
|
|
609
|
-
this.logger.warning("0nlf9q", correlationId);
|
|
610
|
-
}
|
|
611
|
-
ssoCapableMeasurement.end({
|
|
612
|
-
fromCache: false,
|
|
613
|
-
success: false,
|
|
614
|
-
}, error);
|
|
615
|
-
});
|
|
616
|
-
}, 0);
|
|
617
|
-
}
|
|
618
|
-
// #endregion
|
|
619
|
-
// #region Silent Flow
|
|
620
|
-
/**
|
|
621
|
-
* This function uses a hidden iframe to fetch an authorization code from the eSTS. There are cases where this may not work:
|
|
622
|
-
* - Any browser using a form of Intelligent Tracking Prevention
|
|
623
|
-
* - If there is not an established session with the service
|
|
624
|
-
*
|
|
625
|
-
* In these cases, the request must be done inside a popup or full frame redirect.
|
|
626
|
-
*
|
|
627
|
-
* For the cases where interaction is required, you cannot send a request with prompt=none.
|
|
628
|
-
*
|
|
629
|
-
* If your refresh token has expired, you can use this function to fetch a new set of tokens silently as long as
|
|
630
|
-
* you session on the server still exists.
|
|
631
|
-
* @param request {@link SsoSilentRequest}
|
|
632
|
-
*
|
|
633
|
-
* @returns A promise that is fulfilled when this function has completed, or rejected if an error was raised.
|
|
634
|
-
*/
|
|
635
|
-
async ssoSilent(request) {
|
|
636
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
637
|
-
const validRequest = {
|
|
638
|
-
...request,
|
|
639
|
-
correlationId: correlationId,
|
|
640
|
-
};
|
|
641
|
-
this.ssoSilentMeasurement = this.performanceClient.startMeasurement(SsoSilent, correlationId);
|
|
642
|
-
this.ssoSilentMeasurement?.add({
|
|
643
|
-
scenarioId: request.scenarioId,
|
|
644
|
-
ssoCapable: this.getCachedSsoCapable(),
|
|
645
|
-
});
|
|
646
|
-
preflightCheck(this.initialized, this.ssoSilentMeasurement, this.config, validRequest);
|
|
647
|
-
this.ssoSilentMeasurement?.increment({
|
|
648
|
-
visibilityChangeCount: 0,
|
|
649
|
-
onlineStatusChangeCount: 0,
|
|
650
|
-
});
|
|
651
|
-
this.addStateChangeListeners(this.trackStateChangeWithMeasurement);
|
|
652
|
-
const loggedInAccounts = this.getAllAccounts();
|
|
653
|
-
this.logger.verbose("0w1b45", correlationId);
|
|
654
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_START, correlationId, InteractionType.Silent, validRequest);
|
|
655
|
-
let result;
|
|
656
|
-
if (this.canUsePlatformBroker(validRequest)) {
|
|
657
|
-
this.ssoSilentMeasurement?.add({
|
|
658
|
-
isPlatformBrokerRequest: true,
|
|
659
|
-
});
|
|
660
|
-
result = this.acquireTokenNative(validRequest, ApiId.ssoSilent).catch((e) => {
|
|
661
|
-
this.ssoSilentMeasurement?.add({
|
|
662
|
-
brokerErrorName: e.name,
|
|
663
|
-
brokerErrorCode: e.errorCode,
|
|
664
|
-
});
|
|
665
|
-
// If native token acquisition fails for availability reasons fallback to standard flow
|
|
666
|
-
if (e instanceof NativeAuthError && isFatalNativeAuthError(e)) {
|
|
667
|
-
this.platformAuthProvider = undefined; // If extension gets uninstalled during session prevent future requests from continuing to attempt platform broker calls
|
|
668
|
-
const silentIframeClient = this.createSilentIframeClient(validRequest.correlationId);
|
|
669
|
-
return silentIframeClient.acquireToken(validRequest);
|
|
670
|
-
}
|
|
671
|
-
throw e;
|
|
672
|
-
});
|
|
673
|
-
}
|
|
674
|
-
else {
|
|
675
|
-
const silentIframeClient = this.createSilentIframeClient(validRequest.correlationId);
|
|
676
|
-
result = silentIframeClient.acquireToken(validRequest);
|
|
677
|
-
}
|
|
678
|
-
return result
|
|
679
|
-
.then((response) => {
|
|
680
|
-
const isLoggingIn = loggedInAccounts.length < this.getAllAccounts().length;
|
|
681
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_SUCCESS, correlationId, InteractionType.Silent, response);
|
|
682
|
-
if (isLoggingIn) {
|
|
683
|
-
this.eventHandler.emitEvent(EventType.LOGIN_SUCCESS, correlationId, InteractionType.Silent, response.account);
|
|
684
|
-
}
|
|
685
|
-
this.ssoSilentMeasurement?.end({
|
|
686
|
-
success: true,
|
|
687
|
-
isNativeBroker: response.fromPlatformBroker,
|
|
688
|
-
accessTokenSize: response.accessToken.length,
|
|
689
|
-
idTokenSize: response.idToken.length,
|
|
690
|
-
}, undefined, response.account);
|
|
691
|
-
return response;
|
|
692
|
-
})
|
|
693
|
-
.catch((e) => {
|
|
694
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_FAILURE, correlationId, InteractionType.Silent, null, e);
|
|
695
|
-
this.ssoSilentMeasurement?.end({
|
|
696
|
-
success: false,
|
|
697
|
-
}, e, request.account);
|
|
698
|
-
throw e;
|
|
699
|
-
})
|
|
700
|
-
.finally(() => {
|
|
701
|
-
this.removeStateChangeListeners(this.trackStateChangeWithMeasurement);
|
|
702
|
-
});
|
|
703
|
-
}
|
|
704
|
-
/**
|
|
705
|
-
* This function redeems an authorization code (passed as code) from the eSTS token endpoint.
|
|
706
|
-
* This authorization code should be acquired server-side using a confidential client to acquire a spa_code.
|
|
707
|
-
* This API is not indended for normal authorization code acquisition and redemption.
|
|
708
|
-
*
|
|
709
|
-
* Redemption of this authorization code will not require PKCE, as it was acquired by a confidential client.
|
|
710
|
-
*
|
|
711
|
-
* @param request {@link AuthorizationCodeRequest}
|
|
712
|
-
* @returns A promise that is fulfilled when this function has completed, or rejected if an error was raised.
|
|
713
|
-
*/
|
|
714
|
-
async acquireTokenByCode(request) {
|
|
715
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
716
|
-
this.logger.trace("0ch6ga", correlationId);
|
|
717
|
-
const atbcMeasurement = this.performanceClient.startMeasurement(AcquireTokenByCode, correlationId);
|
|
718
|
-
preflightCheck(this.initialized, atbcMeasurement, this.config, request);
|
|
719
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_START, correlationId, InteractionType.Silent, request);
|
|
720
|
-
atbcMeasurement.add({ scenarioId: request.scenarioId });
|
|
721
|
-
try {
|
|
722
|
-
if (request.code && request.nativeAccountId) {
|
|
723
|
-
// Throw error in case server returns both spa_code and spa_accountid in exchange for auth code.
|
|
724
|
-
throw createBrowserAuthError(spaCodeAndNativeAccountIdPresent);
|
|
725
|
-
}
|
|
726
|
-
else if (request.code) {
|
|
727
|
-
const hybridAuthCode = request.code;
|
|
728
|
-
let response = this.hybridAuthCodeResponses.get(hybridAuthCode);
|
|
729
|
-
if (!response) {
|
|
730
|
-
this.logger.verbose("06eh73", correlationId);
|
|
731
|
-
response = this.acquireTokenByCodeAsync({
|
|
732
|
-
...request,
|
|
733
|
-
correlationId,
|
|
734
|
-
})
|
|
735
|
-
.then((result) => {
|
|
736
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_SUCCESS, correlationId, InteractionType.Silent, result);
|
|
737
|
-
this.hybridAuthCodeResponses.delete(hybridAuthCode);
|
|
738
|
-
atbcMeasurement.end({
|
|
739
|
-
success: true,
|
|
740
|
-
accessTokenSize: result.accessToken.length,
|
|
741
|
-
idTokenSize: result.idToken.length,
|
|
742
|
-
}, undefined, result.account);
|
|
743
|
-
return result;
|
|
744
|
-
})
|
|
745
|
-
.catch((error) => {
|
|
746
|
-
this.hybridAuthCodeResponses.delete(hybridAuthCode);
|
|
747
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_FAILURE, correlationId, InteractionType.Silent, null, error);
|
|
748
|
-
atbcMeasurement.end({
|
|
749
|
-
success: false,
|
|
750
|
-
}, error);
|
|
751
|
-
throw error;
|
|
752
|
-
});
|
|
753
|
-
this.hybridAuthCodeResponses.set(hybridAuthCode, response);
|
|
754
|
-
}
|
|
755
|
-
else {
|
|
756
|
-
this.logger.verbose("0qgp28", correlationId);
|
|
757
|
-
atbcMeasurement.discard();
|
|
758
|
-
}
|
|
759
|
-
return await response;
|
|
760
|
-
}
|
|
761
|
-
else if (request.nativeAccountId) {
|
|
762
|
-
if (this.canUsePlatformBroker(request, request.nativeAccountId)) {
|
|
763
|
-
atbcMeasurement.add({
|
|
764
|
-
isPlatformBrokerRequest: true,
|
|
765
|
-
});
|
|
766
|
-
const result = await this.acquireTokenNative({
|
|
767
|
-
...request,
|
|
768
|
-
correlationId,
|
|
769
|
-
}, ApiId.acquireTokenByCode, request.nativeAccountId).catch((e) => {
|
|
770
|
-
atbcMeasurement.add({
|
|
771
|
-
brokerErrorName: e.name,
|
|
772
|
-
brokerErrorCode: e.errorCode,
|
|
773
|
-
});
|
|
774
|
-
// If native token acquisition fails for availability reasons fallback to standard flow
|
|
775
|
-
if (e instanceof NativeAuthError &&
|
|
776
|
-
isFatalNativeAuthError(e)) {
|
|
777
|
-
this.platformAuthProvider = undefined; // If extension gets uninstalled during session prevent future requests from continuing to attempt
|
|
778
|
-
}
|
|
779
|
-
throw e;
|
|
780
|
-
});
|
|
781
|
-
atbcMeasurement.end({
|
|
782
|
-
success: true,
|
|
783
|
-
}, undefined, result.account);
|
|
784
|
-
return result;
|
|
785
|
-
}
|
|
786
|
-
else {
|
|
787
|
-
throw createBrowserAuthError(unableToAcquireTokenFromNativePlatform);
|
|
788
|
-
}
|
|
789
|
-
}
|
|
790
|
-
else {
|
|
791
|
-
throw createBrowserAuthError(authCodeOrNativeAccountIdRequired);
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
catch (e) {
|
|
795
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_FAILURE, correlationId, InteractionType.Silent, null, e);
|
|
796
|
-
atbcMeasurement.end({
|
|
797
|
-
success: false,
|
|
798
|
-
}, e);
|
|
799
|
-
throw e;
|
|
800
|
-
}
|
|
801
|
-
}
|
|
802
|
-
/**
|
|
803
|
-
* Creates a SilentAuthCodeClient to redeem an authorization code.
|
|
804
|
-
* @param request
|
|
805
|
-
* @returns Result of the operation to redeem the authorization code
|
|
806
|
-
*/
|
|
807
|
-
async acquireTokenByCodeAsync(request) {
|
|
808
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
809
|
-
this.logger.trace("10d9hy", correlationId);
|
|
810
|
-
this.acquireTokenByCodeAsyncMeasurement =
|
|
811
|
-
this.performanceClient.startMeasurement(AcquireTokenByCodeAsync, correlationId);
|
|
812
|
-
this.acquireTokenByCodeAsyncMeasurement?.increment({
|
|
813
|
-
visibilityChangeCount: 0,
|
|
814
|
-
onlineStatusChangeCount: 0,
|
|
815
|
-
});
|
|
816
|
-
this.addStateChangeListeners(this.trackStateChangeWithMeasurement);
|
|
817
|
-
const silentAuthCodeClient = this.createSilentAuthCodeClient(correlationId);
|
|
818
|
-
const silentTokenResult = await silentAuthCodeClient
|
|
819
|
-
.acquireToken(request)
|
|
820
|
-
.then((response) => {
|
|
821
|
-
this.acquireTokenByCodeAsyncMeasurement?.end({
|
|
822
|
-
success: true,
|
|
823
|
-
fromCache: response.fromCache,
|
|
824
|
-
});
|
|
825
|
-
return response;
|
|
826
|
-
})
|
|
827
|
-
.catch((tokenRenewalError) => {
|
|
828
|
-
this.acquireTokenByCodeAsyncMeasurement?.end({
|
|
829
|
-
success: false,
|
|
830
|
-
}, tokenRenewalError);
|
|
831
|
-
throw tokenRenewalError;
|
|
832
|
-
})
|
|
833
|
-
.finally(() => {
|
|
834
|
-
this.removeStateChangeListeners(this.trackStateChangeWithMeasurement);
|
|
835
|
-
});
|
|
836
|
-
return silentTokenResult;
|
|
837
|
-
}
|
|
838
|
-
/**
|
|
839
|
-
* Attempt to acquire an access token from the cache
|
|
840
|
-
* @param silentCacheClient SilentCacheClient
|
|
841
|
-
* @param commonRequest CommonSilentFlowRequest
|
|
842
|
-
* @param silentRequest SilentRequest
|
|
843
|
-
* @returns A promise that, when resolved, returns the access token
|
|
844
|
-
*/
|
|
845
|
-
async acquireTokenFromCache(commonRequest, cacheLookupPolicy) {
|
|
846
|
-
switch (cacheLookupPolicy) {
|
|
847
|
-
case CacheLookupPolicy.Default:
|
|
848
|
-
case CacheLookupPolicy.AccessToken:
|
|
849
|
-
case CacheLookupPolicy.AccessTokenAndRefreshToken:
|
|
850
|
-
const silentCacheClient = this.createSilentCacheClient(commonRequest.correlationId);
|
|
851
|
-
return invokeAsync(silentCacheClient.acquireToken.bind(silentCacheClient), SilentCacheClientAcquireToken, this.logger, this.performanceClient, commonRequest.correlationId)(commonRequest);
|
|
852
|
-
default:
|
|
853
|
-
throw createClientAuthError(ClientAuthErrorCodes.tokenRefreshRequired);
|
|
854
|
-
}
|
|
855
|
-
}
|
|
856
|
-
/**
|
|
857
|
-
* Attempt to acquire an access token via a refresh token
|
|
858
|
-
* @param commonRequest CommonSilentFlowRequest
|
|
859
|
-
* @param cacheLookupPolicy CacheLookupPolicy
|
|
860
|
-
* @returns A promise that, when resolved, returns the access token
|
|
861
|
-
*/
|
|
862
|
-
async acquireTokenByRefreshToken(commonRequest, cacheLookupPolicy) {
|
|
863
|
-
switch (cacheLookupPolicy) {
|
|
864
|
-
case CacheLookupPolicy.Default:
|
|
865
|
-
case CacheLookupPolicy.AccessTokenAndRefreshToken:
|
|
866
|
-
case CacheLookupPolicy.RefreshToken:
|
|
867
|
-
case CacheLookupPolicy.RefreshTokenAndNetwork:
|
|
868
|
-
const silentRefreshClient = this.createSilentRefreshClient(commonRequest.correlationId);
|
|
869
|
-
return invokeAsync(silentRefreshClient.acquireToken.bind(silentRefreshClient), SilentRefreshClientAcquireToken, this.logger, this.performanceClient, commonRequest.correlationId)(commonRequest);
|
|
870
|
-
default:
|
|
871
|
-
throw createClientAuthError(ClientAuthErrorCodes.tokenRefreshRequired);
|
|
872
|
-
}
|
|
873
|
-
}
|
|
874
|
-
/**
|
|
875
|
-
* Attempt to acquire an access token via an iframe
|
|
876
|
-
* @param request CommonSilentFlowRequest
|
|
877
|
-
* @returns A promise that, when resolved, returns the access token
|
|
878
|
-
*/
|
|
879
|
-
async acquireTokenBySilentIframe(request) {
|
|
880
|
-
const silentIframeClient = this.createSilentIframeClient(request.correlationId);
|
|
881
|
-
return invokeAsync(silentIframeClient.acquireToken.bind(silentIframeClient), SilentIframeClientAcquireToken, this.logger, this.performanceClient, request.correlationId)(request);
|
|
882
|
-
}
|
|
883
|
-
// #endregion
|
|
884
|
-
// #region Logout
|
|
885
|
-
/**
|
|
886
|
-
* Use to log out the current user, and redirect the user to the postLogoutRedirectUri.
|
|
887
|
-
* Default behaviour is to redirect the user to `window.location.href`.
|
|
888
|
-
* @param logoutRequest
|
|
889
|
-
*/
|
|
890
|
-
async logoutRedirect(logoutRequest) {
|
|
891
|
-
const correlationId = this.getRequestCorrelationId(logoutRequest);
|
|
892
|
-
redirectPreflightCheck(this.initialized, this.config);
|
|
893
|
-
this.browserStorage.setInteractionInProgress(true, INTERACTION_TYPE.SIGNOUT);
|
|
894
|
-
const redirectClient = this.createRedirectClient(correlationId);
|
|
895
|
-
return redirectClient.logout(logoutRequest);
|
|
896
|
-
}
|
|
897
|
-
/**
|
|
898
|
-
* Clears local cache for the current user then opens a popup window prompting the user to sign-out of the server
|
|
899
|
-
* @param logoutRequest
|
|
900
|
-
*/
|
|
901
|
-
logoutPopup(logoutRequest) {
|
|
902
|
-
try {
|
|
903
|
-
const correlationId = this.getRequestCorrelationId(logoutRequest);
|
|
904
|
-
preflightCheck$1(this.initialized);
|
|
905
|
-
this.browserStorage.setInteractionInProgress(true, INTERACTION_TYPE.SIGNOUT);
|
|
906
|
-
const popupClient = this.createPopupClient(correlationId);
|
|
907
|
-
return popupClient.logout(logoutRequest).finally(() => {
|
|
908
|
-
this.browserStorage.setInteractionInProgress(false);
|
|
909
|
-
});
|
|
910
|
-
}
|
|
911
|
-
catch (e) {
|
|
912
|
-
// Since this function is syncronous we need to reject
|
|
913
|
-
return Promise.reject(e);
|
|
914
|
-
}
|
|
915
|
-
}
|
|
916
|
-
/**
|
|
917
|
-
* Creates a cache interaction client to clear broswer cache.
|
|
918
|
-
* @param logoutRequest
|
|
919
|
-
*/
|
|
920
|
-
async clearCache(logoutRequest) {
|
|
921
|
-
if (!this.isBrowserEnvironment) {
|
|
922
|
-
return;
|
|
923
|
-
}
|
|
924
|
-
const correlationId = this.getRequestCorrelationId(logoutRequest);
|
|
925
|
-
const cacheClient = this.createSilentCacheClient(correlationId);
|
|
926
|
-
return cacheClient.logout(logoutRequest);
|
|
927
|
-
}
|
|
928
|
-
// #endregion
|
|
929
|
-
// #region Account APIs
|
|
930
|
-
/**
|
|
931
|
-
* Returns all the accounts in the cache that match the optional filter. If no filter is provided, all accounts are returned.
|
|
932
|
-
* @param accountFilter - (Optional) filter to narrow down the accounts returned
|
|
933
|
-
* @returns Array of AccountInfo objects in cache
|
|
934
|
-
*/
|
|
935
|
-
getAllAccounts(accountFilter) {
|
|
936
|
-
return getAllAccounts(this.logger, this.browserStorage, this.isBrowserEnvironment, this.getRequestCorrelationId(), accountFilter);
|
|
937
|
-
}
|
|
938
|
-
/**
|
|
939
|
-
* Returns the first account found in the cache that matches the account filter passed in.
|
|
940
|
-
* @param accountFilter
|
|
941
|
-
* @returns The first account found in the cache matching the provided filter or null if no account could be found.
|
|
942
|
-
*/
|
|
943
|
-
getAccount(accountFilter) {
|
|
944
|
-
return getAccount(accountFilter, this.logger, this.browserStorage, this.getRequestCorrelationId());
|
|
945
|
-
}
|
|
946
|
-
/**
|
|
947
|
-
* Sets the account to use as the active account. If no account is passed to the acquireToken APIs, then MSAL will use this active account.
|
|
948
|
-
* @param account
|
|
949
|
-
*/
|
|
950
|
-
setActiveAccount(account) {
|
|
951
|
-
setActiveAccount(account, this.browserStorage, this.getRequestCorrelationId());
|
|
952
|
-
}
|
|
953
|
-
/**
|
|
954
|
-
* Gets the currently active account
|
|
955
|
-
*/
|
|
956
|
-
getActiveAccount() {
|
|
957
|
-
return getActiveAccount(this.browserStorage, this.getRequestCorrelationId());
|
|
958
|
-
}
|
|
959
|
-
// #endregion
|
|
960
|
-
/**
|
|
961
|
-
* Hydrates the cache with the tokens from an AuthenticationResult
|
|
962
|
-
* @param result
|
|
963
|
-
* @param request
|
|
964
|
-
* @returns
|
|
965
|
-
*/
|
|
966
|
-
async hydrateCache(result, request) {
|
|
967
|
-
this.logger.verbose("16jycr", result.correlationId);
|
|
968
|
-
// Account gets saved to browser storage regardless of native or not
|
|
969
|
-
const accountEntity = AccountEntityUtils.createAccountEntityFromAccountInfo(result.account, result.cloudGraphHostName, result.msGraphHost);
|
|
970
|
-
await this.browserStorage.setAccount(accountEntity, result.correlationId, AuthToken.isKmsi(result.idTokenClaims), ApiId.hydrateCache);
|
|
971
|
-
if (result.fromPlatformBroker) {
|
|
972
|
-
this.logger.verbose("1i5atf", result.correlationId);
|
|
973
|
-
// Create idToken entity and store in browser storage
|
|
974
|
-
const idTokenEntity = CacheHelpers.createIdTokenEntity(result.account.homeAccountId, result.account.environment, result.idToken, this.config.auth.clientId, result.tenantId);
|
|
975
|
-
// Create accessToken entity and store in native internal storage
|
|
976
|
-
const accessTokenEntity = CacheHelpers.createAccessTokenEntity(result.account.homeAccountId, result.account.environment, result.accessToken, this.config.auth.clientId, result.tenantId, result.scopes.join(" "), result.expiresOn
|
|
977
|
-
? TimeUtils.toSecondsFromDate(result.expiresOn)
|
|
978
|
-
: 0, result.extExpiresOn
|
|
979
|
-
? TimeUtils.toSecondsFromDate(result.extExpiresOn)
|
|
980
|
-
: 0, base64Decode, undefined, // refreshOn
|
|
981
|
-
result.tokenType, undefined, // userAssertionHash
|
|
982
|
-
request.sshKid);
|
|
983
|
-
if (request.resource) {
|
|
984
|
-
accessTokenEntity.resource = request.resource;
|
|
985
|
-
}
|
|
986
|
-
const kmsi = AuthToken.isKmsi(result.idTokenClaims);
|
|
987
|
-
// Store idToken in browser storage
|
|
988
|
-
await this.browserStorage.setIdTokenCredential(idTokenEntity, result.correlationId, kmsi);
|
|
989
|
-
// Store accessToken in native internal storage
|
|
990
|
-
await this.nativeInternalStorage.setAccessTokenCredential(accessTokenEntity, result.correlationId, kmsi);
|
|
991
|
-
}
|
|
992
|
-
else {
|
|
993
|
-
return this.browserStorage.hydrateCache(result, request);
|
|
994
|
-
}
|
|
995
|
-
}
|
|
996
|
-
// #region Helpers
|
|
997
|
-
/**
|
|
998
|
-
* Acquire a token from native device (e.g. WAM)
|
|
999
|
-
* @param request
|
|
1000
|
-
*/
|
|
1001
|
-
async acquireTokenNative(request, apiId, accountId, cacheLookupPolicy) {
|
|
1002
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
1003
|
-
this.logger.trace("0b9y3p", correlationId);
|
|
1004
|
-
if (!this.platformAuthProvider) {
|
|
1005
|
-
throw createBrowserAuthError(nativeConnectionNotEstablished);
|
|
1006
|
-
}
|
|
1007
|
-
const nativeClient = new PlatformAuthInteractionClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, apiId, this.performanceClient, this.platformAuthProvider, accountId || this.getNativeAccountId(request), this.nativeInternalStorage, correlationId);
|
|
1008
|
-
return invokeAsync(nativeClient.acquireToken.bind(nativeClient), NativeInteractionClientAcquireToken, this.logger, this.performanceClient, correlationId)(request, cacheLookupPolicy);
|
|
1009
|
-
}
|
|
1010
|
-
/**
|
|
1011
|
-
* Returns boolean indicating if this request can use the platform broker
|
|
1012
|
-
* @param request
|
|
1013
|
-
*/
|
|
1014
|
-
canUsePlatformBroker(request, accountId) {
|
|
1015
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
1016
|
-
this.logger.trace("1n9lbl", correlationId);
|
|
1017
|
-
if (!this.platformAuthProvider) {
|
|
1018
|
-
this.logger.trace("0vnu11", correlationId);
|
|
1019
|
-
return false;
|
|
1020
|
-
}
|
|
1021
|
-
if (!isPlatformAuthAllowed(this.config, this.logger, correlationId, this.platformAuthProvider, request.authenticationScheme)) {
|
|
1022
|
-
this.logger.trace("0yoy1g", correlationId);
|
|
1023
|
-
return false;
|
|
1024
|
-
}
|
|
1025
|
-
if (request.prompt) {
|
|
1026
|
-
switch (request.prompt) {
|
|
1027
|
-
case Constants.PromptValue.NONE:
|
|
1028
|
-
case Constants.PromptValue.CONSENT:
|
|
1029
|
-
case Constants.PromptValue.LOGIN:
|
|
1030
|
-
this.logger.trace("0vdv8e", correlationId);
|
|
1031
|
-
break;
|
|
1032
|
-
default:
|
|
1033
|
-
this.logger.trace("0pdzw6", correlationId);
|
|
1034
|
-
return false;
|
|
1035
|
-
}
|
|
1036
|
-
}
|
|
1037
|
-
if (!accountId && !this.getNativeAccountId(request)) {
|
|
1038
|
-
this.logger.trace("16lbtk", correlationId);
|
|
1039
|
-
return false;
|
|
1040
|
-
}
|
|
1041
|
-
return true;
|
|
1042
|
-
}
|
|
1043
|
-
/**
|
|
1044
|
-
* Get the native accountId from the account
|
|
1045
|
-
* @param request
|
|
1046
|
-
* @returns
|
|
1047
|
-
*/
|
|
1048
|
-
getNativeAccountId(request) {
|
|
1049
|
-
const account = request.account ||
|
|
1050
|
-
this.getAccount({
|
|
1051
|
-
loginHint: request.loginHint,
|
|
1052
|
-
sid: request.sid,
|
|
1053
|
-
}) ||
|
|
1054
|
-
(!request.loginHint && !request.sid
|
|
1055
|
-
? this.getActiveAccount()
|
|
1056
|
-
: null);
|
|
1057
|
-
return (account && account.nativeAccountId) || "";
|
|
1058
|
-
}
|
|
1059
|
-
/**
|
|
1060
|
-
* Returns new instance of the Popup Interaction Client
|
|
1061
|
-
* @param correlationId
|
|
1062
|
-
*/
|
|
1063
|
-
createPopupClient(correlationId) {
|
|
1064
|
-
return new PopupClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, this.performanceClient, this.nativeInternalStorage, correlationId, this.platformAuthProvider);
|
|
1065
|
-
}
|
|
1066
|
-
/**
|
|
1067
|
-
* Returns new instance of the Redirect Interaction Client
|
|
1068
|
-
* @param correlationId
|
|
1069
|
-
*/
|
|
1070
|
-
createRedirectClient(correlationId) {
|
|
1071
|
-
return new RedirectClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, this.performanceClient, this.nativeInternalStorage, correlationId, this.platformAuthProvider);
|
|
1072
|
-
}
|
|
1073
|
-
/**
|
|
1074
|
-
* Returns new instance of the Silent Iframe Interaction Client
|
|
1075
|
-
* @param correlationId
|
|
1076
|
-
*/
|
|
1077
|
-
createSilentIframeClient(correlationId) {
|
|
1078
|
-
return new SilentIframeClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, ApiId.ssoSilent, this.performanceClient, this.nativeInternalStorage, correlationId, this.platformAuthProvider);
|
|
1079
|
-
}
|
|
1080
|
-
/**
|
|
1081
|
-
* Returns new instance of the Silent Cache Interaction Client
|
|
1082
|
-
*/
|
|
1083
|
-
createSilentCacheClient(correlationId) {
|
|
1084
|
-
return new SilentCacheClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, this.performanceClient, correlationId, this.platformAuthProvider);
|
|
1085
|
-
}
|
|
1086
|
-
/**
|
|
1087
|
-
* Returns new instance of the Silent Refresh Interaction Client
|
|
1088
|
-
*/
|
|
1089
|
-
createSilentRefreshClient(correlationId) {
|
|
1090
|
-
return new SilentRefreshClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, this.performanceClient, correlationId, this.platformAuthProvider);
|
|
1091
|
-
}
|
|
1092
|
-
/**
|
|
1093
|
-
* Returns new instance of the Silent AuthCode Interaction Client
|
|
1094
|
-
*/
|
|
1095
|
-
createSilentAuthCodeClient(correlationId) {
|
|
1096
|
-
return new SilentAuthCodeClient(this.config, this.browserStorage, this.browserCrypto, this.logger, this.eventHandler, this.navigationClient, ApiId.acquireTokenByCode, this.performanceClient, correlationId, this.platformAuthProvider);
|
|
1097
|
-
}
|
|
1098
|
-
/**
|
|
1099
|
-
* Adds event callbacks to array
|
|
1100
|
-
* @param callback
|
|
1101
|
-
*/
|
|
1102
|
-
addEventCallback(callback, eventTypes) {
|
|
1103
|
-
return this.eventHandler.addEventCallback(callback, eventTypes);
|
|
1104
|
-
}
|
|
1105
|
-
/**
|
|
1106
|
-
* Removes callback with provided id from callback array
|
|
1107
|
-
* @param callbackId
|
|
1108
|
-
*/
|
|
1109
|
-
removeEventCallback(callbackId) {
|
|
1110
|
-
this.eventHandler.removeEventCallback(callbackId);
|
|
1111
|
-
}
|
|
1112
|
-
/**
|
|
1113
|
-
* Registers a callback to receive performance events.
|
|
1114
|
-
*
|
|
1115
|
-
* @param {PerformanceCallbackFunction} callback
|
|
1116
|
-
* @returns {string}
|
|
1117
|
-
*/
|
|
1118
|
-
addPerformanceCallback(callback) {
|
|
1119
|
-
blockNonBrowserEnvironment();
|
|
1120
|
-
return this.performanceClient.addPerformanceCallback(callback);
|
|
1121
|
-
}
|
|
1122
|
-
/**
|
|
1123
|
-
* Removes a callback registered with addPerformanceCallback.
|
|
1124
|
-
*
|
|
1125
|
-
* @param {string} callbackId
|
|
1126
|
-
* @returns {boolean}
|
|
1127
|
-
*/
|
|
1128
|
-
removePerformanceCallback(callbackId) {
|
|
1129
|
-
return this.performanceClient.removePerformanceCallback(callbackId);
|
|
1130
|
-
}
|
|
1131
|
-
/**
|
|
1132
|
-
* Returns the logger instance
|
|
1133
|
-
*/
|
|
1134
|
-
getLogger() {
|
|
1135
|
-
return this.logger;
|
|
1136
|
-
}
|
|
1137
|
-
/**
|
|
1138
|
-
* Replaces the default logger set in configurations with new Logger with new configurations
|
|
1139
|
-
* @param logger Logger instance
|
|
1140
|
-
*/
|
|
1141
|
-
setLogger(logger) {
|
|
1142
|
-
this.logger = logger;
|
|
1143
|
-
}
|
|
1144
|
-
/**
|
|
1145
|
-
* Called by wrapper libraries (Angular & React) to set SKU and Version passed down to telemetry, logger, etc.
|
|
1146
|
-
* @param sku
|
|
1147
|
-
* @param version
|
|
1148
|
-
*/
|
|
1149
|
-
initializeWrapperLibrary(sku, version) {
|
|
1150
|
-
// Validate the SKU passed in is one we expect
|
|
1151
|
-
this.browserStorage.setWrapperMetadata(sku, version);
|
|
1152
|
-
}
|
|
1153
|
-
/**
|
|
1154
|
-
* Sets navigation client
|
|
1155
|
-
* @param navigationClient
|
|
1156
|
-
*/
|
|
1157
|
-
setNavigationClient(navigationClient) {
|
|
1158
|
-
this.navigationClient = navigationClient;
|
|
1159
|
-
}
|
|
1160
|
-
/**
|
|
1161
|
-
* Returns the configuration object
|
|
1162
|
-
*/
|
|
1163
|
-
getConfiguration() {
|
|
1164
|
-
return this.config;
|
|
1165
|
-
}
|
|
1166
|
-
/**
|
|
1167
|
-
* Returns the performance client
|
|
1168
|
-
*/
|
|
1169
|
-
getPerformanceClient() {
|
|
1170
|
-
return this.performanceClient;
|
|
1171
|
-
}
|
|
1172
|
-
/**
|
|
1173
|
-
* Returns the browser env indicator
|
|
1174
|
-
*/
|
|
1175
|
-
isBrowserEnv() {
|
|
1176
|
-
return this.isBrowserEnvironment;
|
|
1177
|
-
}
|
|
1178
|
-
/**
|
|
1179
|
-
* Generates a correlation id for a request if none is provided.
|
|
1180
|
-
*
|
|
1181
|
-
* @protected
|
|
1182
|
-
* @param {?Partial<BaseAuthRequest>} [request]
|
|
1183
|
-
* @returns {string}
|
|
1184
|
-
*/
|
|
1185
|
-
getRequestCorrelationId(request) {
|
|
1186
|
-
if (request?.correlationId) {
|
|
1187
|
-
return request.correlationId;
|
|
1188
|
-
}
|
|
1189
|
-
if (this.isBrowserEnvironment) {
|
|
1190
|
-
return createNewGuid();
|
|
1191
|
-
}
|
|
1192
|
-
/*
|
|
1193
|
-
* Included for fallback for non-browser environments,
|
|
1194
|
-
* and to ensure this method always returns a string.
|
|
1195
|
-
*/
|
|
1196
|
-
return "";
|
|
1197
|
-
}
|
|
1198
|
-
// #endregion
|
|
1199
|
-
/**
|
|
1200
|
-
* Use when initiating the login process by redirecting the user's browser to the authorization endpoint. This function redirects the page, so
|
|
1201
|
-
* any code that follows this function will not execute.
|
|
1202
|
-
*
|
|
1203
|
-
* IMPORTANT: It is NOT recommended to have code that is dependent on the resolution of the Promise. This function will navigate away from the current
|
|
1204
|
-
* browser window. It currently returns a Promise in order to reflect the asynchronous nature of the code running in this function.
|
|
1205
|
-
*
|
|
1206
|
-
* @param request
|
|
1207
|
-
*/
|
|
1208
|
-
async loginRedirect(request) {
|
|
1209
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
1210
|
-
this.logger.verbose("0lz9hf", correlationId);
|
|
1211
|
-
return this.acquireTokenRedirect({
|
|
1212
|
-
correlationId,
|
|
1213
|
-
...(request || DEFAULT_REQUEST),
|
|
1214
|
-
});
|
|
1215
|
-
}
|
|
1216
|
-
/**
|
|
1217
|
-
* Use when initiating the login process via opening a popup window in the user's browser
|
|
1218
|
-
*
|
|
1219
|
-
* @param request
|
|
1220
|
-
*
|
|
1221
|
-
* @returns A promise that is fulfilled when this function has completed, or rejected if an error was raised.
|
|
1222
|
-
*/
|
|
1223
|
-
loginPopup(request) {
|
|
1224
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
1225
|
-
this.logger.verbose("0qw7v5", correlationId);
|
|
1226
|
-
return this.acquireTokenPopup({
|
|
1227
|
-
correlationId,
|
|
1228
|
-
...(request || DEFAULT_REQUEST),
|
|
1229
|
-
});
|
|
1230
|
-
}
|
|
1231
|
-
/**
|
|
1232
|
-
* Silently acquire an access token for a given set of scopes. Returns currently processing promise if parallel requests are made.
|
|
1233
|
-
*
|
|
1234
|
-
* @param {@link (SilentRequest:type)}
|
|
1235
|
-
* @returns {Promise.<AuthenticationResult>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse} object
|
|
1236
|
-
*/
|
|
1237
|
-
async acquireTokenSilent(request) {
|
|
1238
|
-
const correlationId = this.getRequestCorrelationId(request);
|
|
1239
|
-
const atsMeasurement = this.performanceClient.startMeasurement(AcquireTokenSilent, correlationId);
|
|
1240
|
-
atsMeasurement.add({
|
|
1241
|
-
cacheLookupPolicy: request.cacheLookupPolicy,
|
|
1242
|
-
scenarioId: request.scenarioId,
|
|
1243
|
-
ssoCapable: this.getCachedSsoCapable(),
|
|
1244
|
-
});
|
|
1245
|
-
preflightCheck(this.initialized, atsMeasurement, this.config, request);
|
|
1246
|
-
this.logger.verbose("0x1c4s", correlationId);
|
|
1247
|
-
const account = request.account || this.getActiveAccount();
|
|
1248
|
-
if (!account) {
|
|
1249
|
-
throw createBrowserAuthError(noAccountError);
|
|
1250
|
-
}
|
|
1251
|
-
return this.acquireTokenSilentDeduped(request, account, correlationId)
|
|
1252
|
-
.then((result) => {
|
|
1253
|
-
atsMeasurement.end({
|
|
1254
|
-
success: true,
|
|
1255
|
-
fromCache: result.fromCache,
|
|
1256
|
-
accessTokenSize: result.accessToken.length,
|
|
1257
|
-
idTokenSize: result.idToken.length,
|
|
1258
|
-
}, undefined, result.account);
|
|
1259
|
-
return {
|
|
1260
|
-
...result,
|
|
1261
|
-
state: request.state,
|
|
1262
|
-
correlationId: correlationId, // Ensures PWB scenarios can correctly match request to response
|
|
1263
|
-
};
|
|
1264
|
-
})
|
|
1265
|
-
.catch((error) => {
|
|
1266
|
-
if (error instanceof AuthError) {
|
|
1267
|
-
// Ensures PWB scenarios can correctly match request to response
|
|
1268
|
-
error.setCorrelationId(correlationId);
|
|
1269
|
-
}
|
|
1270
|
-
atsMeasurement.end({
|
|
1271
|
-
success: false,
|
|
1272
|
-
}, error, account);
|
|
1273
|
-
throw error;
|
|
1274
|
-
});
|
|
1275
|
-
}
|
|
1276
|
-
/**
|
|
1277
|
-
* Checks if identical request is already in flight and returns reference to the existing promise or fires off a new one if this is the first
|
|
1278
|
-
* @param request
|
|
1279
|
-
* @param account
|
|
1280
|
-
* @param correlationId
|
|
1281
|
-
* @returns
|
|
1282
|
-
*/
|
|
1283
|
-
async acquireTokenSilentDeduped(request, account, correlationId) {
|
|
1284
|
-
const thumbprint = getRequestThumbprint(this.config.auth.clientId, {
|
|
1285
|
-
...request,
|
|
1286
|
-
authority: request.authority || this.config.auth.authority,
|
|
1287
|
-
correlationId: correlationId,
|
|
1288
|
-
}, account.homeAccountId);
|
|
1289
|
-
const silentRequestKey = JSON.stringify(thumbprint);
|
|
1290
|
-
const inProgressRequest = this.activeSilentTokenRequests.get(silentRequestKey);
|
|
1291
|
-
if (typeof inProgressRequest === "undefined") {
|
|
1292
|
-
this.logger.verbose("0fcjbk", correlationId);
|
|
1293
|
-
this.performanceClient.addFields({ deduped: false }, correlationId);
|
|
1294
|
-
const activeRequest = invokeAsync(this.acquireTokenSilentAsync.bind(this), AcquireTokenSilentAsync, this.logger, this.performanceClient, correlationId)({
|
|
1295
|
-
...request,
|
|
1296
|
-
correlationId,
|
|
1297
|
-
}, account);
|
|
1298
|
-
this.activeSilentTokenRequests.set(silentRequestKey, activeRequest);
|
|
1299
|
-
return activeRequest.finally(() => {
|
|
1300
|
-
this.activeSilentTokenRequests.delete(silentRequestKey);
|
|
1301
|
-
});
|
|
1302
|
-
}
|
|
1303
|
-
else {
|
|
1304
|
-
this.logger.verbose("1yq7nb", correlationId);
|
|
1305
|
-
this.performanceClient.addFields({ deduped: true }, correlationId);
|
|
1306
|
-
return inProgressRequest;
|
|
1307
|
-
}
|
|
1308
|
-
}
|
|
1309
|
-
/**
|
|
1310
|
-
* Silently acquire an access token for a given set of scopes. Will use cached token if available, otherwise will attempt to acquire a new token from the network via refresh token.
|
|
1311
|
-
* @param {@link (SilentRequest:type)}
|
|
1312
|
-
* @param {@link (AccountInfo:type)}
|
|
1313
|
-
* @returns {Promise.<AuthenticationResult>} - a promise that is fulfilled when this function has completed, or rejected if an error was raised. Returns the {@link AuthResponse}
|
|
1314
|
-
*/
|
|
1315
|
-
async acquireTokenSilentAsync(request, account) {
|
|
1316
|
-
const trackStateChange = (event) => this.trackStateChange(request.correlationId, event);
|
|
1317
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_START, request.correlationId, InteractionType.Silent, request);
|
|
1318
|
-
if (request.correlationId) {
|
|
1319
|
-
this.performanceClient.incrementFields({ visibilityChangeCount: 0, onlineStatusChangeCount: 0 }, request.correlationId);
|
|
1320
|
-
}
|
|
1321
|
-
this.addStateChangeListeners(trackStateChange);
|
|
1322
|
-
const silentRequest = await invokeAsync(initializeSilentRequest, InitializeSilentRequest, this.logger, this.performanceClient, request.correlationId)(request, account, this.config, this.performanceClient, this.logger);
|
|
1323
|
-
const cacheLookupPolicy = request.cacheLookupPolicy || CacheLookupPolicy.Default;
|
|
1324
|
-
const result = this.acquireTokenSilentNoIframe(silentRequest, cacheLookupPolicy).catch(async (refreshTokenError) => {
|
|
1325
|
-
const shouldTryToResolveSilently = checkIfRefreshTokenErrorCanBeResolvedSilently(refreshTokenError, cacheLookupPolicy);
|
|
1326
|
-
if (shouldTryToResolveSilently) {
|
|
1327
|
-
const silentRefreshReason = `${refreshTokenError.errorCode}${refreshTokenError.subError
|
|
1328
|
-
? `|${refreshTokenError.subError}`
|
|
1329
|
-
: ""}`;
|
|
1330
|
-
this.performanceClient.addFields({ silentRefreshReason }, request.correlationId);
|
|
1331
|
-
if (!this.activeIframeRequest) {
|
|
1332
|
-
let _resolve;
|
|
1333
|
-
// Always set the active request tracker immediately after checking it to prevent races
|
|
1334
|
-
this.activeIframeRequest = [
|
|
1335
|
-
new Promise((resolve) => {
|
|
1336
|
-
_resolve = resolve;
|
|
1337
|
-
}),
|
|
1338
|
-
silentRequest.correlationId,
|
|
1339
|
-
];
|
|
1340
|
-
this.logger.verbose("0rh08z", silentRequest.correlationId);
|
|
1341
|
-
return invokeAsync(this.acquireTokenBySilentIframe.bind(this), AcquireTokenBySilentIframe, this.logger, this.performanceClient, silentRequest.correlationId)(silentRequest)
|
|
1342
|
-
.then((iframeResult) => {
|
|
1343
|
-
_resolve(true);
|
|
1344
|
-
return iframeResult;
|
|
1345
|
-
})
|
|
1346
|
-
.catch((e) => {
|
|
1347
|
-
_resolve(false);
|
|
1348
|
-
throw e;
|
|
1349
|
-
})
|
|
1350
|
-
.finally(() => {
|
|
1351
|
-
this.activeIframeRequest = undefined;
|
|
1352
|
-
});
|
|
1353
|
-
}
|
|
1354
|
-
else if (cacheLookupPolicy !== CacheLookupPolicy.Skip) {
|
|
1355
|
-
const [activePromise, activeCorrelationId] = this.activeIframeRequest;
|
|
1356
|
-
this.logger.verbose("1w8fso", silentRequest.correlationId);
|
|
1357
|
-
const awaitConcurrentIframeMeasure = this.performanceClient.startMeasurement(AwaitConcurrentIframe, silentRequest.correlationId);
|
|
1358
|
-
awaitConcurrentIframeMeasure.add({
|
|
1359
|
-
awaitIframeCorrelationId: activeCorrelationId,
|
|
1360
|
-
});
|
|
1361
|
-
const activePromiseResult = await activePromise;
|
|
1362
|
-
awaitConcurrentIframeMeasure.end({
|
|
1363
|
-
success: activePromiseResult,
|
|
1364
|
-
});
|
|
1365
|
-
if (activePromiseResult) {
|
|
1366
|
-
this.logger.verbose("0ywzzi", silentRequest.correlationId);
|
|
1367
|
-
// Retry cache lookup and/or RT exchange after iframe completes
|
|
1368
|
-
return this.acquireTokenSilentNoIframe(silentRequest, cacheLookupPolicy);
|
|
1369
|
-
}
|
|
1370
|
-
else {
|
|
1371
|
-
this.logger.info("17y14q", silentRequest.correlationId);
|
|
1372
|
-
// If previous iframe request failed, it's unlikely to succeed this time. Throw original error.
|
|
1373
|
-
throw refreshTokenError;
|
|
1374
|
-
}
|
|
1375
|
-
}
|
|
1376
|
-
else {
|
|
1377
|
-
// Cache policy set to skip and another iframe request is already in progress
|
|
1378
|
-
this.logger.warning("1bd4p8", silentRequest.correlationId);
|
|
1379
|
-
return invokeAsync(this.acquireTokenBySilentIframe.bind(this), AcquireTokenBySilentIframe, this.logger, this.performanceClient, silentRequest.correlationId)(silentRequest);
|
|
1380
|
-
}
|
|
1381
|
-
}
|
|
1382
|
-
else {
|
|
1383
|
-
// Error cannot be silently resolved or iframe renewal is not allowed, interaction required
|
|
1384
|
-
throw refreshTokenError;
|
|
1385
|
-
}
|
|
1386
|
-
});
|
|
1387
|
-
return result
|
|
1388
|
-
.then((response) => {
|
|
1389
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_SUCCESS, request.correlationId, InteractionType.Silent, response);
|
|
1390
|
-
if (request.correlationId) {
|
|
1391
|
-
this.performanceClient.addFields({
|
|
1392
|
-
fromCache: response.fromCache,
|
|
1393
|
-
isNativeBroker: response.fromPlatformBroker,
|
|
1394
|
-
}, request.correlationId);
|
|
1395
|
-
}
|
|
1396
|
-
return response;
|
|
1397
|
-
})
|
|
1398
|
-
.catch((tokenRenewalError) => {
|
|
1399
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_FAILURE, request.correlationId, InteractionType.Silent, null, tokenRenewalError);
|
|
1400
|
-
throw tokenRenewalError;
|
|
1401
|
-
})
|
|
1402
|
-
.finally(() => {
|
|
1403
|
-
this.removeStateChangeListeners(trackStateChange);
|
|
1404
|
-
});
|
|
1405
|
-
}
|
|
1406
|
-
/**
|
|
1407
|
-
* AcquireTokenSilent without the iframe fallback. This is used to enable the correct fallbacks in cases where there's a potential for multiple silent requests to be made in parallel and prevent those requests from making concurrent iframe requests.
|
|
1408
|
-
* @param silentRequest
|
|
1409
|
-
* @param cacheLookupPolicy
|
|
1410
|
-
* @returns
|
|
1411
|
-
*/
|
|
1412
|
-
async acquireTokenSilentNoIframe(silentRequest, cacheLookupPolicy) {
|
|
1413
|
-
// if the cache policy is set to access_token only, we should not be hitting the native layer yet
|
|
1414
|
-
if (isPlatformAuthAllowed(this.config, this.logger, silentRequest.correlationId, this.platformAuthProvider, silentRequest.authenticationScheme) &&
|
|
1415
|
-
silentRequest.account.nativeAccountId) {
|
|
1416
|
-
this.logger.verbose("0sczo4", silentRequest.correlationId);
|
|
1417
|
-
this.performanceClient.addFields({ isPlatformBrokerRequest: true }, silentRequest.correlationId);
|
|
1418
|
-
return this.acquireTokenNative(silentRequest, ApiId.acquireTokenSilent_silentFlow, silentRequest.account.nativeAccountId, cacheLookupPolicy).catch(async (e) => {
|
|
1419
|
-
this.performanceClient.addFields({
|
|
1420
|
-
brokerErrorName: e.name,
|
|
1421
|
-
brokerErrorCode: e.errorCode,
|
|
1422
|
-
}, silentRequest.correlationId);
|
|
1423
|
-
// If native token acquisition fails for availability reasons fallback to web flow
|
|
1424
|
-
if (e instanceof NativeAuthError && isFatalNativeAuthError(e)) {
|
|
1425
|
-
this.logger.verbose("07rkmb", silentRequest.correlationId);
|
|
1426
|
-
this.platformAuthProvider = undefined; // Prevent future requests from continuing to attempt
|
|
1427
|
-
// Cache will not contain tokens, given that previous WAM requests succeeded. Skip cache and RT renewal and go straight to iframe renewal
|
|
1428
|
-
throw createClientAuthError(ClientAuthErrorCodes.tokenRefreshRequired);
|
|
1429
|
-
}
|
|
1430
|
-
throw e;
|
|
1431
|
-
});
|
|
1432
|
-
}
|
|
1433
|
-
else {
|
|
1434
|
-
this.logger.verbose("0ox81t", silentRequest.correlationId);
|
|
1435
|
-
// add logs to identify embedded cache retrieval
|
|
1436
|
-
if (cacheLookupPolicy === CacheLookupPolicy.AccessToken) {
|
|
1437
|
-
this.logger.verbose("0fvwxe", silentRequest.correlationId);
|
|
1438
|
-
}
|
|
1439
|
-
return invokeAsync(this.acquireTokenFromCache.bind(this), AcquireTokenFromCache, this.logger, this.performanceClient, silentRequest.correlationId)(silentRequest, cacheLookupPolicy).catch((cacheError) => {
|
|
1440
|
-
if (cacheLookupPolicy === CacheLookupPolicy.AccessToken) {
|
|
1441
|
-
throw cacheError;
|
|
1442
|
-
}
|
|
1443
|
-
this.eventHandler.emitEvent(EventType.ACQUIRE_TOKEN_NETWORK_START, silentRequest.correlationId, InteractionType.Silent, silentRequest);
|
|
1444
|
-
return invokeAsync(this.acquireTokenByRefreshToken.bind(this), AcquireTokenByRefreshToken, this.logger, this.performanceClient, silentRequest.correlationId)(silentRequest, cacheLookupPolicy);
|
|
1445
|
-
});
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
|
-
/**
|
|
1449
|
-
* Pre-generates PKCE codes and stores it in local variable
|
|
1450
|
-
* @param correlationId
|
|
1451
|
-
*/
|
|
1452
|
-
async preGeneratePkceCodes(correlationId) {
|
|
1453
|
-
this.logger.verbose("1x6uj6", correlationId);
|
|
1454
|
-
this.pkceCode = await invokeAsync(generatePkceCodes, GeneratePkceCodes, this.logger, this.performanceClient, correlationId)(this.performanceClient, this.logger, correlationId);
|
|
1455
|
-
return Promise.resolve();
|
|
1456
|
-
}
|
|
1457
|
-
/**
|
|
1458
|
-
* Provides pre-generated PKCE codes, if any
|
|
1459
|
-
* @param correlationId
|
|
1460
|
-
*/
|
|
1461
|
-
getPreGeneratedPkceCodes(correlationId) {
|
|
1462
|
-
const res = this.pkceCode ? { ...this.pkceCode } : undefined;
|
|
1463
|
-
this.pkceCode = undefined;
|
|
1464
|
-
if (res) {
|
|
1465
|
-
this.logger.verbose("12js1o", correlationId);
|
|
1466
|
-
}
|
|
1467
|
-
else {
|
|
1468
|
-
this.logger.verbose("1oe9ci", correlationId);
|
|
1469
|
-
}
|
|
1470
|
-
this.performanceClient.addFields({ usePreGeneratedPkce: !!res }, correlationId);
|
|
1471
|
-
return res;
|
|
1472
|
-
}
|
|
1473
|
-
logMultipleInstances(performanceEvent, correlationId) {
|
|
1474
|
-
const clientId = this.config.auth.clientId;
|
|
1475
|
-
if (!window)
|
|
1476
|
-
return;
|
|
1477
|
-
// @ts-ignore
|
|
1478
|
-
window.msal = window.msal || {};
|
|
1479
|
-
// @ts-ignore
|
|
1480
|
-
window.msal.clientIds = window.msal.clientIds || [];
|
|
1481
|
-
// @ts-ignore
|
|
1482
|
-
const clientIds = window.msal.clientIds;
|
|
1483
|
-
if (clientIds.length > 0) {
|
|
1484
|
-
this.logger.verbose("1qtz3l", correlationId);
|
|
1485
|
-
}
|
|
1486
|
-
// @ts-ignore
|
|
1487
|
-
window.msal.clientIds.push(clientId);
|
|
1488
|
-
collectInstanceStats(clientId, performanceEvent, this.logger, correlationId);
|
|
1489
|
-
}
|
|
1490
|
-
}
|
|
1491
|
-
/**
|
|
1492
|
-
* Determines whether an error thrown by the refresh token endpoint can be resolved without interaction
|
|
1493
|
-
* @param refreshTokenError
|
|
1494
|
-
* @param silentRequest
|
|
1495
|
-
* @param cacheLookupPolicy
|
|
1496
|
-
* @returns
|
|
1497
|
-
*/
|
|
1498
|
-
function checkIfRefreshTokenErrorCanBeResolvedSilently(refreshTokenError, cacheLookupPolicy) {
|
|
1499
|
-
const noInteractionRequired = !(refreshTokenError instanceof InteractionRequiredAuthError &&
|
|
1500
|
-
// For refresh token errors, bad_token does not always require interaction (silently resolvable)
|
|
1501
|
-
refreshTokenError.subError !==
|
|
1502
|
-
InteractionRequiredAuthErrorCodes.badToken);
|
|
1503
|
-
// Errors that result when the refresh token needs to be replaced
|
|
1504
|
-
const refreshTokenRefreshRequired = refreshTokenError.errorCode === BrowserConstants.INVALID_GRANT_ERROR ||
|
|
1505
|
-
refreshTokenError.errorCode ===
|
|
1506
|
-
ClientAuthErrorCodes.tokenRefreshRequired;
|
|
1507
|
-
// Errors that may be resolved before falling back to interaction (through iframe renewal)
|
|
1508
|
-
const isSilentlyResolvable = (noInteractionRequired && refreshTokenRefreshRequired) ||
|
|
1509
|
-
refreshTokenError.errorCode ===
|
|
1510
|
-
InteractionRequiredAuthErrorCodes.noTokensFound ||
|
|
1511
|
-
refreshTokenError.errorCode ===
|
|
1512
|
-
InteractionRequiredAuthErrorCodes.refreshTokenExpired;
|
|
1513
|
-
// Only these policies allow for an iframe renewal attempt
|
|
1514
|
-
const tryIframeRenewal = iFrameRenewalPolicies.includes(cacheLookupPolicy);
|
|
1515
|
-
return isSilentlyResolvable && tryIframeRenewal;
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
export { StandardController };
|
|
1519
|
-
//# sourceMappingURL=StandardController.mjs.map
|