@azure/msal-browser 5.9.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 +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 +69 -82
- 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 +71 -84
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +71 -84
- 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/packageMetadata.ts +1 -1
- package/types/cache/BrowserCacheManager.d.ts.map +1 -0
- package/types/custom_auth/CustomAuthConstants.d.ts +35 -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/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 -95
- 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 -134
- 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/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/CookieStorage.d.ts.map +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 → types}/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +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,84 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @packageDocumentation
|
|
3
|
-
* @module @azure/msal-browser/custom-auth
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* This file is the entrypoint when importing with the custom-auth subpath e.g. "import { someExport } from @azure/msal-browser/custom-auth"
|
|
7
|
-
* Additional exports should be added to the applicable exports-*.ts files
|
|
8
|
-
*/
|
|
9
|
-
export { CustomAuthPublicClientApplication } from "./CustomAuthPublicClientApplication.js";
|
|
10
|
-
export { ICustomAuthPublicClientApplication } from "./ICustomAuthPublicClientApplication.js";
|
|
11
|
-
export { CustomAuthConfiguration } from "./configuration/CustomAuthConfiguration.js";
|
|
12
|
-
export { CustomAuthAccountData } from "./get_account/auth_flow/CustomAuthAccountData.js";
|
|
13
|
-
export { AuthenticationMethod } from "./core/network_client/custom_auth_api/types/ApiResponseTypes.js";
|
|
14
|
-
export { SignInInputs, SignUpInputs, ResetPasswordInputs, AccountRetrievalInputs, AccessTokenRetrievalInputs, SignInWithContinuationTokenInputs, } from "./CustomAuthActionInputs.js";
|
|
15
|
-
export { AuthFlowStateBase } from "./core/auth_flow/AuthFlowState.js";
|
|
16
|
-
export { AuthFlowActionRequiredStateBase } from "./core/auth_flow/AuthFlowState.js";
|
|
17
|
-
export { SignInState } from "./sign_in/auth_flow/state/SignInState.js";
|
|
18
|
-
export { SignInCodeRequiredState } from "./sign_in/auth_flow/state/SignInCodeRequiredState.js";
|
|
19
|
-
export { SignInContinuationState } from "./sign_in/auth_flow/state/SignInContinuationState.js";
|
|
20
|
-
export { SignInPasswordRequiredState } from "./sign_in/auth_flow/state/SignInPasswordRequiredState.js";
|
|
21
|
-
export { SignInCompletedState } from "./sign_in/auth_flow/state/SignInCompletedState.js";
|
|
22
|
-
export { SignInFailedState } from "./sign_in/auth_flow/state/SignInFailedState.js";
|
|
23
|
-
export { SignInResult, SignInResultState, } from "./sign_in/auth_flow/result/SignInResult.js";
|
|
24
|
-
export { SignInSubmitCodeResult, SignInSubmitCodeResultState, } from "./sign_in/auth_flow/result/SignInSubmitCodeResult.js";
|
|
25
|
-
export { SignInResendCodeResult, SignInResendCodeResultState, } from "./sign_in/auth_flow/result/SignInResendCodeResult.js";
|
|
26
|
-
export { SignInSubmitPasswordResult, SignInSubmitPasswordResultState, } from "./sign_in/auth_flow/result/SignInSubmitPasswordResult.js";
|
|
27
|
-
export { SignInError, SignInSubmitPasswordError, SignInSubmitCodeError, SignInResendCodeError, } from "./sign_in/auth_flow/error_type/SignInError.js";
|
|
28
|
-
export { UserAccountAttributes } from "./UserAccountAttributes.js";
|
|
29
|
-
export { SignUpState } from "./sign_up/auth_flow/state/SignUpState.js";
|
|
30
|
-
export { SignUpAttributesRequiredState } from "./sign_up/auth_flow/state/SignUpAttributesRequiredState.js";
|
|
31
|
-
export { SignUpCodeRequiredState } from "./sign_up/auth_flow/state/SignUpCodeRequiredState.js";
|
|
32
|
-
export { SignUpPasswordRequiredState } from "./sign_up/auth_flow/state/SignUpPasswordRequiredState.js";
|
|
33
|
-
export { SignUpCompletedState } from "./sign_up/auth_flow/state/SignUpCompletedState.js";
|
|
34
|
-
export { SignUpFailedState } from "./sign_up/auth_flow/state/SignUpFailedState.js";
|
|
35
|
-
export { SignUpResult, SignUpResultState, } from "./sign_up/auth_flow/result/SignUpResult.js";
|
|
36
|
-
export { SignUpSubmitAttributesResult, SignUpSubmitAttributesResultState, } from "./sign_up/auth_flow/result/SignUpSubmitAttributesResult.js";
|
|
37
|
-
export { SignUpSubmitCodeResult, SignUpSubmitCodeResultState, } from "./sign_up/auth_flow/result/SignUpSubmitCodeResult.js";
|
|
38
|
-
export { SignUpResendCodeResult, SignUpResendCodeResultState, } from "./sign_up/auth_flow/result/SignUpResendCodeResult.js";
|
|
39
|
-
export { SignUpSubmitPasswordResult, SignUpSubmitPasswordResultState, } from "./sign_up/auth_flow/result/SignUpSubmitPasswordResult.js";
|
|
40
|
-
export { SignUpError, SignUpSubmitPasswordError, SignUpSubmitCodeError, SignUpSubmitAttributesError, SignUpResendCodeError, } from "./sign_up/auth_flow/error_type/SignUpError.js";
|
|
41
|
-
export { ResetPasswordState } from "./reset_password/auth_flow/state/ResetPasswordState.js";
|
|
42
|
-
export { ResetPasswordCodeRequiredState } from "./reset_password/auth_flow/state/ResetPasswordCodeRequiredState.js";
|
|
43
|
-
export { ResetPasswordPasswordRequiredState } from "./reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.js";
|
|
44
|
-
export { ResetPasswordCompletedState } from "./reset_password/auth_flow/state/ResetPasswordCompletedState.js";
|
|
45
|
-
export { ResetPasswordFailedState } from "./reset_password/auth_flow/state/ResetPasswordFailedState.js";
|
|
46
|
-
export { ResetPasswordStartResult, ResetPasswordStartResultState, } from "./reset_password/auth_flow/result/ResetPasswordStartResult.js";
|
|
47
|
-
export { ResetPasswordSubmitCodeResult, ResetPasswordSubmitCodeResultState, } from "./reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.js";
|
|
48
|
-
export { ResetPasswordResendCodeResult, ResetPasswordResendCodeResultState, } from "./reset_password/auth_flow/result/ResetPasswordResendCodeResult.js";
|
|
49
|
-
export { ResetPasswordSubmitPasswordResult, ResetPasswordSubmitPasswordResultState, } from "./reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.js";
|
|
50
|
-
export { ResetPasswordError, ResetPasswordSubmitPasswordError, ResetPasswordSubmitCodeError, ResetPasswordResendCodeError, } from "./reset_password/auth_flow/error_type/ResetPasswordError.js";
|
|
51
|
-
export { GetAccessTokenResult, GetAccessTokenResultState, } from "./get_account/auth_flow/result/GetAccessTokenResult.js";
|
|
52
|
-
export { GetAccountResult, GetAccountResultState, } from "./get_account/auth_flow/result/GetAccountResult.js";
|
|
53
|
-
export { SignOutResult, SignOutResultState, } from "./get_account/auth_flow/result/SignOutResult.js";
|
|
54
|
-
export { GetAccountError, SignOutError, GetCurrentAccountAccessTokenError, } from "./get_account/auth_flow/error_type/GetAccountError.js";
|
|
55
|
-
export { CustomAuthApiError } from "./core/error/CustomAuthApiError.js";
|
|
56
|
-
export { CustomAuthError } from "./core/error/CustomAuthError.js";
|
|
57
|
-
export { HttpError } from "./core/error/HttpError.js";
|
|
58
|
-
export { InvalidArgumentError } from "./core/error/InvalidArgumentError.js";
|
|
59
|
-
export { InvalidConfigurationError } from "./core/error/InvalidConfigurationError.js";
|
|
60
|
-
export { MethodNotImplementedError } from "./core/error/MethodNotImplementedError.js";
|
|
61
|
-
export { MsalCustomAuthError } from "./core/error/MsalCustomAuthError.js";
|
|
62
|
-
export { NoCachedAccountFoundError } from "./core/error/NoCachedAccountFoundError.js";
|
|
63
|
-
export { ParsedUrlError } from "./core/error/ParsedUrlError.js";
|
|
64
|
-
export { UnexpectedError } from "./core/error/UnexpectedError.js";
|
|
65
|
-
export { UnsupportedEnvironmentError } from "./core/error/UnsupportedEnvironmentError.js";
|
|
66
|
-
export { UserAccountAttributeError } from "./core/error/UserAccountAttributeError.js";
|
|
67
|
-
export { UserAlreadySignedInError } from "./core/error/UserAlreadySignedInError.js";
|
|
68
|
-
export { AuthMethodRegistrationRequiredState } from "./core/auth_flow/jit/state/AuthMethodRegistrationState.js";
|
|
69
|
-
export { AuthMethodVerificationRequiredState } from "./core/auth_flow/jit/state/AuthMethodRegistrationState.js";
|
|
70
|
-
export { AuthMethodRegistrationCompletedState } from "./core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.js";
|
|
71
|
-
export { AuthMethodRegistrationFailedState } from "./core/auth_flow/jit/state/AuthMethodRegistrationFailedState.js";
|
|
72
|
-
export { AuthMethodRegistrationChallengeMethodResult, AuthMethodRegistrationChallengeMethodResultState, } from "./core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.js";
|
|
73
|
-
export { AuthMethodRegistrationSubmitChallengeResult, AuthMethodRegistrationSubmitChallengeResultState, } from "./core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.js";
|
|
74
|
-
export { AuthMethodRegistrationChallengeMethodError, AuthMethodRegistrationSubmitChallengeError, } from "./core/auth_flow/jit/error_type/AuthMethodRegistrationError.js";
|
|
75
|
-
export { AuthMethodDetails } from "./core/auth_flow/jit/AuthMethodDetails.js";
|
|
76
|
-
export { MfaAwaitingState } from "./core/auth_flow/mfa/state/MfaState.js";
|
|
77
|
-
export { MfaVerificationRequiredState } from "./core/auth_flow/mfa/state/MfaState.js";
|
|
78
|
-
export { MfaCompletedState } from "./core/auth_flow/mfa/state/MfaCompletedState.js";
|
|
79
|
-
export { MfaFailedState } from "./core/auth_flow/mfa/state/MfaFailedState.js";
|
|
80
|
-
export { MfaRequestChallengeResult, MfaRequestChallengeResultState, } from "./core/auth_flow/mfa/result/MfaRequestChallengeResult.js";
|
|
81
|
-
export { MfaSubmitChallengeResult, MfaSubmitChallengeResultState, } from "./core/auth_flow/mfa/result/MfaSubmitChallengeResult.js";
|
|
82
|
-
export { MfaRequestChallengeError, MfaSubmitChallengeError, } from "./core/auth_flow/mfa/error_type/MfaError.js";
|
|
83
|
-
export { LogLevel } from "@azure/msal-common/browser";
|
|
84
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/custom_auth/index.ts"],"names":[],"mappings":"AAKA;;;GAGG;AAEH;;;GAGG;AAGH,OAAO,EAAE,iCAAiC,EAAE,MAAM,wCAAwC,CAAC;AAC3F,OAAO,EAAE,kCAAkC,EAAE,MAAM,yCAAyC,CAAC;AAG7F,OAAO,EAAE,uBAAuB,EAAE,MAAM,4CAA4C,CAAC;AAGrF,OAAO,EAAE,qBAAqB,EAAE,MAAM,kDAAkD,CAAC;AACzF,OAAO,EAAE,oBAAoB,EAAE,MAAM,iEAAiE,CAAC;AAGvG,OAAO,EACH,YAAY,EACZ,YAAY,EACZ,mBAAmB,EACnB,sBAAsB,EACtB,0BAA0B,EAC1B,iCAAiC,GACpC,MAAM,6BAA6B,CAAC;AAGrC,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AAGpF,OAAO,EAAE,WAAW,EAAE,MAAM,0CAA0C,CAAC;AACvE,OAAO,EAAE,uBAAuB,EAAE,MAAM,sDAAsD,CAAC;AAC/F,OAAO,EAAE,uBAAuB,EAAE,MAAM,sDAAsD,CAAC;AAC/F,OAAO,EAAE,2BAA2B,EAAE,MAAM,0DAA0D,CAAC;AACvG,OAAO,EAAE,oBAAoB,EAAE,MAAM,mDAAmD,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,MAAM,gDAAgD,CAAC;AAGnF,OAAO,EACH,YAAY,EACZ,iBAAiB,GACpB,MAAM,4CAA4C,CAAC;AACpD,OAAO,EACH,sBAAsB,EACtB,2BAA2B,GAC9B,MAAM,sDAAsD,CAAC;AAC9D,OAAO,EACH,sBAAsB,EACtB,2BAA2B,GAC9B,MAAM,sDAAsD,CAAC;AAC9D,OAAO,EACH,0BAA0B,EAC1B,+BAA+B,GAClC,MAAM,0DAA0D,CAAC;AAGlE,OAAO,EACH,WAAW,EACX,yBAAyB,EACzB,qBAAqB,EACrB,qBAAqB,GACxB,MAAM,+CAA+C,CAAC;AAGvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAGnE,OAAO,EAAE,WAAW,EAAE,MAAM,0CAA0C,CAAC;AACvE,OAAO,EAAE,6BAA6B,EAAE,MAAM,4DAA4D,CAAC;AAC3G,OAAO,EAAE,uBAAuB,EAAE,MAAM,sDAAsD,CAAC;AAC/F,OAAO,EAAE,2BAA2B,EAAE,MAAM,0DAA0D,CAAC;AACvG,OAAO,EAAE,oBAAoB,EAAE,MAAM,mDAAmD,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,MAAM,gDAAgD,CAAC;AAGnF,OAAO,EACH,YAAY,EACZ,iBAAiB,GACpB,MAAM,4CAA4C,CAAC;AACpD,OAAO,EACH,4BAA4B,EAC5B,iCAAiC,GACpC,MAAM,4DAA4D,CAAC;AACpE,OAAO,EACH,sBAAsB,EACtB,2BAA2B,GAC9B,MAAM,sDAAsD,CAAC;AAC9D,OAAO,EACH,sBAAsB,EACtB,2BAA2B,GAC9B,MAAM,sDAAsD,CAAC;AAC9D,OAAO,EACH,0BAA0B,EAC1B,+BAA+B,GAClC,MAAM,0DAA0D,CAAC;AAGlE,OAAO,EACH,WAAW,EACX,yBAAyB,EACzB,qBAAqB,EACrB,2BAA2B,EAC3B,qBAAqB,GACxB,MAAM,+CAA+C,CAAC;AAGvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wDAAwD,CAAC;AAC5F,OAAO,EAAE,8BAA8B,EAAE,MAAM,oEAAoE,CAAC;AACpH,OAAO,EAAE,kCAAkC,EAAE,MAAM,wEAAwE,CAAC;AAC5H,OAAO,EAAE,2BAA2B,EAAE,MAAM,iEAAiE,CAAC;AAC9G,OAAO,EAAE,wBAAwB,EAAE,MAAM,8DAA8D,CAAC;AAGxG,OAAO,EACH,wBAAwB,EACxB,6BAA6B,GAChC,MAAM,+DAA+D,CAAC;AACvE,OAAO,EACH,6BAA6B,EAC7B,kCAAkC,GACrC,MAAM,oEAAoE,CAAC;AAC5E,OAAO,EACH,6BAA6B,EAC7B,kCAAkC,GACrC,MAAM,oEAAoE,CAAC;AAC5E,OAAO,EACH,iCAAiC,EACjC,sCAAsC,GACzC,MAAM,wEAAwE,CAAC;AAGhF,OAAO,EACH,kBAAkB,EAClB,gCAAgC,EAChC,4BAA4B,EAC5B,4BAA4B,GAC/B,MAAM,6DAA6D,CAAC;AAGrE,OAAO,EACH,oBAAoB,EACpB,yBAAyB,GAC5B,MAAM,wDAAwD,CAAC;AAGhE,OAAO,EACH,gBAAgB,EAChB,qBAAqB,GACxB,MAAM,oDAAoD,CAAC;AAG5D,OAAO,EACH,aAAa,EACb,kBAAkB,GACrB,MAAM,iDAAiD,CAAC;AAGzD,OAAO,EACH,eAAe,EACf,YAAY,EACZ,iCAAiC,GACpC,MAAM,uDAAuD,CAAC;AAG/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAE,yBAAyB,EAAE,MAAM,2CAA2C,CAAC;AACtF,OAAO,EAAE,yBAAyB,EAAE,MAAM,2CAA2C,CAAC;AACtF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,yBAAyB,EAAE,MAAM,2CAA2C,CAAC;AACtF,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAClE,OAAO,EAAE,2BAA2B,EAAE,MAAM,6CAA6C,CAAC;AAC1F,OAAO,EAAE,yBAAyB,EAAE,MAAM,2CAA2C,CAAC;AACtF,OAAO,EAAE,wBAAwB,EAAE,MAAM,0CAA0C,CAAC;AAGpF,OAAO,EAAE,mCAAmC,EAAE,MAAM,2DAA2D,CAAC;AAChH,OAAO,EAAE,mCAAmC,EAAE,MAAM,2DAA2D,CAAC;AAChH,OAAO,EAAE,oCAAoC,EAAE,MAAM,oEAAoE,CAAC;AAC1H,OAAO,EAAE,iCAAiC,EAAE,MAAM,iEAAiE,CAAC;AAGpH,OAAO,EACH,2CAA2C,EAC3C,gDAAgD,GACnD,MAAM,4EAA4E,CAAC;AACpF,OAAO,EACH,2CAA2C,EAC3C,gDAAgD,GACnD,MAAM,4EAA4E,CAAC;AAGpF,OAAO,EACH,0CAA0C,EAC1C,0CAA0C,GAC7C,MAAM,gEAAgE,CAAC;AAGxE,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAA2C,CAAC;AAG9E,OAAO,EAAE,gBAAgB,EAAE,MAAM,wCAAwC,CAAC;AAC1E,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,iBAAiB,EAAE,MAAM,iDAAiD,CAAC;AACpF,OAAO,EAAE,cAAc,EAAE,MAAM,8CAA8C,CAAC;AAG9E,OAAO,EACH,yBAAyB,EACzB,8BAA8B,GACjC,MAAM,0DAA0D,CAAC;AAClE,OAAO,EACH,wBAAwB,EACxB,6BAA6B,GAChC,MAAM,yDAAyD,CAAC;AAGjE,OAAO,EACH,wBAAwB,EACxB,uBAAuB,GAC1B,MAAM,6CAA6C,CAAC;AAGrD,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { BaseOperatingContext } from "../../operatingcontext/BaseOperatingContext.js";
|
|
2
|
-
import { CustomAuthBrowserConfiguration, CustomAuthConfiguration } from "../configuration/CustomAuthConfiguration.js";
|
|
3
|
-
export declare class CustomAuthOperatingContext extends BaseOperatingContext {
|
|
4
|
-
private readonly customAuthOptions;
|
|
5
|
-
private static readonly MODULE_NAME;
|
|
6
|
-
private static readonly ID;
|
|
7
|
-
constructor(configuration: CustomAuthConfiguration);
|
|
8
|
-
getModuleName(): string;
|
|
9
|
-
getId(): string;
|
|
10
|
-
getCustomAuthConfig(): CustomAuthBrowserConfiguration;
|
|
11
|
-
initialize(): Promise<boolean>;
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=CustomAuthOperatingContext.d.ts.map
|
package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CustomAuthOperatingContext.d.ts","sourceRoot":"","sources":["../../../../src/custom_auth/operating_context/CustomAuthOperatingContext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AACtF,OAAO,EACH,8BAA8B,EAC9B,uBAAuB,EAE1B,MAAM,6CAA6C,CAAC;AAErD,qBAAa,0BAA2B,SAAQ,oBAAoB;IAChE,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAoB;IACtD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAc;IACjD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAwC;gBAEtD,aAAa,EAAE,uBAAuB;IAMlD,aAAa,IAAI,MAAM;IAIvB,KAAK,IAAI,MAAM;IAIf,mBAAmB,IAAI,8BAA8B;IAO/C,UAAU,IAAI,OAAO,CAAC,OAAO,CAAC;CAIvC"}
|
package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { AuthActionErrorBase } from "../../../core/auth_flow/AuthFlowErrorBase.js";
|
|
2
|
-
export declare class ResetPasswordError extends AuthActionErrorBase {
|
|
3
|
-
/**
|
|
4
|
-
* Checks if the error is due to the user not being found.
|
|
5
|
-
* @returns true if the error is due to the user not being found, false otherwise.
|
|
6
|
-
*/
|
|
7
|
-
isUserNotFound(): boolean;
|
|
8
|
-
/**
|
|
9
|
-
* Checks if the error is due to the username being invalid.
|
|
10
|
-
* @returns true if the error is due to the username being invalid, false otherwise.
|
|
11
|
-
*/
|
|
12
|
-
isInvalidUsername(): boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Checks if the error is due to the provided challenge type is not supported.
|
|
15
|
-
* @returns {boolean} True if the error is due to the provided challenge type is not supported, false otherwise.
|
|
16
|
-
*/
|
|
17
|
-
isUnsupportedChallengeType(): boolean;
|
|
18
|
-
}
|
|
19
|
-
export declare class ResetPasswordSubmitPasswordError extends AuthActionErrorBase {
|
|
20
|
-
/**
|
|
21
|
-
* Checks if the new password is invalid or incorrect.
|
|
22
|
-
* @returns {boolean} True if the new password is invalid, false otherwise.
|
|
23
|
-
*/
|
|
24
|
-
isInvalidPassword(): boolean;
|
|
25
|
-
/**
|
|
26
|
-
* Checks if the password reset failed due to reset timeout or password change failed.
|
|
27
|
-
* @returns {boolean} True if the password reset failed, false otherwise.
|
|
28
|
-
*/
|
|
29
|
-
isPasswordResetFailed(): boolean;
|
|
30
|
-
}
|
|
31
|
-
export declare class ResetPasswordSubmitCodeError extends AuthActionErrorBase {
|
|
32
|
-
/**
|
|
33
|
-
* Checks if the provided code is invalid.
|
|
34
|
-
* @returns {boolean} True if the provided code is invalid, false otherwise.
|
|
35
|
-
*/
|
|
36
|
-
isInvalidCode(): boolean;
|
|
37
|
-
}
|
|
38
|
-
export declare class ResetPasswordResendCodeError extends AuthActionErrorBase {
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=ResetPasswordError.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordError.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,8CAA8C,CAAC;AAInF,qBAAa,kBAAmB,SAAQ,mBAAmB;IACvD;;;OAGG;IACH,cAAc,IAAI,OAAO;IAIzB;;;OAGG;IACH,iBAAiB,IAAI,OAAO;IAI5B;;;OAGG;IACH,0BAA0B,IAAI,OAAO;CAGxC;AAED,qBAAa,gCAAiC,SAAQ,mBAAmB;IACrE;;;OAGG;IACH,iBAAiB,IAAI,OAAO;IAM5B;;;OAGG;IACH,qBAAqB,IAAI,OAAO;CASnC;AAED,qBAAa,4BAA6B,SAAQ,mBAAmB;IACjE;;;OAGG;IACH,aAAa,IAAI,OAAO;CAG3B;AAED,qBAAa,4BAA6B,SAAQ,mBAAmB;CAAG"}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { AuthFlowResultBase } from "../../../core/auth_flow/AuthFlowResultBase.js";
|
|
2
|
-
import { ResetPasswordResendCodeError } from "../error_type/ResetPasswordError.js";
|
|
3
|
-
import type { ResetPasswordCodeRequiredState } from "../state/ResetPasswordCodeRequiredState.js";
|
|
4
|
-
import { ResetPasswordFailedState } from "../state/ResetPasswordFailedState.js";
|
|
5
|
-
export declare class ResetPasswordResendCodeResult extends AuthFlowResultBase<ResetPasswordResendCodeResultState, ResetPasswordResendCodeError, void> {
|
|
6
|
-
/**
|
|
7
|
-
* Creates a new instance of ResetPasswordResendCodeResult.
|
|
8
|
-
* @param state The state of the result.
|
|
9
|
-
*/
|
|
10
|
-
constructor(state: ResetPasswordResendCodeResultState);
|
|
11
|
-
/**
|
|
12
|
-
* Creates a new instance of ResetPasswordResendCodeResult with an error.
|
|
13
|
-
* @param error The error that occurred.
|
|
14
|
-
* @returns {ResetPasswordResendCodeResult} A new instance of ResetPasswordResendCodeResult with the error set.
|
|
15
|
-
*/
|
|
16
|
-
static createWithError(error: unknown): ResetPasswordResendCodeResult;
|
|
17
|
-
/**
|
|
18
|
-
* Checks if the result is in a failed state.
|
|
19
|
-
*/
|
|
20
|
-
isFailed(): this is ResetPasswordResendCodeResult & {
|
|
21
|
-
state: ResetPasswordFailedState;
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* Checks if the result is in a code required state.
|
|
25
|
-
*/
|
|
26
|
-
isCodeRequired(): this is ResetPasswordResendCodeResult & {
|
|
27
|
-
state: ResetPasswordCodeRequiredState;
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* The possible states for the ResetPasswordResendCodeResult.
|
|
32
|
-
* This includes:
|
|
33
|
-
* - ResetPasswordCodeRequiredState: The reset password process requires a code.
|
|
34
|
-
* - ResetPasswordFailedState: The reset password process has failed.
|
|
35
|
-
*/
|
|
36
|
-
export type ResetPasswordResendCodeResultState = ResetPasswordCodeRequiredState | ResetPasswordFailedState;
|
|
37
|
-
//# sourceMappingURL=ResetPasswordResendCodeResult.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordResendCodeResult.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,qCAAqC,CAAC;AACnF,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,4CAA4C,CAAC;AACjG,OAAO,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAShF,qBAAa,6BAA8B,SAAQ,kBAAkB,CACjE,kCAAkC,EAClC,4BAA4B,EAC5B,IAAI,CACP;IACG;;;OAGG;gBACS,KAAK,EAAE,kCAAkC;IAIrD;;;;OAIG;IACH,MAAM,CAAC,eAAe,CAAC,KAAK,EAAE,OAAO,GAAG,6BAA6B;IAWrE;;OAEG;IACH,QAAQ,IAAI,IAAI,IAAI,6BAA6B,GAAG;QAChD,KAAK,EAAE,wBAAwB,CAAC;KACnC;IAID;;OAEG;IACH,cAAc,IAAI,IAAI,IAAI,6BAA6B,GAAG;QACtD,KAAK,EAAE,8BAA8B,CAAC;KACzC;CAGJ;AAED;;;;;GAKG;AACH,MAAM,MAAM,kCAAkC,GACxC,8BAA8B,GAC9B,wBAAwB,CAAC"}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { AuthFlowResultBase } from "../../../core/auth_flow/AuthFlowResultBase.js";
|
|
2
|
-
import { ResetPasswordError } from "../error_type/ResetPasswordError.js";
|
|
3
|
-
import { ResetPasswordCodeRequiredState } from "../state/ResetPasswordCodeRequiredState.js";
|
|
4
|
-
import { ResetPasswordFailedState } from "../state/ResetPasswordFailedState.js";
|
|
5
|
-
export declare class ResetPasswordStartResult extends AuthFlowResultBase<ResetPasswordStartResultState, ResetPasswordError, void> {
|
|
6
|
-
/**
|
|
7
|
-
* Creates a new instance of ResetPasswordStartResult.
|
|
8
|
-
* @param state The state of the result.
|
|
9
|
-
*/
|
|
10
|
-
constructor(state: ResetPasswordStartResultState);
|
|
11
|
-
/**
|
|
12
|
-
* Creates a new instance of ResetPasswordStartResult with an error.
|
|
13
|
-
* @param error The error that occurred.
|
|
14
|
-
* @returns {ResetPasswordStartResult} A new instance of ResetPasswordStartResult with the error set.
|
|
15
|
-
*/
|
|
16
|
-
static createWithError(error: unknown): ResetPasswordStartResult;
|
|
17
|
-
/**
|
|
18
|
-
* Checks if the result is in a failed state.
|
|
19
|
-
*/
|
|
20
|
-
isFailed(): this is ResetPasswordStartResult & {
|
|
21
|
-
state: ResetPasswordFailedState;
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* Checks if the result is in a code required state.
|
|
25
|
-
*/
|
|
26
|
-
isCodeRequired(): this is ResetPasswordStartResult & {
|
|
27
|
-
state: ResetPasswordCodeRequiredState;
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* The possible states for the ResetPasswordStartResult.
|
|
32
|
-
* This includes:
|
|
33
|
-
* - ResetPasswordCodeRequiredState: The reset password process requires a code.
|
|
34
|
-
* - ResetPasswordFailedState: The reset password process has failed.
|
|
35
|
-
*/
|
|
36
|
-
export type ResetPasswordStartResultState = ResetPasswordCodeRequiredState | ResetPasswordFailedState;
|
|
37
|
-
//# sourceMappingURL=ResetPasswordStartResult.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordStartResult.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACnF,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AACzE,OAAO,EAAE,8BAA8B,EAAE,MAAM,4CAA4C,CAAC;AAC5F,OAAO,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAShF,qBAAa,wBAAyB,SAAQ,kBAAkB,CAC5D,6BAA6B,EAC7B,kBAAkB,EAClB,IAAI,CACP;IACG;;;OAGG;gBACS,KAAK,EAAE,6BAA6B;IAIhD;;;;OAIG;IACH,MAAM,CAAC,eAAe,CAAC,KAAK,EAAE,OAAO,GAAG,wBAAwB;IAWhE;;OAEG;IACH,QAAQ,IAAI,IAAI,IAAI,wBAAwB,GAAG;QAC3C,KAAK,EAAE,wBAAwB,CAAC;KACnC;IAID;;OAEG;IACH,cAAc,IAAI,IAAI,IAAI,wBAAwB,GAAG;QACjD,KAAK,EAAE,8BAA8B,CAAC;KACzC;CAGJ;AAED;;;;;GAKG;AACH,MAAM,MAAM,6BAA6B,GACnC,8BAA8B,GAC9B,wBAAwB,CAAC"}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { AuthFlowResultBase } from "../../../core/auth_flow/AuthFlowResultBase.js";
|
|
2
|
-
import { ResetPasswordSubmitCodeError } from "../error_type/ResetPasswordError.js";
|
|
3
|
-
import { ResetPasswordFailedState } from "../state/ResetPasswordFailedState.js";
|
|
4
|
-
import { ResetPasswordPasswordRequiredState } from "../state/ResetPasswordPasswordRequiredState.js";
|
|
5
|
-
export declare class ResetPasswordSubmitCodeResult extends AuthFlowResultBase<ResetPasswordSubmitCodeResultState, ResetPasswordSubmitCodeError, void> {
|
|
6
|
-
/**
|
|
7
|
-
* Creates a new instance of ResetPasswordSubmitCodeResult.
|
|
8
|
-
* @param state The state of the result.
|
|
9
|
-
*/
|
|
10
|
-
constructor(state: ResetPasswordSubmitCodeResultState);
|
|
11
|
-
/**
|
|
12
|
-
* Creates a new instance of ResetPasswordSubmitCodeResult with an error.
|
|
13
|
-
* @param error The error that occurred.
|
|
14
|
-
* @returns {ResetPasswordSubmitCodeResult} A new instance of ResetPasswordSubmitCodeResult with the error set.
|
|
15
|
-
*/
|
|
16
|
-
static createWithError(error: unknown): ResetPasswordSubmitCodeResult;
|
|
17
|
-
/**
|
|
18
|
-
* Checks if the result is in a failed state.
|
|
19
|
-
*/
|
|
20
|
-
isFailed(): this is ResetPasswordSubmitCodeResult & {
|
|
21
|
-
state: ResetPasswordFailedState;
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* Checks if the result is in a password required state.
|
|
25
|
-
*/
|
|
26
|
-
isPasswordRequired(): this is ResetPasswordSubmitCodeResult & {
|
|
27
|
-
state: ResetPasswordPasswordRequiredState;
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* The possible states for the ResetPasswordSubmitCodeResult.
|
|
32
|
-
* This includes:
|
|
33
|
-
* - ResetPasswordPasswordRequiredState: The reset password process requires a password.
|
|
34
|
-
* - ResetPasswordFailedState: The reset password process has failed.
|
|
35
|
-
*/
|
|
36
|
-
export type ResetPasswordSubmitCodeResultState = ResetPasswordPasswordRequiredState | ResetPasswordFailedState;
|
|
37
|
-
//# sourceMappingURL=ResetPasswordSubmitCodeResult.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordSubmitCodeResult.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,qCAAqC,CAAC;AACnF,OAAO,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAChF,OAAO,EAAE,kCAAkC,EAAE,MAAM,gDAAgD,CAAC;AASpG,qBAAa,6BAA8B,SAAQ,kBAAkB,CACjE,kCAAkC,EAClC,4BAA4B,EAC5B,IAAI,CACP;IACG;;;OAGG;gBACS,KAAK,EAAE,kCAAkC;IAIrD;;;;OAIG;IACH,MAAM,CAAC,eAAe,CAAC,KAAK,EAAE,OAAO,GAAG,6BAA6B;IAWrE;;OAEG;IACH,QAAQ,IAAI,IAAI,IAAI,6BAA6B,GAAG;QAChD,KAAK,EAAE,wBAAwB,CAAC;KACnC;IAID;;OAEG;IACH,kBAAkB,IAAI,IAAI,IAAI,6BAA6B,GAAG;QAC1D,KAAK,EAAE,kCAAkC,CAAC;KAC7C;CAKJ;AAED;;;;;GAKG;AACH,MAAM,MAAM,kCAAkC,GACxC,kCAAkC,GAClC,wBAAwB,CAAC"}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { AuthFlowResultBase } from "../../../core/auth_flow/AuthFlowResultBase.js";
|
|
2
|
-
import { ResetPasswordSubmitPasswordError } from "../error_type/ResetPasswordError.js";
|
|
3
|
-
import { ResetPasswordCompletedState } from "../state/ResetPasswordCompletedState.js";
|
|
4
|
-
import { ResetPasswordFailedState } from "../state/ResetPasswordFailedState.js";
|
|
5
|
-
export declare class ResetPasswordSubmitPasswordResult extends AuthFlowResultBase<ResetPasswordSubmitPasswordResultState, ResetPasswordSubmitPasswordError, void> {
|
|
6
|
-
/**
|
|
7
|
-
* Creates a new instance of ResetPasswordSubmitPasswordResult.
|
|
8
|
-
* @param state The state of the result.
|
|
9
|
-
*/
|
|
10
|
-
constructor(state: ResetPasswordSubmitPasswordResultState);
|
|
11
|
-
static createWithError(error: unknown): ResetPasswordSubmitPasswordResult;
|
|
12
|
-
/**
|
|
13
|
-
* Checks if the result is in a failed state.
|
|
14
|
-
*/
|
|
15
|
-
isFailed(): this is ResetPasswordSubmitPasswordResult & {
|
|
16
|
-
state: ResetPasswordFailedState;
|
|
17
|
-
};
|
|
18
|
-
/**
|
|
19
|
-
* Checks if the result is in a completed state.
|
|
20
|
-
*/
|
|
21
|
-
isCompleted(): this is ResetPasswordSubmitPasswordResult & {
|
|
22
|
-
state: ResetPasswordCompletedState;
|
|
23
|
-
};
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* The possible states for the ResetPasswordSubmitPasswordResult.
|
|
27
|
-
* This includes:
|
|
28
|
-
* - ResetPasswordCompletedState: The reset password process has completed successfully.
|
|
29
|
-
* - ResetPasswordFailedState: The reset password process has failed.
|
|
30
|
-
*/
|
|
31
|
-
export type ResetPasswordSubmitPasswordResultState = ResetPasswordCompletedState | ResetPasswordFailedState;
|
|
32
|
-
//# sourceMappingURL=ResetPasswordSubmitPasswordResult.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordSubmitPasswordResult.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACnF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,2BAA2B,EAAE,MAAM,yCAAyC,CAAC;AACtF,OAAO,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAShF,qBAAa,iCAAkC,SAAQ,kBAAkB,CACrE,sCAAsC,EACtC,gCAAgC,EAChC,IAAI,CACP;IACG;;;OAGG;gBACS,KAAK,EAAE,sCAAsC;IAIzD,MAAM,CAAC,eAAe,CAAC,KAAK,EAAE,OAAO,GAAG,iCAAiC;IAWzE;;OAEG;IACH,QAAQ,IAAI,IAAI,IAAI,iCAAiC,GAAG;QACpD,KAAK,EAAE,wBAAwB,CAAC;KACnC;IAID;;OAEG;IACH,WAAW,IAAI,IAAI,IAAI,iCAAiC,GAAG;QACvD,KAAK,EAAE,2BAA2B,CAAC;KACtC;CAGJ;AAED;;;;;GAKG;AACH,MAAM,MAAM,sCAAsC,GAC5C,2BAA2B,GAC3B,wBAAwB,CAAC"}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { ResetPasswordResendCodeResult } from "../result/ResetPasswordResendCodeResult.js";
|
|
2
|
-
import { ResetPasswordSubmitCodeResult } from "../result/ResetPasswordSubmitCodeResult.js";
|
|
3
|
-
import { ResetPasswordCodeRequiredStateParameters } from "./ResetPasswordStateParameters.js";
|
|
4
|
-
import { ResetPasswordState } from "./ResetPasswordState.js";
|
|
5
|
-
export declare class ResetPasswordCodeRequiredState extends ResetPasswordState<ResetPasswordCodeRequiredStateParameters> {
|
|
6
|
-
/**
|
|
7
|
-
* The type of the state.
|
|
8
|
-
*/
|
|
9
|
-
stateType: string;
|
|
10
|
-
/**
|
|
11
|
-
* Submits a one-time passcode that the customer user received in their email in order to continue password reset flow.
|
|
12
|
-
* @param {string} code - The code to submit.
|
|
13
|
-
* @returns {Promise<ResetPasswordSubmitCodeResult>} The result of the operation.
|
|
14
|
-
*/
|
|
15
|
-
submitCode(code: string): Promise<ResetPasswordSubmitCodeResult>;
|
|
16
|
-
/**
|
|
17
|
-
* Resends another one-time passcode if the previous one hasn't been verified
|
|
18
|
-
* @returns {Promise<ResetPasswordResendCodeResult>} The result of the operation.
|
|
19
|
-
*/
|
|
20
|
-
resendCode(): Promise<ResetPasswordResendCodeResult>;
|
|
21
|
-
/**
|
|
22
|
-
* Gets the sent code length.
|
|
23
|
-
* @returns {number} The length of the code.
|
|
24
|
-
*/
|
|
25
|
-
getCodeLength(): number;
|
|
26
|
-
}
|
|
27
|
-
//# sourceMappingURL=ResetPasswordCodeRequiredState.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordCodeRequiredState.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,6BAA6B,EAAE,MAAM,4CAA4C,CAAC;AAC3F,OAAO,EAAE,6BAA6B,EAAE,MAAM,4CAA4C,CAAC;AAC3F,OAAO,EAAE,wCAAwC,EAAE,MAAM,mCAAmC,CAAC;AAC7F,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAO7D,qBAAa,8BAA+B,SAAQ,kBAAkB,CAAC,wCAAwC,CAAC;IAC5G;;OAEG;IACH,SAAS,SAA2C;IAEpD;;;;OAIG;IACG,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,6BAA6B,CAAC;IAoDtE;;;OAGG;IACG,UAAU,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAkD1D;;;OAGG;IACH,aAAa,IAAI,MAAM;CAG1B"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { SignInContinuationState } from "../../../sign_in/auth_flow/state/SignInContinuationState.js";
|
|
2
|
-
/**
|
|
3
|
-
* Represents the state that indicates the successful completion of a password reset operation.
|
|
4
|
-
*/
|
|
5
|
-
export declare class ResetPasswordCompletedState extends SignInContinuationState {
|
|
6
|
-
/**
|
|
7
|
-
* The type of the state.
|
|
8
|
-
*/
|
|
9
|
-
stateType: string;
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=ResetPasswordCompletedState.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordCompletedState.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,uBAAuB,EAAE,MAAM,6DAA6D,CAAC;AAGtG;;GAEG;AACH,qBAAa,2BAA4B,SAAQ,uBAAuB;IACpE;;OAEG;IACH,SAAS,SAAuC;CACnD"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { AuthFlowStateBase } from "../../../core/auth_flow/AuthFlowState.js";
|
|
2
|
-
/**
|
|
3
|
-
* State of a reset password operation that has failed.
|
|
4
|
-
*/
|
|
5
|
-
export declare class ResetPasswordFailedState extends AuthFlowStateBase {
|
|
6
|
-
/**
|
|
7
|
-
* The type of the state.
|
|
8
|
-
*/
|
|
9
|
-
stateType: string;
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=ResetPasswordFailedState.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordFailedState.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAC;AAG7E;;GAEG;AACH,qBAAa,wBAAyB,SAAQ,iBAAiB;IAC3D;;OAEG;IACH,SAAS,SAAoC;CAChD"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ResetPasswordSubmitPasswordResult } from "../result/ResetPasswordSubmitPasswordResult.js";
|
|
2
|
-
import { ResetPasswordState } from "./ResetPasswordState.js";
|
|
3
|
-
import { ResetPasswordPasswordRequiredStateParameters } from "./ResetPasswordStateParameters.js";
|
|
4
|
-
export declare class ResetPasswordPasswordRequiredState extends ResetPasswordState<ResetPasswordPasswordRequiredStateParameters> {
|
|
5
|
-
/**
|
|
6
|
-
* The type of the state.
|
|
7
|
-
*/
|
|
8
|
-
stateType: string;
|
|
9
|
-
/**
|
|
10
|
-
* Submits a new password for reset password flow.
|
|
11
|
-
* @param {string} password - The password to submit.
|
|
12
|
-
* @returns {Promise<ResetPasswordSubmitPasswordResult>} The result of the operation.
|
|
13
|
-
*/
|
|
14
|
-
submitNewPassword(password: string): Promise<ResetPasswordSubmitPasswordResult>;
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=ResetPasswordPasswordRequiredState.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordPasswordRequiredState.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,iCAAiC,EAAE,MAAM,gDAAgD,CAAC;AACnG,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,4CAA4C,EAAE,MAAM,mCAAmC,CAAC;AAQjG,qBAAa,kCAAmC,SAAQ,kBAAkB,CAAC,4CAA4C,CAAC;IACpH;;OAEG;IACH,SAAS,SAA+C;IAExD;;;;OAIG;IACG,iBAAiB,CACnB,QAAQ,EAAE,MAAM,GACjB,OAAO,CAAC,iCAAiC,CAAC;CAoDhD"}
|
package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { AuthFlowActionRequiredStateBase } from "../../../core/auth_flow/AuthFlowState.js";
|
|
2
|
-
import { ResetPasswordStateParameters } from "./ResetPasswordStateParameters.js";
|
|
3
|
-
export declare abstract class ResetPasswordState<TParameters extends ResetPasswordStateParameters> extends AuthFlowActionRequiredStateBase<TParameters> {
|
|
4
|
-
constructor(stateParameters: TParameters);
|
|
5
|
-
}
|
|
6
|
-
//# sourceMappingURL=ResetPasswordState.d.ts.map
|
package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordState.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/state/ResetPasswordState.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,+BAA+B,EAAE,MAAM,0CAA0C,CAAC;AAE3F,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAKjF,8BAAsB,kBAAkB,CACpC,WAAW,SAAS,4BAA4B,CAClD,SAAQ,+BAA+B,CAAC,WAAW,CAAC;gBAKtC,eAAe,EAAE,WAAW;CAS3C"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ResetPasswordClient } from "../../interaction_client/ResetPasswordClient.js";
|
|
2
|
-
import { SignInClient } from "../../../sign_in/interaction_client/SignInClient.js";
|
|
3
|
-
import { CustomAuthSilentCacheClient } from "../../../get_account/interaction_client/CustomAuthSilentCacheClient.js";
|
|
4
|
-
import { AuthFlowActionRequiredStateParameters } from "../../../core/auth_flow/AuthFlowState.js";
|
|
5
|
-
import { JitClient } from "../../../core/interaction_client/jit/JitClient.js";
|
|
6
|
-
import { MfaClient } from "../../../core/interaction_client/mfa/MfaClient.js";
|
|
7
|
-
export interface ResetPasswordStateParameters extends AuthFlowActionRequiredStateParameters {
|
|
8
|
-
username: string;
|
|
9
|
-
resetPasswordClient: ResetPasswordClient;
|
|
10
|
-
signInClient: SignInClient;
|
|
11
|
-
cacheClient: CustomAuthSilentCacheClient;
|
|
12
|
-
jitClient: JitClient;
|
|
13
|
-
mfaClient: MfaClient;
|
|
14
|
-
}
|
|
15
|
-
export type ResetPasswordPasswordRequiredStateParameters = ResetPasswordStateParameters;
|
|
16
|
-
export interface ResetPasswordCodeRequiredStateParameters extends ResetPasswordStateParameters {
|
|
17
|
-
codeLength: number;
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=ResetPasswordStateParameters.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordStateParameters.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,iDAAiD,CAAC;AACtF,OAAO,EAAE,YAAY,EAAE,MAAM,qDAAqD,CAAC;AACnF,OAAO,EAAE,2BAA2B,EAAE,MAAM,wEAAwE,CAAC;AACrH,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,SAAS,EAAE,MAAM,mDAAmD,CAAC;AAC9E,OAAO,EAAE,SAAS,EAAE,MAAM,mDAAmD,CAAC;AAE9E,MAAM,WAAW,4BACb,SAAQ,qCAAqC;IAC7C,QAAQ,EAAE,MAAM,CAAC;IACjB,mBAAmB,EAAE,mBAAmB,CAAC;IACzC,YAAY,EAAE,YAAY,CAAC;IAC3B,WAAW,EAAE,2BAA2B,CAAC;IACzC,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,SAAS,CAAC;CACxB;AAED,MAAM,MAAM,4CAA4C,GACpD,4BAA4B,CAAC;AAEjC,MAAM,WAAW,wCACb,SAAQ,4BAA4B;IACpC,UAAU,EAAE,MAAM,CAAC;CACtB"}
|
package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { CustomAuthInteractionClientBase } from "../../core/interaction_client/CustomAuthInteractionClientBase.js";
|
|
2
|
-
import { ResetPasswordResendCodeParams, ResetPasswordStartParams, ResetPasswordSubmitCodeParams, ResetPasswordSubmitNewPasswordParams } from "./parameter/ResetPasswordParams.js";
|
|
3
|
-
import { ResetPasswordCodeRequiredResult, ResetPasswordCompletedResult, ResetPasswordPasswordRequiredResult } from "./result/ResetPasswordActionResult.js";
|
|
4
|
-
export declare class ResetPasswordClient extends CustomAuthInteractionClientBase {
|
|
5
|
-
/**
|
|
6
|
-
* Starts the password reset flow.
|
|
7
|
-
* @param parameters The parameters for starting the password reset flow.
|
|
8
|
-
* @returns The result of password reset start operation.
|
|
9
|
-
*/
|
|
10
|
-
start(parameters: ResetPasswordStartParams): Promise<ResetPasswordCodeRequiredResult>;
|
|
11
|
-
/**
|
|
12
|
-
* Submits the code for password reset.
|
|
13
|
-
* @param parameters The parameters for submitting the code for password reset.
|
|
14
|
-
* @returns The result of submitting the code for password reset.
|
|
15
|
-
*/
|
|
16
|
-
submitCode(parameters: ResetPasswordSubmitCodeParams): Promise<ResetPasswordPasswordRequiredResult>;
|
|
17
|
-
/**
|
|
18
|
-
* Resends the another one-time passcode if the previous one hasn't been verified
|
|
19
|
-
* @param parameters The parameters for resending the code for password reset.
|
|
20
|
-
* @returns The result of resending the code for password reset.
|
|
21
|
-
*/
|
|
22
|
-
resendCode(parameters: ResetPasswordResendCodeParams): Promise<ResetPasswordCodeRequiredResult>;
|
|
23
|
-
/**
|
|
24
|
-
* Submits the new password for password reset.
|
|
25
|
-
* @param parameters The parameters for submitting the new password for password reset.
|
|
26
|
-
* @returns The result of submitting the new password for password reset.
|
|
27
|
-
*/
|
|
28
|
-
submitNewPassword(parameters: ResetPasswordSubmitNewPasswordParams): Promise<ResetPasswordCompletedResult>;
|
|
29
|
-
private performChallengeRequest;
|
|
30
|
-
private performPollCompletionRequest;
|
|
31
|
-
private delay;
|
|
32
|
-
}
|
|
33
|
-
//# sourceMappingURL=ResetPasswordClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordClient.d.ts","sourceRoot":"","sources":["../../../../../src/custom_auth/reset_password/interaction_client/ResetPasswordClient.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,+BAA+B,EAAE,MAAM,kEAAkE,CAAC;AAgBnH,OAAO,EACH,6BAA6B,EAC7B,wBAAwB,EACxB,6BAA6B,EAC7B,oCAAoC,EACvC,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EACH,+BAA+B,EAC/B,4BAA4B,EAC5B,mCAAmC,EACtC,MAAM,uCAAuC,CAAC;AAI/C,qBAAa,mBAAoB,SAAQ,+BAA+B;IACpE;;;;OAIG;IACG,KAAK,CACP,UAAU,EAAE,wBAAwB,GACrC,OAAO,CAAC,+BAA+B,CAAC;IAyC3C;;;;OAIG;IACG,UAAU,CACZ,UAAU,EAAE,6BAA6B,GAC1C,OAAO,CAAC,mCAAmC,CAAC;IA6C/C;;;;OAIG;IACG,UAAU,CACZ,UAAU,EAAE,6BAA6B,GAC1C,OAAO,CAAC,+BAA+B,CAAC;IAqB3C;;;;OAIG;IACG,iBAAiB,CACnB,UAAU,EAAE,oCAAoC,GACjD,OAAO,CAAC,4BAA4B,CAAC;YAgD1B,uBAAuB;YAiDvB,4BAA4B;YA+D5B,KAAK;CAGtB"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export interface ResetPasswordParamsBase {
|
|
2
|
-
clientId: string;
|
|
3
|
-
challengeType: Array<string>;
|
|
4
|
-
username: string;
|
|
5
|
-
correlationId: string;
|
|
6
|
-
}
|
|
7
|
-
export type ResetPasswordStartParams = ResetPasswordParamsBase;
|
|
8
|
-
export interface ResetPasswordResendCodeParams extends ResetPasswordParamsBase {
|
|
9
|
-
continuationToken: string;
|
|
10
|
-
}
|
|
11
|
-
export interface ResetPasswordSubmitCodeParams extends ResetPasswordParamsBase {
|
|
12
|
-
continuationToken: string;
|
|
13
|
-
code: string;
|
|
14
|
-
}
|
|
15
|
-
export interface ResetPasswordSubmitNewPasswordParams extends ResetPasswordParamsBase {
|
|
16
|
-
continuationToken: string;
|
|
17
|
-
newPassword: string;
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=ResetPasswordParams.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordParams.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,uBAAuB;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,MAAM,wBAAwB,GAAG,uBAAuB,CAAC;AAE/D,MAAM,WAAW,6BAA8B,SAAQ,uBAAuB;IAC1E,iBAAiB,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,WAAW,6BAA8B,SAAQ,uBAAuB;IAC1E,iBAAiB,EAAE,MAAM,CAAC;IAC1B,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,oCACb,SAAQ,uBAAuB;IAC/B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,WAAW,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
interface ResetPasswordActionResult {
|
|
2
|
-
correlationId: string;
|
|
3
|
-
continuationToken: string;
|
|
4
|
-
}
|
|
5
|
-
export interface ResetPasswordCodeRequiredResult extends ResetPasswordActionResult {
|
|
6
|
-
challengeChannel: string;
|
|
7
|
-
challengeTargetLabel: string;
|
|
8
|
-
codeLength: number;
|
|
9
|
-
bindingMethod: string;
|
|
10
|
-
}
|
|
11
|
-
export type ResetPasswordPasswordRequiredResult = ResetPasswordActionResult;
|
|
12
|
-
export type ResetPasswordCompletedResult = ResetPasswordActionResult;
|
|
13
|
-
export {};
|
|
14
|
-
//# sourceMappingURL=ResetPasswordActionResult.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ResetPasswordActionResult.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.ts"],"names":[],"mappings":"AAKA,UAAU,yBAAyB;IAC/B,aAAa,EAAE,MAAM,CAAC;IACtB,iBAAiB,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,WAAW,+BACb,SAAQ,yBAAyB;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,MAAM,mCAAmC,GAAG,yBAAyB,CAAC;AAE5E,MAAM,MAAM,4BAA4B,GAAG,yBAAyB,CAAC"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export declare const SignInScenario: {
|
|
2
|
-
readonly SignInAfterSignUp: "SignInAfterSignUp";
|
|
3
|
-
readonly SignInAfterPasswordReset: "SignInAfterPasswordReset";
|
|
4
|
-
};
|
|
5
|
-
export type SignInScenarioType = (typeof SignInScenario)[keyof typeof SignInScenario];
|
|
6
|
-
//# sourceMappingURL=SignInScenario.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SignInScenario.d.ts","sourceRoot":"","sources":["../../../../../src/custom_auth/sign_in/auth_flow/SignInScenario.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,cAAc;;;CAGjB,CAAC;AAEX,MAAM,MAAM,kBAAkB,GAC1B,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC"}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { AuthActionErrorBase } from "../../../core/auth_flow/AuthFlowErrorBase.js";
|
|
2
|
-
export declare class SignInError extends AuthActionErrorBase {
|
|
3
|
-
/**
|
|
4
|
-
* Checks if the error is due to the user not being found.
|
|
5
|
-
* @returns true if the error is due to the user not being found, false otherwise.
|
|
6
|
-
*/
|
|
7
|
-
isUserNotFound(): boolean;
|
|
8
|
-
/**
|
|
9
|
-
* Checks if the error is due to the username being invalid.
|
|
10
|
-
* @returns true if the error is due to the username being invalid, false otherwise.
|
|
11
|
-
*/
|
|
12
|
-
isInvalidUsername(): boolean;
|
|
13
|
-
/**
|
|
14
|
-
* Checks if the error is due to the provided password being incorrect.
|
|
15
|
-
* @returns true if the error is due to the provided password being incorrect, false otherwise.
|
|
16
|
-
*/
|
|
17
|
-
isPasswordIncorrect(): boolean;
|
|
18
|
-
/**
|
|
19
|
-
* Checks if the error is due to password reset being required.
|
|
20
|
-
* @returns true if the error is due to password reset being required, false otherwise.
|
|
21
|
-
*/
|
|
22
|
-
isPasswordResetRequired(): boolean;
|
|
23
|
-
/**
|
|
24
|
-
* Checks if the error is due to the provided challenge type is not supported.
|
|
25
|
-
* @returns {boolean} True if the error is due to the provided challenge type is not supported, false otherwise.
|
|
26
|
-
*/
|
|
27
|
-
isUnsupportedChallengeType(): boolean;
|
|
28
|
-
}
|
|
29
|
-
export declare class SignInSubmitPasswordError extends AuthActionErrorBase {
|
|
30
|
-
/**
|
|
31
|
-
* Checks if the password submitted during sign-in is incorrect.
|
|
32
|
-
* @returns {boolean} True if the error is due to the password being invalid, false otherwise.
|
|
33
|
-
*/
|
|
34
|
-
isInvalidPassword(): boolean;
|
|
35
|
-
}
|
|
36
|
-
export declare class SignInSubmitCodeError extends AuthActionErrorBase {
|
|
37
|
-
/**
|
|
38
|
-
* Checks if the code submitted during sign-in is invalid.
|
|
39
|
-
* @returns {boolean} True if the error is due to the code being invalid, false otherwise.
|
|
40
|
-
*/
|
|
41
|
-
isInvalidCode(): boolean;
|
|
42
|
-
}
|
|
43
|
-
export declare class SignInResendCodeError extends AuthActionErrorBase {
|
|
44
|
-
}
|
|
45
|
-
//# sourceMappingURL=SignInError.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SignInError.d.ts","sourceRoot":"","sources":["../../../../../../src/custom_auth/sign_in/auth_flow/error_type/SignInError.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,8CAA8C,CAAC;AAGnF,qBAAa,WAAY,SAAQ,mBAAmB;IAChD;;;OAGG;IACH,cAAc,IAAI,OAAO;IAIzB;;;OAGG;IACH,iBAAiB,IAAI,OAAO;IAI5B;;;OAGG;IACH,mBAAmB,IAAI,OAAO;IAI9B;;;OAGG;IACH,uBAAuB,IAAI,OAAO;IAIlC;;;OAGG;IACH,0BAA0B,IAAI,OAAO;CAGxC;AAED,qBAAa,yBAA0B,SAAQ,mBAAmB;IAC9D;;;OAGG;IACH,iBAAiB,IAAI,OAAO;CAG/B;AAED,qBAAa,qBAAsB,SAAQ,mBAAmB;IAC1D;;;OAGG;IACH,aAAa,IAAI,OAAO;CAG3B;AAED,qBAAa,qBAAsB,SAAQ,mBAAmB;CAAG"}
|