@azure/msal-browser 5.9.0 → 5.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/IPublicClientApplication.mjs +1 -1
- package/dist/app/PublicClientApplication.mjs +1 -1
- package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
- package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
- package/dist/cache/AccountManager.mjs +1 -1
- package/dist/cache/AsyncMemoryStorage.mjs +1 -1
- package/dist/cache/BrowserCacheManager.mjs +4 -17
- package/dist/cache/BrowserCacheManager.mjs.map +1 -1
- package/dist/cache/CacheHelpers.mjs +1 -1
- package/dist/cache/CacheKeys.mjs +1 -1
- package/dist/cache/CookieStorage.mjs +1 -1
- package/dist/cache/DatabaseStorage.mjs +1 -1
- package/dist/cache/EncryptedData.mjs +1 -1
- package/dist/cache/LocalStorage.mjs +1 -1
- package/dist/cache/MemoryStorage.mjs +1 -1
- package/dist/cache/SessionStorage.mjs +1 -1
- package/dist/cache/TokenCache.mjs +1 -1
- package/dist/config/Configuration.mjs +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +1 -1
- package/dist/controllers/StandardController.mjs +1 -1
- package/dist/crypto/BrowserCrypto.mjs +1 -1
- package/dist/crypto/CryptoOps.mjs +1 -1
- package/dist/crypto/PkceGenerator.mjs +1 -1
- package/dist/crypto/SignedHttpRequest.mjs +1 -1
- package/dist/custom_auth/CustomAuthConstants.mjs +50 -0
- package/dist/custom_auth/CustomAuthConstants.mjs.map +1 -0
- package/dist/custom_auth/CustomAuthPublicClientApplication.mjs +97 -0
- package/dist/custom_auth/CustomAuthPublicClientApplication.mjs.map +1 -0
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs +332 -0
- package/dist/custom_auth/controller/CustomAuthStandardController.mjs.map +1 -0
- package/dist/custom_auth/core/CustomAuthAuthority.mjs +82 -0
- package/dist/custom_auth/core/CustomAuthAuthority.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +134 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +59 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +42 -0
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +56 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +46 -0
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +181 -0
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +42 -0
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +46 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +45 -0
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +24 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs.map +1 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +140 -0
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs.map +1 -0
- package/dist/custom_auth/core/error/CustomAuthApiError.mjs +35 -0
- package/dist/custom_auth/core/error/CustomAuthApiError.mjs.map +1 -0
- package/dist/custom_auth/core/error/CustomAuthError.mjs +22 -0
- package/dist/custom_auth/core/error/CustomAuthError.mjs.map +1 -0
- package/dist/custom_auth/core/error/HttpError.mjs +17 -0
- package/dist/custom_auth/core/error/HttpError.mjs.map +1 -0
- package/dist/custom_auth/core/error/HttpErrorCodes.mjs +11 -0
- package/dist/custom_auth/core/error/HttpErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidArgumentError.mjs +18 -0
- package/dist/custom_auth/core/error/InvalidArgumentError.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidConfigurationError.mjs +17 -0
- package/dist/custom_auth/core/error/InvalidConfigurationError.mjs.map +1 -0
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +12 -0
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/MethodNotImplementedError.mjs +18 -0
- package/dist/custom_auth/core/error/MethodNotImplementedError.mjs.map +1 -0
- package/dist/custom_auth/core/error/MsalCustomAuthError.mjs +17 -0
- package/dist/custom_auth/core/error/MsalCustomAuthError.mjs.map +1 -0
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs +17 -0
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +1 -0
- package/dist/custom_auth/core/error/ParsedUrlError.mjs +17 -0
- package/dist/custom_auth/core/error/ParsedUrlError.mjs.map +1 -0
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs +10 -0
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/error/UnexpectedError.mjs +30 -0
- package/dist/custom_auth/core/error/UnexpectedError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs +17 -0
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UserAccountAttributeError.mjs +18 -0
- package/dist/custom_auth/core/error/UserAccountAttributeError.mjs.map +1 -0
- package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs +17 -0
- package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +69 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +25 -0
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs +110 -0
- package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +24 -0
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs +88 -0
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs.map +1 -0
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +24 -0
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +87 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +22 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +24 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +51 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +94 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +134 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +78 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +30 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +20 -0
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +54 -0
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +1 -0
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs +15 -0
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +1 -0
- package/dist/custom_auth/core/telemetry/PublicApiId.mjs +40 -0
- package/dist/custom_auth/core/telemetry/PublicApiId.mjs.map +1 -0
- package/dist/custom_auth/core/utils/ArgumentValidator.mjs +37 -0
- package/dist/custom_auth/core/utils/ArgumentValidator.mjs.map +1 -0
- package/dist/custom_auth/core/utils/UrlUtils.mjs +34 -0
- package/dist/custom_auth/core/utils/UrlUtils.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +126 -0
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +47 -0
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +49 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +48 -0
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +48 -0
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +1 -0
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs +36 -0
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +1 -0
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +122 -0
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +1 -0
- package/dist/custom_auth/index.mjs +69 -0
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs +35 -0
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +67 -0
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +48 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +43 -0
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +106 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +24 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +24 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +64 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +25 -0
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +1 -0
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +157 -0
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs +13 -0
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +69 -0
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +49 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +75 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +56 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +51 -0
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +107 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +25 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +60 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +24 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +64 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs +93 -0
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +1 -0
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs +248 -0
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +1 -0
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +44 -0
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +91 -0
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +48 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +60 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +48 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +60 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +54 -0
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +84 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +155 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +24 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +24 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +89 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +26 -0
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +1 -0
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs +247 -0
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +1 -0
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +37 -0
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +1 -0
- package/dist/encode/Base64Decode.mjs +1 -1
- package/dist/encode/Base64Encode.mjs +1 -1
- package/dist/error/BrowserAuthError.mjs +1 -1
- package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
- package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
- package/dist/error/NativeAuthError.mjs +1 -1
- package/dist/error/NativeAuthErrorCodes.mjs +1 -1
- package/dist/error/NestedAppAuthError.mjs +1 -1
- package/dist/event/EventHandler.mjs +1 -1
- package/dist/event/EventMessage.mjs +1 -1
- package/dist/event/EventType.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/interaction_client/BaseInteractionClient.mjs +2 -2
- package/dist/interaction_client/BaseInteractionClient.mjs.map +1 -1
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
- package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
- package/dist/interaction_client/PopupClient.mjs +1 -1
- package/dist/interaction_client/RedirectClient.mjs +1 -1
- package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
- package/dist/interaction_client/SilentCacheClient.mjs +1 -1
- package/dist/interaction_client/SilentIframeClient.mjs +1 -1
- package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
- package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
- package/dist/interaction_handler/InteractionHandler.mjs +1 -1
- package/dist/interaction_handler/SilentHandler.mjs +1 -1
- package/dist/log-strings-mapping.json +613 -9
- package/dist/naa/BridgeError.mjs +1 -1
- package/dist/naa/BridgeProxy.mjs +1 -1
- package/dist/naa/BridgeStatusCode.mjs +1 -1
- package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
- package/dist/navigation/NavigationClient.mjs +1 -1
- package/dist/network/FetchClient.mjs +1 -1
- package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
- package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
- package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
- package/dist/packageMetadata.mjs +2 -2
- package/dist/protocol/Authorize.mjs +1 -1
- package/dist/redirect_bridge/index.mjs +131 -0
- package/dist/redirect_bridge/index.mjs.map +1 -0
- package/dist/request/RequestHelpers.mjs +1 -1
- package/dist/response/ResponseHandler.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
- package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
- package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
- package/dist/utils/BrowserConstants.mjs +1 -1
- package/dist/utils/BrowserProtocolUtils.mjs +1 -1
- package/dist/utils/BrowserUtils.mjs +1 -1
- package/dist/utils/Helpers.mjs +1 -1
- package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
- package/lib/custom-auth-path/log-strings-mapping.json +5 -9
- package/lib/custom-auth-path/msal-custom-auth.cjs +69 -82
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/msal-custom-auth.js +22247 -0
- package/lib/custom-auth-path/msal-custom-auth.js.map +1 -0
- package/lib/log-strings-mapping.json +5 -9
- package/lib/msal-browser.cjs +71 -84
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +71 -84
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +2 -2
- package/lib/redirect-bridge/msal-redirect-bridge.cjs +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.cjs.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.js +10 -10
- package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
- package/lib/redirect-bridge/msal-redirect-bridge.min.js +1 -1
- package/package.json +15 -13
- package/src/cache/BrowserCacheManager.ts +5 -23
- package/src/packageMetadata.ts +1 -1
- package/types/cache/BrowserCacheManager.d.ts.map +1 -0
- package/types/custom_auth/CustomAuthConstants.d.ts +35 -0
- package/types/custom_auth/index.d.cts +1 -0
- package/types/index.d.cts +1 -0
- package/types/packageMetadata.d.ts +3 -0
- package/types/packageMetadata.d.ts.map +1 -0
- package/types/redirect_bridge/index.d.cts +1 -0
- package/dist/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/custom-auth-path/app/IPublicClientApplication.d.ts +0 -48
- package/dist/custom-auth-path/app/IPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/app/PublicClientApplication.d.ts +0 -247
- package/dist/custom-auth-path/app/PublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/app/PublicClientApplication.mjs +0 -275
- package/dist/custom-auth-path/app/PublicClientApplication.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +0 -16
- package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +0 -156
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +0 -272
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +0 -91
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AccountManager.d.ts +0 -24
- package/dist/custom-auth-path/cache/AccountManager.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AccountManager.mjs +0 -50
- package/dist/custom-auth-path/cache/AccountManager.mjs.map +0 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts +0 -58
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +0 -148
- package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts +0 -364
- package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +0 -1385
- package/dist/custom-auth-path/cache/BrowserCacheManager.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CacheHelpers.d.ts +0 -16
- package/dist/custom-auth-path/cache/CacheHelpers.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CacheHelpers.mjs +0 -46
- package/dist/custom-auth-path/cache/CacheHelpers.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CacheKeys.d.ts +0 -15
- package/dist/custom-auth-path/cache/CacheKeys.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CacheKeys.mjs +0 -33
- package/dist/custom-auth-path/cache/CacheKeys.mjs.map +0 -1
- package/dist/custom-auth-path/cache/CookieStorage.d.ts +0 -23
- package/dist/custom-auth-path/cache/CookieStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/CookieStorage.mjs +0 -95
- package/dist/custom-auth-path/cache/CookieStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.d.ts +0 -57
- package/dist/custom-auth-path/cache/DatabaseStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/DatabaseStorage.mjs +0 -209
- package/dist/custom-auth-path/cache/DatabaseStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/EncryptedData.d.ts +0 -8
- package/dist/custom-auth-path/cache/EncryptedData.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/EncryptedData.mjs +0 -14
- package/dist/custom-auth-path/cache/EncryptedData.mjs.map +0 -1
- package/dist/custom-auth-path/cache/IAsyncStorage.d.ts +0 -33
- package/dist/custom-auth-path/cache/IAsyncStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/IWindowStorage.d.ts +0 -42
- package/dist/custom-auth-path/cache/IWindowStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/LocalStorage.d.ts +0 -51
- package/dist/custom-auth-path/cache/LocalStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/LocalStorage.mjs +0 -310
- package/dist/custom-auth-path/cache/LocalStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/MemoryStorage.d.ts +0 -16
- package/dist/custom-auth-path/cache/MemoryStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/MemoryStorage.mjs +0 -49
- package/dist/custom-auth-path/cache/MemoryStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/SessionStorage.d.ts +0 -14
- package/dist/custom-auth-path/cache/SessionStorage.d.ts.map +0 -1
- package/dist/custom-auth-path/cache/SessionStorage.mjs +0 -47
- package/dist/custom-auth-path/cache/SessionStorage.mjs.map +0 -1
- package/dist/custom-auth-path/cache/TokenCache.d.ts +0 -20
- package/dist/custom-auth-path/cache/TokenCache.d.ts.map +0 -1
- package/dist/custom-auth-path/config/Configuration.d.ts +0 -198
- package/dist/custom-auth-path/config/Configuration.d.ts.map +0 -1
- package/dist/custom-auth-path/config/Configuration.mjs +0 -135
- package/dist/custom-auth-path/config/Configuration.mjs.map +0 -1
- package/dist/custom-auth-path/controllers/IController.d.ts +0 -3
- package/dist/custom-auth-path/controllers/IController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts +0 -159
- package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/StandardController.d.ts +0 -398
- package/dist/custom-auth-path/controllers/StandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/controllers/StandardController.mjs +0 -1519
- package/dist/custom-auth-path/controllers/StandardController.mjs.map +0 -1
- package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts +0 -96
- package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +0 -306
- package/dist/custom-auth-path/crypto/BrowserCrypto.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/CryptoOps.d.ts +0 -77
- package/dist/custom-auth-path/crypto/CryptoOps.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/CryptoOps.mjs +0 -194
- package/dist/custom-auth-path/crypto/CryptoOps.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.d.ts +0 -9
- package/dist/custom-auth-path/crypto/PkceGenerator.d.ts.map +0 -1
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs +0 -64
- package/dist/custom-auth-path/crypto/PkceGenerator.mjs.map +0 -1
- package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts +0 -32
- package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +0 -50
- package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +0 -97
- package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +0 -332
- package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +0 -82
- package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +0 -134
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +0 -59
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +0 -42
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +0 -56
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +0 -46
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +0 -181
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +0 -42
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +0 -46
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +0 -45
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +0 -140
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +0 -35
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +0 -22
- package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +0 -11
- package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +0 -12
- package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +0 -10
- package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +0 -30
- package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +0 -18
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +0 -17
- package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +0 -110
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +0 -88
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +0 -87
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +0 -22
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +0 -51
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +0 -94
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +0 -134
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +0 -78
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +0 -30
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +0 -20
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +0 -54
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +0 -15
- package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +0 -40
- package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +0 -37
- package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +0 -34
- package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +0 -126
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +0 -47
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +0 -49
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +0 -36
- package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +0 -122
- package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/index.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/index.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +0 -35
- package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +0 -67
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +0 -43
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +0 -106
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +0 -64
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +0 -157
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +0 -13
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +0 -69
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +0 -49
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +0 -75
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +0 -56
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +0 -51
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +0 -107
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +0 -25
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +0 -64
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +0 -93
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +0 -248
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +0 -44
- package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +0 -91
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +0 -48
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +0 -60
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +0 -54
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +0 -84
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +0 -155
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +0 -24
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +0 -89
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +0 -26
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +0 -247
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +0 -37
- package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +0 -1
- package/dist/custom-auth-path/encode/Base64Decode.d.ts.map +0 -1
- package/dist/custom-auth-path/encode/Base64Decode.mjs +0 -44
- package/dist/custom-auth-path/encode/Base64Decode.mjs.map +0 -1
- package/dist/custom-auth-path/encode/Base64Encode.d.ts.map +0 -1
- package/dist/custom-auth-path/encode/Base64Encode.mjs +0 -48
- package/dist/custom-auth-path/encode/Base64Encode.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthError.mjs +0 -27
- package/dist/custom-auth-path/error/BrowserAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +0 -56
- package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +0 -25
- package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +0 -11
- package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthError.mjs +0 -70
- package/dist/custom-auth-path/error/NativeAuthError.mjs.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +0 -12
- package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs.map +0 -1
- package/dist/custom-auth-path/error/NestedAppAuthError.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventHandler.mjs +0 -110
- package/dist/custom-auth-path/event/EventHandler.mjs.map +0 -1
- package/dist/custom-auth-path/event/EventMessage.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventType.d.ts.map +0 -1
- package/dist/custom-auth-path/event/EventType.mjs +0 -31
- package/dist/custom-auth-path/event/EventType.mjs.map +0 -1
- package/dist/custom-auth-path/index.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +0 -143
- package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +0 -17
- package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +0 -645
- package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/PopupClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/PopupClient.mjs +0 -438
- package/dist/custom-auth-path/interaction_client/PopupClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +0 -452
- package/dist/custom-auth-path/interaction_client/RedirectClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +0 -83
- package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +0 -59
- package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +0 -224
- package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +0 -76
- package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +0 -215
- package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +0 -96
- package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs.map +0 -1
- package/dist/custom-auth-path/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +0 -85
- package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs.map +0 -1
- package/dist/custom-auth-path/log-strings-mapping.json +0 -1767
- package/dist/custom-auth-path/naa/AccountInfo.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/AuthBridge.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/AuthResult.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeAccountContext.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeCapabilities.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeError.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeProxy.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/BridgeStatusCode.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/IBridgeProxy.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/InitContext.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/TokenRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/TokenResponse.d.ts.map +0 -1
- package/dist/custom-auth-path/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/INavigationClient.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationClient.d.ts.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationClient.mjs +0 -48
- package/dist/custom-auth-path/navigation/NavigationClient.mjs.map +0 -1
- package/dist/custom-auth-path/navigation/NavigationOptions.d.ts.map +0 -1
- package/dist/custom-auth-path/network/FetchClient.d.ts.map +0 -1
- package/dist/custom-auth-path/network/FetchClient.mjs +0 -128
- package/dist/custom-auth-path/network/FetchClient.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +0 -105
- package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +0 -51
- package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs.map +0 -1
- package/dist/custom-auth-path/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/dist/custom-auth-path/packageMetadata.d.ts +0 -3
- package/dist/custom-auth-path/packageMetadata.d.ts.map +0 -1
- package/dist/custom-auth-path/packageMetadata.mjs +0 -8
- package/dist/custom-auth-path/packageMetadata.mjs.map +0 -1
- package/dist/custom-auth-path/protocol/Authorize.d.ts.map +0 -1
- package/dist/custom-auth-path/protocol/Authorize.mjs +0 -313
- package/dist/custom-auth-path/protocol/Authorize.mjs.map +0 -1
- package/dist/custom-auth-path/redirect_bridge/index.d.ts.map +0 -1
- package/dist/custom-auth-path/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/ClearCacheRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/EndSessionRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/dist/custom-auth-path/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/PopupRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/PopupWindowAttributes.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RedirectRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RequestHelpers.d.ts.map +0 -1
- package/dist/custom-auth-path/request/RequestHelpers.mjs +0 -83
- package/dist/custom-auth-path/request/RequestHelpers.mjs.map +0 -1
- package/dist/custom-auth-path/request/SilentRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/request/SsoSilentRequest.d.ts.map +0 -1
- package/dist/custom-auth-path/response/AuthenticationResult.d.ts.map +0 -1
- package/dist/custom-auth-path/response/ResponseHandler.d.ts.map +0 -1
- package/dist/custom-auth-path/response/ResponseHandler.mjs +0 -46
- package/dist/custom-auth-path/response/ResponseHandler.mjs.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs +0 -131
- package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs +0 -50
- package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserConstants.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserConstants.mjs +0 -190
- package/dist/custom-auth-path/utils/BrowserConstants.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +0 -28
- package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs.map +0 -1
- package/dist/custom-auth-path/utils/BrowserUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/BrowserUtils.mjs +0 -348
- package/dist/custom-auth-path/utils/BrowserUtils.mjs.map +0 -1
- package/dist/custom-auth-path/utils/Helpers.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/Helpers.mjs +0 -20
- package/dist/custom-auth-path/utils/Helpers.mjs.map +0 -1
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +0 -27
- package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs.map +0 -1
- package/dist/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/dist/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/dist/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/dist/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/dist/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/dist/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/dist/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/dist/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/dist/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/dist/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/dist/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/dist/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/dist/custom_auth/core/error/HttpError.d.ts +0 -5
- package/dist/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/dist/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/dist/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/dist/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/dist/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/dist/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/dist/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/dist/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/dist/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/dist/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/dist/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/dist/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/dist/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/dist/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/dist/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/dist/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/dist/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/dist/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/dist/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/dist/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/dist/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/dist/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/dist/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/dist/custom_auth/index.d.ts +0 -84
- package/dist/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/dist/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/dist/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/dist/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/dist/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/dist/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/dist/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/dist/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/dist/encode/Base64Decode.d.ts +0 -15
- package/dist/encode/Base64Encode.d.ts +0 -20
- package/dist/error/BrowserAuthError.d.ts +0 -12
- package/dist/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/dist/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/dist/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/dist/error/NativeAuthError.d.ts +0 -27
- package/dist/error/NativeAuthErrorCodes.d.ts +0 -5
- package/dist/error/NestedAppAuthError.d.ts +0 -6
- package/dist/event/EventHandler.d.ts +0 -49
- package/dist/event/EventMessage.d.ts +0 -41
- package/dist/event/EventType.d.ts +0 -24
- package/dist/index.d.ts +0 -73
- package/dist/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/dist/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/dist/interaction_client/PopupClient.d.ts +0 -106
- package/dist/interaction_client/RedirectClient.d.ts +0 -77
- package/dist/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/dist/interaction_client/SilentCacheClient.d.ts +0 -17
- package/dist/interaction_client/SilentIframeClient.d.ts +0 -57
- package/dist/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/dist/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/dist/interaction_handler/InteractionHandler.d.ts +0 -33
- package/dist/interaction_handler/SilentHandler.d.ts +0 -17
- package/dist/naa/AccountInfo.d.ts +0 -13
- package/dist/naa/AuthBridge.d.ts +0 -9
- package/dist/naa/AuthResult.d.ts +0 -7
- package/dist/naa/BridgeAccountContext.d.ts +0 -13
- package/dist/naa/BridgeCapabilities.d.ts +0 -4
- package/dist/naa/BridgeError.d.ts +0 -10
- package/dist/naa/BridgeProxy.d.ts +0 -69
- package/dist/naa/BridgeRequest.d.ts +0 -8
- package/dist/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/dist/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/dist/naa/BridgeStatusCode.d.ts +0 -12
- package/dist/naa/IBridgeProxy.d.ts +0 -11
- package/dist/naa/InitContext.d.ts +0 -9
- package/dist/naa/TokenRequest.d.ts +0 -21
- package/dist/naa/TokenResponse.d.ts +0 -14
- package/dist/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/dist/navigation/INavigationClient.d.ts +0 -17
- package/dist/navigation/NavigationClient.d.ts +0 -23
- package/dist/navigation/NavigationOptions.d.ts +0 -13
- package/dist/network/FetchClient.d.ts +0 -21
- package/dist/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/dist/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/dist/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/dist/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/dist/packageMetadata.d.ts +0 -3
- package/dist/packageMetadata.d.ts.map +0 -1
- package/dist/protocol/Authorize.d.ts +0 -102
- package/dist/redirect-bridge/app/IPublicClientApplication.d.ts +0 -48
- package/dist/redirect-bridge/app/IPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/app/PublicClientApplication.d.ts +0 -247
- package/dist/redirect-bridge/app/PublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/dist/redirect-bridge/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/dist/redirect-bridge/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/AccountManager.d.ts +0 -24
- package/dist/redirect-bridge/cache/AccountManager.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/AsyncMemoryStorage.d.ts +0 -58
- package/dist/redirect-bridge/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/BrowserCacheManager.d.ts +0 -364
- package/dist/redirect-bridge/cache/BrowserCacheManager.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheHelpers.d.ts +0 -16
- package/dist/redirect-bridge/cache/CacheHelpers.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheKeys.d.ts +0 -15
- package/dist/redirect-bridge/cache/CacheKeys.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/CacheKeys.mjs +0 -10
- package/dist/redirect-bridge/cache/CacheKeys.mjs.map +0 -1
- package/dist/redirect-bridge/cache/CookieStorage.d.ts +0 -23
- package/dist/redirect-bridge/cache/CookieStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/DatabaseStorage.d.ts +0 -57
- package/dist/redirect-bridge/cache/DatabaseStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/EncryptedData.d.ts +0 -8
- package/dist/redirect-bridge/cache/EncryptedData.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/IAsyncStorage.d.ts +0 -33
- package/dist/redirect-bridge/cache/IAsyncStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/IWindowStorage.d.ts +0 -42
- package/dist/redirect-bridge/cache/IWindowStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/LocalStorage.d.ts +0 -51
- package/dist/redirect-bridge/cache/LocalStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/MemoryStorage.d.ts +0 -16
- package/dist/redirect-bridge/cache/MemoryStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/SessionStorage.d.ts +0 -14
- package/dist/redirect-bridge/cache/SessionStorage.d.ts.map +0 -1
- package/dist/redirect-bridge/cache/TokenCache.d.ts +0 -20
- package/dist/redirect-bridge/cache/TokenCache.d.ts.map +0 -1
- package/dist/redirect-bridge/config/Configuration.d.ts +0 -198
- package/dist/redirect-bridge/config/Configuration.d.ts.map +0 -1
- package/dist/redirect-bridge/config/Configuration.mjs +0 -10
- package/dist/redirect-bridge/config/Configuration.mjs.map +0 -1
- package/dist/redirect-bridge/controllers/IController.d.ts +0 -3
- package/dist/redirect-bridge/controllers/IController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/NestedAppAuthController.d.ts +0 -159
- package/dist/redirect-bridge/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/StandardController.d.ts +0 -398
- package/dist/redirect-bridge/controllers/StandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/dist/redirect-bridge/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/BrowserCrypto.d.ts +0 -96
- package/dist/redirect-bridge/crypto/BrowserCrypto.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/CryptoOps.d.ts +0 -77
- package/dist/redirect-bridge/crypto/CryptoOps.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/PkceGenerator.d.ts +0 -9
- package/dist/redirect-bridge/crypto/PkceGenerator.d.ts.map +0 -1
- package/dist/redirect-bridge/crypto/SignedHttpRequest.d.ts +0 -32
- package/dist/redirect-bridge/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/dist/redirect-bridge/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/dist/redirect-bridge/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/HttpError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/dist/redirect-bridge/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/dist/redirect-bridge/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/dist/redirect-bridge/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/dist/redirect-bridge/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/index.d.ts +0 -84
- package/dist/redirect-bridge/custom_auth/index.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/dist/redirect-bridge/encode/Base64Decode.d.ts +0 -15
- package/dist/redirect-bridge/encode/Base64Decode.d.ts.map +0 -1
- package/dist/redirect-bridge/encode/Base64Decode.mjs +0 -44
- package/dist/redirect-bridge/encode/Base64Decode.mjs.map +0 -1
- package/dist/redirect-bridge/encode/Base64Encode.d.ts +0 -20
- package/dist/redirect-bridge/encode/Base64Encode.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthError.d.ts +0 -12
- package/dist/redirect-bridge/error/BrowserAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthError.mjs +0 -27
- package/dist/redirect-bridge/error/BrowserAuthError.mjs.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs +0 -14
- package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs.map +0 -1
- package/dist/redirect-bridge/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/dist/redirect-bridge/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/dist/redirect-bridge/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NativeAuthError.d.ts +0 -27
- package/dist/redirect-bridge/error/NativeAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NativeAuthErrorCodes.d.ts +0 -5
- package/dist/redirect-bridge/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/dist/redirect-bridge/error/NestedAppAuthError.d.ts +0 -6
- package/dist/redirect-bridge/error/NestedAppAuthError.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventHandler.d.ts +0 -49
- package/dist/redirect-bridge/event/EventHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventMessage.d.ts +0 -41
- package/dist/redirect-bridge/event/EventMessage.d.ts.map +0 -1
- package/dist/redirect-bridge/event/EventType.d.ts +0 -24
- package/dist/redirect-bridge/event/EventType.d.ts.map +0 -1
- package/dist/redirect-bridge/index.d.ts +0 -73
- package/dist/redirect-bridge/index.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/dist/redirect-bridge/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/dist/redirect-bridge/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/dist/redirect-bridge/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/PopupClient.d.ts +0 -106
- package/dist/redirect-bridge/interaction_client/PopupClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/RedirectClient.d.ts +0 -77
- package/dist/redirect-bridge/interaction_client/RedirectClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/dist/redirect-bridge/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentCacheClient.d.ts +0 -17
- package/dist/redirect-bridge/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentIframeClient.d.ts +0 -57
- package/dist/redirect-bridge/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/dist/redirect-bridge/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/dist/redirect-bridge/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_handler/InteractionHandler.d.ts +0 -33
- package/dist/redirect-bridge/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/interaction_handler/SilentHandler.d.ts +0 -17
- package/dist/redirect-bridge/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AccountInfo.d.ts +0 -13
- package/dist/redirect-bridge/naa/AccountInfo.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AuthBridge.d.ts +0 -9
- package/dist/redirect-bridge/naa/AuthBridge.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/AuthResult.d.ts +0 -7
- package/dist/redirect-bridge/naa/AuthResult.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeAccountContext.d.ts +0 -13
- package/dist/redirect-bridge/naa/BridgeAccountContext.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeCapabilities.d.ts +0 -4
- package/dist/redirect-bridge/naa/BridgeCapabilities.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeError.d.ts +0 -10
- package/dist/redirect-bridge/naa/BridgeError.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeProxy.d.ts +0 -69
- package/dist/redirect-bridge/naa/BridgeProxy.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeRequest.d.ts +0 -8
- package/dist/redirect-bridge/naa/BridgeRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/dist/redirect-bridge/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/dist/redirect-bridge/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/BridgeStatusCode.d.ts +0 -12
- package/dist/redirect-bridge/naa/BridgeStatusCode.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/IBridgeProxy.d.ts +0 -11
- package/dist/redirect-bridge/naa/IBridgeProxy.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/InitContext.d.ts +0 -9
- package/dist/redirect-bridge/naa/InitContext.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/TokenRequest.d.ts +0 -21
- package/dist/redirect-bridge/naa/TokenRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/TokenResponse.d.ts +0 -14
- package/dist/redirect-bridge/naa/TokenResponse.d.ts.map +0 -1
- package/dist/redirect-bridge/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/dist/redirect-bridge/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/INavigationClient.d.ts +0 -17
- package/dist/redirect-bridge/navigation/INavigationClient.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationClient.d.ts +0 -23
- package/dist/redirect-bridge/navigation/NavigationClient.d.ts.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationClient.mjs +0 -48
- package/dist/redirect-bridge/navigation/NavigationClient.mjs.map +0 -1
- package/dist/redirect-bridge/navigation/NavigationOptions.d.ts +0 -13
- package/dist/redirect-bridge/navigation/NavigationOptions.d.ts.map +0 -1
- package/dist/redirect-bridge/network/FetchClient.d.ts +0 -21
- package/dist/redirect-bridge/network/FetchClient.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/dist/redirect-bridge/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/dist/redirect-bridge/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/dist/redirect-bridge/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/dist/redirect-bridge/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/dist/redirect-bridge/packageMetadata.d.ts +0 -3
- package/dist/redirect-bridge/packageMetadata.d.ts.map +0 -1
- package/dist/redirect-bridge/protocol/Authorize.d.ts +0 -102
- package/dist/redirect-bridge/protocol/Authorize.d.ts.map +0 -1
- package/dist/redirect-bridge/redirect_bridge/index.d.ts +0 -16
- package/dist/redirect-bridge/redirect_bridge/index.d.ts.map +0 -1
- package/dist/redirect-bridge/redirect_bridge/index.mjs +0 -131
- package/dist/redirect-bridge/redirect_bridge/index.mjs.map +0 -1
- package/dist/redirect-bridge/request/AuthorizationCodeRequest.d.ts +0 -27
- package/dist/redirect-bridge/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/ClearCacheRequest.d.ts +0 -15
- package/dist/redirect-bridge/request/ClearCacheRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/EndSessionPopupRequest.d.ts +0 -24
- package/dist/redirect-bridge/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/EndSessionRequest.d.ts +0 -11
- package/dist/redirect-bridge/request/EndSessionRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/dist/redirect-bridge/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/dist/redirect-bridge/request/InitializeApplicationRequest.d.ts +0 -10
- package/dist/redirect-bridge/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/PopupRequest.d.ts +0 -25
- package/dist/redirect-bridge/request/PopupRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/PopupWindowAttributes.d.ts +0 -16
- package/dist/redirect-bridge/request/PopupWindowAttributes.d.ts.map +0 -1
- package/dist/redirect-bridge/request/RedirectRequest.d.ts +0 -16
- package/dist/redirect-bridge/request/RedirectRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/RequestHelpers.d.ts +0 -28
- package/dist/redirect-bridge/request/RequestHelpers.d.ts.map +0 -1
- package/dist/redirect-bridge/request/SilentRequest.d.ts +0 -52
- package/dist/redirect-bridge/request/SilentRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/request/SsoSilentRequest.d.ts +0 -6
- package/dist/redirect-bridge/request/SsoSilentRequest.d.ts.map +0 -1
- package/dist/redirect-bridge/response/AuthenticationResult.d.ts +0 -5
- package/dist/redirect-bridge/response/AuthenticationResult.d.ts.map +0 -1
- package/dist/redirect-bridge/response/ResponseHandler.d.ts +0 -8
- package/dist/redirect-bridge/response/ResponseHandler.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/dist/redirect-bridge/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/dist/redirect-bridge/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/dist/redirect-bridge/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/dist/redirect-bridge/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/dist/redirect-bridge/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserConstants.d.ts +0 -182
- package/dist/redirect-bridge/utils/BrowserConstants.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserConstants.mjs +0 -43
- package/dist/redirect-bridge/utils/BrowserConstants.mjs.map +0 -1
- package/dist/redirect-bridge/utils/BrowserProtocolUtils.d.ts +0 -12
- package/dist/redirect-bridge/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserUtils.d.ts +0 -111
- package/dist/redirect-bridge/utils/BrowserUtils.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/BrowserUtils.mjs +0 -97
- package/dist/redirect-bridge/utils/BrowserUtils.mjs.map +0 -1
- package/dist/redirect-bridge/utils/Helpers.d.ts +0 -7
- package/dist/redirect-bridge/utils/Helpers.d.ts.map +0 -1
- package/dist/redirect-bridge/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/dist/redirect-bridge/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/dist/redirect_bridge/index.d.ts +0 -16
- package/dist/request/AuthorizationCodeRequest.d.ts +0 -27
- package/dist/request/ClearCacheRequest.d.ts +0 -15
- package/dist/request/EndSessionPopupRequest.d.ts +0 -24
- package/dist/request/EndSessionRequest.d.ts +0 -11
- package/dist/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/dist/request/InitializeApplicationRequest.d.ts +0 -10
- package/dist/request/PopupRequest.d.ts +0 -25
- package/dist/request/PopupWindowAttributes.d.ts +0 -16
- package/dist/request/RedirectRequest.d.ts +0 -16
- package/dist/request/RequestHelpers.d.ts +0 -28
- package/dist/request/SilentRequest.d.ts +0 -52
- package/dist/request/SsoSilentRequest.d.ts +0 -6
- package/dist/response/AuthenticationResult.d.ts +0 -5
- package/dist/response/ResponseHandler.d.ts +0 -8
- package/dist/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/dist/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/dist/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/dist/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/dist/utils/BrowserConstants.d.ts +0 -182
- package/dist/utils/BrowserProtocolUtils.d.ts +0 -12
- package/dist/utils/BrowserUtils.d.ts +0 -111
- package/dist/utils/Helpers.d.ts +0 -7
- package/dist/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/AccountManager.d.ts +0 -24
- package/lib/custom-auth-path/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CacheKeys.d.ts +0 -15
- package/lib/custom-auth-path/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/CookieStorage.d.ts +0 -23
- package/lib/custom-auth-path/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/EncryptedData.d.ts +0 -8
- package/lib/custom-auth-path/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/LocalStorage.d.ts +0 -51
- package/lib/custom-auth-path/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/SessionStorage.d.ts +0 -14
- package/lib/custom-auth-path/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/cache/TokenCache.d.ts +0 -20
- package/lib/custom-auth-path/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/custom-auth-path/types/config/Configuration.d.ts +0 -198
- package/lib/custom-auth-path/types/config/Configuration.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/IController.d.ts +0 -3
- package/lib/custom-auth-path/types/controllers/IController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/StandardController.d.ts +0 -398
- package/lib/custom-auth-path/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/index.d.ts +0 -84
- package/lib/custom-auth-path/types/custom_auth/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/encode/Base64Decode.d.ts +0 -15
- package/lib/custom-auth-path/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/encode/Base64Encode.d.ts +0 -20
- package/lib/custom-auth-path/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NativeAuthError.d.ts +0 -27
- package/lib/custom-auth-path/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventHandler.d.ts +0 -49
- package/lib/custom-auth-path/types/event/EventHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventMessage.d.ts +0 -41
- package/lib/custom-auth-path/types/event/EventMessage.d.ts.map +0 -1
- package/lib/custom-auth-path/types/event/EventType.d.ts +0 -24
- package/lib/custom-auth-path/types/event/EventType.d.ts.map +0 -1
- package/lib/custom-auth-path/types/index.d.ts +0 -73
- package/lib/custom-auth-path/types/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AccountInfo.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AuthBridge.d.ts +0 -9
- package/lib/custom-auth-path/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/AuthResult.d.ts +0 -7
- package/lib/custom-auth-path/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeError.d.ts +0 -10
- package/lib/custom-auth-path/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/InitContext.d.ts +0 -9
- package/lib/custom-auth-path/types/naa/InitContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/TokenRequest.d.ts +0 -21
- package/lib/custom-auth-path/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/TokenResponse.d.ts +0 -14
- package/lib/custom-auth-path/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/custom-auth-path/types/network/FetchClient.d.ts +0 -21
- package/lib/custom-auth-path/types/network/FetchClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/custom-auth-path/types/packageMetadata.d.ts +0 -3
- package/lib/custom-auth-path/types/packageMetadata.d.ts.map +0 -1
- package/lib/custom-auth-path/types/protocol/Authorize.d.ts +0 -102
- package/lib/custom-auth-path/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/custom-auth-path/types/redirect_bridge/index.d.ts +0 -16
- package/lib/custom-auth-path/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/custom-auth-path/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/PopupRequest.d.ts +0 -25
- package/lib/custom-auth-path/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/RedirectRequest.d.ts +0 -16
- package/lib/custom-auth-path/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/RequestHelpers.d.ts +0 -28
- package/lib/custom-auth-path/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/SilentRequest.d.ts +0 -52
- package/lib/custom-auth-path/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/custom-auth-path/types/response/ResponseHandler.d.ts +0 -8
- package/lib/custom-auth-path/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/Helpers.d.ts +0 -7
- package/lib/custom-auth-path/types/utils/Helpers.d.ts.map +0 -1
- package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/redirect-bridge/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/redirect-bridge/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/redirect-bridge/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/redirect-bridge/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/AccountManager.d.ts +0 -24
- package/lib/redirect-bridge/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/redirect-bridge/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/redirect-bridge/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/redirect-bridge/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CacheKeys.d.ts +0 -15
- package/lib/redirect-bridge/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/CookieStorage.d.ts +0 -23
- package/lib/redirect-bridge/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/redirect-bridge/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/EncryptedData.d.ts +0 -8
- package/lib/redirect-bridge/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/redirect-bridge/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/redirect-bridge/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/LocalStorage.d.ts +0 -51
- package/lib/redirect-bridge/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/redirect-bridge/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/SessionStorage.d.ts +0 -14
- package/lib/redirect-bridge/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/cache/TokenCache.d.ts +0 -20
- package/lib/redirect-bridge/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/redirect-bridge/types/config/Configuration.d.ts +0 -198
- package/lib/redirect-bridge/types/config/Configuration.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/IController.d.ts +0 -3
- package/lib/redirect-bridge/types/controllers/IController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/redirect-bridge/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/StandardController.d.ts +0 -398
- package/lib/redirect-bridge/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/redirect-bridge/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/redirect-bridge/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/redirect-bridge/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/redirect-bridge/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/redirect-bridge/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/redirect-bridge/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/redirect-bridge/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/redirect-bridge/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/redirect-bridge/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/redirect-bridge/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/redirect-bridge/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/index.d.ts +0 -84
- package/lib/redirect-bridge/types/custom_auth/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/redirect-bridge/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/encode/Base64Decode.d.ts +0 -15
- package/lib/redirect-bridge/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/encode/Base64Encode.d.ts +0 -20
- package/lib/redirect-bridge/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/redirect-bridge/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/redirect-bridge/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/redirect-bridge/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NativeAuthError.d.ts +0 -27
- package/lib/redirect-bridge/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/redirect-bridge/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/redirect-bridge/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventHandler.d.ts +0 -49
- package/lib/redirect-bridge/types/event/EventHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventMessage.d.ts +0 -41
- package/lib/redirect-bridge/types/event/EventMessage.d.ts.map +0 -1
- package/lib/redirect-bridge/types/event/EventType.d.ts +0 -24
- package/lib/redirect-bridge/types/event/EventType.d.ts.map +0 -1
- package/lib/redirect-bridge/types/index.d.ts +0 -73
- package/lib/redirect-bridge/types/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/redirect-bridge/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/redirect-bridge/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/redirect-bridge/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/redirect-bridge/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/redirect-bridge/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/redirect-bridge/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/redirect-bridge/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/redirect-bridge/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/redirect-bridge/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/redirect-bridge/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/redirect-bridge/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/redirect-bridge/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AccountInfo.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AuthBridge.d.ts +0 -9
- package/lib/redirect-bridge/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/AuthResult.d.ts +0 -7
- package/lib/redirect-bridge/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/redirect-bridge/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeError.d.ts +0 -10
- package/lib/redirect-bridge/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/redirect-bridge/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/redirect-bridge/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/redirect-bridge/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/redirect-bridge/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/redirect-bridge/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/redirect-bridge/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/InitContext.d.ts +0 -9
- package/lib/redirect-bridge/types/naa/InitContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/TokenRequest.d.ts +0 -21
- package/lib/redirect-bridge/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/TokenResponse.d.ts +0 -14
- package/lib/redirect-bridge/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/redirect-bridge/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/redirect-bridge/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/redirect-bridge/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/redirect-bridge/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/redirect-bridge/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/redirect-bridge/types/network/FetchClient.d.ts +0 -21
- package/lib/redirect-bridge/types/network/FetchClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/redirect-bridge/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/redirect-bridge/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/redirect-bridge/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/redirect-bridge/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/redirect-bridge/types/packageMetadata.d.ts +0 -3
- package/lib/redirect-bridge/types/packageMetadata.d.ts.map +0 -1
- package/lib/redirect-bridge/types/protocol/Authorize.d.ts +0 -102
- package/lib/redirect-bridge/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/redirect-bridge/types/redirect_bridge/index.d.ts +0 -16
- package/lib/redirect-bridge/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/redirect-bridge/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/redirect-bridge/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/redirect-bridge/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/redirect-bridge/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/redirect-bridge/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/redirect-bridge/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/PopupRequest.d.ts +0 -25
- package/lib/redirect-bridge/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/redirect-bridge/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/RedirectRequest.d.ts +0 -16
- package/lib/redirect-bridge/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/RequestHelpers.d.ts +0 -28
- package/lib/redirect-bridge/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/SilentRequest.d.ts +0 -52
- package/lib/redirect-bridge/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/redirect-bridge/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/redirect-bridge/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/redirect-bridge/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/redirect-bridge/types/response/ResponseHandler.d.ts +0 -8
- package/lib/redirect-bridge/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/redirect-bridge/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/redirect-bridge/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/redirect-bridge/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/redirect-bridge/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/redirect-bridge/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/redirect-bridge/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/Helpers.d.ts +0 -7
- package/lib/redirect-bridge/types/utils/Helpers.d.ts.map +0 -1
- package/lib/redirect-bridge/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/redirect-bridge/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- package/lib/types/app/IPublicClientApplication.d.ts +0 -48
- package/lib/types/app/IPublicClientApplication.d.ts.map +0 -1
- package/lib/types/app/PublicClientApplication.d.ts +0 -247
- package/lib/types/app/PublicClientApplication.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
- package/lib/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
- package/lib/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
- package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
- package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
- package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
- package/lib/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
- package/lib/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
- package/lib/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
- package/lib/types/cache/AccountManager.d.ts +0 -24
- package/lib/types/cache/AccountManager.d.ts.map +0 -1
- package/lib/types/cache/AsyncMemoryStorage.d.ts +0 -58
- package/lib/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
- package/lib/types/cache/BrowserCacheManager.d.ts +0 -364
- package/lib/types/cache/BrowserCacheManager.d.ts.map +0 -1
- package/lib/types/cache/CacheHelpers.d.ts +0 -16
- package/lib/types/cache/CacheHelpers.d.ts.map +0 -1
- package/lib/types/cache/CacheKeys.d.ts +0 -15
- package/lib/types/cache/CacheKeys.d.ts.map +0 -1
- package/lib/types/cache/CookieStorage.d.ts +0 -23
- package/lib/types/cache/CookieStorage.d.ts.map +0 -1
- package/lib/types/cache/DatabaseStorage.d.ts +0 -57
- package/lib/types/cache/DatabaseStorage.d.ts.map +0 -1
- package/lib/types/cache/EncryptedData.d.ts +0 -8
- package/lib/types/cache/EncryptedData.d.ts.map +0 -1
- package/lib/types/cache/IAsyncStorage.d.ts +0 -33
- package/lib/types/cache/IAsyncStorage.d.ts.map +0 -1
- package/lib/types/cache/IWindowStorage.d.ts +0 -42
- package/lib/types/cache/IWindowStorage.d.ts.map +0 -1
- package/lib/types/cache/LocalStorage.d.ts +0 -51
- package/lib/types/cache/LocalStorage.d.ts.map +0 -1
- package/lib/types/cache/MemoryStorage.d.ts +0 -16
- package/lib/types/cache/MemoryStorage.d.ts.map +0 -1
- package/lib/types/cache/SessionStorage.d.ts +0 -14
- package/lib/types/cache/SessionStorage.d.ts.map +0 -1
- package/lib/types/cache/TokenCache.d.ts +0 -20
- package/lib/types/cache/TokenCache.d.ts.map +0 -1
- package/lib/types/config/Configuration.d.ts +0 -198
- package/lib/types/config/Configuration.d.ts.map +0 -1
- package/lib/types/controllers/IController.d.ts +0 -3
- package/lib/types/controllers/IController.d.ts.map +0 -1
- package/lib/types/controllers/NestedAppAuthController.d.ts +0 -159
- package/lib/types/controllers/NestedAppAuthController.d.ts.map +0 -1
- package/lib/types/controllers/StandardController.d.ts +0 -398
- package/lib/types/controllers/StandardController.d.ts.map +0 -1
- package/lib/types/controllers/UnknownOperatingContextController.d.ts +0 -73
- package/lib/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
- package/lib/types/crypto/BrowserCrypto.d.ts +0 -96
- package/lib/types/crypto/BrowserCrypto.d.ts.map +0 -1
- package/lib/types/crypto/CryptoOps.d.ts +0 -77
- package/lib/types/crypto/CryptoOps.d.ts.map +0 -1
- package/lib/types/crypto/PkceGenerator.d.ts +0 -9
- package/lib/types/crypto/PkceGenerator.d.ts.map +0 -1
- package/lib/types/crypto/SignedHttpRequest.d.ts +0 -32
- package/lib/types/crypto/SignedHttpRequest.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
- package/lib/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthConstants.d.ts +0 -35
- package/lib/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
- package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
- package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
- package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
- package/lib/types/custom_auth/UserAccountAttributes.d.ts +0 -13
- package/lib/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
- package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
- package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
- package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
- package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
- package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
- package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
- package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
- package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
- package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
- package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
- package/lib/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
- package/lib/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
- package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
- package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
- package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
- package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
- package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
- package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
- package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
- package/lib/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/HttpError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
- package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
- package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
- package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
- package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
- package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
- package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
- package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
- package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
- package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
- package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
- package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
- package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
- package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
- package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
- package/lib/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
- package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
- package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
- package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
- package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
- package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
- package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
- package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
- package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
- package/lib/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
- package/lib/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
- package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
- package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
- package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
- package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
- package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
- package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
- package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
- package/lib/types/custom_auth/index.d.ts +0 -84
- package/lib/types/custom_auth/index.d.ts.map +0 -1
- package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
- package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
- package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
- package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
- package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
- package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
- package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
- package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
- package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
- package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
- package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
- package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
- package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
- package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
- package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
- package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
- package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
- package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
- package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
- package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
- package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
- package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
- package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
- package/lib/types/encode/Base64Decode.d.ts +0 -15
- package/lib/types/encode/Base64Decode.d.ts.map +0 -1
- package/lib/types/encode/Base64Encode.d.ts +0 -20
- package/lib/types/encode/Base64Encode.d.ts.map +0 -1
- package/lib/types/error/BrowserAuthError.d.ts +0 -12
- package/lib/types/error/BrowserAuthError.d.ts.map +0 -1
- package/lib/types/error/BrowserAuthErrorCodes.d.ts +0 -53
- package/lib/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/BrowserConfigurationAuthError.d.ts +0 -11
- package/lib/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
- package/lib/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
- package/lib/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/NativeAuthError.d.ts +0 -27
- package/lib/types/error/NativeAuthError.d.ts.map +0 -1
- package/lib/types/error/NativeAuthErrorCodes.d.ts +0 -5
- package/lib/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
- package/lib/types/error/NestedAppAuthError.d.ts +0 -6
- package/lib/types/error/NestedAppAuthError.d.ts.map +0 -1
- package/lib/types/event/EventHandler.d.ts +0 -49
- package/lib/types/event/EventHandler.d.ts.map +0 -1
- package/lib/types/event/EventMessage.d.ts +0 -41
- package/lib/types/event/EventMessage.d.ts.map +0 -1
- package/lib/types/event/EventType.d.ts +0 -24
- package/lib/types/event/EventType.d.ts.map +0 -1
- package/lib/types/index.d.ts +0 -73
- package/lib/types/index.d.ts.map +0 -1
- package/lib/types/interaction_client/BaseInteractionClient.d.ts +0 -77
- package/lib/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
- package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
- package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_client/PopupClient.d.ts +0 -106
- package/lib/types/interaction_client/PopupClient.d.ts.map +0 -1
- package/lib/types/interaction_client/RedirectClient.d.ts +0 -77
- package/lib/types/interaction_client/RedirectClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
- package/lib/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentCacheClient.d.ts +0 -17
- package/lib/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentIframeClient.d.ts +0 -57
- package/lib/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
- package/lib/types/interaction_client/SilentRefreshClient.d.ts +0 -32
- package/lib/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
- package/lib/types/interaction_client/StandardInteractionClient.d.ts +0 -76
- package/lib/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
- package/lib/types/interaction_handler/InteractionHandler.d.ts +0 -33
- package/lib/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
- package/lib/types/interaction_handler/SilentHandler.d.ts +0 -17
- package/lib/types/interaction_handler/SilentHandler.d.ts.map +0 -1
- package/lib/types/naa/AccountInfo.d.ts +0 -13
- package/lib/types/naa/AccountInfo.d.ts.map +0 -1
- package/lib/types/naa/AuthBridge.d.ts +0 -9
- package/lib/types/naa/AuthBridge.d.ts.map +0 -1
- package/lib/types/naa/AuthResult.d.ts +0 -7
- package/lib/types/naa/AuthResult.d.ts.map +0 -1
- package/lib/types/naa/BridgeAccountContext.d.ts +0 -13
- package/lib/types/naa/BridgeAccountContext.d.ts.map +0 -1
- package/lib/types/naa/BridgeCapabilities.d.ts +0 -4
- package/lib/types/naa/BridgeCapabilities.d.ts.map +0 -1
- package/lib/types/naa/BridgeError.d.ts +0 -10
- package/lib/types/naa/BridgeError.d.ts.map +0 -1
- package/lib/types/naa/BridgeProxy.d.ts +0 -69
- package/lib/types/naa/BridgeProxy.d.ts.map +0 -1
- package/lib/types/naa/BridgeRequest.d.ts +0 -8
- package/lib/types/naa/BridgeRequest.d.ts.map +0 -1
- package/lib/types/naa/BridgeRequestEnvelope.d.ts +0 -13
- package/lib/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
- package/lib/types/naa/BridgeResponseEnvelope.d.ts +0 -14
- package/lib/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
- package/lib/types/naa/BridgeStatusCode.d.ts +0 -12
- package/lib/types/naa/BridgeStatusCode.d.ts.map +0 -1
- package/lib/types/naa/IBridgeProxy.d.ts +0 -11
- package/lib/types/naa/IBridgeProxy.d.ts.map +0 -1
- package/lib/types/naa/InitContext.d.ts +0 -9
- package/lib/types/naa/InitContext.d.ts.map +0 -1
- package/lib/types/naa/TokenRequest.d.ts +0 -21
- package/lib/types/naa/TokenRequest.d.ts.map +0 -1
- package/lib/types/naa/TokenResponse.d.ts +0 -14
- package/lib/types/naa/TokenResponse.d.ts.map +0 -1
- package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
- package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
- package/lib/types/navigation/INavigationClient.d.ts +0 -17
- package/lib/types/navigation/INavigationClient.d.ts.map +0 -1
- package/lib/types/navigation/NavigationClient.d.ts +0 -23
- package/lib/types/navigation/NavigationClient.d.ts.map +0 -1
- package/lib/types/navigation/NavigationOptions.d.ts +0 -13
- package/lib/types/navigation/NavigationOptions.d.ts.map +0 -1
- package/lib/types/network/FetchClient.d.ts +0 -21
- package/lib/types/network/FetchClient.d.ts.map +0 -1
- package/lib/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
- package/lib/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
- package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
- package/lib/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
- package/lib/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
- package/lib/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
- package/lib/types/packageMetadata.d.ts +0 -3
- package/lib/types/packageMetadata.d.ts.map +0 -1
- package/lib/types/protocol/Authorize.d.ts +0 -102
- package/lib/types/protocol/Authorize.d.ts.map +0 -1
- package/lib/types/redirect_bridge/index.d.ts +0 -16
- package/lib/types/redirect_bridge/index.d.ts.map +0 -1
- package/lib/types/request/AuthorizationCodeRequest.d.ts +0 -27
- package/lib/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
- package/lib/types/request/ClearCacheRequest.d.ts +0 -15
- package/lib/types/request/ClearCacheRequest.d.ts.map +0 -1
- package/lib/types/request/EndSessionPopupRequest.d.ts +0 -24
- package/lib/types/request/EndSessionPopupRequest.d.ts.map +0 -1
- package/lib/types/request/EndSessionRequest.d.ts +0 -11
- package/lib/types/request/EndSessionRequest.d.ts.map +0 -1
- package/lib/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
- package/lib/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
- package/lib/types/request/InitializeApplicationRequest.d.ts +0 -10
- package/lib/types/request/InitializeApplicationRequest.d.ts.map +0 -1
- package/lib/types/request/PopupRequest.d.ts +0 -25
- package/lib/types/request/PopupRequest.d.ts.map +0 -1
- package/lib/types/request/PopupWindowAttributes.d.ts +0 -16
- package/lib/types/request/PopupWindowAttributes.d.ts.map +0 -1
- package/lib/types/request/RedirectRequest.d.ts +0 -16
- package/lib/types/request/RedirectRequest.d.ts.map +0 -1
- package/lib/types/request/RequestHelpers.d.ts +0 -28
- package/lib/types/request/RequestHelpers.d.ts.map +0 -1
- package/lib/types/request/SilentRequest.d.ts +0 -52
- package/lib/types/request/SilentRequest.d.ts.map +0 -1
- package/lib/types/request/SsoSilentRequest.d.ts +0 -6
- package/lib/types/request/SsoSilentRequest.d.ts.map +0 -1
- package/lib/types/response/AuthenticationResult.d.ts +0 -5
- package/lib/types/response/AuthenticationResult.d.ts.map +0 -1
- package/lib/types/response/ResponseHandler.d.ts +0 -8
- package/lib/types/response/ResponseHandler.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
- package/lib/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
- package/lib/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
- package/lib/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
- package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
- package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
- package/lib/types/utils/BrowserConstants.d.ts +0 -182
- package/lib/types/utils/BrowserConstants.d.ts.map +0 -1
- package/lib/types/utils/BrowserProtocolUtils.d.ts +0 -12
- package/lib/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
- package/lib/types/utils/BrowserUtils.d.ts +0 -111
- package/lib/types/utils/BrowserUtils.d.ts.map +0 -1
- package/lib/types/utils/Helpers.d.ts +0 -7
- package/lib/types/utils/Helpers.d.ts.map +0 -1
- package/lib/types/utils/MsalFrameStatsUtils.d.ts +0 -13
- package/lib/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
- /package/dist/{custom-auth-path/custom_auth → custom_auth}/index.mjs.map +0 -0
- /package/{dist → types}/app/IPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/app/IPublicClientApplication.d.ts.map +0 -0
- /package/{dist → types}/app/PublicClientApplication.d.ts +0 -0
- /package/{dist → types}/app/PublicClientApplication.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/NativeStatusCodes.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -0
- /package/{dist → types}/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -0
- /package/{dist → types}/cache/AccountManager.d.ts +0 -0
- /package/{dist → types}/cache/AccountManager.d.ts.map +0 -0
- /package/{dist → types}/cache/AsyncMemoryStorage.d.ts +0 -0
- /package/{dist → types}/cache/AsyncMemoryStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/BrowserCacheManager.d.ts +0 -0
- /package/{dist → types}/cache/CacheHelpers.d.ts +0 -0
- /package/{dist → types}/cache/CacheHelpers.d.ts.map +0 -0
- /package/{dist → types}/cache/CacheKeys.d.ts +0 -0
- /package/{dist → types}/cache/CacheKeys.d.ts.map +0 -0
- /package/{dist → types}/cache/CookieStorage.d.ts +0 -0
- /package/{dist → types}/cache/CookieStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/DatabaseStorage.d.ts +0 -0
- /package/{dist → types}/cache/DatabaseStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/EncryptedData.d.ts +0 -0
- /package/{dist → types}/cache/EncryptedData.d.ts.map +0 -0
- /package/{dist → types}/cache/IAsyncStorage.d.ts +0 -0
- /package/{dist → types}/cache/IAsyncStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/IWindowStorage.d.ts +0 -0
- /package/{dist → types}/cache/IWindowStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/LocalStorage.d.ts +0 -0
- /package/{dist → types}/cache/LocalStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/MemoryStorage.d.ts +0 -0
- /package/{dist → types}/cache/MemoryStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/SessionStorage.d.ts +0 -0
- /package/{dist → types}/cache/SessionStorage.d.ts.map +0 -0
- /package/{dist → types}/cache/TokenCache.d.ts +0 -0
- /package/{dist → types}/cache/TokenCache.d.ts.map +0 -0
- /package/{dist → types}/config/Configuration.d.ts +0 -0
- /package/{dist → types}/config/Configuration.d.ts.map +0 -0
- /package/{dist → types}/controllers/IController.d.ts +0 -0
- /package/{dist → types}/controllers/IController.d.ts.map +0 -0
- /package/{dist → types}/controllers/NestedAppAuthController.d.ts +0 -0
- /package/{dist → types}/controllers/NestedAppAuthController.d.ts.map +0 -0
- /package/{dist → types}/controllers/StandardController.d.ts +0 -0
- /package/{dist → types}/controllers/StandardController.d.ts.map +0 -0
- /package/{dist → types}/controllers/UnknownOperatingContextController.d.ts +0 -0
- /package/{dist → types}/controllers/UnknownOperatingContextController.d.ts.map +0 -0
- /package/{dist → types}/crypto/BrowserCrypto.d.ts +0 -0
- /package/{dist → types}/crypto/BrowserCrypto.d.ts.map +0 -0
- /package/{dist → types}/crypto/CryptoOps.d.ts +0 -0
- /package/{dist → types}/crypto/CryptoOps.d.ts.map +0 -0
- /package/{dist → types}/crypto/PkceGenerator.d.ts +0 -0
- /package/{dist → types}/crypto/PkceGenerator.d.ts.map +0 -0
- /package/{dist → types}/crypto/SignedHttpRequest.d.ts +0 -0
- /package/{dist → types}/crypto/SignedHttpRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/CustomAuthActionInputs.d.ts +0 -0
- /package/{dist → types}/custom_auth/CustomAuthActionInputs.d.ts.map +0 -0
- /package/{dist → types}/custom_auth/CustomAuthConstants.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -0
- /package/{dist → types}/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/UserAccountAttributes.d.ts +0 -0
- /package/{dist → types}/custom_auth/UserAccountAttributes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -0
- /package/{dist → types}/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/controller/CustomAuthStandardController.d.ts +0 -0
- /package/{dist → types}/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -0
- /package/{dist → types}/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/CustomAuthAuthority.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/CustomAuthApiError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/CustomAuthError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/CustomAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/HttpError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/HttpError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/HttpErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidArgumentError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/ParsedUrlError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UnexpectedError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UnexpectedError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/telemetry/PublicApiId.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/utils/ArgumentValidator.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/core/utils/UrlUtils.d.ts +0 -0
- /package/{dist → types}/custom_auth/core/utils/UrlUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/index.d.ts +0 -0
- /package/{dist → types}/custom_auth/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -0
- /package/{dist → types}/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -0
- /package/{dist → types}/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/encode/Base64Decode.d.ts +0 -0
- /package/{dist → types}/encode/Base64Decode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/encode/Base64Encode.d.ts +0 -0
- /package/{dist → types}/encode/Base64Encode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserAuthError.d.ts +0 -0
- /package/{dist → types}/error/BrowserAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/BrowserAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserConfigurationAuthError.d.ts +0 -0
- /package/{dist → types}/error/BrowserConfigurationAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NativeAuthError.d.ts +0 -0
- /package/{dist → types}/error/NativeAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NativeAuthErrorCodes.d.ts +0 -0
- /package/{dist → types}/error/NativeAuthErrorCodes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/error/NestedAppAuthError.d.ts +0 -0
- /package/{dist → types}/error/NestedAppAuthError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventHandler.d.ts +0 -0
- /package/{dist → types}/event/EventHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventMessage.d.ts +0 -0
- /package/{dist → types}/event/EventMessage.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/event/EventType.d.ts +0 -0
- /package/{dist → types}/event/EventType.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/index.d.ts +0 -0
- /package/{dist → types}/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/BaseInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/BaseInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/PlatformAuthInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/PopupClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/PopupClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/RedirectClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/RedirectClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentAuthCodeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentAuthCodeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentCacheClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentCacheClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentIframeClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentIframeClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/SilentRefreshClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/SilentRefreshClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_client/StandardInteractionClient.d.ts +0 -0
- /package/{dist → types}/interaction_client/StandardInteractionClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_handler/InteractionHandler.d.ts +0 -0
- /package/{dist → types}/interaction_handler/InteractionHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/interaction_handler/SilentHandler.d.ts +0 -0
- /package/{dist → types}/interaction_handler/SilentHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AccountInfo.d.ts +0 -0
- /package/{dist → types}/naa/AccountInfo.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AuthBridge.d.ts +0 -0
- /package/{dist → types}/naa/AuthBridge.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/AuthResult.d.ts +0 -0
- /package/{dist → types}/naa/AuthResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeAccountContext.d.ts +0 -0
- /package/{dist → types}/naa/BridgeAccountContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeCapabilities.d.ts +0 -0
- /package/{dist → types}/naa/BridgeCapabilities.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeError.d.ts +0 -0
- /package/{dist → types}/naa/BridgeError.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeProxy.d.ts +0 -0
- /package/{dist → types}/naa/BridgeProxy.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeRequest.d.ts +0 -0
- /package/{dist → types}/naa/BridgeRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeRequestEnvelope.d.ts +0 -0
- /package/{dist → types}/naa/BridgeRequestEnvelope.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeResponseEnvelope.d.ts +0 -0
- /package/{dist → types}/naa/BridgeResponseEnvelope.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/BridgeStatusCode.d.ts +0 -0
- /package/{dist → types}/naa/BridgeStatusCode.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/IBridgeProxy.d.ts +0 -0
- /package/{dist → types}/naa/IBridgeProxy.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/InitContext.d.ts +0 -0
- /package/{dist → types}/naa/InitContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/TokenRequest.d.ts +0 -0
- /package/{dist → types}/naa/TokenRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/TokenResponse.d.ts +0 -0
- /package/{dist → types}/naa/TokenResponse.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/naa/mapping/NestedAppAuthAdapter.d.ts +0 -0
- /package/{dist → types}/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/INavigationClient.d.ts +0 -0
- /package/{dist → types}/navigation/INavigationClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/NavigationClient.d.ts +0 -0
- /package/{dist → types}/navigation/NavigationClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/navigation/NavigationOptions.d.ts +0 -0
- /package/{dist → types}/navigation/NavigationOptions.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/network/FetchClient.d.ts +0 -0
- /package/{dist → types}/network/FetchClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/BaseOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/BaseOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/NestedAppOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/StandardOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/StandardOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/operatingcontext/UnknownOperatingContext.d.ts +0 -0
- /package/{dist → types}/operatingcontext/UnknownOperatingContext.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/protocol/Authorize.d.ts +0 -0
- /package/{dist → types}/protocol/Authorize.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/redirect_bridge/index.d.ts +0 -0
- /package/{dist → types}/redirect_bridge/index.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/AuthorizationCodeRequest.d.ts +0 -0
- /package/{dist → types}/request/AuthorizationCodeRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/ClearCacheRequest.d.ts +0 -0
- /package/{dist → types}/request/ClearCacheRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/EndSessionPopupRequest.d.ts +0 -0
- /package/{dist → types}/request/EndSessionPopupRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/EndSessionRequest.d.ts +0 -0
- /package/{dist → types}/request/EndSessionRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/HandleRedirectPromiseOptions.d.ts +0 -0
- /package/{dist → types}/request/HandleRedirectPromiseOptions.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/InitializeApplicationRequest.d.ts +0 -0
- /package/{dist → types}/request/InitializeApplicationRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/PopupRequest.d.ts +0 -0
- /package/{dist → types}/request/PopupRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/PopupWindowAttributes.d.ts +0 -0
- /package/{dist → types}/request/PopupWindowAttributes.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/RedirectRequest.d.ts +0 -0
- /package/{dist → types}/request/RedirectRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/RequestHelpers.d.ts +0 -0
- /package/{dist → types}/request/RequestHelpers.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/SilentRequest.d.ts +0 -0
- /package/{dist → types}/request/SilentRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/request/SsoSilentRequest.d.ts +0 -0
- /package/{dist → types}/request/SsoSilentRequest.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/response/AuthenticationResult.d.ts +0 -0
- /package/{dist → types}/response/AuthenticationResult.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/response/ResponseHandler.d.ts +0 -0
- /package/{dist → types}/response/ResponseHandler.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceClient.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceClient.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceEvents.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceEvents.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceMeasurement.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/telemetry/BrowserRootPerformanceEvents.d.ts +0 -0
- /package/{dist → types}/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserConstants.d.ts +0 -0
- /package/{dist → types}/utils/BrowserConstants.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserProtocolUtils.d.ts +0 -0
- /package/{dist → types}/utils/BrowserProtocolUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/BrowserUtils.d.ts +0 -0
- /package/{dist → types}/utils/BrowserUtils.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/Helpers.d.ts +0 -0
- /package/{dist → types}/utils/Helpers.d.ts.map +0 -0
- /package/{dist/custom-auth-path → types}/utils/MsalFrameStatsUtils.d.ts +0 -0
- /package/{dist → types}/utils/MsalFrameStatsUtils.d.ts.map +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PublicClientApplication.d.ts","sourceRoot":"","sources":["../../../../src/app/PublicClientApplication.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,wCAAwC,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAC1D,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EACH,2BAA2B,EAC3B,WAAW,EACX,aAAa,EACb,MAAM,EACT,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAElE,OAAO,EACH,oBAAoB,EACpB,aAAa,EAChB,MAAM,4BAA4B,CAAC;AAEpC,OAAO,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAC3E,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAG9E,OAAO,EAAE,4BAA4B,EAAE,MAAM,4CAA4C,CAAC;AAC1F,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAElD,OAAO,EAAE,4BAA4B,EAAE,MAAM,4CAA4C,CAAC;AAE1F;;;GAGG;AACH,qBAAa,uBAAwB,YAAW,wBAAwB;IACpE,SAAS,CAAC,UAAU,EAAE,WAAW,CAAC;IAElC;;;;;;;;;;;;;;;;;;;;;OAqBG;gBACgB,aAAa,EAAE,aAAa,EAAE,UAAU,CAAC,EAAE,WAAW;IAMzE;;;OAGG;IACG,UAAU,CAAC,OAAO,CAAC,EAAE,4BAA4B,GAAG,OAAO,CAAC,IAAI,CAAC;IAIvE;;;;;;OAMG;IACG,iBAAiB,CACnB,OAAO,EAAE,YAAY,GACtB,OAAO,CAAC,oBAAoB,CAAC;IAIhC;;;;;;;;OAQG;IACH,oBAAoB,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC;IAI7D;;;;;OAKG;IACH,kBAAkB,CACd,aAAa,EAAE,aAAa,GAC7B,OAAO,CAAC,oBAAoB,CAAC;IAIhC;;;;;;;;;OASG;IACH,kBAAkB,CACd,OAAO,EAAE,wBAAwB,GAClC,OAAO,CAAC,oBAAoB,CAAC;IAIhC;;;;OAIG;IACH,gBAAgB,CACZ,QAAQ,EAAE,qBAAqB,EAC/B,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAC9B,MAAM,GAAG,IAAI;IAIhB;;;OAGG;IACH,mBAAmB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAI7C;;;;;OAKG;IACH,sBAAsB,CAAC,QAAQ,EAAE,2BAA2B,GAAG,MAAM;IAIrE;;;;;OAKG;IACH,yBAAyB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO;IAItD;;;;OAIG;IACH,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,WAAW,GAAG,IAAI;IAI5D;;;;OAIG;IACH,cAAc,CAAC,aAAa,CAAC,EAAE,aAAa,GAAG,WAAW,EAAE;IAI5D;;;;;;;OAOG;IACH,qBAAqB,CACjB,OAAO,CAAC,EAAE,4BAA4B,GACvC,OAAO,CAAC,oBAAoB,GAAG,IAAI,CAAC;IAIvC;;;;;;OAMG;IACH,UAAU,CACN,OAAO,CAAC,EAAE,YAAY,GAAG,SAAS,GACnC,OAAO,CAAC,oBAAoB,CAAC;IAIhC;;;;;;;;OAQG;IACH,aAAa,CAAC,OAAO,CAAC,EAAE,eAAe,GAAG,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC;IAInE;;;;OAIG;IACH,cAAc,CAAC,aAAa,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;IAIhE;;;OAGG;IACH,WAAW,CAAC,aAAa,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,IAAI,CAAC;IAIlE;;;;;;;;;;;;;;OAcG;IACH,SAAS,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAInE;;OAEG;IACH,SAAS,IAAI,MAAM;IAInB;;;OAGG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAI/B;;;OAGG;IACH,gBAAgB,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI,GAAG,IAAI;IAInD;;OAEG;IACH,gBAAgB,IAAI,WAAW,GAAG,IAAI;IAItC;;;;OAIG;IACH,wBAAwB,CAAC,GAAG,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI;IAIhE;;;OAGG;IACH,mBAAmB,CAAC,gBAAgB,EAAE,iBAAiB,GAAG,IAAI;IAI9D;;;OAGG;IACH,gBAAgB,IAAI,oBAAoB;IAIxC;;;;;OAKG;IACG,YAAY,CACd,MAAM,EAAE,oBAAoB,EAC5B,OAAO,EACD,aAAa,GACb,gBAAgB,GAChB,eAAe,GACf,YAAY,GACnB,OAAO,CAAC,IAAI,CAAC;IAIhB;;;OAGG;IACH,UAAU,CAAC,aAAa,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;CAG/D;AAED;;;;;;;;;GASG;AACH,wBAAsB,qCAAqC,CACvD,aAAa,EAAE,aAAa,EAC5B,aAAa,CAAC,EAAE,MAAM,EACtB,UAAU,CAAC,EAAE,CACT,aAAa,EAAE,aAAa,EAC5B,UAAU,EAAE,WAAW,KACtB,wBAAwB,GAC9B,OAAO,CAAC,wBAAwB,CAAC,CAenC;AAED;;;;;;GAMG;AACH,wBAAsB,qCAAqC,CACvD,aAAa,EAAE,aAAa,GAC7B,OAAO,CAAC,wBAAwB,CAAC,CAInC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { PlatformAuthRequest } from "./PlatformAuthRequest.js";
|
|
2
|
-
import { PlatformAuthResponse } from "./PlatformAuthResponse.js";
|
|
3
|
-
/**
|
|
4
|
-
* Interface for the Platform Broker Handlers
|
|
5
|
-
*/
|
|
6
|
-
export interface IPlatformAuthHandler {
|
|
7
|
-
getExtensionId(): string | undefined;
|
|
8
|
-
getExtensionVersion(): string | undefined;
|
|
9
|
-
getExtensionName(): string | undefined;
|
|
10
|
-
sendMessage(request: PlatformAuthRequest): Promise<PlatformAuthResponse>;
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=IPlatformAuthHandler.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IPlatformAuthHandler.d.ts","sourceRoot":"","sources":["../../../../../src/broker/nativeBroker/IPlatformAuthHandler.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEjE;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC,cAAc,IAAI,MAAM,GAAG,SAAS,CAAC;IACrC,mBAAmB,IAAI,MAAM,GAAG,SAAS,CAAC;IAC1C,gBAAgB,IAAI,MAAM,GAAG,SAAS,CAAC;IACvC,WAAW,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;CAC5E"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare const USER_INTERACTION_REQUIRED = "USER_INTERACTION_REQUIRED";
|
|
2
|
-
export declare const USER_CANCEL = "USER_CANCEL";
|
|
3
|
-
export declare const NO_NETWORK = "NO_NETWORK";
|
|
4
|
-
export declare const TRANSIENT_ERROR = "TRANSIENT_ERROR";
|
|
5
|
-
export declare const PERSISTENT_ERROR = "PERSISTENT_ERROR";
|
|
6
|
-
export declare const DISABLED = "DISABLED";
|
|
7
|
-
export declare const ACCOUNT_UNAVAILABLE = "ACCOUNT_UNAVAILABLE";
|
|
8
|
-
export declare const UX_NOT_ALLOWED = "UX_NOT_ALLOWED";
|
|
9
|
-
//# sourceMappingURL=NativeStatusCodes.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"NativeStatusCodes.d.ts","sourceRoot":"","sources":["../../../../../src/broker/nativeBroker/NativeStatusCodes.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,yBAAyB,8BAA8B,CAAC;AACrE,eAAO,MAAM,WAAW,gBAAgB,CAAC;AACzC,eAAO,MAAM,UAAU,eAAe,CAAC;AACvC,eAAO,MAAM,eAAe,oBAAoB,CAAC;AACjD,eAAO,MAAM,gBAAgB,qBAAqB,CAAC;AACnD,eAAO,MAAM,QAAQ,aAAa,CAAC;AACnC,eAAO,MAAM,mBAAmB,wBAAwB,CAAC;AACzD,eAAO,MAAM,cAAc,mBAAmB,CAAC"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { Logger, IPerformanceClient } from "@azure/msal-common/browser";
|
|
2
|
-
import { PlatformAuthRequest } from "./PlatformAuthRequest.js";
|
|
3
|
-
import { PlatformAuthResponse } from "./PlatformAuthResponse.js";
|
|
4
|
-
import { IPlatformAuthHandler } from "./IPlatformAuthHandler.js";
|
|
5
|
-
export declare class PlatformAuthDOMHandler implements IPlatformAuthHandler {
|
|
6
|
-
protected logger: Logger;
|
|
7
|
-
protected performanceClient: IPerformanceClient;
|
|
8
|
-
protected correlationId: string;
|
|
9
|
-
platformAuthType: string;
|
|
10
|
-
constructor(logger: Logger, performanceClient: IPerformanceClient, correlationId: string);
|
|
11
|
-
static createProvider(logger: Logger, performanceClient: IPerformanceClient, correlationId: string): Promise<PlatformAuthDOMHandler | undefined>;
|
|
12
|
-
/**
|
|
13
|
-
* Returns the Id for the broker extension this handler is communicating with
|
|
14
|
-
* @returns
|
|
15
|
-
*/
|
|
16
|
-
getExtensionId(): string;
|
|
17
|
-
getExtensionVersion(): string | undefined;
|
|
18
|
-
getExtensionName(): string | undefined;
|
|
19
|
-
/**
|
|
20
|
-
* Send token request to platform broker via browser DOM API
|
|
21
|
-
* @param request
|
|
22
|
-
* @returns
|
|
23
|
-
*/
|
|
24
|
-
sendMessage(request: PlatformAuthRequest): Promise<PlatformAuthResponse>;
|
|
25
|
-
private initializePlatformDOMRequest;
|
|
26
|
-
private validatePlatformBrokerResponse;
|
|
27
|
-
private convertToPlatformBrokerResponse;
|
|
28
|
-
private getDOMExtraParams;
|
|
29
|
-
}
|
|
30
|
-
//# sourceMappingURL=PlatformAuthDOMHandler.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PlatformAuthDOMHandler.d.ts","sourceRoot":"","sources":["../../../../../src/broker/nativeBroker/PlatformAuthDOMHandler.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,MAAM,EAGN,kBAAkB,EAErB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAEH,mBAAmB,EAEtB,MAAM,0BAA0B,CAAC;AAElC,OAAO,EACH,oBAAoB,EAEvB,MAAM,2BAA2B,CAAC;AAEnC,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEjE,qBAAa,sBAAuB,YAAW,oBAAoB;IAC/D,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,iBAAiB,EAAE,kBAAkB,CAAC;IAChD,SAAS,CAAC,aAAa,EAAE,MAAM,CAAC;IAChC,gBAAgB,EAAE,MAAM,CAAC;gBAGrB,MAAM,EAAE,MAAM,EACd,iBAAiB,EAAE,kBAAkB,EACrC,aAAa,EAAE,MAAM;WAQZ,cAAc,CACvB,MAAM,EAAE,MAAM,EACd,iBAAiB,EAAE,kBAAkB,EACrC,aAAa,EAAE,MAAM,GACtB,OAAO,CAAC,sBAAsB,GAAG,SAAS,CAAC;IAgC9C;;;OAGG;IACH,cAAc,IAAI,MAAM;IAIxB,mBAAmB,IAAI,MAAM,GAAG,SAAS;IAIzC,gBAAgB,IAAI,MAAM,GAAG,SAAS;IAItC;;;;OAIG;IACG,WAAW,CACb,OAAO,EAAE,mBAAmB,GAC7B,OAAO,CAAC,oBAAoB,CAAC;IA2BhC,OAAO,CAAC,4BAA4B;IAgDpC,OAAO,CAAC,8BAA8B;IAmDtC,OAAO,CAAC,+BAA+B;IAwBvC,OAAO,CAAC,iBAAiB;CA6B5B"}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import { Logger, IPerformanceClient } from "@azure/msal-common/browser";
|
|
2
|
-
import { PlatformAuthRequest } from "./PlatformAuthRequest.js";
|
|
3
|
-
import { PlatformAuthResponse } from "./PlatformAuthResponse.js";
|
|
4
|
-
import { IPlatformAuthHandler } from "./IPlatformAuthHandler.js";
|
|
5
|
-
export declare class PlatformAuthExtensionHandler implements IPlatformAuthHandler {
|
|
6
|
-
private extensionId;
|
|
7
|
-
private extensionVersion;
|
|
8
|
-
private logger;
|
|
9
|
-
private readonly handshakeTimeoutMs;
|
|
10
|
-
private timeoutId;
|
|
11
|
-
private resolvers;
|
|
12
|
-
private handshakeResolvers;
|
|
13
|
-
private messageChannel;
|
|
14
|
-
private readonly windowListener;
|
|
15
|
-
private readonly performanceClient;
|
|
16
|
-
private readonly handshakeEvent;
|
|
17
|
-
platformAuthType: string;
|
|
18
|
-
constructor(logger: Logger, handshakeTimeoutMs: number, performanceClient: IPerformanceClient, extensionId?: string);
|
|
19
|
-
/**
|
|
20
|
-
* Sends a given message to the extension and resolves with the extension response
|
|
21
|
-
* @param request
|
|
22
|
-
*/
|
|
23
|
-
sendMessage(request: PlatformAuthRequest): Promise<PlatformAuthResponse>;
|
|
24
|
-
/**
|
|
25
|
-
* Returns an instance of the MessageHandler that has successfully established a connection with an extension
|
|
26
|
-
* @param {Logger} logger
|
|
27
|
-
* @param {number} handshakeTimeoutMs
|
|
28
|
-
* @param {IPerformanceClient} performanceClient
|
|
29
|
-
* @param {ICrypto} crypto
|
|
30
|
-
*/
|
|
31
|
-
static createProvider(logger: Logger, handshakeTimeoutMs: number, performanceClient: IPerformanceClient, correlationId: string): Promise<PlatformAuthExtensionHandler>;
|
|
32
|
-
/**
|
|
33
|
-
* Send handshake request helper.
|
|
34
|
-
*/
|
|
35
|
-
private sendHandshakeRequest;
|
|
36
|
-
/**
|
|
37
|
-
* Invoked when a message is posted to the window. If a handshake request is received it means the extension is not installed.
|
|
38
|
-
* @param event
|
|
39
|
-
*/
|
|
40
|
-
private onWindowMessage;
|
|
41
|
-
/**
|
|
42
|
-
* Invoked when a message is received from the extension on the MessageChannel port
|
|
43
|
-
* @param event
|
|
44
|
-
*/
|
|
45
|
-
private onChannelMessage;
|
|
46
|
-
/**
|
|
47
|
-
* Validates native platform response before processing
|
|
48
|
-
* @param response
|
|
49
|
-
*/
|
|
50
|
-
private validatePlatformBrokerResponse;
|
|
51
|
-
/**
|
|
52
|
-
* Returns the Id for the browser extension this handler is communicating with
|
|
53
|
-
* @returns
|
|
54
|
-
*/
|
|
55
|
-
getExtensionId(): string | undefined;
|
|
56
|
-
/**
|
|
57
|
-
* Returns the version for the browser extension this handler is communicating with
|
|
58
|
-
* @returns
|
|
59
|
-
*/
|
|
60
|
-
getExtensionVersion(): string | undefined;
|
|
61
|
-
getExtensionName(): string | undefined;
|
|
62
|
-
}
|
|
63
|
-
//# sourceMappingURL=PlatformAuthExtensionHandler.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PlatformAuthExtensionHandler.d.ts","sourceRoot":"","sources":["../../../../../src/broker/nativeBroker/PlatformAuthExtensionHandler.ts"],"names":[],"mappings":"AASA,OAAO,EACH,MAAM,EAKN,kBAAkB,EACrB,MAAM,4BAA4B,CAAC;AAEpC,OAAO,EAGH,mBAAmB,EACtB,MAAM,0BAA0B,CAAC;AAOlC,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACjE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAUjE,qBAAa,4BAA6B,YAAW,oBAAoB;IACrE,OAAO,CAAC,WAAW,CAAqB;IACxC,OAAO,CAAC,gBAAgB,CAAqB;IAC7C,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAS;IAC5C,OAAO,CAAC,SAAS,CAAqB;IACtC,OAAO,CAAC,SAAS,CAAyC;IAC1D,OAAO,CAAC,kBAAkB,CAAuC;IACjE,OAAO,CAAC,cAAc,CAAiB;IACvC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAgC;IAC/D,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAqB;IACvD,OAAO,CAAC,QAAQ,CAAC,cAAc,CAA6B;IAC5D,gBAAgB,EAAE,MAAM,CAAC;gBAGrB,MAAM,EAAE,MAAM,EACd,kBAAkB,EAAE,MAAM,EAC1B,iBAAiB,EAAE,kBAAkB,EACrC,WAAW,CAAC,EAAE,MAAM;IAiBxB;;;OAGG;IACG,WAAW,CACb,OAAO,EAAE,mBAAmB,GAC7B,OAAO,CAAC,oBAAoB,CAAC;IA2ChC;;;;;;OAMG;WACU,cAAc,CACvB,MAAM,EAAE,MAAM,EACd,kBAAkB,EAAE,MAAM,EAC1B,iBAAiB,EAAE,kBAAkB,EACrC,aAAa,EAAE,MAAM,GACtB,OAAO,CAAC,4BAA4B,CAAC;IA2BxC;;OAEG;YACW,oBAAoB;IAuDlC;;;OAGG;IACH,OAAO,CAAC,eAAe;IA+DvB;;;OAGG;IACH,OAAO,CAAC,gBAAgB;IA+GxB;;;OAGG;IACH,OAAO,CAAC,8BAA8B;IAoBtC;;;OAGG;IACH,cAAc,IAAI,MAAM,GAAG,SAAS;IAIpC;;;OAGG;IACH,mBAAmB,IAAI,MAAM,GAAG,SAAS;IAIzC,gBAAgB,IAAI,MAAM,GAAG,SAAS;CAQzC"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { LoggerOptions, IPerformanceClient, Logger, Constants } from "@azure/msal-common/browser";
|
|
2
|
-
import { BrowserConfiguration } from "../../config/Configuration.js";
|
|
3
|
-
import { IPlatformAuthHandler } from "./IPlatformAuthHandler.js";
|
|
4
|
-
/**
|
|
5
|
-
* Checks if the platform broker is available in the current environment.
|
|
6
|
-
* @param loggerOptions
|
|
7
|
-
* @param perfClient
|
|
8
|
-
* @param correlationId
|
|
9
|
-
* @returns
|
|
10
|
-
*/
|
|
11
|
-
export declare function isPlatformBrokerAvailable(loggerOptions?: LoggerOptions, perfClient?: IPerformanceClient, correlationId?: string): Promise<boolean>;
|
|
12
|
-
export declare function getPlatformAuthProvider(logger: Logger, performanceClient: IPerformanceClient, correlationId: string, nativeBrokerHandshakeTimeout?: number): Promise<IPlatformAuthHandler | undefined>;
|
|
13
|
-
/**
|
|
14
|
-
* Returns true if the DOM API support for platform auth is enabled in session storage
|
|
15
|
-
* @returns boolean
|
|
16
|
-
* @deprecated
|
|
17
|
-
*/
|
|
18
|
-
export declare function isDomEnabledForPlatformAuth(): boolean;
|
|
19
|
-
/**
|
|
20
|
-
* Returns boolean indicating whether or not the request should attempt to use platform broker
|
|
21
|
-
* @param logger
|
|
22
|
-
* @param config
|
|
23
|
-
* @param correlationId
|
|
24
|
-
* @param platformAuthProvider
|
|
25
|
-
* @param authenticationScheme
|
|
26
|
-
*/
|
|
27
|
-
export declare function isPlatformAuthAllowed(config: BrowserConfiguration, logger: Logger, correlationId: string, platformAuthProvider?: IPlatformAuthHandler, authenticationScheme?: Constants.AuthenticationScheme): boolean;
|
|
28
|
-
//# sourceMappingURL=PlatformAuthProvider.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PlatformAuthProvider.d.ts","sourceRoot":"","sources":["../../../../../src/broker/nativeBroker/PlatformAuthProvider.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,aAAa,EACb,kBAAkB,EAClB,MAAM,EACN,SAAS,EAEZ,MAAM,4BAA4B,CAAC;AAEpC,OAAO,EACH,oBAAoB,EAEvB,MAAM,+BAA+B,CAAC;AAEvC,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAKjE;;;;;;GAMG;AACH,wBAAsB,yBAAyB,CAC3C,aAAa,CAAC,EAAE,aAAa,EAC7B,UAAU,CAAC,EAAE,kBAAkB,EAC/B,aAAa,CAAC,EAAE,MAAM,GACvB,OAAO,CAAC,OAAO,CAAC,CAclB;AAED,wBAAsB,uBAAuB,CACzC,MAAM,EAAE,MAAM,EACd,iBAAiB,EAAE,kBAAkB,EACrC,aAAa,EAAE,MAAM,EACrB,4BAA4B,CAAC,EAAE,MAAM,GACtC,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAyC3C;AAED;;;;GAIG;AACH,wBAAgB,2BAA2B,IAAI,OAAO,CASrD;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CACjC,MAAM,EAAE,oBAAoB,EAC5B,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,MAAM,EACrB,oBAAoB,CAAC,EAAE,oBAAoB,EAC3C,oBAAoB,CAAC,EAAE,SAAS,CAAC,oBAAoB,GACtD,OAAO,CAsCT"}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import { NativeExtensionMethod } from "../../utils/BrowserConstants.js";
|
|
2
|
-
import { StoreInCache, StringDict } from "@azure/msal-common/browser";
|
|
3
|
-
/**
|
|
4
|
-
* Token request which native broker will use to acquire tokens
|
|
5
|
-
*/
|
|
6
|
-
export type PlatformAuthRequest = {
|
|
7
|
-
accountId: string;
|
|
8
|
-
clientId: string;
|
|
9
|
-
authority: string;
|
|
10
|
-
redirectUri: string;
|
|
11
|
-
scope: string;
|
|
12
|
-
correlationId: string;
|
|
13
|
-
windowTitleSubstring: string;
|
|
14
|
-
prompt?: string;
|
|
15
|
-
nonce?: string;
|
|
16
|
-
claims?: string;
|
|
17
|
-
state?: string;
|
|
18
|
-
reqCnf?: string;
|
|
19
|
-
keyId?: string;
|
|
20
|
-
tokenType?: string;
|
|
21
|
-
shrClaims?: string;
|
|
22
|
-
shrNonce?: string;
|
|
23
|
-
resourceRequestMethod?: string;
|
|
24
|
-
resourceRequestUri?: string;
|
|
25
|
-
extendedExpiryToken?: boolean;
|
|
26
|
-
resource?: string;
|
|
27
|
-
extraParameters?: StringDict;
|
|
28
|
-
storeInCache?: StoreInCache;
|
|
29
|
-
signPopToken?: boolean;
|
|
30
|
-
embeddedClientId?: string;
|
|
31
|
-
};
|
|
32
|
-
/**
|
|
33
|
-
* Request which will be forwarded to native broker by the browser extension
|
|
34
|
-
*/
|
|
35
|
-
export type NativeExtensionRequestBody = {
|
|
36
|
-
method: NativeExtensionMethod;
|
|
37
|
-
request?: PlatformAuthRequest;
|
|
38
|
-
};
|
|
39
|
-
/**
|
|
40
|
-
* Browser extension request
|
|
41
|
-
*/
|
|
42
|
-
export type NativeExtensionRequest = {
|
|
43
|
-
channel: string;
|
|
44
|
-
responseId: string;
|
|
45
|
-
extensionId?: string;
|
|
46
|
-
body: NativeExtensionRequestBody;
|
|
47
|
-
};
|
|
48
|
-
export type PlatformDOMTokenRequest = {
|
|
49
|
-
brokerId: string;
|
|
50
|
-
accountId?: string;
|
|
51
|
-
clientId: string;
|
|
52
|
-
authority: string;
|
|
53
|
-
scope: string;
|
|
54
|
-
redirectUri: string;
|
|
55
|
-
correlationId: string;
|
|
56
|
-
isSecurityTokenService: boolean;
|
|
57
|
-
state?: string;
|
|
58
|
-
extraParameters?: DOMExtraParameters;
|
|
59
|
-
embeddedClientId?: string;
|
|
60
|
-
storeInCache?: StoreInCache;
|
|
61
|
-
};
|
|
62
|
-
export type DOMExtraParameters = StringDict & {
|
|
63
|
-
prompt?: string;
|
|
64
|
-
nonce?: string;
|
|
65
|
-
claims?: string;
|
|
66
|
-
loginHint?: string;
|
|
67
|
-
instanceAware?: string;
|
|
68
|
-
windowTitleSubstring?: string;
|
|
69
|
-
extendedExpiryToken?: string;
|
|
70
|
-
reqCnf?: string;
|
|
71
|
-
keyId?: string;
|
|
72
|
-
tokenType?: string;
|
|
73
|
-
shrClaims?: string;
|
|
74
|
-
shrNonce?: string;
|
|
75
|
-
resourceRequestMethod?: string;
|
|
76
|
-
resourceRequestUri?: string;
|
|
77
|
-
signPopToken?: string;
|
|
78
|
-
};
|
|
79
|
-
//# sourceMappingURL=PlatformAuthRequest.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PlatformAuthRequest.d.ts","sourceRoot":"","sources":["../../../../../src/broker/nativeBroker/PlatformAuthRequest.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AACxE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAEtE;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAC9B,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,MAAM,CAAC;IACtB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,UAAU,CAAC;IAC7B,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC7B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAAG;IACrC,MAAM,EAAE,qBAAqB,CAAC;IAC9B,OAAO,CAAC,EAAE,mBAAmB,CAAC;CACjC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACjC,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,0BAA0B,CAAC;CACpC,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IAClC,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,sBAAsB,EAAE,OAAO,CAAC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IAOf,eAAe,CAAC,EAAE,kBAAkB,CAAC;IACrC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,YAAY,CAAC,EAAE,YAAY,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,UAAU,GAAG;IAC1C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC"}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Account properties returned by Native Platform e.g. WAM
|
|
3
|
-
*/
|
|
4
|
-
export type NativeAccountInfo = {
|
|
5
|
-
id: string;
|
|
6
|
-
properties: object;
|
|
7
|
-
userName: string;
|
|
8
|
-
};
|
|
9
|
-
/**
|
|
10
|
-
* Token response returned by Native Platform
|
|
11
|
-
*/
|
|
12
|
-
export type PlatformAuthResponse = {
|
|
13
|
-
access_token: string;
|
|
14
|
-
account: NativeAccountInfo;
|
|
15
|
-
client_info: string;
|
|
16
|
-
expires_in: number;
|
|
17
|
-
id_token: string;
|
|
18
|
-
properties: NativeResponseProperties;
|
|
19
|
-
scope: string;
|
|
20
|
-
state: string;
|
|
21
|
-
shr?: string;
|
|
22
|
-
extendedLifetimeToken?: boolean;
|
|
23
|
-
};
|
|
24
|
-
/**
|
|
25
|
-
* Properties returned under "properties" of the NativeResponse
|
|
26
|
-
*/
|
|
27
|
-
export type NativeResponseProperties = {
|
|
28
|
-
MATS?: string;
|
|
29
|
-
};
|
|
30
|
-
/**
|
|
31
|
-
* The native token broker can optionally include additional information about operations it performs. If that data is returned, MSAL.js will include the following properties in the telemetry it collects.
|
|
32
|
-
*/
|
|
33
|
-
export type MATS = {
|
|
34
|
-
is_cached?: number;
|
|
35
|
-
broker_version?: string;
|
|
36
|
-
account_join_on_start?: string;
|
|
37
|
-
account_join_on_end?: string;
|
|
38
|
-
device_join?: string;
|
|
39
|
-
prompt_behavior?: string;
|
|
40
|
-
api_error_code?: number;
|
|
41
|
-
ui_visible?: boolean;
|
|
42
|
-
silent_code?: number;
|
|
43
|
-
silent_bi_sub_code?: number;
|
|
44
|
-
silent_message?: string;
|
|
45
|
-
silent_status?: number;
|
|
46
|
-
http_status?: number;
|
|
47
|
-
http_event_count?: number;
|
|
48
|
-
};
|
|
49
|
-
export type PlatformDOMTokenResponse = {
|
|
50
|
-
isSuccess: boolean;
|
|
51
|
-
state?: string;
|
|
52
|
-
accessToken: string;
|
|
53
|
-
expiresIn: number;
|
|
54
|
-
account: NativeAccountInfo;
|
|
55
|
-
clientInfo: string;
|
|
56
|
-
idToken: string;
|
|
57
|
-
scopes: string;
|
|
58
|
-
proofOfPossessionPayload?: string;
|
|
59
|
-
extendedLifetimeToken?: boolean;
|
|
60
|
-
error: ErrorResult;
|
|
61
|
-
properties?: Record<string, string>;
|
|
62
|
-
};
|
|
63
|
-
export type ErrorResult = {
|
|
64
|
-
code: string;
|
|
65
|
-
description?: string;
|
|
66
|
-
errorCode: string;
|
|
67
|
-
protocolError?: string;
|
|
68
|
-
status: string;
|
|
69
|
-
properties?: object;
|
|
70
|
-
};
|
|
71
|
-
//# sourceMappingURL=PlatformAuthResponse.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PlatformAuthResponse.d.ts","sourceRoot":"","sources":["../../../../../src/broker/nativeBroker/PlatformAuthResponse.ts"],"names":[],"mappings":"AAKA;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IAC/B,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,iBAAiB,CAAC;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,wBAAwB,CAAC;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACnC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,IAAI,GAAG;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACnC,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,iBAAiB,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,KAAK,EAAE,WAAW,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACvC,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { AccountInfo, AccountFilter, Logger } from "@azure/msal-common/browser";
|
|
2
|
-
import { BrowserCacheManager } from "./BrowserCacheManager.js";
|
|
3
|
-
/**
|
|
4
|
-
* Returns all the accounts in the cache that match the optional filter. If no filter is provided, all accounts are returned.
|
|
5
|
-
* @param accountFilter - (Optional) filter to narrow down the accounts returned
|
|
6
|
-
* @returns Array of AccountInfo objects in cache
|
|
7
|
-
*/
|
|
8
|
-
export declare function getAllAccounts(logger: Logger, browserStorage: BrowserCacheManager, isInBrowser: boolean, correlationId: string, accountFilter?: AccountFilter): AccountInfo[];
|
|
9
|
-
/**
|
|
10
|
-
* Returns the first account found in the cache that matches the account filter passed in.
|
|
11
|
-
* @param accountFilter
|
|
12
|
-
* @returns The first account found in the cache matching the provided filter or null if no account could be found.
|
|
13
|
-
*/
|
|
14
|
-
export declare function getAccount(accountFilter: AccountFilter, logger: Logger, browserStorage: BrowserCacheManager, correlationId: string): AccountInfo | null;
|
|
15
|
-
/**
|
|
16
|
-
* Sets the account to use as the active account. If no account is passed to the acquireToken APIs, then MSAL will use this active account.
|
|
17
|
-
* @param account
|
|
18
|
-
*/
|
|
19
|
-
export declare function setActiveAccount(account: AccountInfo | null, browserStorage: BrowserCacheManager, correlationId: string): void;
|
|
20
|
-
/**
|
|
21
|
-
* Gets the currently active account
|
|
22
|
-
*/
|
|
23
|
-
export declare function getActiveAccount(browserStorage: BrowserCacheManager, correlationId: string): AccountInfo | null;
|
|
24
|
-
//# sourceMappingURL=AccountManager.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AccountManager.d.ts","sourceRoot":"","sources":["../../../../src/cache/AccountManager.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AAChF,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;;GAIG;AACH,wBAAgB,cAAc,CAC1B,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,mBAAmB,EACnC,WAAW,EAAE,OAAO,EACpB,aAAa,EAAE,MAAM,EACrB,aAAa,CAAC,EAAE,aAAa,GAC9B,WAAW,EAAE,CAKf;AAED;;;;GAIG;AACH,wBAAgB,UAAU,CACtB,aAAa,EAAE,aAAa,EAC5B,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,mBAAmB,EACnC,aAAa,EAAE,MAAM,GACtB,WAAW,GAAG,IAAI,CAoBpB;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAC5B,OAAO,EAAE,WAAW,GAAG,IAAI,EAC3B,cAAc,EAAE,mBAAmB,EACnC,aAAa,EAAE,MAAM,GACtB,IAAI,CAEN;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAC5B,cAAc,EAAE,mBAAmB,EACnC,aAAa,EAAE,MAAM,GACtB,WAAW,GAAG,IAAI,CAEpB"}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { Logger } from "@azure/msal-common/browser";
|
|
2
|
-
import { IAsyncStorage } from "./IAsyncStorage.js";
|
|
3
|
-
/**
|
|
4
|
-
* This class allows MSAL to store artifacts asynchronously using the DatabaseStorage IndexedDB wrapper,
|
|
5
|
-
* backed up with the more volatile MemoryStorage object for cases in which IndexedDB may be unavailable.
|
|
6
|
-
*/
|
|
7
|
-
export declare class AsyncMemoryStorage<T> implements IAsyncStorage<T> {
|
|
8
|
-
private inMemoryCache;
|
|
9
|
-
private indexedDBCache;
|
|
10
|
-
private logger;
|
|
11
|
-
constructor(logger: Logger);
|
|
12
|
-
private handleDatabaseAccessError;
|
|
13
|
-
/**
|
|
14
|
-
* Get the item matching the given key. Tries in-memory cache first, then in the asynchronous
|
|
15
|
-
* storage object if item isn't found in-memory.
|
|
16
|
-
* @param key
|
|
17
|
-
* @param correlationId
|
|
18
|
-
*/
|
|
19
|
-
getItem(key: string, correlationId: string): Promise<T | null>;
|
|
20
|
-
/**
|
|
21
|
-
* Sets the item in the in-memory cache and then tries to set it in the asynchronous
|
|
22
|
-
* storage object with the given key.
|
|
23
|
-
* @param key
|
|
24
|
-
* @param value
|
|
25
|
-
* @param correlationId
|
|
26
|
-
*/
|
|
27
|
-
setItem(key: string, value: T, correlationId: string): Promise<void>;
|
|
28
|
-
/**
|
|
29
|
-
* Removes the item matching the key from the in-memory cache, then tries to remove it from the asynchronous storage object.
|
|
30
|
-
* @param key
|
|
31
|
-
* @param correlationId
|
|
32
|
-
*/
|
|
33
|
-
removeItem(key: string, correlationId: string): Promise<void>;
|
|
34
|
-
/**
|
|
35
|
-
* Get all the keys from the in-memory cache as an iterable array of strings. If no keys are found, query the keys in the
|
|
36
|
-
* asynchronous storage object.
|
|
37
|
-
* @param correlationId
|
|
38
|
-
*/
|
|
39
|
-
getKeys(correlationId: string): Promise<string[]>;
|
|
40
|
-
/**
|
|
41
|
-
* Returns true or false if the given key is present in the cache.
|
|
42
|
-
* @param key
|
|
43
|
-
* @param correlationId
|
|
44
|
-
*/
|
|
45
|
-
containsKey(key: string, correlationId: string): Promise<boolean>;
|
|
46
|
-
/**
|
|
47
|
-
* Clears in-memory Map
|
|
48
|
-
* @param correlationId
|
|
49
|
-
*/
|
|
50
|
-
clearInMemory(correlationId: string): void;
|
|
51
|
-
/**
|
|
52
|
-
* Tries to delete the IndexedDB database
|
|
53
|
-
* @param correlationId
|
|
54
|
-
* @returns
|
|
55
|
-
*/
|
|
56
|
-
clearPersistent(correlationId: string): Promise<boolean>;
|
|
57
|
-
}
|
|
58
|
-
//# sourceMappingURL=AsyncMemoryStorage.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AsyncMemoryStorage.d.ts","sourceRoot":"","sources":["../../../../src/cache/AsyncMemoryStorage.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AAMpD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAGnD;;;GAGG;AACH,qBAAa,kBAAkB,CAAC,CAAC,CAAE,YAAW,aAAa,CAAC,CAAC,CAAC;IAC1D,OAAO,CAAC,aAAa,CAAmB;IACxC,OAAO,CAAC,cAAc,CAAqB;IAC3C,OAAO,CAAC,MAAM,CAAS;gBAEX,MAAM,EAAE,MAAM;IAM1B,OAAO,CAAC,yBAAyB;IAgBjC;;;;;OAKG;IACG,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC;IAgBpE;;;;;;OAMG;IACG,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAS1E;;;;OAIG;IACG,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IASnE;;;;OAIG;IACG,OAAO,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAgBvD;;;;OAIG;IACG,WAAW,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAgBvE;;;OAGG;IACH,aAAa,CAAC,aAAa,EAAE,MAAM,GAAG,IAAI;IAO1C;;;;OAIG;IACG,eAAe,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;CAiBjE"}
|