@azure/msal-browser 5.8.0 → 5.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/IPublicClientApplication.mjs +1 -1
- package/dist/app/PublicClientApplication.mjs +1 -1
- package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
- package/dist/cache/AccountManager.mjs +1 -1
- package/dist/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/cache/BrowserCacheManager.mjs +4 -17
- package/dist/cache/BrowserCacheManager.mjs.map +1 -1
- package/dist/cache/CacheHelpers.mjs +1 -1
- package/dist/cache/CacheKeys.mjs +1 -1
- package/dist/cache/CookieStorage.mjs +22 -9
- package/dist/cache/CookieStorage.mjs.map +1 -1
- package/dist/cache/DatabaseStorage.mjs +1 -1
- package/dist/cache/EncryptedData.mjs +1 -1
- package/dist/cache/LocalStorage.mjs +1 -1
- package/dist/cache/MemoryStorage.mjs +1 -1
- package/dist/cache/SessionStorage.mjs +1 -1
- package/dist/cache/TokenCache.mjs +1 -1
- package/dist/config/Configuration.mjs +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.mjs +1 -1
- package/dist/crypto/BrowserCrypto.mjs +1 -1
- package/dist/crypto/CryptoOps.mjs +1 -1
- package/dist/crypto/PkceGenerator.mjs +1 -1
- package/dist/crypto/SignedHttpRequest.mjs +1 -1
- package/dist/custom_auth/CustomAuthConstants.mjs +50 -0
- package/dist/custom_auth/CustomAuthConstants.mjs.map +1 -0
- package/dist/custom_auth/CustomAuthPublicClientApplication.mjs +97 -0
- package/dist/custom_auth/CustomAuthPublicClientApplication.mjs.map +1 -0
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs +332 -0
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs.map +1 -0
- package/dist/custom_auth/core/CustomAuthAuthority.mjs +82 -0
- package/dist/custom_auth/core/CustomAuthAuthority.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +134 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +59 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +42 -0
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +56 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +46 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +181 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +42 -0
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +46 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +140 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs.map +1 -0
- package/dist/custom_auth/core/error/CustomAuthApiError.mjs +35 -0
- package/dist/custom_auth/core/error/CustomAuthApiError.mjs.map +1 -0
- package/dist/custom_auth/core/error/CustomAuthError.mjs +22 -0
- package/dist/custom_auth/core/error/CustomAuthError.mjs.map +1 -0
- package/dist/custom_auth/core/error/HttpError.mjs +17 -0
- package/dist/custom_auth/core/error/HttpError.mjs.map +1 -0
- package/dist/custom_auth/core/error/HttpErrorCodes.mjs +11 -0
- package/dist/custom_auth/core/error/HttpErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidArgumentError.mjs +18 -0
- package/dist/custom_auth/core/error/InvalidArgumentError.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidConfigurationError.mjs +17 -0
- package/dist/custom_auth/core/error/InvalidConfigurationError.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +12 -0
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/MethodNotImplementedError.mjs +18 -0
- package/dist/custom_auth/core/error/MethodNotImplementedError.mjs.map +1 -0
- package/dist/custom_auth/core/error/MsalCustomAuthError.mjs +17 -0
- package/dist/custom_auth/core/error/MsalCustomAuthError.mjs.map +1 -0
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs +17 -0
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +1 -0
- package/dist/custom_auth/core/error/ParsedUrlError.mjs +17 -0
- package/dist/custom_auth/core/error/ParsedUrlError.mjs.map +1 -0
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs +10 -0
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/UnexpectedError.mjs +30 -0
- package/dist/custom_auth/core/error/UnexpectedError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs +17 -0
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UserAccountAttributeError.mjs +18 -0
- package/dist/custom_auth/core/error/UserAccountAttributeError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs +17 -0
- package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +69 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +25 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs +110 -0
- package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +24 -0
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs +88 -0
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +24 -0
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +87 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +22 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +24 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +51 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +94 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +134 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +78 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +30 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +20 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +54 -0
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs +15 -0
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +1 -0
- package/dist/custom_auth/core/telemetry/PublicApiId.mjs +40 -0
- package/dist/custom_auth/core/telemetry/PublicApiId.mjs.map +1 -0
- package/dist/custom_auth/core/utils/ArgumentValidator.mjs +37 -0
- package/dist/custom_auth/core/utils/ArgumentValidator.mjs.map +1 -0
- package/dist/custom_auth/core/utils/UrlUtils.mjs +34 -0
- package/dist/custom_auth/core/utils/UrlUtils.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +126 -0
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +47 -0
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +49 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +48 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +48 -0
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +1 -0
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +122 -0
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +1 -0
- package/dist/custom_auth/index.mjs +69 -0
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs +35 -0
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +67 -0
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +43 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +106 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +24 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +24 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +64 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +25 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +157 -0
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs +13 -0
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +69 -0
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +49 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +75 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +56 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +51 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +107 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +25 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +60 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +24 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +64 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs +93 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs +248 -0
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +1 -0
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +44 -0
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +91 -0
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +48 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +60 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +48 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +60 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +54 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +84 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +155 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +24 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +24 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +89 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +26 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs +247 -0
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +1 -0
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +37 -0
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +1 -0
- package/dist/encode/Base64Decode.mjs +1 -1
- package/dist/encode/Base64Encode.mjs +1 -1
- package/dist/error/BrowserAuthError.mjs +1 -1
- package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
- package/dist/error/NativeAuthError.mjs +1 -1
- package/dist/error/NativeAuthErrorCodes.mjs +1 -1
- package/dist/error/NestedAppAuthError.mjs +1 -1
- package/dist/event/EventHandler.mjs +1 -1
- package/dist/event/EventMessage.mjs +1 -1
- package/dist/event/EventType.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/interaction_client/BaseInteractionClient.mjs +2 -2
- package/dist/interaction_client/BaseInteractionClient.mjs.map +1 -1
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
- package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
- package/dist/interaction_client/PopupClient.mjs +1 -1
- package/dist/interaction_client/RedirectClient.mjs +1 -1
- package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
- package/dist/interaction_client/SilentCacheClient.mjs +1 -1
- package/dist/interaction_client/SilentIframeClient.mjs +1 -1
- package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
- package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
- package/dist/interaction_handler/InteractionHandler.mjs +1 -1
- package/dist/interaction_handler/SilentHandler.mjs +1 -1
- package/dist/log-strings-mapping.json +613 -9
- package/dist/naa/BridgeError.mjs +1 -1
- package/dist/naa/BridgeProxy.mjs +1 -1
- package/dist/naa/BridgeStatusCode.mjs +1 -1
- package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
- package/dist/navigation/NavigationClient.mjs +1 -1
- package/dist/network/FetchClient.mjs +1 -1
- package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
- package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
- package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/protocol/Authorize.mjs +1 -1
- package/dist/redirect_bridge/index.mjs +131 -0
- package/dist/redirect_bridge/index.mjs.map +1 -0
- package/dist/request/RequestHelpers.mjs +1 -1
- package/dist/response/ResponseHandler.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
- package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
- package/dist/utils/BrowserConstants.mjs +1 -1
- package/dist/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/utils/BrowserUtils.mjs +1 -1
- package/dist/utils/Helpers.mjs +1 -1
- package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/log-strings-mapping.json +5 -9
- package/lib/custom-auth-path/msal-custom-auth.cjs +95 -94
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/msal-custom-auth.js +22247 -0
- package/lib/custom-auth-path/msal-custom-auth.js.map +1 -0
- package/lib/log-strings-mapping.json +5 -9
- package/lib/msal-browser.cjs +96 -94
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +96 -94
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +2 -2
- package/lib/redirect-bridge/msal-redirect-bridge.cjs +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.cjs.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.js +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.min.js +1 -1
- package/package.json +15 -13
- package/src/cache/BrowserCacheManager.ts +5 -23
- package/src/cache/CookieStorage.ts +22 -9
- package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +2 -3
- package/src/packageMetadata.ts +1 -1
- package/types/cache/BrowserCacheManager.d.ts.map +1 -0
- package/types/cache/CookieStorage.d.ts.map +1 -0
- package/types/custom_auth/CustomAuthConstants.d.ts +35 -0
- package/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -0
- package/types/custom_auth/index.d.cts +1 -0
- package/types/index.d.cts +1 -0
- package/types/packageMetadata.d.ts +3 -0
- package/types/packageMetadata.d.ts.map +1 -0
- package/types/redirect_bridge/index.d.cts +1 -0
- package/dist/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/cache/CookieStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/app/IPublicClientApplication.d.ts +0 -48
- package/dist/custom-auth-path/app/IPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/app/PublicClientApplication.d.ts +0 -247
- package/dist/custom-auth-path/app/PublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/app/PublicClientApplication.mjs +0 -275
- package/dist/custom-auth-path/app/PublicClientApplication.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +0 -16
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +0 -156
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +0 -272
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +0 -91
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AccountManager.d.ts +0 -24
- package/dist/custom-auth-path/cache/AccountManager.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AccountManager.mjs +0 -50
- package/dist/custom-auth-path/cache/AccountManager.mjs.map +0 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts +0 -58
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +0 -148
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts +0 -364
- package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +0 -1385
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CacheHelpers.d.ts +0 -16
- package/dist/custom-auth-path/cache/CacheHelpers.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CacheHelpers.mjs +0 -46
- package/dist/custom-auth-path/cache/CacheHelpers.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CacheKeys.d.ts +0 -15
- package/dist/custom-auth-path/cache/CacheKeys.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CacheKeys.mjs +0 -33
- package/dist/custom-auth-path/cache/CacheKeys.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CookieStorage.d.ts +0 -23
- package/dist/custom-auth-path/cache/CookieStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CookieStorage.mjs +0 -82
- package/dist/custom-auth-path/cache/CookieStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.d.ts +0 -57
- package/dist/custom-auth-path/cache/DatabaseStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.mjs +0 -209
- package/dist/custom-auth-path/cache/DatabaseStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/EncryptedData.d.ts +0 -8
- package/dist/custom-auth-path/cache/EncryptedData.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/EncryptedData.mjs +0 -14
- package/dist/custom-auth-path/cache/EncryptedData.mjs.map +0 -1
- package/dist/custom-auth-path/cache/IAsyncStorage.d.ts +0 -33
- package/dist/custom-auth-path/cache/IAsyncStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/IWindowStorage.d.ts +0 -42
- package/dist/custom-auth-path/cache/IWindowStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/LocalStorage.d.ts +0 -51
- package/dist/custom-auth-path/cache/LocalStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/LocalStorage.mjs +0 -310
- package/dist/custom-auth-path/cache/LocalStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/MemoryStorage.d.ts +0 -16
- package/dist/custom-auth-path/cache/MemoryStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/MemoryStorage.mjs +0 -49
- package/dist/custom-auth-path/cache/MemoryStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/SessionStorage.d.ts +0 -14
- package/dist/custom-auth-path/cache/SessionStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/SessionStorage.mjs +0 -47
- package/dist/custom-auth-path/cache/SessionStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/TokenCache.d.ts +0 -20
- package/dist/custom-auth-path/cache/TokenCache.d.ts.map +0 -1
- package/dist/custom-auth-path/config/Configuration.d.ts +0 -198
- package/dist/custom-auth-path/config/Configuration.d.ts.map +0 -1
- package/dist/custom-auth-path/config/Configuration.mjs +0 -135
- package/dist/custom-auth-path/config/Configuration.mjs.map +0 -1
- package/dist/custom-auth-path/controllers/IController.d.ts +0 -3
- package/dist/custom-auth-path/controllers/IController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts +0 -159
- package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/StandardController.d.ts +0 -398
- package/dist/custom-auth-path/controllers/StandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/StandardController.mjs +0 -1519
- package/dist/custom-auth-path/controllers/StandardController.mjs.map +0 -1
- package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts +0 -96
- package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +0 -306
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/CryptoOps.d.ts +0 -77
- package/dist/custom-auth-path/crypto/CryptoOps.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/CryptoOps.mjs +0 -194
- package/dist/custom-auth-path/crypto/CryptoOps.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.d.ts +0 -9
- package/dist/custom-auth-path/crypto/PkceGenerator.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs +0 -64
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts +0 -32
- package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +0 -50
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +0 -97
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +0 -332
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +0 -82
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +0 -134
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +0 -59
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +0 -42
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +0 -56
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +0 -46
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +0 -181
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +0 -42
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +0 -46
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +0 -140
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +0 -35
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +0 -22
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +0 -11
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +0 -12
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +0 -10
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +0 -30
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +0 -110
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +0 -88
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +0 -87
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +0 -22
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +0 -51
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +0 -94
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +0 -135
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +0 -78
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +0 -30
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +0 -20
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +0 -54
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +0 -15
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +0 -40
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +0 -37
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +0 -34
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +0 -126
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +0 -47
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +0 -49
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +0 -122
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/index.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/index.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +0 -35
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +0 -67
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +0 -43
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +0 -106
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +0 -64
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +0 -157
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +0 -13
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +0 -49
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +0 -75
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +0 -56
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +0 -51
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +0 -107
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +0 -64
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +0 -93
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +0 -248
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +0 -44
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +0 -91
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +0 -54
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +0 -84
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +0 -155
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +0 -89
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +0 -26
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +0 -247
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +0 -37
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/encode/Base64Decode.d.ts.map +0 -1
- package/dist/custom-auth-path/encode/Base64Decode.mjs +0 -44
- package/dist/custom-auth-path/encode/Base64Decode.mjs.map +0 -1
- package/dist/custom-auth-path/encode/Base64Encode.d.ts.map +0 -1
- package/dist/custom-auth-path/encode/Base64Encode.mjs +0 -48
- package/dist/custom-auth-path/encode/Base64Encode.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthError.mjs +0 -27
- package/dist/custom-auth-path/error/BrowserAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +0 -56
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +0 -25
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +0 -11
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthError.mjs +0 -70
- package/dist/custom-auth-path/error/NativeAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +0 -12
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/NestedAppAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventHandler.mjs +0 -110
- package/dist/custom-auth-path/event/EventHandler.mjs.map +0 -1
- package/dist/custom-auth-path/event/EventMessage.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventType.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventType.mjs +0 -31
- package/dist/custom-auth-path/event/EventType.mjs.map +0 -1
- package/dist/custom-auth-path/index.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +0 -143
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +0 -17
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +0 -645
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/PopupClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/PopupClient.mjs +0 -438
- package/dist/custom-auth-path/interaction_client/PopupClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +0 -452
- package/dist/custom-auth-path/interaction_client/RedirectClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +0 -83
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +0 -59
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +0 -224
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +0 -76
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +0 -215
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +0 -96
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +0 -85
- package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs.map +0 -1
- package/dist/custom-auth-path/log-strings-mapping.json +0 -1767
- package/dist/custom-auth-path/naa/AccountInfo.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/AuthBridge.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/AuthResult.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeAccountContext.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeCapabilities.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeError.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeProxy.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeStatusCode.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/IBridgeProxy.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/InitContext.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/TokenRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/TokenResponse.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/INavigationClient.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationClient.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationClient.mjs +0 -48
- package/dist/custom-auth-path/navigation/NavigationClient.mjs.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationOptions.d.ts.map +0 -1
- package/dist/custom-auth-path/network/FetchClient.d.ts.map +0 -1
- package/dist/custom-auth-path/network/FetchClient.mjs +0 -128
- package/dist/custom-auth-path/network/FetchClient.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +0 -105
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +0 -51
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/packageMetadata.d.ts +0 -3
- package/dist/custom-auth-path/packageMetadata.d.ts.map +0 -1
- package/dist/custom-auth-path/packageMetadata.mjs +0 -8
- package/dist/custom-auth-path/packageMetadata.mjs.map +0 -1
- package/dist/custom-auth-path/protocol/Authorize.d.ts.map +0 -1
- package/dist/custom-auth-path/protocol/Authorize.mjs +0 -313
- package/dist/custom-auth-path/protocol/Authorize.mjs.map +0 -1
- package/dist/custom-auth-path/redirect_bridge/index.d.ts.map +0 -1
- package/dist/custom-auth-path/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/ClearCacheRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/EndSessionRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/dist/custom-auth-path/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/PopupRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/PopupWindowAttributes.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RedirectRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RequestHelpers.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RequestHelpers.mjs +0 -83
- package/dist/custom-auth-path/request/RequestHelpers.mjs.map +0 -1
- package/dist/custom-auth-path/request/SilentRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/SsoSilentRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/response/AuthenticationResult.d.ts.map +0 -1
- package/dist/custom-auth-path/response/ResponseHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/response/ResponseHandler.mjs +0 -46
- package/dist/custom-auth-path/response/ResponseHandler.mjs.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs +0 -131
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs +0 -50
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserConstants.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserConstants.mjs +0 -190
- package/dist/custom-auth-path/utils/BrowserConstants.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +0 -28
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserUtils.mjs +0 -348
- package/dist/custom-auth-path/utils/BrowserUtils.mjs.map +0 -1
- package/dist/custom-auth-path/utils/Helpers.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/Helpers.mjs +0 -20
- package/dist/custom-auth-path/utils/Helpers.mjs.map +0 -1
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +0 -27
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs.map +0 -1
- package/dist/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/dist/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/dist/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/dist/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/dist/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/dist/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/dist/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/dist/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/dist/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/dist/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/dist/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/dist/custom_auth/core/error/HttpError.d.ts +0 -5
- package/dist/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/dist/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/dist/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/dist/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/dist/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/dist/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/dist/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/dist/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/dist/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/dist/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/dist/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/dist/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/dist/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/dist/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/dist/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/dist/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/dist/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/dist/custom_auth/index.d.ts +0 -84
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/dist/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/dist/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/dist/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/dist/encode/Base64Decode.d.ts +0 -15
- package/dist/encode/Base64Encode.d.ts +0 -20
- package/dist/error/BrowserAuthError.d.ts +0 -12
- package/dist/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/dist/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/dist/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/dist/error/NativeAuthError.d.ts +0 -27
- package/dist/error/NativeAuthErrorCodes.d.ts +0 -5
- package/dist/error/NestedAppAuthError.d.ts +0 -6
- package/dist/event/EventHandler.d.ts +0 -49
- package/dist/event/EventMessage.d.ts +0 -41
- package/dist/event/EventType.d.ts +0 -24
- package/dist/index.d.ts +0 -73
- package/dist/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/dist/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/dist/interaction_client/PopupClient.d.ts +0 -106
- package/dist/interaction_client/RedirectClient.d.ts +0 -77
- package/dist/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/dist/interaction_client/SilentCacheClient.d.ts +0 -17
- package/dist/interaction_client/SilentIframeClient.d.ts +0 -57
- package/dist/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/dist/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/dist/interaction_handler/InteractionHandler.d.ts +0 -33
- package/dist/interaction_handler/SilentHandler.d.ts +0 -17
- package/dist/naa/AccountInfo.d.ts +0 -13
- package/dist/naa/AuthBridge.d.ts +0 -9
- package/dist/naa/AuthResult.d.ts +0 -7
- package/dist/naa/BridgeAccountContext.d.ts +0 -13
- package/dist/naa/BridgeCapabilities.d.ts +0 -4
- package/dist/naa/BridgeError.d.ts +0 -10
- package/dist/naa/BridgeProxy.d.ts +0 -69
- package/dist/naa/BridgeRequest.d.ts +0 -8
- package/dist/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/dist/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/dist/naa/BridgeStatusCode.d.ts +0 -12
- package/dist/naa/IBridgeProxy.d.ts +0 -11
- package/dist/naa/InitContext.d.ts +0 -9
- package/dist/naa/TokenRequest.d.ts +0 -21
- package/dist/naa/TokenResponse.d.ts +0 -14
- package/dist/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/dist/navigation/INavigationClient.d.ts +0 -17
- package/dist/navigation/NavigationClient.d.ts +0 -23
- package/dist/navigation/NavigationOptions.d.ts +0 -13
- package/dist/network/FetchClient.d.ts +0 -21
- package/dist/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/dist/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/dist/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/dist/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/dist/packageMetadata.d.ts +0 -3
- package/dist/packageMetadata.d.ts.map +0 -1
- package/dist/protocol/Authorize.d.ts +0 -102
- package/dist/redirect-bridge/app/IPublicClientApplication.d.ts +0 -48
- package/dist/redirect-bridge/app/IPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/app/PublicClientApplication.d.ts +0 -247
- package/dist/redirect-bridge/app/PublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/dist/redirect-bridge/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/dist/redirect-bridge/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/AccountManager.d.ts +0 -24
- package/dist/redirect-bridge/cache/AccountManager.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/AsyncMemoryStorage.d.ts +0 -58
- package/dist/redirect-bridge/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/BrowserCacheManager.d.ts +0 -364
- package/dist/redirect-bridge/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheHelpers.d.ts +0 -16
- package/dist/redirect-bridge/cache/CacheHelpers.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheKeys.d.ts +0 -15
- package/dist/redirect-bridge/cache/CacheKeys.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheKeys.mjs +0 -10
- package/dist/redirect-bridge/cache/CacheKeys.mjs.map +0 -1
- package/dist/redirect-bridge/cache/CookieStorage.d.ts +0 -23
- package/dist/redirect-bridge/cache/CookieStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/DatabaseStorage.d.ts +0 -57
- package/dist/redirect-bridge/cache/DatabaseStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/EncryptedData.d.ts +0 -8
- package/dist/redirect-bridge/cache/EncryptedData.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/IAsyncStorage.d.ts +0 -33
- package/dist/redirect-bridge/cache/IAsyncStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/IWindowStorage.d.ts +0 -42
- package/dist/redirect-bridge/cache/IWindowStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/LocalStorage.d.ts +0 -51
- package/dist/redirect-bridge/cache/LocalStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/MemoryStorage.d.ts +0 -16
- package/dist/redirect-bridge/cache/MemoryStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/SessionStorage.d.ts +0 -14
- package/dist/redirect-bridge/cache/SessionStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/TokenCache.d.ts +0 -20
- package/dist/redirect-bridge/cache/TokenCache.d.ts.map +0 -1
- package/dist/redirect-bridge/config/Configuration.d.ts +0 -198
- package/dist/redirect-bridge/config/Configuration.d.ts.map +0 -1
- package/dist/redirect-bridge/config/Configuration.mjs +0 -10
- package/dist/redirect-bridge/config/Configuration.mjs.map +0 -1
- package/dist/redirect-bridge/controllers/IController.d.ts +0 -3
- package/dist/redirect-bridge/controllers/IController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/NestedAppAuthController.d.ts +0 -159
- package/dist/redirect-bridge/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/StandardController.d.ts +0 -398
- package/dist/redirect-bridge/controllers/StandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/dist/redirect-bridge/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/BrowserCrypto.d.ts +0 -96
- package/dist/redirect-bridge/crypto/BrowserCrypto.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/CryptoOps.d.ts +0 -77
- package/dist/redirect-bridge/crypto/CryptoOps.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/PkceGenerator.d.ts +0 -9
- package/dist/redirect-bridge/crypto/PkceGenerator.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/SignedHttpRequest.d.ts +0 -32
- package/dist/redirect-bridge/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/dist/redirect-bridge/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/HttpError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/dist/redirect-bridge/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/dist/redirect-bridge/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/dist/redirect-bridge/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/index.d.ts +0 -84
- package/dist/redirect-bridge/custom_auth/index.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/encode/Base64Decode.d.ts +0 -15
- package/dist/redirect-bridge/encode/Base64Decode.d.ts.map +0 -1
- package/dist/redirect-bridge/encode/Base64Decode.mjs +0 -44
- package/dist/redirect-bridge/encode/Base64Decode.mjs.map +0 -1
- package/dist/redirect-bridge/encode/Base64Encode.d.ts +0 -20
- package/dist/redirect-bridge/encode/Base64Encode.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthError.d.ts +0 -12
- package/dist/redirect-bridge/error/BrowserAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthError.mjs +0 -27
- package/dist/redirect-bridge/error/BrowserAuthError.mjs.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs +0 -14
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs.map +0 -1
- package/dist/redirect-bridge/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/dist/redirect-bridge/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/dist/redirect-bridge/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NativeAuthError.d.ts +0 -27
- package/dist/redirect-bridge/error/NativeAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NativeAuthErrorCodes.d.ts +0 -5
- package/dist/redirect-bridge/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NestedAppAuthError.d.ts +0 -6
- package/dist/redirect-bridge/error/NestedAppAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventHandler.d.ts +0 -49
- package/dist/redirect-bridge/event/EventHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventMessage.d.ts +0 -41
- package/dist/redirect-bridge/event/EventMessage.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventType.d.ts +0 -24
- package/dist/redirect-bridge/event/EventType.d.ts.map +0 -1
- package/dist/redirect-bridge/index.d.ts +0 -73
- package/dist/redirect-bridge/index.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/dist/redirect-bridge/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/dist/redirect-bridge/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/dist/redirect-bridge/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/PopupClient.d.ts +0 -106
- package/dist/redirect-bridge/interaction_client/PopupClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/RedirectClient.d.ts +0 -77
- package/dist/redirect-bridge/interaction_client/RedirectClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/dist/redirect-bridge/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentCacheClient.d.ts +0 -17
- package/dist/redirect-bridge/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentIframeClient.d.ts +0 -57
- package/dist/redirect-bridge/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/dist/redirect-bridge/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/dist/redirect-bridge/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_handler/InteractionHandler.d.ts +0 -33
- package/dist/redirect-bridge/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_handler/SilentHandler.d.ts +0 -17
- package/dist/redirect-bridge/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AccountInfo.d.ts +0 -13
- package/dist/redirect-bridge/naa/AccountInfo.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AuthBridge.d.ts +0 -9
- package/dist/redirect-bridge/naa/AuthBridge.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AuthResult.d.ts +0 -7
- package/dist/redirect-bridge/naa/AuthResult.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeAccountContext.d.ts +0 -13
- package/dist/redirect-bridge/naa/BridgeAccountContext.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeCapabilities.d.ts +0 -4
- package/dist/redirect-bridge/naa/BridgeCapabilities.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeError.d.ts +0 -10
- package/dist/redirect-bridge/naa/BridgeError.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeProxy.d.ts +0 -69
- package/dist/redirect-bridge/naa/BridgeProxy.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeRequest.d.ts +0 -8
- package/dist/redirect-bridge/naa/BridgeRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/dist/redirect-bridge/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/dist/redirect-bridge/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeStatusCode.d.ts +0 -12
- package/dist/redirect-bridge/naa/BridgeStatusCode.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/IBridgeProxy.d.ts +0 -11
- package/dist/redirect-bridge/naa/IBridgeProxy.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/InitContext.d.ts +0 -9
- package/dist/redirect-bridge/naa/InitContext.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/TokenRequest.d.ts +0 -21
- package/dist/redirect-bridge/naa/TokenRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/TokenResponse.d.ts +0 -14
- package/dist/redirect-bridge/naa/TokenResponse.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/dist/redirect-bridge/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/INavigationClient.d.ts +0 -17
- package/dist/redirect-bridge/navigation/INavigationClient.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationClient.d.ts +0 -23
- package/dist/redirect-bridge/navigation/NavigationClient.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationClient.mjs +0 -48
- package/dist/redirect-bridge/navigation/NavigationClient.mjs.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationOptions.d.ts +0 -13
- package/dist/redirect-bridge/navigation/NavigationOptions.d.ts.map +0 -1
- package/dist/redirect-bridge/network/FetchClient.d.ts +0 -21
- package/dist/redirect-bridge/network/FetchClient.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/dist/redirect-bridge/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/dist/redirect-bridge/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/dist/redirect-bridge/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/dist/redirect-bridge/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/packageMetadata.d.ts +0 -3
- package/dist/redirect-bridge/packageMetadata.d.ts.map +0 -1
- package/dist/redirect-bridge/protocol/Authorize.d.ts +0 -102
- package/dist/redirect-bridge/protocol/Authorize.d.ts.map +0 -1
- package/dist/redirect-bridge/redirect_bridge/index.d.ts +0 -16
- package/dist/redirect-bridge/redirect_bridge/index.d.ts.map +0 -1
- package/dist/redirect-bridge/redirect_bridge/index.mjs +0 -131
- package/dist/redirect-bridge/redirect_bridge/index.mjs.map +0 -1
- package/dist/redirect-bridge/request/AuthorizationCodeRequest.d.ts +0 -27
- package/dist/redirect-bridge/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/ClearCacheRequest.d.ts +0 -15
- package/dist/redirect-bridge/request/ClearCacheRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/EndSessionPopupRequest.d.ts +0 -24
- package/dist/redirect-bridge/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/EndSessionRequest.d.ts +0 -11
- package/dist/redirect-bridge/request/EndSessionRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/dist/redirect-bridge/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/dist/redirect-bridge/request/InitializeApplicationRequest.d.ts +0 -10
- package/dist/redirect-bridge/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/PopupRequest.d.ts +0 -25
- package/dist/redirect-bridge/request/PopupRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/PopupWindowAttributes.d.ts +0 -16
- package/dist/redirect-bridge/request/PopupWindowAttributes.d.ts.map +0 -1
- package/dist/redirect-bridge/request/RedirectRequest.d.ts +0 -16
- package/dist/redirect-bridge/request/RedirectRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/RequestHelpers.d.ts +0 -28
- package/dist/redirect-bridge/request/RequestHelpers.d.ts.map +0 -1
- package/dist/redirect-bridge/request/SilentRequest.d.ts +0 -52
- package/dist/redirect-bridge/request/SilentRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/SsoSilentRequest.d.ts +0 -6
- package/dist/redirect-bridge/request/SsoSilentRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/response/AuthenticationResult.d.ts +0 -5
- package/dist/redirect-bridge/response/AuthenticationResult.d.ts.map +0 -1
- package/dist/redirect-bridge/response/ResponseHandler.d.ts +0 -8
- package/dist/redirect-bridge/response/ResponseHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/dist/redirect-bridge/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/dist/redirect-bridge/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/dist/redirect-bridge/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/dist/redirect-bridge/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserConstants.d.ts +0 -182
- package/dist/redirect-bridge/utils/BrowserConstants.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserConstants.mjs +0 -43
- package/dist/redirect-bridge/utils/BrowserConstants.mjs.map +0 -1
- package/dist/redirect-bridge/utils/BrowserProtocolUtils.d.ts +0 -12
- package/dist/redirect-bridge/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserUtils.d.ts +0 -111
- package/dist/redirect-bridge/utils/BrowserUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserUtils.mjs +0 -97
- package/dist/redirect-bridge/utils/BrowserUtils.mjs.map +0 -1
- package/dist/redirect-bridge/utils/Helpers.d.ts +0 -7
- package/dist/redirect-bridge/utils/Helpers.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/dist/redirect-bridge/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/dist/redirect_bridge/index.d.ts +0 -16
- package/dist/request/AuthorizationCodeRequest.d.ts +0 -27
- package/dist/request/ClearCacheRequest.d.ts +0 -15
- package/dist/request/EndSessionPopupRequest.d.ts +0 -24
- package/dist/request/EndSessionRequest.d.ts +0 -11
- package/dist/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/dist/request/InitializeApplicationRequest.d.ts +0 -10
- package/dist/request/PopupRequest.d.ts +0 -25
- package/dist/request/PopupWindowAttributes.d.ts +0 -16
- package/dist/request/RedirectRequest.d.ts +0 -16
- package/dist/request/RequestHelpers.d.ts +0 -28
- package/dist/request/SilentRequest.d.ts +0 -52
- package/dist/request/SsoSilentRequest.d.ts +0 -6
- package/dist/response/AuthenticationResult.d.ts +0 -5
- package/dist/response/ResponseHandler.d.ts +0 -8
- package/dist/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/dist/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/dist/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/dist/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/dist/utils/BrowserConstants.d.ts +0 -182
- package/dist/utils/BrowserProtocolUtils.d.ts +0 -12
- package/dist/utils/BrowserUtils.d.ts +0 -111
- package/dist/utils/Helpers.d.ts +0 -7
- package/dist/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/AccountManager.d.ts +0 -24
- package/lib/custom-auth-path/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CacheKeys.d.ts +0 -15
- package/lib/custom-auth-path/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CookieStorage.d.ts +0 -23
- package/lib/custom-auth-path/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/EncryptedData.d.ts +0 -8
- package/lib/custom-auth-path/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/LocalStorage.d.ts +0 -51
- package/lib/custom-auth-path/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/SessionStorage.d.ts +0 -14
- package/lib/custom-auth-path/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/TokenCache.d.ts +0 -20
- package/lib/custom-auth-path/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/custom-auth-path/types/config/Configuration.d.ts +0 -198
- package/lib/custom-auth-path/types/config/Configuration.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/IController.d.ts +0 -3
- package/lib/custom-auth-path/types/controllers/IController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/StandardController.d.ts +0 -398
- package/lib/custom-auth-path/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/index.d.ts +0 -84
- package/lib/custom-auth-path/types/custom_auth/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/encode/Base64Decode.d.ts +0 -15
- package/lib/custom-auth-path/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/encode/Base64Encode.d.ts +0 -20
- package/lib/custom-auth-path/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NativeAuthError.d.ts +0 -27
- package/lib/custom-auth-path/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventHandler.d.ts +0 -49
- package/lib/custom-auth-path/types/event/EventHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventMessage.d.ts +0 -41
- package/lib/custom-auth-path/types/event/EventMessage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventType.d.ts +0 -24
- package/lib/custom-auth-path/types/event/EventType.d.ts.map +0 -1
- package/lib/custom-auth-path/types/index.d.ts +0 -73
- package/lib/custom-auth-path/types/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AccountInfo.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AuthBridge.d.ts +0 -9
- package/lib/custom-auth-path/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AuthResult.d.ts +0 -7
- package/lib/custom-auth-path/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeError.d.ts +0 -10
- package/lib/custom-auth-path/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/InitContext.d.ts +0 -9
- package/lib/custom-auth-path/types/naa/InitContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/TokenRequest.d.ts +0 -21
- package/lib/custom-auth-path/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/TokenResponse.d.ts +0 -14
- package/lib/custom-auth-path/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/custom-auth-path/types/network/FetchClient.d.ts +0 -21
- package/lib/custom-auth-path/types/network/FetchClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/packageMetadata.d.ts +0 -3
- package/lib/custom-auth-path/types/packageMetadata.d.ts.map +0 -1
- package/lib/custom-auth-path/types/protocol/Authorize.d.ts +0 -102
- package/lib/custom-auth-path/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/custom-auth-path/types/redirect_bridge/index.d.ts +0 -16
- package/lib/custom-auth-path/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/custom-auth-path/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/PopupRequest.d.ts +0 -25
- package/lib/custom-auth-path/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/RedirectRequest.d.ts +0 -16
- package/lib/custom-auth-path/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/RequestHelpers.d.ts +0 -28
- package/lib/custom-auth-path/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/SilentRequest.d.ts +0 -52
- package/lib/custom-auth-path/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/response/ResponseHandler.d.ts +0 -8
- package/lib/custom-auth-path/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/Helpers.d.ts +0 -7
- package/lib/custom-auth-path/types/utils/Helpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/redirect-bridge/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/redirect-bridge/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/redirect-bridge/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/redirect-bridge/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/AccountManager.d.ts +0 -24
- package/lib/redirect-bridge/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/redirect-bridge/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/redirect-bridge/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/redirect-bridge/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CacheKeys.d.ts +0 -15
- package/lib/redirect-bridge/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CookieStorage.d.ts +0 -23
- package/lib/redirect-bridge/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/redirect-bridge/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/EncryptedData.d.ts +0 -8
- package/lib/redirect-bridge/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/redirect-bridge/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/redirect-bridge/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/LocalStorage.d.ts +0 -51
- package/lib/redirect-bridge/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/redirect-bridge/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/SessionStorage.d.ts +0 -14
- package/lib/redirect-bridge/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/TokenCache.d.ts +0 -20
- package/lib/redirect-bridge/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/redirect-bridge/types/config/Configuration.d.ts +0 -198
- package/lib/redirect-bridge/types/config/Configuration.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/IController.d.ts +0 -3
- package/lib/redirect-bridge/types/controllers/IController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/redirect-bridge/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/StandardController.d.ts +0 -398
- package/lib/redirect-bridge/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/redirect-bridge/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/redirect-bridge/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/redirect-bridge/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/redirect-bridge/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/redirect-bridge/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/redirect-bridge/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/redirect-bridge/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/redirect-bridge/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/index.d.ts +0 -84
- package/lib/redirect-bridge/types/custom_auth/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/encode/Base64Decode.d.ts +0 -15
- package/lib/redirect-bridge/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/encode/Base64Encode.d.ts +0 -20
- package/lib/redirect-bridge/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/redirect-bridge/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/redirect-bridge/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NativeAuthError.d.ts +0 -27
- package/lib/redirect-bridge/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/redirect-bridge/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/redirect-bridge/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventHandler.d.ts +0 -49
- package/lib/redirect-bridge/types/event/EventHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventMessage.d.ts +0 -41
- package/lib/redirect-bridge/types/event/EventMessage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventType.d.ts +0 -24
- package/lib/redirect-bridge/types/event/EventType.d.ts.map +0 -1
- package/lib/redirect-bridge/types/index.d.ts +0 -73
- package/lib/redirect-bridge/types/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/redirect-bridge/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/redirect-bridge/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/redirect-bridge/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/redirect-bridge/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/redirect-bridge/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/redirect-bridge/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/redirect-bridge/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/redirect-bridge/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/redirect-bridge/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/redirect-bridge/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/redirect-bridge/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/redirect-bridge/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AccountInfo.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AuthBridge.d.ts +0 -9
- package/lib/redirect-bridge/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AuthResult.d.ts +0 -7
- package/lib/redirect-bridge/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/redirect-bridge/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeError.d.ts +0 -10
- package/lib/redirect-bridge/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/redirect-bridge/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/redirect-bridge/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/redirect-bridge/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/redirect-bridge/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/redirect-bridge/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/InitContext.d.ts +0 -9
- package/lib/redirect-bridge/types/naa/InitContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/TokenRequest.d.ts +0 -21
- package/lib/redirect-bridge/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/TokenResponse.d.ts +0 -14
- package/lib/redirect-bridge/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/redirect-bridge/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/redirect-bridge/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/redirect-bridge/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/redirect-bridge/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/redirect-bridge/types/network/FetchClient.d.ts +0 -21
- package/lib/redirect-bridge/types/network/FetchClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/redirect-bridge/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/redirect-bridge/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/redirect-bridge/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/redirect-bridge/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/packageMetadata.d.ts +0 -3
- package/lib/redirect-bridge/types/packageMetadata.d.ts.map +0 -1
- package/lib/redirect-bridge/types/protocol/Authorize.d.ts +0 -102
- package/lib/redirect-bridge/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/redirect-bridge/types/redirect_bridge/index.d.ts +0 -16
- package/lib/redirect-bridge/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/redirect-bridge/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/redirect-bridge/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/redirect-bridge/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/redirect-bridge/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/redirect-bridge/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/redirect-bridge/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/PopupRequest.d.ts +0 -25
- package/lib/redirect-bridge/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/redirect-bridge/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/RedirectRequest.d.ts +0 -16
- package/lib/redirect-bridge/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/RequestHelpers.d.ts +0 -28
- package/lib/redirect-bridge/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/SilentRequest.d.ts +0 -52
- package/lib/redirect-bridge/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/redirect-bridge/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/redirect-bridge/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/response/ResponseHandler.d.ts +0 -8
- package/lib/redirect-bridge/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/redirect-bridge/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/redirect-bridge/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/redirect-bridge/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/redirect-bridge/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/Helpers.d.ts +0 -7
- package/lib/redirect-bridge/types/utils/Helpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/redirect-bridge/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/lib/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/types/cache/AccountManager.d.ts +0 -24
- package/lib/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/types/cache/CacheKeys.d.ts +0 -15
- package/lib/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/types/cache/CookieStorage.d.ts +0 -23
- package/lib/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/types/cache/EncryptedData.d.ts +0 -8
- package/lib/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/types/cache/LocalStorage.d.ts +0 -51
- package/lib/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/types/cache/SessionStorage.d.ts +0 -14
- package/lib/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/types/cache/TokenCache.d.ts +0 -20
- package/lib/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/types/config/Configuration.d.ts +0 -198
- package/lib/types/config/Configuration.d.ts.map +0 -1
- package/lib/types/controllers/IController.d.ts +0 -3
- package/lib/types/controllers/IController.d.ts.map +0 -1
- package/lib/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/types/controllers/StandardController.d.ts +0 -398
- package/lib/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/types/custom_auth/index.d.ts +0 -84
- package/lib/types/custom_auth/index.d.ts.map +0 -1
- package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/types/encode/Base64Decode.d.ts +0 -15
- package/lib/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/types/encode/Base64Encode.d.ts +0 -20
- package/lib/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/NativeAuthError.d.ts +0 -27
- package/lib/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/types/event/EventHandler.d.ts +0 -49
- package/lib/types/event/EventHandler.d.ts.map +0 -1
- package/lib/types/event/EventMessage.d.ts +0 -41
- package/lib/types/event/EventMessage.d.ts.map +0 -1
- package/lib/types/event/EventType.d.ts +0 -24
- package/lib/types/event/EventType.d.ts.map +0 -1
- package/lib/types/index.d.ts +0 -73
- package/lib/types/index.d.ts.map +0 -1
- package/lib/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/types/naa/AccountInfo.d.ts +0 -13
- package/lib/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/types/naa/AuthBridge.d.ts +0 -9
- package/lib/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/types/naa/AuthResult.d.ts +0 -7
- package/lib/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/types/naa/BridgeError.d.ts +0 -10
- package/lib/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/types/naa/InitContext.d.ts +0 -9
- package/lib/types/naa/InitContext.d.ts.map +0 -1
- package/lib/types/naa/TokenRequest.d.ts +0 -21
- package/lib/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/types/naa/TokenResponse.d.ts +0 -14
- package/lib/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/types/network/FetchClient.d.ts +0 -21
- package/lib/types/network/FetchClient.d.ts.map +0 -1
- package/lib/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/types/packageMetadata.d.ts +0 -3
- package/lib/types/packageMetadata.d.ts.map +0 -1
- package/lib/types/protocol/Authorize.d.ts +0 -102
- package/lib/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/types/redirect_bridge/index.d.ts +0 -16
- package/lib/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/types/request/PopupRequest.d.ts +0 -25
- package/lib/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/types/request/RedirectRequest.d.ts +0 -16
- package/lib/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/types/request/RequestHelpers.d.ts +0 -28
- package/lib/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/types/request/SilentRequest.d.ts +0 -52
- package/lib/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/types/response/ResponseHandler.d.ts +0 -8
- package/lib/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/types/utils/Helpers.d.ts +0 -7
- package/lib/types/utils/Helpers.d.ts.map +0 -1
- package/lib/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- /package/dist/{custom-auth-path/custom_auth → custom_auth}/index.mjs.map +0 -0
- /package/{dist → types}/app/IPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/app/IPublicClientApplication.d.ts.map +0 -0
- /package/{dist → types}/app/PublicClientApplication.d.ts +0 -0
- /package/{dist → types}/app/PublicClientApplication.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/NativeStatusCodes.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -0
- /package/{dist → types}/cache/AccountManager.d.ts +0 -0
- /package/{dist → types}/cache/AccountManager.d.ts.map +0 -0
- /package/{dist → types}/cache/AsyncMemoryStorage.d.ts +0 -0
- /package/{dist → types}/cache/AsyncMemoryStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/BrowserCacheManager.d.ts +0 -0
- /package/{dist → types}/cache/CacheHelpers.d.ts +0 -0
- /package/{dist → types}/cache/CacheHelpers.d.ts.map +0 -0
- /package/{dist → types}/cache/CacheKeys.d.ts +0 -0
- /package/{dist → types}/cache/CacheKeys.d.ts.map +0 -0
- /package/{dist → types}/cache/CookieStorage.d.ts +0 -0
- /package/{dist → types}/cache/DatabaseStorage.d.ts +0 -0
- /package/{dist → types}/cache/DatabaseStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/EncryptedData.d.ts +0 -0
- /package/{dist → types}/cache/EncryptedData.d.ts.map +0 -0
- /package/{dist → types}/cache/IAsyncStorage.d.ts +0 -0
- /package/{dist → types}/cache/IAsyncStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/IWindowStorage.d.ts +0 -0
- /package/{dist → types}/cache/IWindowStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/LocalStorage.d.ts +0 -0
- /package/{dist → types}/cache/LocalStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/MemoryStorage.d.ts +0 -0
- /package/{dist → types}/cache/MemoryStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/SessionStorage.d.ts +0 -0
- /package/{dist → types}/cache/SessionStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/TokenCache.d.ts +0 -0
- /package/{dist → types}/cache/TokenCache.d.ts.map +0 -0
- /package/{dist → types}/config/Configuration.d.ts +0 -0
- /package/{dist → types}/config/Configuration.d.ts.map +0 -0
- /package/{dist → types}/controllers/IController.d.ts +0 -0
- /package/{dist → types}/controllers/IController.d.ts.map +0 -0
- /package/{dist → types}/controllers/NestedAppAuthController.d.ts +0 -0
- /package/{dist → types}/controllers/NestedAppAuthController.d.ts.map +0 -0
- /package/{dist → types}/controllers/StandardController.d.ts +0 -0
- /package/{dist → types}/controllers/StandardController.d.ts.map +0 -0
- /package/{dist → types}/controllers/UnknownOperatingContextController.d.ts +0 -0
- /package/{dist → types}/controllers/UnknownOperatingContextController.d.ts.map +0 -0
- /package/{dist → types}/crypto/BrowserCrypto.d.ts +0 -0
- /package/{dist → types}/crypto/BrowserCrypto.d.ts.map +0 -0
- /package/{dist → types}/crypto/CryptoOps.d.ts +0 -0
- /package/{dist → types}/crypto/CryptoOps.d.ts.map +0 -0
- /package/{dist → types}/crypto/PkceGenerator.d.ts +0 -0
- /package/{dist → types}/crypto/PkceGenerator.d.ts.map +0 -0
- /package/{dist → types}/crypto/SignedHttpRequest.d.ts +0 -0
- /package/{dist → types}/crypto/SignedHttpRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/CustomAuthActionInputs.d.ts +0 -0
- /package/{dist → types}/custom_auth/CustomAuthActionInputs.d.ts.map +0 -0
- /package/{dist → types}/custom_auth/CustomAuthConstants.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/UserAccountAttributes.d.ts +0 -0
- /package/{dist → types}/custom_auth/UserAccountAttributes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -0
- /package/{dist → types}/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/controller/CustomAuthStandardController.d.ts +0 -0
- /package/{dist → types}/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -0
- /package/{dist → types}/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/CustomAuthAuthority.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/CustomAuthApiError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/CustomAuthError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/CustomAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/HttpError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/HttpError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/HttpErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidArgumentError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/ParsedUrlError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UnexpectedError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UnexpectedError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/telemetry/PublicApiId.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/utils/ArgumentValidator.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/utils/UrlUtils.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/utils/UrlUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/index.d.ts +0 -0
- /package/{dist → types}/custom_auth/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -0
- /package/{dist → types}/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/encode/Base64Decode.d.ts +0 -0
- /package/{dist → types}/encode/Base64Decode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/encode/Base64Encode.d.ts +0 -0
- /package/{dist → types}/encode/Base64Encode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserAuthError.d.ts +0 -0
- /package/{dist → types}/error/BrowserAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/BrowserAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserConfigurationAuthError.d.ts +0 -0
- /package/{dist → types}/error/BrowserConfigurationAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NativeAuthError.d.ts +0 -0
- /package/{dist → types}/error/NativeAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NativeAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/NativeAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NestedAppAuthError.d.ts +0 -0
- /package/{dist → types}/error/NestedAppAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventHandler.d.ts +0 -0
- /package/{dist → types}/event/EventHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventMessage.d.ts +0 -0
- /package/{dist → types}/event/EventMessage.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventType.d.ts +0 -0
- /package/{dist → types}/event/EventType.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/index.d.ts +0 -0
- /package/{dist → types}/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/BaseInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/BaseInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/PlatformAuthInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/PopupClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/PopupClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/RedirectClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/RedirectClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentAuthCodeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentAuthCodeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentCacheClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentCacheClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentIframeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentIframeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentRefreshClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentRefreshClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/StandardInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/StandardInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_handler/InteractionHandler.d.ts +0 -0
- /package/{dist → types}/interaction_handler/InteractionHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_handler/SilentHandler.d.ts +0 -0
- /package/{dist → types}/interaction_handler/SilentHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AccountInfo.d.ts +0 -0
- /package/{dist → types}/naa/AccountInfo.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AuthBridge.d.ts +0 -0
- /package/{dist → types}/naa/AuthBridge.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AuthResult.d.ts +0 -0
- /package/{dist → types}/naa/AuthResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeAccountContext.d.ts +0 -0
- /package/{dist → types}/naa/BridgeAccountContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeCapabilities.d.ts +0 -0
- /package/{dist → types}/naa/BridgeCapabilities.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeError.d.ts +0 -0
- /package/{dist → types}/naa/BridgeError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeProxy.d.ts +0 -0
- /package/{dist → types}/naa/BridgeProxy.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeRequest.d.ts +0 -0
- /package/{dist → types}/naa/BridgeRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeRequestEnvelope.d.ts +0 -0
- /package/{dist → types}/naa/BridgeRequestEnvelope.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeResponseEnvelope.d.ts +0 -0
- /package/{dist → types}/naa/BridgeResponseEnvelope.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeStatusCode.d.ts +0 -0
- /package/{dist → types}/naa/BridgeStatusCode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/IBridgeProxy.d.ts +0 -0
- /package/{dist → types}/naa/IBridgeProxy.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/InitContext.d.ts +0 -0
- /package/{dist → types}/naa/InitContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/TokenRequest.d.ts +0 -0
- /package/{dist → types}/naa/TokenRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/TokenResponse.d.ts +0 -0
- /package/{dist → types}/naa/TokenResponse.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/mapping/NestedAppAuthAdapter.d.ts +0 -0
- /package/{dist → types}/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/INavigationClient.d.ts +0 -0
- /package/{dist → types}/navigation/INavigationClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/NavigationClient.d.ts +0 -0
- /package/{dist → types}/navigation/NavigationClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/NavigationOptions.d.ts +0 -0
- /package/{dist → types}/navigation/NavigationOptions.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/network/FetchClient.d.ts +0 -0
- /package/{dist → types}/network/FetchClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/BaseOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/BaseOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/NestedAppOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/StandardOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/StandardOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/UnknownOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/UnknownOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/protocol/Authorize.d.ts +0 -0
- /package/{dist → types}/protocol/Authorize.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/redirect_bridge/index.d.ts +0 -0
- /package/{dist → types}/redirect_bridge/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/AuthorizationCodeRequest.d.ts +0 -0
- /package/{dist → types}/request/AuthorizationCodeRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/ClearCacheRequest.d.ts +0 -0
- /package/{dist → types}/request/ClearCacheRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/EndSessionPopupRequest.d.ts +0 -0
- /package/{dist → types}/request/EndSessionPopupRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/EndSessionRequest.d.ts +0 -0
- /package/{dist → types}/request/EndSessionRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/HandleRedirectPromiseOptions.d.ts +0 -0
- /package/{dist → types}/request/HandleRedirectPromiseOptions.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/InitializeApplicationRequest.d.ts +0 -0
- /package/{dist → types}/request/InitializeApplicationRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/PopupRequest.d.ts +0 -0
- /package/{dist → types}/request/PopupRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/PopupWindowAttributes.d.ts +0 -0
- /package/{dist → types}/request/PopupWindowAttributes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/RedirectRequest.d.ts +0 -0
- /package/{dist → types}/request/RedirectRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/RequestHelpers.d.ts +0 -0
- /package/{dist → types}/request/RequestHelpers.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/SilentRequest.d.ts +0 -0
- /package/{dist → types}/request/SilentRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/SsoSilentRequest.d.ts +0 -0
- /package/{dist → types}/request/SsoSilentRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/response/AuthenticationResult.d.ts +0 -0
- /package/{dist → types}/response/AuthenticationResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/response/ResponseHandler.d.ts +0 -0
- /package/{dist → types}/response/ResponseHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceClient.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceEvents.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceEvents.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceMeasurement.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserRootPerformanceEvents.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserConstants.d.ts +0 -0
- /package/{dist → types}/utils/BrowserConstants.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserProtocolUtils.d.ts +0 -0
- /package/{dist → types}/utils/BrowserProtocolUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserUtils.d.ts +0 -0
- /package/{dist → types}/utils/BrowserUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/Helpers.d.ts +0 -0
- /package/{dist → types}/utils/Helpers.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/MsalFrameStatsUtils.d.ts +0 -0
- /package/{dist → types}/utils/MsalFrameStatsUtils.d.ts.map +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BrowserCacheManager.mjs","sources":["../../../../src/cache/BrowserCacheManager.ts"],"sourcesContent":[null],"names":["CacheKeys.ACCOUNT_SCHEMA_VERSION","CacheKeys.CREDENTIAL_SCHEMA_VERSION","CacheKeys.VERSION_CACHE_KEY","CacheKeys.getTokenKeysCacheKey","CacheKeys.getAccountKeysCacheKey","CacheKeys.PREFIX","CacheKeys.CACHE_KEY_SEPARATOR","BrowserAuthErrorCodes.noTokenRequestCacheError","BrowserAuthErrorCodes.unableToParseTokenRequestCacheError","BrowserUtils.cancelPendingBridgeResponse","BrowserAuthErrorCodes.interactionInProgress"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;AAGG;AA4EH;;AAEG;AACG,MAAO,mBAAoB,SAAQ,YAAY,CAAA;AAgBjD,IAAA,WAAA,CACI,QAAgB,EAChB,WAAmC,EACnC,UAAmB,EACnB,MAAc,EACd,iBAAqC,EACrC,YAA0B,EAC1B,sBAA+C,EAAA;QAE/C,KAAK,CACD,QAAQ,EACR,UAAU,EACV,MAAM,EACN,iBAAiB,EACjB,sBAAsB,CACzB,CAAC;AACF,QAAA,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;AAC/B,QAAA,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;AACrB,QAAA,IAAI,CAAC,eAAe,GAAG,IAAI,aAAa,EAAE,CAAC;AAC3C,QAAA,IAAI,CAAC,cAAc,GAAG,wBAAwB,CAC1C,QAAQ,EACR,WAAW,CAAC,aAAa,EACzB,MAAM,EACN,iBAAiB,CACpB,CAAC;AACF,QAAA,IAAI,CAAC,qBAAqB,GAAG,wBAAwB,CACjD,QAAQ,EACR,oBAAoB,CAAC,cAAc,EACnC,MAAM,EACN,iBAAiB,CACpB,CAAC;AACF,QAAA,IAAI,CAAC,aAAa,GAAG,IAAI,aAAa,EAAE,CAAC;AAEzC,QAAA,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;KACpC;IAED,MAAM,UAAU,CAAC,aAAqB,EAAA;AAClC,QAAA,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAC5B;AACI,YAAA,aAAa,EAAE,IAAI,CAAC,WAAW,CAAC,aAAa;AAC7C,YAAA,kBAAkB,EAAE,IAAI,CAAC,WAAW,CAAC,kBAAkB;SAC1D,EACD,aAAa,CAChB,CAAC;QACF,MAAM,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;AACpD,QAAA,MAAM,IAAI,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC;AAC/C,QAAA,IAAI,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC;KAC3C;AAED;;AAEG;IACH,MAAM,oBAAoB,CAAC,aAAqB,EAAA;QAC5C,IAAI,WAAW,GAAG,cAAc,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;AACtD,QAAA,IAAI,SAAS,GAAG,YAAY,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;AACjE,QAAA,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAC5B;YACI,mBAAmB,EAAE,WAAW,CAAC,MAAM;AACvC,YAAA,iBAAiB,EAAE,SAAS,CAAC,WAAW,CAAC,MAAM;AAC/C,YAAA,iBAAiB,EAAE,SAAS,CAAC,OAAO,CAAC,MAAM;AAC3C,YAAA,iBAAiB,EAAE,SAAS,CAAC,YAAY,CAAC,MAAM;SACnD,EACD,aAAa,CAChB,CAAC;AAEF,QAAA,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAGA,sBAAgC,EAAE,CAAC,EAAE,EAAE;AACvD,YAAA,MAAM,gBAAgB,GAAG,CAAC,CAAC;YAC3B,MAAM,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,gBAAgB,EAAE,aAAa,CAAC,CAAC;AACtE,SAAA;;AAED,QAAA,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAGC,yBAAmC,EAAE,CAAC,EAAE,EAAE;AAC1D,YAAA,MAAM,aAAa,GAAG,CAAC,CAAC;YACxB,MAAM,IAAI,CAAC,eAAe,CAAC,CAAC,EAAE,aAAa,EAAE,aAAa,CAAC,CAAC;AAC/D,SAAA;AACD,QAAA,MAAM,OAAO,GAAG,IAAI,CAAC,aAAa,EAAE,CAAC;AACrC,QAAA,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAGA,yBAAmC,EAAE,CAAC,EAAE,EAAE;YAC1D,MAAM,IAAI,CAAC,mBAAmB,CAAC,CAAC,EAAE,OAAO,EAAE,aAAa,CAAC,CAAC;YAC1D,MAAM,IAAI,CAAC,oBAAoB,CAAC,CAAC,EAAE,OAAO,EAAE,aAAa,CAAC,CAAC;AAC9D,SAAA;AAED,QAAA,WAAW,GAAG,cAAc,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAClD,SAAS,GAAG,YAAY,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;AAC7D,QAAA,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAC5B;YACI,oBAAoB,EAAE,WAAW,CAAC,MAAM;AACxC,YAAA,kBAAkB,EAAE,SAAS,CAAC,WAAW,CAAC,MAAM;AAChD,YAAA,kBAAkB,EAAE,SAAS,CAAC,OAAO,CAAC,MAAM;AAC5C,YAAA,kBAAkB,EAAE,SAAS,CAAC,YAAY,CAAC,MAAM;SACpD,EACD,aAAa,CAChB,CAAC;KACL;AAED;;;;;AAKG;AACH,IAAA,MAAM,cAAc,CAChB,GAAW,EACX,aAAqB,EAAA;QAErB,MAAM,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QAClD,MAAM,WAAW,GAAG,IAAI,CAAC,oBAAoB,CAAC,QAAQ,IAAI,EAAE,CAGlD,CAAC;QAEX,IAAI,CAAC,WAAW,EAAE;AACd,YAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;AACpC,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;AAED,QAAA,IAAI,CAAC,WAAW,CAAC,aAAa,EAAE;;YAE5B,WAAW,CAAC,aAAa,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC;AAClD,YAAA,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,aAAa,CAAC,CAAC;AACjE,SAAA;AAAM,aAAA,IACH,SAAS,CAAC,cAAc,CACpB,WAAW,CAAC,aAAa,EACzB,IAAI,CAAC,WAAW,CAAC,kBAAkB,CACtC,EACH;AACE,YAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;AACpC,YAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,wBAAwB,EAAE,CAAC,EAAE,EAC/B,aAAa,CAChB,CAAC;AACF,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;AAED,QAAA,MAAM,aAAa,GAAG,WAAW,CAAC,WAAW,CAAC;AAC1C,cAAE,MAAM,IAAI,CAAC,cAAc,CAAC,WAAW,CACjC,GAAG,EACH,WAAW,EACX,aAAa,CAChB;cACD,WAAW,CAAC;QAClB,IAAI,CAAC,aAAa,IAAI,CAAC,YAAY,CAAC,kBAAkB,CAAC,aAAa,CAAC,EAAE;AACnE,YAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,iBAAiB,EAAE,CAAC,EAAE,EACxB,aAAa,CAChB,CAAC;AACF,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;AAED,QAAA,IACI,CAAC,YAAY,CAAC,mBAAmB,CAAC,aAAa,CAAC;AAC5C,YAAA,YAAY,CAAC,oBAAoB,CAAC,aAAa,CAAC;AACpD,YAAA,aAAa,CAAC,SAAS;YACvB,SAAS,CAAC,cAAc,CACpB,aAAa,CAAC,SAAS,EACvB,SAAS,CAAC,gCAAgC,CAC7C,EACH;AACE,YAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;AACpC,YAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,wBAAwB,EAAE,CAAC,EAAE,EAC/B,aAAa,CAChB,CAAC;AACF,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;AAED,QAAA,OAAO,aAAa,CAAC;KACxB;AAED;;;;;;AAMG;AACH,IAAA,MAAM,mBAAmB,CACrB,aAAqB,EACrB,gBAAwB,EACxB,aAAqB,EAAA;QAErB,MAAM,kBAAkB,GAAG,cAAc,CACrC,IAAI,CAAC,cAAc,EACnB,aAAa,CAChB,CAAC;AACF,QAAA,IAAI,kBAAkB,CAAC,MAAM,KAAK,CAAC,EAAE;YACjC,OAAO;AACV,SAAA;AAED,QAAA,KAAK,MAAM,UAAU,IAAI,CAAC,GAAG,kBAAkB,CAAC,EAAE;AAC9C,YAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,YAAY,EAAE,CAAC,EAAE,EACnB,aAAa,CAChB,CAAC;YACF,MAAM,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;YACzD,MAAM,WAAW,GAAG,IAAI,CAAC,oBAAoB,CAAC,QAAQ,IAAI,EAAE,CAGlD,CAAC;YAEX,IAAI,CAAC,WAAW,EAAE;AACd,gBAAA,sBAAsB,CAAC,kBAAkB,EAAE,UAAU,CAAC,CAAC;gBACvD,SAAS;AACZ,aAAA;AAED,YAAA,IAAI,CAAC,WAAW,CAAC,aAAa,EAAE;;gBAE5B,WAAW,CAAC,aAAa,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC;AAClD,gBAAA,IAAI,CAAC,OAAO,CACR,UAAU,EACV,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,EAC3B,aAAa,CAChB,CAAC;gBACF,SAAS;AACZ,aAAA;AAAM,iBAAA,IACH,SAAS,CAAC,cAAc,CACpB,WAAW,CAAC,aAAa,EACzB,IAAI,CAAC,WAAW,CAAC,kBAAkB,CACtC,EACH;;AAEE,gBAAA,MAAM,IAAI,CAAC,sBAAsB,CAC7B,UAAU,EACV,WAAW,EACX,gBAAgB,EAChB,aAAa,CAChB,CAAC;AACF,gBAAA,sBAAsB,CAAC,kBAAkB,EAAE,UAAU,CAAC,CAAC;AAC1D,aAAA;AACJ,SAAA;QAED,IAAI,CAAC,cAAc,CAAC,kBAAkB,EAAE,aAAa,EAAE,aAAa,CAAC,CAAC;KACzE;AAED;;;;;;AAMG;IACH,MAAM,sBAAsB,CACxB,UAAkB,EAClB,SAAwC,EACxC,gBAAwB,EACxB,aAAqB,EAAA;AAErB,QAAA,MAAM,aAAa,GAAG,WAAW,CAAC,SAAS,CAAC;AACxC,eAAI,MAAM,IAAI,CAAC,cAAc,CAAC,WAAW,CACnC,UAAU,EACV,SAAS,EACT,aAAa,CAChB;cACD,SAAS,CAAC;AAEhB,QAAA,MAAM,aAAa,GAAG,aAAa,EAAE,aAAa,CAAC;AACnD,QAAA,IAAI,aAAa,EAAE;YACf,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,gBAAgB,CAAC,CAAC;AACtD,YAAA,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;AACjB,iBAAA,MAAM,CAAC,CAAC,GAAG,KAAK,GAAG,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;AAC5C,iBAAA,OAAO,CAAC,CAAC,GAAG,KAAI;AACb,gBAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;AACpC,gBAAA,sBAAsB,CAAC,SAAS,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;AACnD,aAAC,CAAC,CAAC;AACP,YAAA,CAAC,GAAG,SAAS,CAAC,WAAW,CAAC;AACrB,iBAAA,MAAM,CAAC,CAAC,GAAG,KAAK,GAAG,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;AAC5C,iBAAA,OAAO,CAAC,CAAC,GAAG,KAAI;AACb,gBAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;AACpC,gBAAA,sBAAsB,CAAC,SAAS,CAAC,WAAW,EAAE,GAAG,CAAC,CAAC;AACvD,aAAC,CAAC,CAAC;AACP,YAAA,CAAC,GAAG,SAAS,CAAC,YAAY,CAAC;AACtB,iBAAA,MAAM,CAAC,CAAC,GAAG,KAAK,GAAG,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;AAC5C,iBAAA,OAAO,CAAC,CAAC,GAAG,KAAI;AACb,gBAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;AACpC,gBAAA,sBAAsB,CAAC,SAAS,CAAC,YAAY,EAAE,GAAG,CAAC,CAAC;AACxD,aAAC,CAAC,CAAC;YACP,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,aAAa,EAAE,gBAAgB,CAAC,CAAC;AACjE,SAAA;AAED,QAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,uBAAuB,EAAE,CAAC,EAAE,EAC9B,aAAa,CAChB,CAAC;AAEF,QAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;KAC9C;AAED;;;AAGG;IACH,aAAa,GAAA;QACT,MAAM,OAAO,GAAY,EAAE,CAAC;QAC5B,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC,OAAO,CAAC;AAC9C,QAAA,KAAK,MAAM,GAAG,IAAI,SAAS,EAAE;YACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;AACtD,YAAA,IAAI,QAAQ,EAAE;gBACV,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAkB,CAAC;AACtD,gBAAA,MAAM,MAAM,GAAG,SAAS,CAAC,kBAAkB,CACvC,OAAO,CAAC,MAAM,EACd,YAAY,CACf,CAAC;AACF,gBAAA,IAAI,MAAM,EAAE;AACR,oBAAA,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AAC7D,iBAAA;AACJ,aAAA;AACJ,SAAA;AACD,QAAA,OAAO,OAAO,CAAC;KAClB;AAED;;;;;;AAMG;AACH,IAAA,MAAM,eAAe,CACjB,gBAAwB,EACxB,aAAqB,EACrB,aAAqB,EAAA;AAErB,QAAA,MAAM,uBAAuB,GAAG,YAAY,CACxC,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,cAAc,EACnB,gBAAgB,CACnB,CAAC;AACF,QAAA,IAAI,uBAAuB,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;YAC9C,OAAO;AACV,SAAA;AAED,QAAA,MAAM,qBAAqB,GAAG,YAAY,CACtC,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,cAAc,EACnBA,yBAAmC,CACtC,CAAC;QACF,MAAM,kBAAkB,GAAG,cAAc,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/D,MAAM,mBAAmB,GAAG,cAAc,CACtC,IAAI,CAAC,cAAc,EACnB,aAAa,CAChB,CAAC;QAEF,KAAK,MAAM,UAAU,IAAI,CAAC,GAAG,uBAAuB,CAAC,OAAO,CAAC,EAAE;AAC3D,YAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,UAAU,EAAE,CAAC,EAAE,EACjB,aAAa,CAChB,CAAC;AAEF,YAAA,MAAM,aAAa,IAAI,MAAM,IAAI,CAAC,cAAc,CAC5C,UAAU,EACV,aAAa,CAChB,CAAyB,CAAC;YAC3B,IAAI,CAAC,aAAa,EAAE;AAChB,gBAAA,sBAAsB,CAClB,uBAAuB,CAAC,OAAO,EAC/B,UAAU,CACb,CAAC;gBACF,SAAS;AACZ,aAAA;YAED,MAAM,iBAAiB,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC,GAAG,KAClD,GAAG,CAAC,QAAQ,CAAC,aAAa,CAAC,aAAa,CAAC,CAC5C,CAAC;YACF,MAAM,kBAAkB,GAAG,mBAAmB,CAAC,IAAI,CAAC,CAAC,GAAG,KACpD,GAAG,CAAC,QAAQ,CAAC,aAAa,CAAC,aAAa,CAAC,CAC5C,CAAC;YAEF,IAAI,OAAO,GAAyB,IAAI,CAAC;AACzC,YAAA,IAAI,iBAAiB,EAAE;gBACnB,OAAO,GAAG,IAAI,CAAC,UAAU,CAAC,iBAAiB,EAAE,aAAa,CAAC,CAAC;AAC/D,aAAA;AAAM,iBAAA,IAAI,kBAAkB,EAAE;gBAC3B,MAAM,QAAQ,GACV,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC;gBACpD,MAAM,WAAW,GAAG,IAAI,CAAC,oBAAoB,CACzC,QAAQ,IAAI,EAAE,CACuB,CAAC;gBAC1C,OAAO;AACH,oBAAA,WAAW,IAAI,WAAW,CAAC,WAAW,CAAC;AACnC,2BAAI,MAAM,IAAI,CAAC,cAAc,CAAC,WAAW,CACnC,kBAAkB,EAClB,WAAW,EACX,aAAa,CAChB;0BACD,WAAW,CAAC;AACzB,aAAA;YAED,IAAI,CAAC,OAAO,EAAE;;AAEV,gBAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,kBAAkB,EAAE,CAAC,EAAE,EACzB,aAAa,CAChB,CAAC;gBACF,SAAS;AACZ,aAAA;AAED,YAAA,MAAM,MAAM,GAAG,SAAS,CAAC,kBAAkB,CACvC,aAAa,CAAC,MAAM,EACpB,YAAY,CACf,CAAC;YAEF,MAAM,aAAa,GAAG,IAAI,CAAC,qBAAqB,CAAC,aAAa,CAAC,CAAC;YAChE,MAAM,cAAc,GAAG,IAAI,CAAC,oBAAoB,CAC5C,aAAa,EACb,aAAa,CAChB,CAAC;AACF,YAAA,MAAM,sBAAsB,GACxB,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;YACjD,MAAM,0BAA0B,GAC5B,cAAc;gBACd,MAAM,CAAC,IAAI,CACP,SAAS,CAAC,kBAAkB,CACxB,cAAc,CAAC,MAAM,EACrB,YAAY,CACf,IAAI,EAAE,CACV,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;AAE/B;;;;AAIG;AACH,YAAA,IACI,CAAC,cAAc;AACf,iBAAC,aAAa,CAAC,aAAa,GAAG,cAAc,CAAC,aAAa;AACvD,qBAAC,sBAAsB,IAAI,CAAC,0BAA0B,CAAC,CAAC,EAC9D;AACE,gBAAA,MAAM,cAAc,GAAG,OAAO,CAAC,cAAc,IAAI,EAAE,CAAC;gBACpD,MAAM,QAAQ,GACV,4BAA4B,CAAC,MAAM,CAAC,IAAI,OAAO,CAAC,KAAK,CAAC;AAC1D,gBAAA,IACI,QAAQ;AACR,oBAAA,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,aAAa,KAAI;AACnC,wBAAA,OAAO,aAAa,CAAC,QAAQ,KAAK,QAAQ,CAAC;AAC/C,qBAAC,CAAC,EACJ;AACE,oBAAA,MAAM,gBAAgB,GAAG,kBAAkB,CACvC,OAAO,CAAC,aAAa,EACrB,OAAO,CAAC,cAAc,EACtB,QAAQ,EACR,MAAM,CACT,CAAC;AACF,oBAAA,cAAc,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;AACzC,iBAAA;AACD,gBAAA,OAAO,CAAC,cAAc,GAAG,cAAc,CAAC;AACxC,gBAAA,MAAM,aAAa,GAAG,IAAI,CAAC,kBAAkB,CACzC,kBAAkB,CAAC,cAAc,CAAC,OAAO,CAAC,CAC7C,CAAC;gBACF,MAAM,IAAI,GAAG,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;gBACtC,MAAM,IAAI,CAAC,WAAW,CAClB,aAAa,EACb,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EACvB,aAAa,EACb,OAAO,CAAC,aAAa,EACrB,IAAI,CACP,CAAC;AACF,gBAAA,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE;AAC7C,oBAAA,kBAAkB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;AAC1C,iBAAA;gBACD,MAAM,IAAI,CAAC,WAAW,CAClB,aAAa,EACb,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,EAC7B,aAAa,EACb,aAAa,CAAC,aAAa,EAC3B,IAAI,CACP,CAAC;AACF,gBAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,eAAe,EAAE,CAAC,EAAE,EACtB,aAAa,CAChB,CAAC;gBACF,IAAI,CAAC,qBAAqB,CAAC,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE;AACxD,oBAAA,qBAAqB,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;AACrD,iBAAA;AACJ,aAAA;AACJ,SAAA;QAED,IAAI,CAAC,YAAY,CACb,uBAAuB,EACvB,aAAa,EACb,gBAAgB,CACnB,CAAC;AACF,QAAA,IAAI,CAAC,YAAY,CAAC,qBAAqB,EAAE,aAAa,CAAC,CAAC;AACxD,QAAA,IAAI,CAAC,cAAc,CAAC,kBAAkB,EAAE,aAAa,CAAC,CAAC;KAC1D;AAED;;;;;;AAMG;AACH,IAAA,MAAM,mBAAmB,CACrB,gBAAwB,EACxB,OAAgB,EAChB,aAAqB,EAAA;AAErB,QAAA,MAAM,uBAAuB,GAAG,YAAY,CACxC,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,cAAc,EACnB,gBAAgB,CACnB,CAAC;AACF,QAAA,IAAI,uBAAuB,CAAC,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;YAClD,OAAO;AACV,SAAA;AAED,QAAA,MAAM,qBAAqB,GAAG,YAAY,CACtC,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,cAAc,EACnBA,yBAAmC,CACtC,CAAC;QAEF,KAAK,MAAM,cAAc,IAAI,CAAC,GAAG,uBAAuB,CAAC,WAAW,CAAC,EAAE;AACnE,YAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,UAAU,EAAE,CAAC,EAAE,EACjB,aAAa,CAChB,CAAC;AAEF,YAAA,MAAM,aAAa,IAAI,MAAM,IAAI,CAAC,cAAc,CAC5C,cAAc,EACd,aAAa,CAChB,CAA6B,CAAC;YAC/B,IAAI,CAAC,aAAa,EAAE;AAChB,gBAAA,sBAAsB,CAClB,uBAAuB,CAAC,WAAW,EACnC,cAAc,CACjB,CAAC;gBACF,SAAS;AACZ,aAAA;YAED,IAAI,EAAE,aAAa,CAAC,aAAa,IAAI,OAAO,CAAC,EAAE;;AAE3C,gBAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,kBAAkB,EAAE,CAAC,EAAE,EACzB,aAAa,CAChB,CAAC;gBACF,SAAS;AACZ,aAAA;YAED,MAAM,MAAM,GAAG,IAAI,CAAC,qBAAqB,CAAC,aAAa,CAAC,CAAC;YACzD,MAAM,IAAI,GAAG,OAAO,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;YAClD,IAAI,CAAC,qBAAqB,CAAC,WAAW,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;gBACrD,MAAM,IAAI,CAAC,WAAW,CAClB,MAAM,EACN,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,EAC7B,aAAa,EACb,aAAa,CAAC,aAAa,EAC3B,IAAI,CACP,CAAC;AACF,gBAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,eAAe,EAAE,CAAC,EAAE,EACtB,aAAa,CAChB,CAAC;AACF,gBAAA,qBAAqB,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;AAClD,aAAA;AAAM,iBAAA;gBACH,MAAM,YAAY,GAAG,IAAI,CAAC,wBAAwB,CAC9C,MAAM,EACN,aAAa,CAChB,CAAC;AACF,gBAAA,IACI,CAAC,YAAY;AACb,oBAAA,aAAa,CAAC,aAAa,GAAG,YAAY,CAAC,aAAa,EAC1D;;oBAEE,MAAM,IAAI,CAAC,WAAW,CAClB,MAAM,EACN,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,EAC7B,aAAa,EACb,aAAa,CAAC,aAAa,EAC3B,IAAI,CACP,CAAC;AACF,oBAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,eAAe,EAAE,CAAC,EAAE,EACtB,aAAa,CAChB,CAAC;AACL,iBAAA;AACJ,aAAA;AACJ,SAAA;QAED,IAAI,CAAC,YAAY,CACb,uBAAuB,EACvB,aAAa,EACb,gBAAgB,CACnB,CAAC;AACF,QAAA,IAAI,CAAC,YAAY,CAAC,qBAAqB,EAAE,aAAa,CAAC,CAAC;KAC3D;AAED;;;;;;AAMG;AACH,IAAA,MAAM,oBAAoB,CACtB,gBAAwB,EACxB,OAAgB,EAChB,aAAqB,EAAA;AAErB,QAAA,MAAM,uBAAuB,GAAG,YAAY,CACxC,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,cAAc,EACnB,gBAAgB,CACnB,CAAC;AACF,QAAA,IAAI,uBAAuB,CAAC,YAAY,CAAC,MAAM,KAAK,CAAC,EAAE;YACnD,OAAO;AACV,SAAA;AAED,QAAA,MAAM,qBAAqB,GAAG,YAAY,CACtC,IAAI,CAAC,QAAQ,EACb,IAAI,CAAC,cAAc,EACnBA,yBAAmC,CACtC,CAAC;QAEF,KAAK,MAAM,eAAe,IAAI;YAC1B,GAAG,uBAAuB,CAAC,YAAY;SAC1C,EAAE;AACC,YAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,UAAU,EAAE,CAAC,EAAE,EACjB,aAAa,CAChB,CAAC;AAEF,YAAA,MAAM,aAAa,IAAI,MAAM,IAAI,CAAC,cAAc,CAC5C,eAAe,EACf,aAAa,CAChB,CAA8B,CAAC;YAChC,IAAI,CAAC,aAAa,EAAE;AAChB,gBAAA,sBAAsB,CAClB,uBAAuB,CAAC,YAAY,EACpC,eAAe,CAClB,CAAC;gBACF,SAAS;AACZ,aAAA;YAED,IAAI,EAAE,aAAa,CAAC,aAAa,IAAI,OAAO,CAAC,EAAE;;AAE3C,gBAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,kBAAkB,EAAE,CAAC,EAAE,EACzB,aAAa,CAChB,CAAC;gBACF,SAAS;AACZ,aAAA;YAED,MAAM,MAAM,GAAG,IAAI,CAAC,qBAAqB,CAAC,aAAa,CAAC,CAAC;YACzD,MAAM,IAAI,GAAG,OAAO,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;YAClD,IAAI,CAAC,qBAAqB,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;gBACtD,MAAM,IAAI,CAAC,WAAW,CAClB,MAAM,EACN,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,EAC7B,aAAa,EACb,aAAa,CAAC,aAAa,EAC3B,IAAI,CACP,CAAC;AACF,gBAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,eAAe,EAAE,CAAC,EAAE,EACtB,aAAa,CAChB,CAAC;AACF,gBAAA,qBAAqB,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;AACnD,aAAA;AAAM,iBAAA;gBACH,MAAM,YAAY,GAAG,IAAI,CAAC,yBAAyB,CAC/C,MAAM,EACN,aAAa,CAChB,CAAC;AACF,gBAAA,IACI,CAAC,YAAY;AACb,oBAAA,aAAa,CAAC,aAAa,GAAG,YAAY,CAAC,aAAa,EAC1D;;oBAEE,MAAM,IAAI,CAAC,WAAW,CAClB,MAAM,EACN,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,EAC7B,aAAa,EACb,aAAa,CAAC,aAAa,EAC3B,IAAI,CACP,CAAC;AACF,oBAAA,IAAI,CAAC,iBAAiB,CAAC,eAAe,CAClC,EAAE,eAAe,EAAE,CAAC,EAAE,EACtB,aAAa,CAChB,CAAC;AACL,iBAAA;AACJ,aAAA;AACJ,SAAA;QAED,IAAI,CAAC,YAAY,CACb,uBAAuB,EACvB,aAAa,EACb,gBAAgB,CACnB,CAAC;AACF,QAAA,IAAI,CAAC,YAAY,CAAC,qBAAqB,EAAE,aAAa,CAAC,CAAC;KAC3D;AAED;;AAEG;AACK,IAAA,mBAAmB,CAAC,aAAqB,EAAA;AAC7C,QAAA,MAAM,eAAe,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAC/CC,iBAA2B,CAC9B,CAAC;AACF,QAAA,IAAI,eAAe,EAAE;YACjB,IAAI,CAAC,MAAM,CAAC,IAAI,CACZ,QAA6C,EAAA,aAAA,CAAA,CAAA;AAGjD,YAAA,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAC5B,EAAE,sBAAsB,EAAE,eAAe,EAAE,EAC3C,aAAa,CAChB,CAAC;AACL,SAAA;QAED,IAAI,eAAe,KAAK,OAAO,EAAE;YAC7B,IAAI,CAAC,OAAO,CAACA,iBAA2B,EAAE,OAAO,EAAE,aAAa,CAAC,CAAC;AACrE,SAAA;KACJ;AAED;;;AAGG;AACO,IAAA,oBAAoB,CAAC,SAAiB,EAAA;QAC5C,IAAI,CAAC,SAAS,EAAE;AACZ,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QACD,IAAI;YACA,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;AACzC;;;;;AAKG;AACH,YAAA,OAAO,UAAU,IAAI,OAAO,UAAU,KAAK,QAAQ;AAC/C,kBAAE,UAAU;kBACV,IAAI,CAAC;AACd,SAAA;AAAC,QAAA,OAAO,KAAK,EAAE;AACZ,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;KACJ;AAED;;;;AAIG;AACH,IAAA,OAAO,CAAC,GAAW,EAAE,KAAa,EAAE,aAAqB,EAAA;AACrD,QAAA,MAAM,cAAc,GAAG,IAAI,KAAK,CAC5BD,yBAAmC,GAAG,CAAC,CAC1C,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACV,QAAA,MAAM,eAAe,GAAkB,EAAE,CAAC;QAC1C,MAAM,UAAU,GAAG,EAAE,CAAC;QACtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,UAAU,EAAE,CAAC,EAAE,EAAE;;YAElC,IAAI;gBACA,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;gBACxC,IAAI,CAAC,GAAG,CAAC,EAAE;;AAEP,oBAAA,KACI,IAAI,aAAa,GAAG,CAAC,EACrB,aAAa,IAAIA,yBAAmC,EACpD,aAAa,EAAE,EACjB;;wBAEE,MAAM,UAAU,GAAG,cAAc;AAC5B,6BAAA,KAAK,CAAC,CAAC,EAAE,aAAa,CAAC;AACvB,6BAAA,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,KAAK,GAAG,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC;wBAC5C,IAAI,UAAU,IAAI,CAAC,EAAE;;4BAEjB,MAAM;AACT,yBAAA;wBACD,MAAM,QAAQ,GACV,CAAC,GAAG,UAAU,GAAG,cAAc,CAAC,aAAa,CAAC;AAC1C,8BAAE,UAAU,GAAG,cAAc,CAAC,aAAa,CAAC;8BAC1C,CAAC,CAAC;wBAEZ,IACI,CAAC,GAAG,UAAU;AACd,4BAAA,cAAc,CAAC,aAAa,CAAC,GAAG,CAAC,EACnC;AACE,4BAAA,IAAI,CAAC,qBAAqB,CACtB,eAAe,CAAC,KAAK,CAAC,UAAU,EAAE,QAAQ,CAAC,EAC3C,aAAa,EACb,aAAa,CAChB,CAAC;AACL,yBAAA;AACJ,qBAAA;AACJ,iBAAA;AACD,gBAAA,MAAM;AACT,aAAA;AAAC,YAAA,OAAO,CAAC,EAAE;AACR,gBAAA,MAAM,UAAU,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAC;gBACvC,IACI,UAAU,CAAC,SAAS;AAChB,oBAAA,eAAe,CAAC,kBAAkB;oBACtC,CAAC,GAAG,UAAU,EAChB;AACE,oBAAA,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE;;AAEzB,wBAAA,KACI,IAAI,CAAC,GAAG,CAAC,EACT,CAAC,IAAIA,yBAAmC,EACxC,CAAC,EAAE,EACL;AACE,4BAAA,IACI,GAAG;gCACHE,oBAA8B,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC,EAClD;gCACE,MAAM,SAAS,GACX,IAAI,CAAC,KAAK,CAAC,KAAK,CACnB,CAAC,WAAW,CAAC;AACd,gCAAA,eAAe,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC;AACnC,gCAAA,cAAc,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC;AACxC,6BAAA;AAAM,iCAAA;gCACH,MAAM,SAAS,GACX,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC;AACrC,gCAAA,eAAe,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC;AACnC,gCAAA,cAAc,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC;AACxC,6BAAA;AACJ,yBAAA;AACJ,qBAAA;AACD,oBAAA,IAAI,eAAe,CAAC,MAAM,IAAI,CAAC,EAAE;;AAE7B,wBAAA,MAAM,UAAU,CAAC;AACpB,qBAAA;;AAED,oBAAA,IAAI,CAAC,iBAAiB,CAClB,eAAe,CAAC,CAAC,CAAC,EAClB,aAAa,EACb,KAAK;qBACR,CAAC;AACL,iBAAA;AAAM,qBAAA;;AAEH,oBAAA,MAAM,UAAU,CAAC;AACpB,iBAAA;AACJ,aAAA;AACJ,SAAA;KACJ;AAED;;;;;AAKG;IACH,MAAM,WAAW,CACb,GAAW,EACX,KAAa,EACb,aAAqB,EACrB,SAAiB,EACjB,IAAa,EAAA;AAEb,QAAA,MAAM,cAAc,GAAG,IAAI,KAAK,CAC5BF,yBAAmC,GAAG,CAAC,CAC1C,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AACV,QAAA,MAAM,eAAe,GAAkB,EAAE,CAAC;QAC1C,MAAM,UAAU,GAAG,EAAE,CAAC;QACtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,UAAU,EAAE,CAAC,EAAE,EAAE;YAClC,IAAI;;AAEA,gBAAA,MAAM,WAAW,CACb,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,EACzD,iBAAiB,CAAC,WAAW,EAC7B,IAAI,CAAC,MAAM,EACX,IAAI,CAAC,iBAAiB,EACtB,aAAa,CAChB,CAAC,GAAG,EAAE,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC;gBAC9C,IAAI,CAAC,GAAG,CAAC,EAAE;;AAEP,oBAAA,KACI,IAAI,aAAa,GAAG,CAAC,EACrB,aAAa,IAAIA,yBAAmC,EACpD,aAAa,EAAE,EACjB;;wBAEE,MAAM,UAAU,GAAG,cAAc;AAC5B,6BAAA,KAAK,CAAC,CAAC,EAAE,aAAa,CAAC;AACvB,6BAAA,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,KAAK,GAAG,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC;wBAC5C,IAAI,UAAU,IAAI,CAAC,EAAE;;4BAEjB,MAAM;AACT,yBAAA;wBACD,MAAM,QAAQ,GACV,CAAC,GAAG,UAAU,GAAG,cAAc,CAAC,aAAa,CAAC;AAC1C,8BAAE,UAAU,GAAG,cAAc,CAAC,aAAa,CAAC;8BAC1C,CAAC,CAAC;wBAEZ,IACI,CAAC,GAAG,UAAU;AACd,4BAAA,cAAc,CAAC,aAAa,CAAC,GAAG,CAAC,EACnC;AACE,4BAAA,IAAI,CAAC,qBAAqB,CACtB,eAAe,CAAC,KAAK,CAAC,UAAU,EAAE,QAAQ,CAAC,EAC3C,aAAa,EACb,aAAa,CAChB,CAAC;AACL,yBAAA;AACJ,qBAAA;AACJ,iBAAA;AACD,gBAAA,MAAM;AACT,aAAA;AAAC,YAAA,OAAO,CAAC,EAAE;AACR,gBAAA,MAAM,UAAU,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAC;gBACvC,IACI,UAAU,CAAC,SAAS;AAChB,oBAAA,eAAe,CAAC,kBAAkB;oBACtC,CAAC,GAAG,UAAU,EAChB;AACE,oBAAA,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE;;AAEzB,wBAAA,KACI,IAAI,CAAC,GAAG,CAAC,EACT,CAAC,IAAIA,yBAAmC,EACxC,CAAC,EAAE,EACL;4BACE,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC;AACnD,4BAAA,eAAe,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC;AACnC,4BAAA,cAAc,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC;AACxC,yBAAA;AACJ,qBAAA;AACD,oBAAA,IAAI,eAAe,CAAC,MAAM,IAAI,CAAC,EAAE;;AAE7B,wBAAA,MAAM,UAAU,CAAC;AACpB,qBAAA;;AAED,oBAAA,IAAI,CAAC,iBAAiB,CAClB,eAAe,CAAC,CAAC,CAAC,EAClB,aAAa,EACb,KAAK;qBACR,CAAC;AACL,iBAAA;AAAM,qBAAA;;AAEH,oBAAA,MAAM,UAAU,CAAC;AACpB,iBAAA;AACJ,aAAA;AACJ,SAAA;KACJ;AAED;;;;;AAKG;IACH,UAAU,CACN,UAAkB,EAClB,aAAqB,EAAA;QAErB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAuC,EAAA,aAAA,CAAA,CAAA;QAG3C,MAAM,iBAAiB,GAAG,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;QACtE,IAAI,CAAC,iBAAiB,EAAE;AACpB,YAAA,IAAI,CAAC,uBAAuB,CAAC,UAAU,EAAE,aAAa,CAAC,CAAC;AACxD,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,MAAM,aAAa,GAAG,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;AACnE,QAAA,IACI,CAAC,aAAa;AACd,YAAA,CAAC,kBAAkB,CAAC,eAAe,CAAC,aAAa,CAAC,EACpD;AACE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,MAAM,OAAO,GAAG,YAAY,CAAC,QAAQ,CACjC,EAAmB,EACnB,aAAa,CAChB,CAAC;AAEF,QAAA,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAC5B;AACI,YAAA,eAAe,EAAE,WAAW,CAAC,OAAO,CAAC,aAAa,CAAC;SACtD,EACD,aAAa,CAChB,CAAC;AAEF,QAAA,OAAO,OAAO,CAAC;KAClB;AAED;;;AAGG;IACH,MAAM,UAAU,CACZ,OAAsB,EACtB,aAAqB,EACrB,IAAa,EACb,KAAa,EAAA;QAEb,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAuC,EAAA,aAAA,CAAA,CAAA;AAG3C,QAAA,MAAM,GAAG,GAAG,IAAI,CAAC,kBAAkB,CAC/B,kBAAkB,CAAC,cAAc,CAAC,OAAO,CAAC,CAC7C,CAAC;QACF,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC;AACxC,QAAA,OAAO,CAAC,aAAa,GAAG,SAAS,CAAC;AAClC,QAAA,OAAO,CAAC,aAAa,GAAG,KAAK,CAAC;AAC9B,QAAA,MAAM,IAAI,CAAC,WAAW,CAClB,GAAG,EACH,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EACvB,aAAa,EACb,SAAS,EACT,IAAI,CACP,CAAC;AACF,QAAA,IAAI,CAAC,kBAAkB,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;AAC5C,QAAA,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,aAAa,CAAC,CAAC;KACnE;IAED,cAAc,CACV,WAA0B,EAC1B,aAAqB,EACrB,aAAwB,GAAAD,sBAAgC,EAAA;AAExD,QAAA,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;YAC1B,IAAI,CAAC,UAAU,CAACI,sBAAgC,CAAC,aAAa,CAAC,CAAC,CAAC;AACpE,SAAA;AAAM,aAAA;AACH,YAAA,IAAI,CAAC,OAAO,CACRA,sBAAgC,CAAC,aAAa,CAAC,EAC/C,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,EAC3B,aAAa,CAChB,CAAC;AACL,SAAA;KACJ;AAED;;;AAGG;IACH,cAAc,GAAA;AACV,QAAA,OAAO,cAAc,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;KAC9C;AAED;;;AAGG;IACH,kBAAkB,CAAC,GAAW,EAAE,aAAqB,EAAA;QACjD,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA+C,EAAA,aAAA,CAAA,CAAA;QAGnD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAChB,QAA4D,EAAA,aAAA,CAAA,CAAA;AAGhE,QAAA,MAAM,WAAW,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC;QAC1C,IAAI,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE;;AAEjC,YAAA,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AACtB,YAAA,IAAI,CAAC,OAAO,CACRA,sBAAgC,EAAE,EAClC,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,EAC3B,aAAa,CAChB,CAAC;YACF,IAAI,CAAC,MAAM,CAAC,OAAO,CACf,QAA0D,EAAA,aAAA,CAAA,CAAA;AAG9D,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;AAAM,aAAA;YACH,IAAI,CAAC,MAAM,CAAC,OAAO,CACf,QAA0E,EAAA,aAAA,CAAA,CAAA;AAG9E,YAAA,OAAO,KAAK,CAAC;AAChB,SAAA;KACJ;AAED;;;AAGG;IACH,uBAAuB,CAAC,GAAW,EAAE,aAAqB,EAAA;QACtD,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAoD,EAAA,aAAA,CAAA,CAAA;QAGxD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAChB,QAAiE,EAAA,aAAA,CAAA,CAAA;AAGrE,QAAA,MAAM,WAAW,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC;QAC1C,MAAM,YAAY,GAAG,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;AAC9C,QAAA,IAAI,YAAY,GAAG,EAAE,EAAE;AACnB,YAAA,WAAW,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC;AACpC,YAAA,IAAI,CAAC,cAAc,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC;AACnD,SAAA;AAAM,aAAA;YACH,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA2E,EAAA,aAAA,CAAA,CAAA;AAGlF,SAAA;KACJ;AAED;;;AAGG;IACH,aAAa,CAAC,OAAoB,EAAE,aAAqB,EAAA;QACrD,MAAM,aAAa,GAAG,IAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;AAC3D,QAAA,IACI,aAAa,EAAE,aAAa,KAAK,OAAO,CAAC,aAAa;AACtD,YAAA,aAAa,EAAE,WAAW,KAAK,OAAO,CAAC,WAAW,EACpD;AACE,YAAA,IAAI,CAAC,gBAAgB,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;AAC9C,SAAA;AAED,QAAA,KAAK,CAAC,aAAa,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC;AAC5C,QAAA,IAAI,CAAC,uBAAuB,CACxB,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,EAChC,aAAa,CAChB,CAAC;;QAGF,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,CAAC,GAAG,KAAI;AAC1C,YAAA,IACI,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC;AACnC,gBAAA,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,EACnC;AACE,gBAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;AACvC,aAAA;AACL,SAAC,CAAC,CAAC;KACN;AAED;;;AAGG;IACH,aAAa,CAAC,GAAW,EAAE,aAAqB,EAAA;AAC5C,QAAA,KAAK,CAAC,aAAa,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;AACxC,QAAA,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QACtC,MAAM,SAAS,GAAG,SAAS,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;AACjD,QAAA,IAAI,SAAS,GAAG,EAAE,EAAE;YAChB,IAAI,CAAC,MAAM,CAAC,IAAI,CACZ,QAAoC,EAAA,aAAA,CAAA,CAAA;YAGxC,SAAS,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;AACvC,YAAA,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;AAC/C,SAAA;KACJ;AAED;;;AAGG;AACH,IAAA,iBAAiB,CACb,GAAW,EACX,aAAqB,EACrB,kBAA2B,IAAI,EAAA;AAE/B,QAAA,KAAK,CAAC,iBAAiB,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;QAC5C,eAAe,IAAI,IAAI,CAAC,qBAAqB,CAAC,CAAC,GAAG,CAAC,EAAE,aAAa,CAAC,CAAC;KACvE;AAED;;;;;AAKG;IACH,qBAAqB,CACjB,IAAmB,EACnB,aAAqB,EACrB,aAAwB,GAAAH,yBAAmC,EAAA;QAE3D,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,QAA6B,EAAA,aAAA,CAAA,CAAA;QAC/C,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,aAAa,CAAC,CAAC;QACnD,IAAI,WAAW,GAAG,CAAC,CAAC;AACpB,QAAA,IAAI,CAAC,OAAO,CAAC,CAAC,GAAG,KAAI;YACjB,MAAM,aAAa,GAAG,SAAS,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;AACzD,YAAA,IAAI,aAAa,GAAG,EAAE,EAAE;gBACpB,SAAS,CAAC,WAAW,CAAC,MAAM,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC;AAC/C,gBAAA,WAAW,EAAE,CAAC;AACjB,aAAA;AACL,SAAC,CAAC,CAAC;QAEH,IAAI,WAAW,GAAG,CAAC,EAAE;YACjB,IAAI,CAAC,MAAM,CAAC,IAAI,CACZ,QAAY,EAAA,aAAW,CAAuC,CAAA;YAGlE,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,aAAa,EAAE,aAAa,CAAC,CAAC;YAC3D,OAAO;AACV,SAAA;KACJ;AAED;;;AAGG;IACH,kBAAkB,CAAC,GAAW,EAAE,aAAqB,EAAA;AACjD,QAAA,KAAK,CAAC,kBAAkB,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;AAC7C,QAAA,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QACtC,MAAM,cAAc,GAAG,SAAS,CAAC,YAAY,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;AAC3D,QAAA,IAAI,cAAc,GAAG,EAAE,EAAE;YACrB,IAAI,CAAC,MAAM,CAAC,IAAI,CACZ,QAAyC,EAAA,aAAA,CAAA,CAAA;YAG7C,SAAS,CAAC,YAAY,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC;AACjD,YAAA,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;AAC/C,SAAA;KACJ;AAED;;;AAGG;AACH,IAAA,YAAY,CACR,aAAA,GAAwBA,yBAAmC,EAAA;AAE3D,QAAA,OAAO,YAAY,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,cAAc,EAAE,aAAa,CAAC,CAAC;KAC1E;AAED;;;;;AAKG;IACH,YAAY,CACR,SAAoB,EACpB,aAAqB,EACrB,aAAwB,GAAAA,yBAAmC,EAAA;AAE3D,QAAA,IACI,SAAS,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC;AAC9B,YAAA,SAAS,CAAC,WAAW,CAAC,MAAM,KAAK,CAAC;AAClC,YAAA,SAAS,CAAC,YAAY,CAAC,MAAM,KAAK,CAAC,EACrC;;AAEE,YAAA,IAAI,CAAC,UAAU,CACXE,oBAA8B,CAAC,IAAI,CAAC,QAAQ,EAAE,aAAa,CAAC,CAC/D,CAAC;YACF,OAAO;AACV,SAAA;AAAM,aAAA;YACH,IAAI,CAAC,OAAO,CACRA,oBAA8B,CAAC,IAAI,CAAC,QAAQ,EAAE,aAAa,CAAC,EAC5D,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,EACzB,aAAa,CAChB,CAAC;AACL,SAAA;KACJ;AAED;;;AAGG;IACH,oBAAoB,CAChB,UAAkB,EAClB,aAAqB,EAAA;QAErB,MAAM,KAAK,GAAG,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;QAC1D,IAAI,CAAC,KAAK,EAAE;YACR,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAgE,EAAA,aAAA,CAAA,CAAA;AAGpE,YAAA,IAAI,CAAC,aAAa,CAAC,UAAU,EAAE,aAAa,CAAC,CAAC;AAC9C,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,MAAM,aAAa,GAAG,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;QACvD,IAAI,CAAC,aAAa,IAAI,CAAC,YAAY,CAAC,eAAe,CAAC,aAAa,CAAC,EAAE;YAChE,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAgE,EAAA,aAAA,CAAA,CAAA;AAGpE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAqD,EAAA,aAAA,CAAA,CAAA;AAGzD,QAAA,OAAO,aAA8B,CAAC;KACzC;AAED;;;AAGG;AACH,IAAA,MAAM,oBAAoB,CACtB,OAAsB,EACtB,aAAqB,EACrB,IAAa,EAAA;QAEb,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAiD,EAAA,aAAA,CAAA,CAAA;QAGrD,MAAM,UAAU,GAAG,IAAI,CAAC,qBAAqB,CAAC,OAAO,CAAC,CAAC;QACvD,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC;AACxC,QAAA,OAAO,CAAC,aAAa,GAAG,SAAS,CAAC;AAElC,QAAA,MAAM,IAAI,CAAC,WAAW,CAClB,UAAU,EACV,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EACvB,aAAa,EACb,SAAS,EACT,IAAI,CACP,CAAC;AAEF,QAAA,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QACtC,IAAI,SAAS,CAAC,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,KAAK,EAAE,EAAE;YAC9C,IAAI,CAAC,MAAM,CAAC,IAAI,CACZ,QAAyD,EAAA,aAAA,CAAA,CAAA;AAG7D,YAAA,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;AACnC,YAAA,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;AAC/C,SAAA;KACJ;AAED;;;AAGG;IACH,wBAAwB,CACpB,cAAsB,EACtB,aAAqB,EAAA;QAErB,MAAM,KAAK,GAAG,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC;QAC9D,IAAI,CAAC,KAAK,EAAE;YACR,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAoE,EAAA,aAAA,CAAA,CAAA;YAGxE,IAAI,CAAC,qBAAqB,CAAC,CAAC,cAAc,CAAC,EAAE,aAAa,CAAC,CAAC;AAC5D,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QACD,MAAM,iBAAiB,GAAG,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;AAC3D,QAAA,IACI,CAAC,iBAAiB;AAClB,YAAA,CAAC,YAAY,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,EACtD;YACE,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAoE,EAAA,aAAA,CAAA,CAAA;AAGxE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAyD,EAAA,aAAA,CAAA,CAAA;AAG7D,QAAA,OAAO,iBAAsC,CAAC;KACjD;AAED;;;AAGG;AACH,IAAA,MAAM,wBAAwB,CAC1B,WAA8B,EAC9B,aAAqB,EACrB,IAAa,EAAA;QAEb,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAqD,EAAA,aAAA,CAAA,CAAA;QAGzD,MAAM,cAAc,GAAG,IAAI,CAAC,qBAAqB,CAAC,WAAW,CAAC,CAAC;QAC/D,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC;AACxC,QAAA,WAAW,CAAC,aAAa,GAAG,SAAS,CAAC;AAEtC,QAAA,MAAM,IAAI,CAAC,WAAW,CAClB,cAAc,EACd,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,EAC3B,aAAa,EACb,SAAS,EACT,IAAI,CACP,CAAC;AAEF,QAAA,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QACtC,MAAM,KAAK,GAAG,SAAS,CAAC,WAAW,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;AAC5D,QAAA,IAAI,KAAK,KAAK,EAAE,EAAE;YACd,SAAS,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;AAC1C,SAAA;QACD,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAiB,EAAA,aAAU,CAAA,CAAA;AAG/B,QAAA,SAAS,CAAC,WAAW,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;AAC3C,QAAA,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;KAC/C;AAED;;;AAGG;IACH,yBAAyB,CACrB,eAAuB,EACvB,aAAqB,EAAA;QAErB,MAAM,KAAK,GAAG,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC;QAC/D,IAAI,CAAC,KAAK,EAAE;YACR,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAqE,EAAA,aAAA,CAAA,CAAA;AAGzE,YAAA,IAAI,CAAC,kBAAkB,CAAC,eAAe,EAAE,aAAa,CAAC,CAAC;AACxD,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QACD,MAAM,kBAAkB,GAAG,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;AAC5D,QAAA,IACI,CAAC,kBAAkB;AACnB,YAAA,CAAC,YAAY,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,EACxD;YACE,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAqE,EAAA,aAAA,CAAA,CAAA;AAGzE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA0D,EAAA,aAAA,CAAA,CAAA;AAG9D,QAAA,OAAO,kBAAwC,CAAC;KACnD;AAED;;;AAGG;AACH,IAAA,MAAM,yBAAyB,CAC3B,YAAgC,EAChC,aAAqB,EACrB,IAAa,EAAA;QAEb,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAsD,EAAA,aAAA,CAAA,CAAA;QAG1D,MAAM,eAAe,GAAG,IAAI,CAAC,qBAAqB,CAAC,YAAY,CAAC,CAAC;QACjE,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC;AACxC,QAAA,YAAY,CAAC,aAAa,GAAG,SAAS,CAAC;AAEvC,QAAA,MAAM,IAAI,CAAC,WAAW,CAClB,eAAe,EACf,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,EAC5B,aAAa,EACb,SAAS,EACT,IAAI,CACP,CAAC;AAEF,QAAA,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QACtC,IAAI,SAAS,CAAC,YAAY,CAAC,OAAO,CAAC,eAAe,CAAC,KAAK,EAAE,EAAE;YACxD,IAAI,CAAC,MAAM,CAAC,IAAI,CACZ,QAA8D,EAAA,aAAA,CAAA,CAAA;AAGlE,YAAA,SAAS,CAAC,YAAY,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;AAC7C,YAAA,IAAI,CAAC,YAAY,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC;AAC/C,SAAA;KACJ;AAED;;;;AAIG;IACH,cAAc,CACV,cAAsB,EACtB,aAAqB,EAAA;QAErB,MAAM,KAAK,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;QAC1D,IAAI,CAAC,KAAK,EAAE;YACR,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA0D,EAAA,aAAA,CAAA,CAAA;AAG9D,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,MAAM,cAAc,GAAG,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;AACxD,QAAA,IACI,CAAC,cAAc;YACf,CAAC,YAAY,CAAC,mBAAmB,CAAC,cAAc,EAAE,cAAc,CAAC,EACnE;YACE,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA0D,EAAA,aAAA,CAAA,CAAA;AAG9D,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA+C,EAAA,aAAA,CAAA,CAAA;AAGnD,QAAA,OAAO,cAAmC,CAAC;KAC9C;AAED;;;;AAIG;IACH,cAAc,CACV,WAA8B,EAC9B,aAAqB,EAAA;QAErB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA2C,EAAA,aAAA,CAAA,CAAA;QAG/C,MAAM,cAAc,GAAG,YAAY,CAAC,sBAAsB,CAAC,WAAW,CAAC,CAAC;AACxE,QAAA,IAAI,CAAC,OAAO,CACR,cAAc,EACd,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,EAC3B,aAAa,CAChB,CAAC;KACL;AAED;;;;AAIG;IACH,kBAAkB,CACd,kBAA0B,EAC1B,aAAqB,EAAA;QAErB,MAAM,KAAK,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC;QAC9D,IAAI,CAAC,KAAK,EAAE;YACR,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA8D,EAAA,aAAA,CAAA,CAAA;AAGlE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QACD,MAAM,YAAY,GAAG,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;AACtD,QAAA,IACI,CAAC,YAAY;YACb,CAAC,YAAY,CAAC,uBAAuB,CACjC,kBAAkB,EAClB,YAAY,CACf,EACH;YACE,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA8D,EAAA,aAAA,CAAA,CAAA;AAGlE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAmD,EAAA,aAAA,CAAA,CAAA;AAGvD,QAAA,OAAO,YAAqC,CAAC;KAChD;AAED;;;;AAIG;AACH,IAAA,kBAAkB,CACd,kBAA0B,EAC1B,eAAsC,EACtC,aAAqB,EAAA;QAErB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA+C,EAAA,aAAA,CAAA,CAAA;AAGnD,QAAA,IAAI,CAAC,OAAO,CACR,kBAAkB,EAClB,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,EAC/B,aAAa,CAChB,CAAC;KACL;AAED;;AAEG;IACH,oBAAoB,CAChB,GAAW,EACX,aAAqB,EAAA;QAErB,MAAM,KAAK,GAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QAChD,IAAI,CAAC,KAAK,EAAE;YACR,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAgE,EAAA,aAAA,CAAA,CAAA;AAGpE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QACD,MAAM,cAAc,GAAG,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;AACxD,QAAA,IACI,cAAc;AACd,YAAA,YAAY,CAAC,yBAAyB,CAAC,GAAG,EAAE,cAAc,CAAC,EAC7D;YACE,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAqD,EAAA,aAAA,CAAA,CAAA;AAGzD,YAAA,OAAO,cAAyC,CAAC;AACpD,SAAA;AACD,QAAA,OAAO,IAAI,CAAC;KACf;AAED;;AAEG;IACH,wBAAwB,GAAA;QACpB,MAAM,OAAO,GAAG,IAAI,CAAC,eAAe,CAAC,OAAO,EAAE,CAAC;AAC/C,QAAA,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,KAAI;AAC1B,YAAA,OAAO,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;AACzC,SAAC,CAAC,CAAC;KACN;AAED;;;;AAIG;IACH,kBAAkB,CAAC,UAAkB,EAAE,cAAsB,EAAA;QACzD,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,iBAAiB,CAAC,WAAW,EAAE,UAAU,CAAC,CAAC;QACxE,IAAI,CAAC,eAAe,CAAC,OAAO,CACxB,iBAAiB,CAAC,WAAW,EAC7B,cAAc,CACjB,CAAC;KACL;AAED;;AAEG;IACH,kBAAkB,GAAA;AACd,QAAA,MAAM,GAAG,GACL,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,iBAAiB,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;AACtE,QAAA,MAAM,OAAO,GACT,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,iBAAiB,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;AACtE,QAAA,OAAO,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;KACzB;AAED;;;;;AAKG;AACH,IAAA,oBAAoB,CAChB,GAAW,EACX,MAA+B,EAC/B,aAAqB,EAAA;QAErB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAiD,EAAA,aAAA,CAAA,CAAA;AAGrD,QAAA,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;KAC7D;AAED;;AAEG;AACH,IAAA,gBAAgB,CAAC,aAAqB,EAAA;AAClC,QAAA,MAAM,uBAAuB,GAAG,IAAI,CAAC,gBAAgB,CACjD,SAAS,CAAC,mBAAmB,CAAC,sBAAsB,CACvD,CAAC;QACF,MAAM,yBAAyB,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CACzD,uBAAuB,CAC1B,CAAC;QACF,IAAI,CAAC,yBAAyB,EAAE;YAC5B,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAuE,EAAA,aAAA,CAAA,CAAA;AAG3E,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QACD,MAAM,qBAAqB,GAAG,IAAI,CAAC,oBAAoB,CACnD,yBAAyB,CACb,CAAC;AACjB,QAAA,IAAI,qBAAqB,EAAE;YACvB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA2E,EAAA,aAAA,CAAA,CAAA;YAG/E,OAAO,IAAI,CAAC,wBAAwB,CAChC;gBACI,aAAa,EAAE,qBAAqB,CAAC,aAAa;gBAClD,cAAc,EAAE,qBAAqB,CAAC,cAAc;gBACpD,QAAQ,EAAE,qBAAqB,CAAC,QAAQ;aAC3C,EACD,aAAa,CAChB,CAAC;AACL,SAAA;QACD,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA+D,EAAA,aAAA,CAAA,CAAA;AAGnE,QAAA,OAAO,IAAI,CAAC;KACf;AAED;;;AAGG;IACH,gBAAgB,CAAC,OAA2B,EAAE,aAAqB,EAAA;AAC/D,QAAA,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAC1C,SAAS,CAAC,mBAAmB,CAAC,sBAAsB,CACvD,CAAC;AACF,QAAA,IAAI,OAAO,EAAE;YACT,IAAI,CAAC,MAAM,CAAC,OAAO,CACf,QAAsC,EAAA,aAAA,CAAA,CAAA;AAG1C,YAAA,MAAM,kBAAkB,GAAyB;gBAC7C,aAAa,EAAE,OAAO,CAAC,aAAa;gBACpC,cAAc,EAAE,OAAO,CAAC,cAAc;gBACtC,QAAQ,EAAE,OAAO,CAAC,QAAQ;aAC7B,CAAC;AACF,YAAA,IAAI,CAAC,OAAO,CACR,gBAAgB,EAChB,IAAI,CAAC,SAAS,CAAC,kBAAkB,CAAC,EAClC,aAAa,CAChB,CAAC;AACL,SAAA;AAAM,aAAA;YACH,IAAI,CAAC,MAAM,CAAC,OAAO,CACf,QAA6D,EAAA,aAAA,CAAA,CAAA;AAGjE,YAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC;AACpD,SAAA;QACD,IAAI,CAAC,YAAY,CAAC,SAAS,CACvB,SAAS,CAAC,sBAAsB,EAChC,aAAa,CAChB,CAAC;KACL;AAED;;;;AAIG;IACH,kBAAkB,CACd,kBAA0B,EAC1B,aAAqB,EAAA;QAErB,MAAM,KAAK,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC;QAC9D,IAAI,CAAC,KAAK,EAAE;YACR,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA8D,EAAA,aAAA,CAAA,CAAA;AAGlE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,MAAM,qBAAqB,GAAG,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;AAC/D,QAAA,IACI,CAAC,qBAAqB;YACtB,CAAC,YAAY,CAAC,kBAAkB,CAC5B,kBAAkB,EAClB,qBAAqB,CACxB,EACH;YACE,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA8D,EAAA,aAAA,CAAA,CAAA;AAGlE,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAmD,EAAA,aAAA,CAAA,CAAA;AAGvD,QAAA,OAAO,qBAAyC,CAAC;KACpD;AAED;;;;AAIG;AACH,IAAA,kBAAkB,CACd,kBAA0B,EAC1B,eAAiC,EACjC,aAAqB,EAAA;QAErB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA+C,EAAA,aAAA,CAAA,CAAA;AAGnD,QAAA,IAAI,CAAC,OAAO,CACR,kBAAkB,EAClB,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,EAC/B,aAAa,CAChB,CAAC;KACL;AAED;;;;;AAKG;AACH,IAAA,iBAAiB,CACb,QAAgB,EAChB,aAAqB,EACrB,WAAqB,EAAA;AAErB,QAAA,MAAM,GAAG,GAAG,WAAW,GAAG,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC;QACrE,MAAM,KAAK,GAAG,IAAI,CAAC,qBAAqB,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QACtD,IAAI,CAAC,KAAK,EAAE;;AAER,YAAA,IACI,IAAI,CAAC,WAAW,CAAC,aAAa;gBAC9B,oBAAoB,CAAC,YAAY,EACnC;gBACE,MAAM,IAAI,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;AAC9C,gBAAA,IAAI,IAAI,EAAE;oBACN,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAoF,EAAA,aAAA,CAAA,CAAA;AAGxF,oBAAA,OAAO,IAAI,CAAC;AACf,iBAAA;AACJ,aAAA;YACD,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA6E,EAAA,aAAA,CAAA,CAAA;AAGjF,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;AACD,QAAA,OAAO,KAAK,CAAC;KAChB;AAED;;;;AAIG;AACH,IAAA,iBAAiB,CACb,QAAgB,EAChB,KAAa,EACb,WAAqB,EAAA;AAErB,QAAA,MAAM,GAAG,GAAG,WAAW,GAAG,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC;QACrE,IAAI,CAAC,qBAAqB,CAAC,OAAO,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;KAClD;AAED;;;AAGG;AACH,IAAA,UAAU,CAAC,GAAW,EAAA;AAClB,QAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;KACvC;AAED;;;AAGG;AACH,IAAA,mBAAmB,CAAC,GAAW,EAAA;AAC3B,QAAA,IAAI,CAAC,qBAAqB,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;KAC9C;AAED;;AAEG;IACH,OAAO,GAAA;AACH,QAAA,OAAO,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,CAAC;KACxC;AAED;;AAEG;AACH,IAAA,KAAK,CAAC,aAAqB,EAAA;;AAEvB,QAAA,IAAI,CAAC,iBAAiB,CAAC,aAAa,CAAC,CAAC;AACtC,QAAA,IAAI,CAAC,iBAAiB,CAAC,aAAa,CAAC,CAAC;;QAGtC,IAAI,CAAC,qBAAqB,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,CAAC,QAAgB,KAAI;YAC9D,IACI,QAAQ,CAAC,OAAO,CAACE,MAAgB,CAAC,KAAK,EAAE;gBACzC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,EACxC;AACE,gBAAA,IAAI,CAAC,mBAAmB,CAAC,QAAQ,CAAC,CAAC;AACtC,aAAA;AACL,SAAC,CAAC,CAAC;;QAGH,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,CAAC,QAAgB,KAAI;YACvD,IACI,QAAQ,CAAC,OAAO,CAACA,MAAgB,CAAC,KAAK,EAAE;gBACzC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,EACxC;AACE,gBAAA,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;AAC5C,aAAA;AACL,SAAC,CAAC,CAAC;AAEH,QAAA,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC;KAChC;AAED;;;;AAIG;AACH,IAAA,gBAAgB,CAAC,GAAW,EAAA;QACxB,IAAI,WAAW,CAAC,UAAU,CAAC,GAAG,EAAEA,MAAgB,CAAC,EAAE;AAC/C,YAAA,OAAO,GAAG,CAAC;AACd,SAAA;QACD,OAAO,CAAA,EAAGA,MAAgB,CAAA,CAAA,EAAI,IAAI,CAAC,QAAQ,CAAA,CAAA,EAAI,GAAG,CAAA,CAAE,CAAC;KACxD;AAED;;;;;AAKG;AACH,IAAA,qBAAqB,CAAC,UAA4B,EAAA;AAC9C,QAAA,MAAM,QAAQ,GACV,CAAC,UAAU,CAAC,cAAc;YACtB,SAAS,CAAC,cAAc,CAAC,aAAa;YACtC,UAAU,CAAC,QAAQ;YACvB,UAAU,CAAC,QAAQ,CAAC;AACxB,QAAA,MAAM,MAAM,GACR,UAAU,CAAC,SAAS;AACpB,YAAA,UAAU,CAAC,SAAS,CAAC,WAAW,EAAE;AAC9B,gBAAA,SAAS,CAAC,oBAAoB,CAAC,MAAM,CAAC,WAAW,EAAE;AACnD,cAAE,UAAU,CAAC,SAAS,CAAC,WAAW,EAAE;cAClC,EAAE,CAAC;AACb,QAAA,MAAM,aAAa,GAAG;AAClB,YAAA,CAAA,EAAGA,MAAgB,IAAIJ,yBAAmC,CAAE,CAAA;AAC5D,YAAA,UAAU,CAAC,aAAa;AACxB,YAAA,UAAU,CAAC,WAAW;AACtB,YAAA,UAAU,CAAC,cAAc;YACzB,QAAQ;YACR,UAAU,CAAC,KAAK,IAAI,EAAE;YACtB,UAAU,CAAC,MAAM,IAAI,EAAE;YACvB,MAAM;SACT,CAAC;QAEF,OAAO,aAAa,CAAC,IAAI,CAACK,mBAA6B,CAAC,CAAC,WAAW,EAAE,CAAC;KAC1E;AAED;;;;AAIG;AACH,IAAA,kBAAkB,CAAC,OAAoB,EAAA;AACnC,QAAA,MAAM,YAAY,GAAG,OAAO,CAAC,aAAa,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;AACzD,QAAA,MAAM,UAAU,GAAG;AACf,YAAA,CAAA,EAAGD,MAAgB,IAAIL,sBAAgC,CAAE,CAAA;AACzD,YAAA,OAAO,CAAC,aAAa;AACrB,YAAA,OAAO,CAAC,WAAW;AACnB,YAAA,YAAY,IAAI,OAAO,CAAC,QAAQ,IAAI,EAAE;SACzC,CAAC;QAEF,OAAO,UAAU,CAAC,IAAI,CAACM,mBAA6B,CAAC,CAAC,WAAW,EAAE,CAAC;KACvE;AAED;;;AAGG;AACH,IAAA,iBAAiB,CAAC,aAAqB,EAAA;QACnC,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA8C,EAAA,aAAA,CAAA,CAAA;AAIlD,QAAA,IAAI,CAAC,mBAAmB,CACpB,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAC3D,CAAC;AACF,QAAA,IAAI,CAAC,mBAAmB,CACpB,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CACrD,CAAC;AACF,QAAA,IAAI,CAAC,mBAAmB,CACpB,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,UAAU,CAAC,CACvD,CAAC;AACF,QAAA,IAAI,CAAC,mBAAmB,CACpB,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CACrD,CAAC;AACF,QAAA,IAAI,CAAC,mBAAmB,CACpB,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAC3D,CAAC;AACF,QAAA,IAAI,CAAC,wBAAwB,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;KACnD;AAED,IAAA,qBAAqB,CACjB,eAA8C,EAC9C,aAAqB,EACrB,YAAqB,EAAA;QAErB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAkD,EAAA,aAAA,CAAA,CAAA;QAItD,MAAM,YAAY,GAAG,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,CAAC;QACnE,IAAI,CAAC,iBAAiB,CAClB,kBAAkB,CAAC,cAAc,EACjC,YAAY,EACZ,IAAI,CACP,CAAC;AAEF,QAAA,IAAI,YAAY,EAAE;AACd,YAAA,MAAM,eAAe,GAAG,YAAY,CAAC,YAAY,CAAC,CAAC;YACnD,IAAI,CAAC,iBAAiB,CAClB,kBAAkB,CAAC,QAAQ,EAC3B,eAAe,EACf,IAAI,CACP,CAAC;AACL,SAAA;KACJ;AAED;;;AAGG;AACH,IAAA,gBAAgB,CACZ,aAAqB,EAAA;QAErB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA6C,EAAA,aAAA,CAAA,CAAA;;AAIjD,QAAA,MAAM,mBAAmB,GAAG,IAAI,CAAC,iBAAiB,CAC9C,kBAAkB,CAAC,cAAc,EACjC,aAAa,EACb,IAAI,CACP,CAAC;QACF,IAAI,CAAC,mBAAmB,EAAE;AACtB,YAAA,MAAM,sBAAsB,CACxBC,wBAA8C,CACjD,CAAC;AACL,SAAA;AACD,QAAA,MAAM,eAAe,GAAG,IAAI,CAAC,iBAAiB,CAC1C,kBAAkB,CAAC,QAAQ,EAC3B,aAAa,EACb,IAAI,CACP,CAAC;AAEF,QAAA,IAAI,aAA4C,CAAC;QACjD,IAAI,QAAQ,GAAG,EAAE,CAAC;QAClB,IAAI;YACA,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAC9D,YAAA,IAAI,eAAe,EAAE;AACjB,gBAAA,QAAQ,GAAG,YAAY,CAAC,eAAe,CAAC,CAAC;AAC5C,aAAA;AACJ,SAAA;AAAC,QAAA,OAAO,CAAC,EAAE;YACR,IAAI,CAAC,MAAM,CAAC,QAAQ,CAChB,QAAwB,EAAA,aAAA,CAAA,CAAA;YAG5B,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAmD,EAAA,aAAA,CAAA,CAAA;AAGvD,YAAA,MAAM,sBAAsB,CACxBC,mCAAyD,CAC5D,CAAC;AACL,SAAA;AAED,QAAA,OAAO,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;KACpC;AAED;;;AAGG;IACH,sBAAsB,GAAA;QAClB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAmD,EAAA,EAAA,CAAA,CAAA;AAGvD,QAAA,MAAM,aAAa,GAAG,IAAI,CAAC,iBAAiB,CACxC,kBAAkB,CAAC,cAAc,EACjC,EAAE,EACF,IAAI,CACP,CAAC;QACF,IAAI,CAAC,aAAa,EAAE;YAChB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA4E,EAAA,EAAA,CAAA,CAAA;AAGhF,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;QAED,MAAM,aAAa,GAAG,IAAI,CAAC,oBAAoB,CAC3C,aAAa,CACO,CAAC;QACzB,IAAI,CAAC,aAAa,EAAE;YAChB,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAA4E,EAAA,EAAA,CAAA,CAAA;AAGhF,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;AAED,QAAA,OAAO,aAAa,CAAC;KACxB;AAED,IAAA,uBAAuB,CAAC,aAAuB,EAAA;QAC3C,MAAM,QAAQ,GAAG,IAAI,CAAC,wBAAwB,EAAE,EAAE,QAAQ,CAAC;AAE3D,QAAA,IAAI,aAAa,EAAE;AACf,YAAA,OAAO,QAAQ,KAAK,IAAI,CAAC,QAAQ,CAAC;AACrC,SAAA;AAAM,aAAA;YACH,OAAO,CAAC,CAAC,QAAQ,CAAC;AACrB,SAAA;KACJ;IAED,wBAAwB,GAAA;QAIpB,MAAM,GAAG,GAAG,CAAA,EAAGH,MAAgB,CAAA,CAAA,EAAI,kBAAkB,CAAC,sBAAsB,CAAA,CAAE,CAAC;AAC/E,QAAA,MAAM,KAAK,GAAG,IAAI,CAAC,iBAAiB,CAAC,GAAG,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;QACrD,IAAI;AACA,YAAA,OAAO,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;AAC3C,SAAA;AAAC,QAAA,OAAO,CAAC,EAAE;;YAER,IAAI,CAAC,MAAM,CAAC,KAAK,CACb,QAAkI,EAAA,EAAA,CAAA,CAAA;AAGtI,YAAA,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;AAC9B,YAAA,IAAI,CAAC,iBAAiB,CAAC,EAAE,CAAC,CAAC;YAC3B,SAAS,CAAC,MAAM,CAAC,CAAC;AAClB,YAAA,OAAO,IAAI,CAAC;AACf,SAAA;KACJ;AAED,IAAA,wBAAwB,CACpB,UAAmB,EACnB,IAAA,GAAyB,gBAAgB,CAAC,MAAM,EAChD,aAAyB,GAAA,KAAK,EAC9B,aAAA,GAAwB,EAAE,EAAA;;QAG1B,MAAM,GAAG,GAAG,CAAA,EAAGA,MAAgB,CAAA,CAAA,EAAI,kBAAkB,CAAC,sBAAsB,CAAA,CAAE,CAAC;AAC/E,QAAA,IAAI,UAAU,EAAE;AACZ,YAAA,MAAM,mBAAmB,GAAG,IAAI,CAAC,wBAAwB,EAAE,CAAC;AAC5D,YAAA,IAAI,mBAAmB,EAAE;AACrB,gBAAA,IAAI,aAAa,EAAE;AACf,oBAAA,IAAI,CAAC,MAAM,CAAC,OAAO,CACf;;oBAKJI,2BAAwC,CACpC,IAAI,CAAC,MAAM,EACX,aAAa,CAChB,CAAC;;AAGF,oBAAA,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;AACjC,iBAAA;AAAM,qBAAA;AACH,oBAAA,MAAM,sBAAsB,CACxBC,qBAA2C,CAC9C,CAAC;AACL,iBAAA;AACJ,aAAA;;YAED,IAAI,CAAC,iBAAiB,CAClB,GAAG,EACH,IAAI,CAAC,SAAS,CAAC,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,EACjD,KAAK,CACR,CAAC;AACL,SAAA;AAAM,aAAA,IACH,CAAC,UAAU;YACX,IAAI,CAAC,wBAAwB,EAAE,EAAE,QAAQ,KAAK,IAAI,CAAC,QAAQ,EAC7D;AACE,YAAA,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC;AACjC,SAAA;KACJ;AAED;;;;AAIG;AACH,IAAA,MAAM,YAAY,CACd,MAA4B,EAC5B,OAIkB,EAAA;AAElB,QAAA,MAAM,aAAa,GAAG,YAAY,CAAC,mBAAmB,CAClD,MAAM,CAAC,OAAO,CAAC,aAAa,EAC5B,MAAM,CAAC,OAAO,CAAC,WAAW,EAC1B,MAAM,CAAC,OAAO,EACd,IAAI,CAAC,QAAQ,EACb,MAAM,CAAC,QAAQ,CAClB,CAAC;AAEF;;;;;;AAMG;AAEH,QAAA,MAAM,iBAAiB,GAAG,YAAY,CAAC,uBAAuB,CAC1D,MAAM,CAAC,OAAO,CAAC,aAAa,EAC5B,MAAM,CAAC,OAAO,CAAC,WAAW,EAC1B,MAAM,CAAC,WAAW,EAClB,IAAI,CAAC,QAAQ,EACb,MAAM,CAAC,QAAQ,EACf,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC;;AAEvB,QAAA,MAAM,CAAC,SAAS;cACV,SAAS,CAAC,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC;AAC/C,cAAE,CAAC,EACP,MAAM,CAAC,YAAY;cACb,SAAS,CAAC,iBAAiB,CAAC,MAAM,CAAC,YAAY,CAAC;AAClD,cAAE,CAAC,EACP,YAAY,EACZ,SAAS;AACT,QAAA,MAAM,CAAC,SAA2C,EAClD,SAAS;QACT,OAAO,CAAC,MAAM,CACjB,CAAC;QAEF,IAAI,OAAO,CAAC,QAAQ,EAAE;AAClB,YAAA,iBAAiB,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;AACjD,SAAA;AAED,QAAA,MAAM,WAAW,GAAG;AAChB,YAAA,OAAO,EAAE,aAAa;AACtB,YAAA,WAAW,EAAE,iBAAiB;SACjC,CAAC;AACF,QAAA,OAAO,IAAI,CAAC,eAAe,CACvB,WAAW,EACX,MAAM,CAAC,aAAa,EACpB,SAAS,CAAC,MAAM,CACZ,SAAS,CAAC,kBAAkB,CAAC,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC,CAC7D,EACD,KAAK,CAAC,YAAY,CACrB,CAAC;KACL;AAED;;;;;AAKG;IACH,MAAM,eAAe,CACjB,WAAwB,EACxB,aAAqB,EACrB,IAAa,EACb,KAAa,EACb,YAA2B,EAAA;QAE3B,IAAI;AACA,YAAA,MAAM,KAAK,CAAC,eAAe,CACvB,WAAW,EACX,aAAa,EACb,IAAI,EACJ,KAAK,EACL,YAAY,CACf,CAAC;AACL,SAAA;AAAC,QAAA,OAAO,CAAC,EAAE;YACR,IACI,CAAC,YAAY,UAAU;AACvB,gBAAA,IAAI,CAAC,iBAAiB;AACtB,gBAAA,aAAa,EACf;gBACE,IAAI;AACA,oBAAA,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;AAEtC,oBAAA,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAC5B;AACI,wBAAA,YAAY,EAAE,SAAS,CAAC,YAAY,CAAC,MAAM;AAC3C,wBAAA,YAAY,EAAE,SAAS,CAAC,OAAO,CAAC,MAAM;AACtC,wBAAA,YAAY,EAAE,SAAS,CAAC,WAAW,CAAC,MAAM;qBAC7C,EACD,aAAa,CAChB,CAAC;AACL,iBAAA;gBAAC,OAAO,CAAC,EAAE,GAAE;AACjB,aAAA;AAED,YAAA,MAAM,CAAC,CAAC;AACX,SAAA;KACJ;AACJ,CAAA;AAED;;;AAGG;AACH,SAAS,wBAAwB,CAC7B,QAAgB,EAChB,aAA4C,EAC5C,MAAc,EACd,iBAAqC,EAAA;IAErC,IAAI;AACA,QAAA,QAAQ,aAAa;YACjB,KAAK,oBAAoB,CAAC,YAAY;gBAClC,OAAO,IAAI,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,iBAAiB,CAAC,CAAC;YACjE,KAAK,oBAAoB,CAAC,cAAc;gBACpC,OAAO,IAAI,cAAc,EAAE,CAAC;YAChC,KAAK,oBAAoB,CAAC,aAAa,CAAC;AACxC,YAAA;gBACI,MAAM;AACb,SAAA;AACJ,KAAA;AAAC,IAAA,OAAO,CAAC,EAAE;AACR,QAAA,MAAM,CAAC,KAAK,CAAC,CAAW,EAAE,EAAE,CAAC,CAAC;AACjC,KAAA;IAED,OAAO,IAAI,aAAa,EAAE,CAAC;AAC/B,CAAC;AAEM,MAAM,6BAA6B,GAAG,CACzC,QAAgB,EAChB,MAAc,EACd,iBAAqC,EACrC,YAA0B,KACL;AACrB,IAAA,MAAM,YAAY,GAA2B;QACzC,aAAa,EAAE,oBAAoB,CAAC,aAAa;AACjD,QAAA,kBAAkB,EAAE,CAAC;KACxB,CAAC;AACF,IAAA,OAAO,IAAI,mBAAmB,CAC1B,QAAQ,EACR,YAAY,EACZ,6BAA6B,EAC7B,MAAM,EACN,iBAAiB,EACjB,YAAY,CACf,CAAC;AACN;;;;"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { TokenKeys } from "@azure/msal-common/browser";
|
|
2
|
-
import { IWindowStorage } from "./IWindowStorage.js";
|
|
3
|
-
/**
|
|
4
|
-
* Returns a list of cache keys for all known accounts
|
|
5
|
-
* @param storage
|
|
6
|
-
* @returns
|
|
7
|
-
*/
|
|
8
|
-
export declare function getAccountKeys(storage: IWindowStorage<string>, schemaVersion?: number): Array<string>;
|
|
9
|
-
/**
|
|
10
|
-
* Returns a list of cache keys for all known tokens
|
|
11
|
-
* @param clientId
|
|
12
|
-
* @param storage
|
|
13
|
-
* @returns
|
|
14
|
-
*/
|
|
15
|
-
export declare function getTokenKeys(clientId: string, storage: IWindowStorage<string>, schemaVersion?: number): TokenKeys;
|
|
16
|
-
//# sourceMappingURL=CacheHelpers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CacheHelpers.d.ts","sourceRoot":"","sources":["../../../src/cache/CacheHelpers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACvD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAGrD;;;;GAIG;AACH,wBAAgB,cAAc,CAC1B,OAAO,EAAE,cAAc,CAAC,MAAM,CAAC,EAC/B,aAAa,CAAC,EAAE,MAAM,GACvB,KAAK,CAAC,MAAM,CAAC,CASf;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CACxB,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,cAAc,CAAC,MAAM,CAAC,EAC/B,aAAa,CAAC,EAAE,MAAM,GACvB,SAAS,CAqBX"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.8.0 2026-04-21 */
|
|
2
|
-
'use strict';
|
|
3
|
-
import { getAccountKeysCacheKey, getTokenKeysCacheKey } from './CacheKeys.mjs';
|
|
4
|
-
|
|
5
|
-
/*
|
|
6
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7
|
-
* Licensed under the MIT License.
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* Returns a list of cache keys for all known accounts
|
|
11
|
-
* @param storage
|
|
12
|
-
* @returns
|
|
13
|
-
*/
|
|
14
|
-
function getAccountKeys(storage, schemaVersion) {
|
|
15
|
-
const accountKeys = storage.getItem(getAccountKeysCacheKey(schemaVersion));
|
|
16
|
-
if (accountKeys) {
|
|
17
|
-
return JSON.parse(accountKeys);
|
|
18
|
-
}
|
|
19
|
-
return [];
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Returns a list of cache keys for all known tokens
|
|
23
|
-
* @param clientId
|
|
24
|
-
* @param storage
|
|
25
|
-
* @returns
|
|
26
|
-
*/
|
|
27
|
-
function getTokenKeys(clientId, storage, schemaVersion) {
|
|
28
|
-
const item = storage.getItem(getTokenKeysCacheKey(clientId, schemaVersion));
|
|
29
|
-
if (item) {
|
|
30
|
-
const tokenKeys = JSON.parse(item);
|
|
31
|
-
if (tokenKeys &&
|
|
32
|
-
tokenKeys.hasOwnProperty("idToken") &&
|
|
33
|
-
tokenKeys.hasOwnProperty("accessToken") &&
|
|
34
|
-
tokenKeys.hasOwnProperty("refreshToken")) {
|
|
35
|
-
return tokenKeys;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
return {
|
|
39
|
-
idToken: [],
|
|
40
|
-
accessToken: [],
|
|
41
|
-
refreshToken: [],
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export { getAccountKeys, getTokenKeys };
|
|
46
|
-
//# sourceMappingURL=CacheHelpers.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CacheHelpers.mjs","sources":["../../../../src/cache/CacheHelpers.ts"],"sourcesContent":[null],"names":["CacheKeys.getAccountKeysCacheKey","CacheKeys.getTokenKeysCacheKey"],"mappings":";;;;AAAA;;;AAGG;AAMH;;;;AAIG;AACa,SAAA,cAAc,CAC1B,OAA+B,EAC/B,aAAsB,EAAA;AAEtB,IAAA,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,CAC/BA,sBAAgC,CAAC,aAAa,CAAC,CAClD,CAAC;AACF,IAAA,IAAI,WAAW,EAAE;AACb,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;AAClC,KAAA;AAED,IAAA,OAAO,EAAE,CAAC;AACd,CAAC;AAED;;;;;AAKG;SACa,YAAY,CACxB,QAAgB,EAChB,OAA+B,EAC/B,aAAsB,EAAA;AAEtB,IAAA,MAAM,IAAI,GAAG,OAAO,CAAC,OAAO,CACxBC,oBAA8B,CAAC,QAAQ,EAAE,aAAa,CAAC,CAC1D,CAAC;AACF,IAAA,IAAI,IAAI,EAAE;QACN,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;AACnC,QAAA,IACI,SAAS;AACT,YAAA,SAAS,CAAC,cAAc,CAAC,SAAS,CAAC;AACnC,YAAA,SAAS,CAAC,cAAc,CAAC,aAAa,CAAC;AACvC,YAAA,SAAS,CAAC,cAAc,CAAC,cAAc,CAAC,EAC1C;AACE,YAAA,OAAO,SAAsB,CAAC;AACjC,SAAA;AACJ,KAAA;IAED,OAAO;AACH,QAAA,OAAO,EAAE,EAAE;AACX,QAAA,WAAW,EAAE,EAAE;AACf,QAAA,YAAY,EAAE,EAAE;KACnB,CAAC;AACN;;;;"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export declare const PREFIX = "msal";
|
|
2
|
-
export declare const CACHE_KEY_SEPARATOR = "|";
|
|
3
|
-
export declare const CREDENTIAL_SCHEMA_VERSION = 3;
|
|
4
|
-
export declare const ACCOUNT_SCHEMA_VERSION = 3;
|
|
5
|
-
export declare const LOG_LEVEL_CACHE_KEY: string;
|
|
6
|
-
export declare const LOG_PII_CACHE_KEY: string;
|
|
7
|
-
export declare const BROWSER_PERF_ENABLED_KEY: string;
|
|
8
|
-
export declare const PLATFORM_AUTH_DOM_SUPPORT: string;
|
|
9
|
-
export declare const VERSION_CACHE_KEY: string;
|
|
10
|
-
export declare const ACCOUNT_KEYS = "account.keys";
|
|
11
|
-
export declare const TOKEN_KEYS = "token.keys";
|
|
12
|
-
export declare const SSO_CAPABLE: string;
|
|
13
|
-
export declare function getAccountKeysCacheKey(schema?: number): string;
|
|
14
|
-
export declare function getTokenKeysCacheKey(clientId: string, schema?: number): string;
|
|
15
|
-
//# sourceMappingURL=CacheKeys.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CacheKeys.d.ts","sourceRoot":"","sources":["../../../src/cache/CacheKeys.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,MAAM,SAAS,CAAC;AAE7B,eAAO,MAAM,mBAAmB,MAAM,CAAC;AACvC,eAAO,MAAM,yBAAyB,IAAI,CAAC;AAC3C,eAAO,MAAM,sBAAsB,IAAI,CAAC;AAExC,eAAO,MAAM,mBAAmB,QAA0C,CAAC;AAC3E,eAAO,MAAM,iBAAiB,QAAwC,CAAC;AACvE,eAAO,MAAM,wBAAwB,QAAoD,CAAC;AAC1F,eAAO,MAAM,yBAAyB,QAAkD,CAAC;AACzF,eAAO,MAAM,iBAAiB,QAAsB,CAAC;AACrD,eAAO,MAAM,YAAY,iBAAiB,CAAC;AAC3C,eAAO,MAAM,UAAU,eAAe,CAAC;AACvC,eAAO,MAAM,WAAW,QAA4C,CAAC;AAErE,wBAAgB,sBAAsB,CAClC,MAAM,GAAE,MAA+B,GACxC,MAAM,CAMR;AAED,wBAAgB,oBAAoB,CAChC,QAAQ,EAAE,MAAM,EAChB,MAAM,GAAE,MAAkC,GAC3C,MAAM,CAMR"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.8.0 2026-04-21 */
|
|
2
|
-
'use strict';
|
|
3
|
-
/*
|
|
4
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5
|
-
* Licensed under the MIT License.
|
|
6
|
-
*/
|
|
7
|
-
const PREFIX = "msal";
|
|
8
|
-
const BROWSER_PREFIX = "browser";
|
|
9
|
-
const CACHE_KEY_SEPARATOR = "|";
|
|
10
|
-
const CREDENTIAL_SCHEMA_VERSION = 3;
|
|
11
|
-
const ACCOUNT_SCHEMA_VERSION = 3;
|
|
12
|
-
const LOG_LEVEL_CACHE_KEY = `${PREFIX}.${BROWSER_PREFIX}.log.level`;
|
|
13
|
-
const LOG_PII_CACHE_KEY = `${PREFIX}.${BROWSER_PREFIX}.log.pii`;
|
|
14
|
-
const PLATFORM_AUTH_DOM_SUPPORT = `${PREFIX}.${BROWSER_PREFIX}.platform.auth.dom`;
|
|
15
|
-
const VERSION_CACHE_KEY = `${PREFIX}.version`;
|
|
16
|
-
const ACCOUNT_KEYS = "account.keys";
|
|
17
|
-
const TOKEN_KEYS = "token.keys";
|
|
18
|
-
const SSO_CAPABLE = `${PREFIX}.${BROWSER_PREFIX}.sso.capable`;
|
|
19
|
-
function getAccountKeysCacheKey(schema = ACCOUNT_SCHEMA_VERSION) {
|
|
20
|
-
if (schema < 1) {
|
|
21
|
-
return `${PREFIX}.${ACCOUNT_KEYS}`;
|
|
22
|
-
}
|
|
23
|
-
return `${PREFIX}.${schema}.${ACCOUNT_KEYS}`;
|
|
24
|
-
}
|
|
25
|
-
function getTokenKeysCacheKey(clientId, schema = CREDENTIAL_SCHEMA_VERSION) {
|
|
26
|
-
if (schema < 1) {
|
|
27
|
-
return `${PREFIX}.${TOKEN_KEYS}.${clientId}`;
|
|
28
|
-
}
|
|
29
|
-
return `${PREFIX}.${schema}.${TOKEN_KEYS}.${clientId}`;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export { ACCOUNT_KEYS, ACCOUNT_SCHEMA_VERSION, CACHE_KEY_SEPARATOR, CREDENTIAL_SCHEMA_VERSION, LOG_LEVEL_CACHE_KEY, LOG_PII_CACHE_KEY, PLATFORM_AUTH_DOM_SUPPORT, PREFIX, SSO_CAPABLE, TOKEN_KEYS, VERSION_CACHE_KEY, getAccountKeysCacheKey, getTokenKeysCacheKey };
|
|
33
|
-
//# sourceMappingURL=CacheKeys.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CacheKeys.mjs","sources":["../../../../src/cache/CacheKeys.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAAA;;;AAGG;AAEI,MAAM,MAAM,GAAG,OAAO;AAC7B,MAAM,cAAc,GAAG,SAAS,CAAC;AAC1B,MAAM,mBAAmB,GAAG,IAAI;AAChC,MAAM,yBAAyB,GAAG,EAAE;AACpC,MAAM,sBAAsB,GAAG,EAAE;MAE3B,mBAAmB,GAAG,GAAG,MAAM,CAAA,CAAA,EAAI,cAAc,CAAA,UAAA,EAAa;MAC9D,iBAAiB,GAAG,GAAG,MAAM,CAAA,CAAA,EAAI,cAAc,CAAA,QAAA,EAAW;MAE1D,yBAAyB,GAAG,GAAG,MAAM,CAAA,CAAA,EAAI,cAAc,CAAA,kBAAA,EAAqB;AAC5E,MAAA,iBAAiB,GAAG,CAAG,EAAA,MAAM,WAAW;AAC9C,MAAM,YAAY,GAAG,eAAe;AACpC,MAAM,UAAU,GAAG,aAAa;MAC1B,WAAW,GAAG,GAAG,MAAM,CAAA,CAAA,EAAI,cAAc,CAAA,YAAA,EAAe;AAErD,SAAA,sBAAsB,CAClC,MAAA,GAAiB,sBAAsB,EAAA;IAEvC,IAAI,MAAM,GAAG,CAAC,EAAE;AACZ,QAAA,OAAO,CAAG,EAAA,MAAM,CAAI,CAAA,EAAA,YAAY,EAAE,CAAC;AACtC,KAAA;AAED,IAAA,OAAO,GAAG,MAAM,CAAA,CAAA,EAAI,MAAM,CAAI,CAAA,EAAA,YAAY,EAAE,CAAC;AACjD,CAAC;SAEe,oBAAoB,CAChC,QAAgB,EAChB,SAAiB,yBAAyB,EAAA;IAE1C,IAAI,MAAM,GAAG,CAAC,EAAE;AACZ,QAAA,OAAO,GAAG,MAAM,CAAA,CAAA,EAAI,UAAU,CAAI,CAAA,EAAA,QAAQ,EAAE,CAAC;AAChD,KAAA;IAED,OAAO,CAAA,EAAG,MAAM,CAAI,CAAA,EAAA,MAAM,IAAI,UAAU,CAAA,CAAA,EAAI,QAAQ,CAAA,CAAE,CAAC;AAC3D;;;;"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { IWindowStorage } from "./IWindowStorage.js";
|
|
2
|
-
export declare const SameSiteOptions: {
|
|
3
|
-
readonly Lax: "Lax";
|
|
4
|
-
readonly None: "None";
|
|
5
|
-
};
|
|
6
|
-
export type SameSiteOptions = (typeof SameSiteOptions)[keyof typeof SameSiteOptions];
|
|
7
|
-
export declare class CookieStorage implements IWindowStorage<string> {
|
|
8
|
-
initialize(): Promise<void>;
|
|
9
|
-
getItem(key: string): string | null;
|
|
10
|
-
getUserData(): string | null;
|
|
11
|
-
setItem(key: string, value: string, cookieLifeDays?: number, secure?: boolean, sameSite?: SameSiteOptions): void;
|
|
12
|
-
setUserData(): Promise<void>;
|
|
13
|
-
removeItem(key: string): void;
|
|
14
|
-
getKeys(): string[];
|
|
15
|
-
containsKey(key: string): boolean;
|
|
16
|
-
decryptData(): Promise<object | null>;
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* Get cookie expiration time
|
|
20
|
-
* @param cookieLifeDays
|
|
21
|
-
*/
|
|
22
|
-
export declare function getCookieExpirationTime(cookieLifeDays: number): string;
|
|
23
|
-
//# sourceMappingURL=CookieStorage.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CookieStorage.d.ts","sourceRoot":"","sources":["../../../src/cache/CookieStorage.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAKrD,eAAO,MAAM,eAAe;;;CAGlB,CAAC;AACX,MAAM,MAAM,eAAe,GACvB,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,CAAC;AAE3D,qBAAa,aAAc,YAAW,cAAc,CAAC,MAAM,CAAC;IACxD,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAI3B,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI;IAenC,WAAW,IAAI,MAAM,GAAG,IAAI;IAI5B,OAAO,CACH,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,cAAc,CAAC,EAAE,MAAM,EACvB,MAAM,GAAE,OAAc,EACtB,QAAQ,GAAE,eAAqC,GAChD,IAAI;IAkBD,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC;IAMlC,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAK7B,OAAO,IAAI,MAAM,EAAE;IAWnB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAIjC,WAAW,IAAI,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;CAIxC;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM,CAMtE"}
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.8.0 2026-04-21 */
|
|
2
|
-
'use strict';
|
|
3
|
-
import { createClientAuthError, ClientAuthErrorCodes } from '@azure/msal-common/browser';
|
|
4
|
-
|
|
5
|
-
/*
|
|
6
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
7
|
-
* Licensed under the MIT License.
|
|
8
|
-
*/
|
|
9
|
-
// Cookie life calculation (hours * minutes * seconds * ms)
|
|
10
|
-
const COOKIE_LIFE_MULTIPLIER = 24 * 60 * 60 * 1000;
|
|
11
|
-
const SameSiteOptions = {
|
|
12
|
-
Lax: "Lax",
|
|
13
|
-
None: "None",
|
|
14
|
-
};
|
|
15
|
-
class CookieStorage {
|
|
16
|
-
initialize() {
|
|
17
|
-
return Promise.resolve();
|
|
18
|
-
}
|
|
19
|
-
getItem(key) {
|
|
20
|
-
const name = `${encodeURIComponent(key)}`;
|
|
21
|
-
const cookieList = document.cookie.split(";");
|
|
22
|
-
for (let i = 0; i < cookieList.length; i++) {
|
|
23
|
-
const cookie = cookieList[i];
|
|
24
|
-
const [key, ...rest] = decodeURIComponent(cookie).trim().split("=");
|
|
25
|
-
const value = rest.join("=");
|
|
26
|
-
if (key === name) {
|
|
27
|
-
return value;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
return "";
|
|
31
|
-
}
|
|
32
|
-
getUserData() {
|
|
33
|
-
throw createClientAuthError(ClientAuthErrorCodes.methodNotImplemented);
|
|
34
|
-
}
|
|
35
|
-
setItem(key, value, cookieLifeDays, secure = true, sameSite = SameSiteOptions.Lax) {
|
|
36
|
-
let cookieStr = `${encodeURIComponent(key)}=${encodeURIComponent(value)};path=/;SameSite=${sameSite};`;
|
|
37
|
-
if (cookieLifeDays) {
|
|
38
|
-
const expireTime = getCookieExpirationTime(cookieLifeDays);
|
|
39
|
-
cookieStr += `expires=${expireTime};`;
|
|
40
|
-
}
|
|
41
|
-
if (secure || sameSite === SameSiteOptions.None) {
|
|
42
|
-
// SameSite None requires Secure flag
|
|
43
|
-
cookieStr += "Secure;";
|
|
44
|
-
}
|
|
45
|
-
document.cookie = cookieStr;
|
|
46
|
-
}
|
|
47
|
-
async setUserData() {
|
|
48
|
-
return Promise.reject(createClientAuthError(ClientAuthErrorCodes.methodNotImplemented));
|
|
49
|
-
}
|
|
50
|
-
removeItem(key) {
|
|
51
|
-
// Setting expiration to -1 removes it
|
|
52
|
-
this.setItem(key, "", -1);
|
|
53
|
-
}
|
|
54
|
-
getKeys() {
|
|
55
|
-
const cookieList = document.cookie.split(";");
|
|
56
|
-
const keys = [];
|
|
57
|
-
cookieList.forEach((cookie) => {
|
|
58
|
-
const cookieParts = decodeURIComponent(cookie).trim().split("=");
|
|
59
|
-
keys.push(cookieParts[0]);
|
|
60
|
-
});
|
|
61
|
-
return keys;
|
|
62
|
-
}
|
|
63
|
-
containsKey(key) {
|
|
64
|
-
return this.getKeys().includes(key);
|
|
65
|
-
}
|
|
66
|
-
decryptData() {
|
|
67
|
-
// Cookie storage does not support encryption, so this method is a no-op
|
|
68
|
-
return Promise.resolve(null);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
/**
|
|
72
|
-
* Get cookie expiration time
|
|
73
|
-
* @param cookieLifeDays
|
|
74
|
-
*/
|
|
75
|
-
function getCookieExpirationTime(cookieLifeDays) {
|
|
76
|
-
const today = new Date();
|
|
77
|
-
const expr = new Date(today.getTime() + cookieLifeDays * COOKIE_LIFE_MULTIPLIER);
|
|
78
|
-
return expr.toUTCString();
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export { CookieStorage, SameSiteOptions, getCookieExpirationTime };
|
|
82
|
-
//# sourceMappingURL=CookieStorage.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CookieStorage.mjs","sources":["../../../../src/cache/CookieStorage.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { IAsyncStorage } from "./IAsyncStorage.js";
|
|
2
|
-
/**
|
|
3
|
-
* Storage wrapper for IndexedDB storage in browsers: https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API
|
|
4
|
-
*/
|
|
5
|
-
export declare class DatabaseStorage<T> implements IAsyncStorage<T> {
|
|
6
|
-
private db;
|
|
7
|
-
private dbName;
|
|
8
|
-
private tableName;
|
|
9
|
-
private version;
|
|
10
|
-
private dbOpen;
|
|
11
|
-
constructor();
|
|
12
|
-
/**
|
|
13
|
-
* Opens IndexedDB instance.
|
|
14
|
-
*/
|
|
15
|
-
open(): Promise<void>;
|
|
16
|
-
/**
|
|
17
|
-
* Closes the connection to IndexedDB database when all pending transactions
|
|
18
|
-
* complete.
|
|
19
|
-
*/
|
|
20
|
-
closeConnection(): void;
|
|
21
|
-
/**
|
|
22
|
-
* Opens database if it's not already open
|
|
23
|
-
*/
|
|
24
|
-
private validateDbIsOpen;
|
|
25
|
-
/**
|
|
26
|
-
* Retrieves item from IndexedDB instance.
|
|
27
|
-
* @param key
|
|
28
|
-
*/
|
|
29
|
-
getItem(key: string): Promise<T | null>;
|
|
30
|
-
/**
|
|
31
|
-
* Adds item to IndexedDB under given key
|
|
32
|
-
* @param key
|
|
33
|
-
* @param payload
|
|
34
|
-
*/
|
|
35
|
-
setItem(key: string, payload: T): Promise<void>;
|
|
36
|
-
/**
|
|
37
|
-
* Removes item from IndexedDB under given key
|
|
38
|
-
* @param key
|
|
39
|
-
*/
|
|
40
|
-
removeItem(key: string): Promise<void>;
|
|
41
|
-
/**
|
|
42
|
-
* Get all the keys from the storage object as an iterable array of strings.
|
|
43
|
-
*/
|
|
44
|
-
getKeys(): Promise<string[]>;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* Checks whether there is an object under the search key in the object store
|
|
48
|
-
*/
|
|
49
|
-
containsKey(key: string): Promise<boolean>;
|
|
50
|
-
/**
|
|
51
|
-
* Deletes the MSAL database. The database is deleted rather than cleared to make it possible
|
|
52
|
-
* for client applications to downgrade to a previous MSAL version without worrying about forward compatibility issues
|
|
53
|
-
* with IndexedDB database versions.
|
|
54
|
-
*/
|
|
55
|
-
deleteDatabase(): Promise<boolean>;
|
|
56
|
-
}
|
|
57
|
-
//# sourceMappingURL=DatabaseStorage.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DatabaseStorage.d.ts","sourceRoot":"","sources":["../../../src/cache/DatabaseStorage.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAcnD;;GAEG;AACH,qBAAa,eAAe,CAAC,CAAC,CAAE,YAAW,aAAa,CAAC,CAAC,CAAC;IACvD,OAAO,CAAC,EAAE,CAA0B;IACpC,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,MAAM,CAAU;;IASxB;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IA0B3B;;;OAGG;IACH,eAAe,IAAI,IAAI;IAQvB;;OAEG;YACW,gBAAgB;IAM9B;;;OAGG;IACG,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC;IA+B7C;;;;OAIG;IACG,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAgCrD;;;OAGG;IACG,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IA8B5C;;OAEG;IACG,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IA+BlC;;;OAGG;IACG,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAgChD;;;;OAIG;IACG,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC;CAwB3C"}
|
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.8.0 2026-04-21 */
|
|
2
|
-
'use strict';
|
|
3
|
-
import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
|
|
4
|
-
import { DB_NAME, DB_VERSION, DB_TABLE_NAME } from '../utils/BrowserConstants.mjs';
|
|
5
|
-
import { databaseUnavailable, databaseNotOpen } from '../error/BrowserAuthErrorCodes.mjs';
|
|
6
|
-
|
|
7
|
-
/*
|
|
8
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
9
|
-
* Licensed under the MIT License.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
* Storage wrapper for IndexedDB storage in browsers: https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API
|
|
13
|
-
*/
|
|
14
|
-
class DatabaseStorage {
|
|
15
|
-
constructor() {
|
|
16
|
-
this.dbName = DB_NAME;
|
|
17
|
-
this.version = DB_VERSION;
|
|
18
|
-
this.tableName = DB_TABLE_NAME;
|
|
19
|
-
this.dbOpen = false;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Opens IndexedDB instance.
|
|
23
|
-
*/
|
|
24
|
-
async open() {
|
|
25
|
-
return new Promise((resolve, reject) => {
|
|
26
|
-
const openDB = window.indexedDB.open(this.dbName, this.version);
|
|
27
|
-
openDB.addEventListener("upgradeneeded", (e) => {
|
|
28
|
-
const event = e;
|
|
29
|
-
event.target.result.createObjectStore(this.tableName);
|
|
30
|
-
});
|
|
31
|
-
openDB.addEventListener("success", (e) => {
|
|
32
|
-
const event = e;
|
|
33
|
-
this.db = event.target.result;
|
|
34
|
-
this.dbOpen = true;
|
|
35
|
-
resolve();
|
|
36
|
-
});
|
|
37
|
-
openDB.addEventListener("error", () => reject(createBrowserAuthError(databaseUnavailable)));
|
|
38
|
-
});
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Closes the connection to IndexedDB database when all pending transactions
|
|
42
|
-
* complete.
|
|
43
|
-
*/
|
|
44
|
-
closeConnection() {
|
|
45
|
-
const db = this.db;
|
|
46
|
-
if (db && this.dbOpen) {
|
|
47
|
-
db.close();
|
|
48
|
-
this.dbOpen = false;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* Opens database if it's not already open
|
|
53
|
-
*/
|
|
54
|
-
async validateDbIsOpen() {
|
|
55
|
-
if (!this.dbOpen) {
|
|
56
|
-
return this.open();
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
/**
|
|
60
|
-
* Retrieves item from IndexedDB instance.
|
|
61
|
-
* @param key
|
|
62
|
-
*/
|
|
63
|
-
async getItem(key) {
|
|
64
|
-
await this.validateDbIsOpen();
|
|
65
|
-
return new Promise((resolve, reject) => {
|
|
66
|
-
// TODO: Add timeouts?
|
|
67
|
-
if (!this.db) {
|
|
68
|
-
return reject(createBrowserAuthError(databaseNotOpen));
|
|
69
|
-
}
|
|
70
|
-
const transaction = this.db.transaction([this.tableName], "readonly");
|
|
71
|
-
const objectStore = transaction.objectStore(this.tableName);
|
|
72
|
-
const dbGet = objectStore.get(key);
|
|
73
|
-
dbGet.addEventListener("success", (e) => {
|
|
74
|
-
const event = e;
|
|
75
|
-
this.closeConnection();
|
|
76
|
-
resolve(event.target.result);
|
|
77
|
-
});
|
|
78
|
-
dbGet.addEventListener("error", (e) => {
|
|
79
|
-
this.closeConnection();
|
|
80
|
-
reject(e);
|
|
81
|
-
});
|
|
82
|
-
});
|
|
83
|
-
}
|
|
84
|
-
/**
|
|
85
|
-
* Adds item to IndexedDB under given key
|
|
86
|
-
* @param key
|
|
87
|
-
* @param payload
|
|
88
|
-
*/
|
|
89
|
-
async setItem(key, payload) {
|
|
90
|
-
await this.validateDbIsOpen();
|
|
91
|
-
return new Promise((resolve, reject) => {
|
|
92
|
-
// TODO: Add timeouts?
|
|
93
|
-
if (!this.db) {
|
|
94
|
-
return reject(createBrowserAuthError(databaseNotOpen));
|
|
95
|
-
}
|
|
96
|
-
const transaction = this.db.transaction([this.tableName], "readwrite");
|
|
97
|
-
const objectStore = transaction.objectStore(this.tableName);
|
|
98
|
-
const dbPut = objectStore.put(payload, key);
|
|
99
|
-
dbPut.addEventListener("success", () => {
|
|
100
|
-
this.closeConnection();
|
|
101
|
-
resolve();
|
|
102
|
-
});
|
|
103
|
-
dbPut.addEventListener("error", (e) => {
|
|
104
|
-
this.closeConnection();
|
|
105
|
-
reject(e);
|
|
106
|
-
});
|
|
107
|
-
});
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* Removes item from IndexedDB under given key
|
|
111
|
-
* @param key
|
|
112
|
-
*/
|
|
113
|
-
async removeItem(key) {
|
|
114
|
-
await this.validateDbIsOpen();
|
|
115
|
-
return new Promise((resolve, reject) => {
|
|
116
|
-
if (!this.db) {
|
|
117
|
-
return reject(createBrowserAuthError(databaseNotOpen));
|
|
118
|
-
}
|
|
119
|
-
const transaction = this.db.transaction([this.tableName], "readwrite");
|
|
120
|
-
const objectStore = transaction.objectStore(this.tableName);
|
|
121
|
-
const dbDelete = objectStore.delete(key);
|
|
122
|
-
dbDelete.addEventListener("success", () => {
|
|
123
|
-
this.closeConnection();
|
|
124
|
-
resolve();
|
|
125
|
-
});
|
|
126
|
-
dbDelete.addEventListener("error", (e) => {
|
|
127
|
-
this.closeConnection();
|
|
128
|
-
reject(e);
|
|
129
|
-
});
|
|
130
|
-
});
|
|
131
|
-
}
|
|
132
|
-
/**
|
|
133
|
-
* Get all the keys from the storage object as an iterable array of strings.
|
|
134
|
-
*/
|
|
135
|
-
async getKeys() {
|
|
136
|
-
await this.validateDbIsOpen();
|
|
137
|
-
return new Promise((resolve, reject) => {
|
|
138
|
-
if (!this.db) {
|
|
139
|
-
return reject(createBrowserAuthError(databaseNotOpen));
|
|
140
|
-
}
|
|
141
|
-
const transaction = this.db.transaction([this.tableName], "readonly");
|
|
142
|
-
const objectStore = transaction.objectStore(this.tableName);
|
|
143
|
-
const dbGetKeys = objectStore.getAllKeys();
|
|
144
|
-
dbGetKeys.addEventListener("success", (e) => {
|
|
145
|
-
const event = e;
|
|
146
|
-
this.closeConnection();
|
|
147
|
-
resolve(event.target.result);
|
|
148
|
-
});
|
|
149
|
-
dbGetKeys.addEventListener("error", (e) => {
|
|
150
|
-
this.closeConnection();
|
|
151
|
-
reject(e);
|
|
152
|
-
});
|
|
153
|
-
});
|
|
154
|
-
}
|
|
155
|
-
/**
|
|
156
|
-
*
|
|
157
|
-
* Checks whether there is an object under the search key in the object store
|
|
158
|
-
*/
|
|
159
|
-
async containsKey(key) {
|
|
160
|
-
await this.validateDbIsOpen();
|
|
161
|
-
return new Promise((resolve, reject) => {
|
|
162
|
-
if (!this.db) {
|
|
163
|
-
return reject(createBrowserAuthError(databaseNotOpen));
|
|
164
|
-
}
|
|
165
|
-
const transaction = this.db.transaction([this.tableName], "readonly");
|
|
166
|
-
const objectStore = transaction.objectStore(this.tableName);
|
|
167
|
-
const dbContainsKey = objectStore.count(key);
|
|
168
|
-
dbContainsKey.addEventListener("success", (e) => {
|
|
169
|
-
const event = e;
|
|
170
|
-
this.closeConnection();
|
|
171
|
-
resolve(event.target.result === 1);
|
|
172
|
-
});
|
|
173
|
-
dbContainsKey.addEventListener("error", (e) => {
|
|
174
|
-
this.closeConnection();
|
|
175
|
-
reject(e);
|
|
176
|
-
});
|
|
177
|
-
});
|
|
178
|
-
}
|
|
179
|
-
/**
|
|
180
|
-
* Deletes the MSAL database. The database is deleted rather than cleared to make it possible
|
|
181
|
-
* for client applications to downgrade to a previous MSAL version without worrying about forward compatibility issues
|
|
182
|
-
* with IndexedDB database versions.
|
|
183
|
-
*/
|
|
184
|
-
async deleteDatabase() {
|
|
185
|
-
// Check if database being deleted exists
|
|
186
|
-
if (this.db && this.dbOpen) {
|
|
187
|
-
this.closeConnection();
|
|
188
|
-
}
|
|
189
|
-
return new Promise((resolve, reject) => {
|
|
190
|
-
const deleteDbRequest = window.indexedDB.deleteDatabase(DB_NAME);
|
|
191
|
-
const id = setTimeout(() => reject(false), 200); // Reject if events aren't raised within 200ms
|
|
192
|
-
deleteDbRequest.addEventListener("success", () => {
|
|
193
|
-
clearTimeout(id);
|
|
194
|
-
return resolve(true);
|
|
195
|
-
});
|
|
196
|
-
deleteDbRequest.addEventListener("blocked", () => {
|
|
197
|
-
clearTimeout(id);
|
|
198
|
-
return resolve(true);
|
|
199
|
-
});
|
|
200
|
-
deleteDbRequest.addEventListener("error", () => {
|
|
201
|
-
clearTimeout(id);
|
|
202
|
-
return reject(false);
|
|
203
|
-
});
|
|
204
|
-
});
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
export { DatabaseStorage };
|
|
209
|
-
//# sourceMappingURL=DatabaseStorage.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DatabaseStorage.mjs","sources":["../../../../src/cache/DatabaseStorage.ts"],"sourcesContent":[null],"names":["BrowserAuthErrorCodes.databaseUnavailable","BrowserAuthErrorCodes.databaseNotOpen"],"mappings":"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"}
|