@azure/msal-browser 5.9.0 → 5.10.1
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 +969 -365
- 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 +217 -85
- package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
- package/lib/custom-auth-path/msal-custom-auth.js +22392 -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 +220 -87
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +220 -87
- 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":"StandardController.mjs","sources":["../../../../src/controllers/StandardController.ts"],"sourcesContent":[null],"names":["BrowserUtils.preflightCheck","BrowserRootPerformanceEvents.InitializeClientApplication","BrowserPerformanceEvents.InitializeCache","BrowserUtils.blockAPICallsBeforeInitialize","BrowserRootPerformanceEvents.AcquireTokenRedirect","BrowserPerformanceEvents.HandleNativeRedirectPromiseMeasurement","BrowserPerformanceEvents.HandleRedirectPromiseMeasurement","BrowserRootPerformanceEvents.AcquireTokenPreRedirect","BrowserUtils.redirectPreflightCheck","BrowserPerformanceEvents.NativeInteractionClientAcquireTokenRedirect","BrowserRootPerformanceEvents.AcquireTokenPopup","CacheKeys.SSO_CAPABLE","BrowserRootPerformanceEvents.SsoCapable","BrowserRootPerformanceEvents.SsoSilent","BrowserRootPerformanceEvents.AcquireTokenByCode","BrowserAuthErrorCodes.spaCodeAndNativeAccountIdPresent","BrowserAuthErrorCodes.unableToAcquireTokenFromNativePlatform","BrowserAuthErrorCodes.authCodeOrNativeAccountIdRequired","BrowserPerformanceEvents.AcquireTokenByCodeAsync","BrowserPerformanceEvents.SilentCacheClientAcquireToken","BrowserPerformanceEvents.SilentRefreshClientAcquireToken","BrowserPerformanceEvents.SilentIframeClientAcquireToken","AccountManager.getAllAccounts","AccountManager.getAccount","AccountManager.setActiveAccount","AccountManager.getActiveAccount","BrowserAuthErrorCodes.nativeConnectionNotEstablished","BrowserPerformanceEvents.NativeInteractionClientAcquireToken","BrowserUtils.blockNonBrowserEnvironment","BrowserRootPerformanceEvents.AcquireTokenSilent","BrowserAuthErrorCodes.noAccountError","BrowserPerformanceEvents.AcquireTokenSilentAsync","BrowserPerformanceEvents.InitializeSilentRequest","BrowserPerformanceEvents.AcquireTokenBySilentIframe","BrowserPerformanceEvents.AwaitConcurrentIframe","BrowserPerformanceEvents.AcquireTokenFromCache","BrowserPerformanceEvents.AcquireTokenByRefreshToken","BrowserPerformanceEvents.GeneratePkceCodes"],"mappings":"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"}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { CommonAuthorizationUrlRequest, PerformanceCallbackFunction, AccountInfo, Logger, ICrypto, IPerformanceClient, AccountFilter } from "@azure/msal-common/browser";
|
|
2
|
-
import { BrowserConfiguration } from "../config/Configuration.js";
|
|
3
|
-
import { BrowserCacheManager } from "../cache/BrowserCacheManager.js";
|
|
4
|
-
import { INavigationClient } from "../navigation/INavigationClient.js";
|
|
5
|
-
import { AuthorizationCodeRequest } from "../request/AuthorizationCodeRequest.js";
|
|
6
|
-
import { EndSessionPopupRequest } from "../request/EndSessionPopupRequest.js";
|
|
7
|
-
import { EndSessionRequest } from "../request/EndSessionRequest.js";
|
|
8
|
-
import { PopupRequest } from "../request/PopupRequest.js";
|
|
9
|
-
import { RedirectRequest } from "../request/RedirectRequest.js";
|
|
10
|
-
import { SilentRequest } from "../request/SilentRequest.js";
|
|
11
|
-
import { SsoSilentRequest } from "../request/SsoSilentRequest.js";
|
|
12
|
-
import { AuthenticationResult } from "../response/AuthenticationResult.js";
|
|
13
|
-
import { WrapperSKU } from "../utils/BrowserConstants.js";
|
|
14
|
-
import { IController } from "./IController.js";
|
|
15
|
-
import { UnknownOperatingContext } from "../operatingcontext/UnknownOperatingContext.js";
|
|
16
|
-
import { EventCallbackFunction } from "../event/EventMessage.js";
|
|
17
|
-
import { ClearCacheRequest } from "../request/ClearCacheRequest.js";
|
|
18
|
-
import { EventType } from "../event/EventType.js";
|
|
19
|
-
import { HandleRedirectPromiseOptions } from "../request/HandleRedirectPromiseOptions.js";
|
|
20
|
-
/**
|
|
21
|
-
* UnknownOperatingContextController class
|
|
22
|
-
*
|
|
23
|
-
* - Until initialize method is called, this controller is the default
|
|
24
|
-
* - AFter initialize method is called, this controller will be swapped out for the appropriate controller
|
|
25
|
-
* if the operating context can be determined; otherwise this controller will continued be used
|
|
26
|
-
*
|
|
27
|
-
* - Why do we have this? We don't want to dynamically import (download) all of the code in StandardController if we don't need to.
|
|
28
|
-
*
|
|
29
|
-
* - Only includes implementation for getAccounts and handleRedirectPromise
|
|
30
|
-
* - All other methods are will throw initialization error (because either initialize method or the factory method were not used)
|
|
31
|
-
* - This controller is necessary for React Native wrapper, server side rendering and any other scenario where we don't have a DOM
|
|
32
|
-
*
|
|
33
|
-
*/
|
|
34
|
-
export declare class UnknownOperatingContextController implements IController {
|
|
35
|
-
protected readonly operatingContext: UnknownOperatingContext;
|
|
36
|
-
protected logger: Logger;
|
|
37
|
-
protected readonly browserStorage: BrowserCacheManager;
|
|
38
|
-
protected readonly config: BrowserConfiguration;
|
|
39
|
-
protected readonly performanceClient: IPerformanceClient;
|
|
40
|
-
private readonly eventHandler;
|
|
41
|
-
protected readonly browserCrypto: ICrypto;
|
|
42
|
-
protected isBrowserEnvironment: boolean;
|
|
43
|
-
protected initialized: boolean;
|
|
44
|
-
constructor(operatingContext: UnknownOperatingContext);
|
|
45
|
-
getAccount(accountFilter: AccountFilter): AccountInfo | null;
|
|
46
|
-
getAllAccounts(): AccountInfo[];
|
|
47
|
-
initialize(): Promise<void>;
|
|
48
|
-
acquireTokenPopup(request: PopupRequest): Promise<AuthenticationResult>;
|
|
49
|
-
acquireTokenRedirect(request: RedirectRequest): Promise<void>;
|
|
50
|
-
acquireTokenSilent(silentRequest: SilentRequest): Promise<AuthenticationResult>;
|
|
51
|
-
acquireTokenByCode(request: AuthorizationCodeRequest): Promise<AuthenticationResult>;
|
|
52
|
-
addEventCallback(callback: EventCallbackFunction, eventTypes?: Array<EventType>): string | null;
|
|
53
|
-
removeEventCallback(callbackId: string): void;
|
|
54
|
-
addPerformanceCallback(callback: PerformanceCallbackFunction): string;
|
|
55
|
-
removePerformanceCallback(callbackId: string): boolean;
|
|
56
|
-
handleRedirectPromise(options?: HandleRedirectPromiseOptions): Promise<AuthenticationResult | null>;
|
|
57
|
-
loginPopup(request?: PopupRequest | undefined): Promise<AuthenticationResult>;
|
|
58
|
-
loginRedirect(request?: RedirectRequest | undefined): Promise<void>;
|
|
59
|
-
logout(logoutRequest?: EndSessionRequest | undefined): Promise<void>;
|
|
60
|
-
logoutRedirect(logoutRequest?: EndSessionRequest | undefined): Promise<void>;
|
|
61
|
-
logoutPopup(logoutRequest?: EndSessionPopupRequest | undefined): Promise<void>;
|
|
62
|
-
ssoSilent(request: Partial<Omit<CommonAuthorizationUrlRequest, "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "platformBroker">>): Promise<AuthenticationResult>;
|
|
63
|
-
getLogger(): Logger;
|
|
64
|
-
setLogger(logger: Logger): void;
|
|
65
|
-
setActiveAccount(account: AccountInfo | null): void;
|
|
66
|
-
getActiveAccount(): AccountInfo | null;
|
|
67
|
-
initializeWrapperLibrary(sku: WrapperSKU, version: string): void;
|
|
68
|
-
setNavigationClient(navigationClient: INavigationClient): void;
|
|
69
|
-
getConfiguration(): BrowserConfiguration;
|
|
70
|
-
clearCache(logoutRequest?: ClearCacheRequest): Promise<void>;
|
|
71
|
-
hydrateCache(result: AuthenticationResult, request: SilentRequest | SsoSilentRequest | RedirectRequest | PopupRequest): Promise<void>;
|
|
72
|
-
}
|
|
73
|
-
//# sourceMappingURL=UnknownOperatingContextController.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UnknownOperatingContextController.d.ts","sourceRoot":"","sources":["../../../src/controllers/UnknownOperatingContextController.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Check whether browser crypto is available.
|
|
3
|
-
*/
|
|
4
|
-
export declare function validateCryptoAvailable(skipValidateSubtleCrypto: boolean): void;
|
|
5
|
-
/**
|
|
6
|
-
* Returns a sha-256 hash of the given dataString as an ArrayBuffer.
|
|
7
|
-
* @param dataString {string} data string
|
|
8
|
-
* @param performanceClient {?IPerformanceClient}
|
|
9
|
-
* @param correlationId {?string} correlation id
|
|
10
|
-
*/
|
|
11
|
-
export declare function sha256Digest(dataString: string): Promise<ArrayBuffer>;
|
|
12
|
-
/**
|
|
13
|
-
* Populates buffer with cryptographically random values.
|
|
14
|
-
* @param dataBuffer
|
|
15
|
-
*/
|
|
16
|
-
export declare function getRandomValues(dataBuffer: Uint8Array): Uint8Array;
|
|
17
|
-
/**
|
|
18
|
-
* Creates a UUID v7 from the current timestamp.
|
|
19
|
-
* Implementation relies on the system clock to guarantee increasing order of generated identifiers.
|
|
20
|
-
* @returns {number}
|
|
21
|
-
*/
|
|
22
|
-
export declare function createNewGuid(): string;
|
|
23
|
-
/**
|
|
24
|
-
* Generates a keypair based on current keygen algorithm config.
|
|
25
|
-
* @param extractable
|
|
26
|
-
* @param usages
|
|
27
|
-
*/
|
|
28
|
-
export declare function generateKeyPair(extractable: boolean, usages: Array<KeyUsage>): Promise<CryptoKeyPair>;
|
|
29
|
-
/**
|
|
30
|
-
* Export key as Json Web Key (JWK)
|
|
31
|
-
* @param key
|
|
32
|
-
*/
|
|
33
|
-
export declare function exportJwk(key: CryptoKey): Promise<JsonWebKey>;
|
|
34
|
-
/**
|
|
35
|
-
* Imports key as Json Web Key (JWK), can set extractable and usages.
|
|
36
|
-
* @param key
|
|
37
|
-
* @param extractable
|
|
38
|
-
* @param usages
|
|
39
|
-
*/
|
|
40
|
-
export declare function importJwk(key: JsonWebKey, extractable: boolean, usages: Array<KeyUsage>): Promise<CryptoKey>;
|
|
41
|
-
/**
|
|
42
|
-
* Signs given data with given key
|
|
43
|
-
* @param key
|
|
44
|
-
* @param data
|
|
45
|
-
*/
|
|
46
|
-
export declare function sign(key: CryptoKey, data: ArrayBuffer): Promise<ArrayBuffer>;
|
|
47
|
-
/**
|
|
48
|
-
* Generates Base64 encoded jwk used in the Encrypted Authorize Response (EAR) flow
|
|
49
|
-
*/
|
|
50
|
-
export declare function generateEarKey(): Promise<string>;
|
|
51
|
-
/**
|
|
52
|
-
* Parses earJwk for encryption key and returns CryptoKey object
|
|
53
|
-
* @param earJwk
|
|
54
|
-
* @returns
|
|
55
|
-
*/
|
|
56
|
-
export declare function importEarKey(earJwk: string): Promise<CryptoKey>;
|
|
57
|
-
/**
|
|
58
|
-
* Decrypt ear_jwe response returned in the Encrypted Authorize Response (EAR) flow
|
|
59
|
-
* @param earJwk
|
|
60
|
-
* @param earJwe
|
|
61
|
-
* @returns
|
|
62
|
-
*/
|
|
63
|
-
export declare function decryptEarResponse(earJwk: string, earJwe: string): Promise<string>;
|
|
64
|
-
/**
|
|
65
|
-
* Generates symmetric base encryption key. This may be stored as all encryption/decryption keys will be derived from this one.
|
|
66
|
-
*/
|
|
67
|
-
export declare function generateBaseKey(): Promise<ArrayBuffer>;
|
|
68
|
-
/**
|
|
69
|
-
* Returns the raw key to be passed into the key derivation function
|
|
70
|
-
* @param baseKey
|
|
71
|
-
* @returns
|
|
72
|
-
*/
|
|
73
|
-
export declare function generateHKDF(baseKey: ArrayBuffer): Promise<CryptoKey>;
|
|
74
|
-
/**
|
|
75
|
-
* Encrypt the given data given a base key. Returns encrypted data and a nonce that must be provided during decryption
|
|
76
|
-
* @param key
|
|
77
|
-
* @param rawData
|
|
78
|
-
*/
|
|
79
|
-
export declare function encrypt(baseKey: CryptoKey, rawData: string, context: string): Promise<{
|
|
80
|
-
data: string;
|
|
81
|
-
nonce: string;
|
|
82
|
-
}>;
|
|
83
|
-
/**
|
|
84
|
-
* Decrypt data with the given key and nonce
|
|
85
|
-
* @param key
|
|
86
|
-
* @param nonce
|
|
87
|
-
* @param encryptedData
|
|
88
|
-
* @returns
|
|
89
|
-
*/
|
|
90
|
-
export declare function decrypt(baseKey: CryptoKey, nonce: string, context: string, encryptedData: string): Promise<string>;
|
|
91
|
-
/**
|
|
92
|
-
* Returns the SHA-256 hash of an input string
|
|
93
|
-
* @param plainText
|
|
94
|
-
*/
|
|
95
|
-
export declare function hashString(plainText: string): Promise<string>;
|
|
96
|
-
//# sourceMappingURL=BrowserCrypto.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BrowserCrypto.d.ts","sourceRoot":"","sources":["../../../src/crypto/BrowserCrypto.ts"],"names":[],"mappings":"AAqDA;;GAEG;AACH,wBAAgB,uBAAuB,CACnC,wBAAwB,EAAE,OAAO,GAClC,IAAI,CAeN;AAED;;;;;GAKG;AACH,wBAAsB,YAAY,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC,CAO3E;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,UAAU,EAAE,UAAU,GAAG,UAAU,CAElE;AAWD;;;;GAIG;AACH,wBAAgB,aAAa,IAAI,MAAM,CAuCtC;AAED;;;;GAIG;AACH,wBAAsB,eAAe,CACjC,WAAW,EAAE,OAAO,EACpB,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC,GACxB,OAAO,CAAC,aAAa,CAAC,CAMxB;AAED;;;GAGG;AACH,wBAAsB,SAAS,CAAC,GAAG,EAAE,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,CAKnE;AAED;;;;;GAKG;AACH,wBAAsB,SAAS,CAC3B,GAAG,EAAE,UAAU,EACf,WAAW,EAAE,OAAO,EACpB,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC,GACxB,OAAO,CAAC,SAAS,CAAC,CAQpB;AAED;;;;GAIG;AACH,wBAAsB,IAAI,CACtB,GAAG,EAAE,SAAS,EACd,IAAI,EAAE,WAAW,GAClB,OAAO,CAAC,WAAW,CAAC,CAMtB;AAED;;GAEG;AACH,wBAAsB,cAAc,IAAI,OAAO,CAAC,MAAM,CAAC,CAWtD;AAED;;;;GAIG;AACH,wBAAsB,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC,CASrE;AAED;;;;;GAKG;AACH,wBAAsB,kBAAkB,CACpC,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,MAAM,GACf,OAAO,CAAC,MAAM,CAAC,CA8CjB;AAED;;GAEG;AACH,wBAAsB,eAAe,IAAI,OAAO,CAAC,WAAW,CAAC,CAU5D;AAED;;;;GAIG;AACH,wBAAsB,YAAY,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,SAAS,CAAC,CAI3E;AA4BD;;;;GAIG;AACH,wBAAsB,OAAO,CACzB,OAAO,EAAE,SAAS,EAClB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,GAChB,OAAO,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC,CAkB1C;AAED;;;;;;GAMG;AACH,wBAAsB,OAAO,CACzB,OAAO,EAAE,SAAS,EAClB,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,MAAM,EACf,aAAa,EAAE,MAAM,GACtB,OAAO,CAAC,MAAM,CAAC,CAajB;AAED;;;GAGG;AACH,wBAAsB,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAInE"}
|
|
@@ -1,306 +0,0 @@
|
|
|
1
|
-
/*! @azure/msal-browser v5.9.0 2026-04-28 */
|
|
2
|
-
'use strict';
|
|
3
|
-
import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
|
|
4
|
-
import { KEY_FORMAT_JWK } from '../utils/BrowserConstants.mjs';
|
|
5
|
-
import { urlEncodeArr, base64Encode } from '../encode/Base64Encode.mjs';
|
|
6
|
-
import { base64DecToArr, base64Decode } from '../encode/Base64Decode.mjs';
|
|
7
|
-
import { nonBrowserEnvironment, cryptoNonExistent, failedToDecryptEarResponse } from '../error/BrowserAuthErrorCodes.mjs';
|
|
8
|
-
|
|
9
|
-
/*
|
|
10
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
11
|
-
* Licensed under the MIT License.
|
|
12
|
-
*/
|
|
13
|
-
/**
|
|
14
|
-
* This file defines functions used by the browser library to perform cryptography operations such as
|
|
15
|
-
* hashing and encoding. It also has helper functions to validate the availability of specific APIs.
|
|
16
|
-
*/
|
|
17
|
-
/**
|
|
18
|
-
* See here for more info on RsaHashedKeyGenParams: https://developer.mozilla.org/en-US/docs/Web/API/RsaHashedKeyGenParams
|
|
19
|
-
*/
|
|
20
|
-
// Algorithms
|
|
21
|
-
const PKCS1_V15_KEYGEN_ALG = "RSASSA-PKCS1-v1_5";
|
|
22
|
-
const AES_GCM = "AES-GCM";
|
|
23
|
-
const HKDF = "HKDF";
|
|
24
|
-
// SHA-256 hashing algorithm
|
|
25
|
-
const S256_HASH_ALG = "SHA-256";
|
|
26
|
-
// MOD length for PoP tokens
|
|
27
|
-
const MODULUS_LENGTH = 2048;
|
|
28
|
-
// Public Exponent
|
|
29
|
-
const PUBLIC_EXPONENT = new Uint8Array([0x01, 0x00, 0x01]);
|
|
30
|
-
// UUID hex digits
|
|
31
|
-
const UUID_CHARS = "0123456789abcdef";
|
|
32
|
-
// Array to store UINT32 random value
|
|
33
|
-
const UINT32_ARR = new Uint32Array(1);
|
|
34
|
-
// Key Format
|
|
35
|
-
const RAW = "raw";
|
|
36
|
-
// Key Usages
|
|
37
|
-
const ENCRYPT = "encrypt";
|
|
38
|
-
const DECRYPT = "decrypt";
|
|
39
|
-
const DERIVE_KEY = "deriveKey";
|
|
40
|
-
// Suberror
|
|
41
|
-
const SUBTLE_SUBERROR = "crypto_subtle_undefined";
|
|
42
|
-
const keygenAlgorithmOptions = {
|
|
43
|
-
name: PKCS1_V15_KEYGEN_ALG,
|
|
44
|
-
hash: S256_HASH_ALG,
|
|
45
|
-
modulusLength: MODULUS_LENGTH,
|
|
46
|
-
publicExponent: PUBLIC_EXPONENT,
|
|
47
|
-
};
|
|
48
|
-
/**
|
|
49
|
-
* Check whether browser crypto is available.
|
|
50
|
-
*/
|
|
51
|
-
function validateCryptoAvailable(skipValidateSubtleCrypto) {
|
|
52
|
-
if (!window) {
|
|
53
|
-
throw createBrowserAuthError(nonBrowserEnvironment);
|
|
54
|
-
}
|
|
55
|
-
if (!window.crypto) {
|
|
56
|
-
throw createBrowserAuthError(cryptoNonExistent);
|
|
57
|
-
}
|
|
58
|
-
if (!skipValidateSubtleCrypto && !window.crypto.subtle) {
|
|
59
|
-
throw createBrowserAuthError(cryptoNonExistent, SUBTLE_SUBERROR);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Returns a sha-256 hash of the given dataString as an ArrayBuffer.
|
|
64
|
-
* @param dataString {string} data string
|
|
65
|
-
* @param performanceClient {?IPerformanceClient}
|
|
66
|
-
* @param correlationId {?string} correlation id
|
|
67
|
-
*/
|
|
68
|
-
async function sha256Digest(dataString) {
|
|
69
|
-
const encoder = new TextEncoder();
|
|
70
|
-
const data = encoder.encode(dataString);
|
|
71
|
-
return window.crypto.subtle.digest(S256_HASH_ALG, data);
|
|
72
|
-
}
|
|
73
|
-
/**
|
|
74
|
-
* Populates buffer with cryptographically random values.
|
|
75
|
-
* @param dataBuffer
|
|
76
|
-
*/
|
|
77
|
-
function getRandomValues(dataBuffer) {
|
|
78
|
-
return window.crypto.getRandomValues(dataBuffer);
|
|
79
|
-
}
|
|
80
|
-
/**
|
|
81
|
-
* Returns random Uint32 value.
|
|
82
|
-
* @returns {number}
|
|
83
|
-
*/
|
|
84
|
-
function getRandomUint32() {
|
|
85
|
-
window.crypto.getRandomValues(UINT32_ARR);
|
|
86
|
-
return UINT32_ARR[0];
|
|
87
|
-
}
|
|
88
|
-
/**
|
|
89
|
-
* Creates a UUID v7 from the current timestamp.
|
|
90
|
-
* Implementation relies on the system clock to guarantee increasing order of generated identifiers.
|
|
91
|
-
* @returns {number}
|
|
92
|
-
*/
|
|
93
|
-
function createNewGuid() {
|
|
94
|
-
const currentTimestamp = Date.now();
|
|
95
|
-
const baseRand = getRandomUint32() * 0x400 + (getRandomUint32() & 0x3ff);
|
|
96
|
-
// Result byte array
|
|
97
|
-
const bytes = new Uint8Array(16);
|
|
98
|
-
// A 12-bit `rand_a` field value
|
|
99
|
-
const randA = Math.trunc(baseRand / 2 ** 30);
|
|
100
|
-
// The higher 30 bits of 62-bit `rand_b` field value
|
|
101
|
-
const randBHi = baseRand & (2 ** 30 - 1);
|
|
102
|
-
// The lower 32 bits of 62-bit `rand_b` field value
|
|
103
|
-
const randBLo = getRandomUint32();
|
|
104
|
-
bytes[0] = currentTimestamp / 2 ** 40;
|
|
105
|
-
bytes[1] = currentTimestamp / 2 ** 32;
|
|
106
|
-
bytes[2] = currentTimestamp / 2 ** 24;
|
|
107
|
-
bytes[3] = currentTimestamp / 2 ** 16;
|
|
108
|
-
bytes[4] = currentTimestamp / 2 ** 8;
|
|
109
|
-
bytes[5] = currentTimestamp;
|
|
110
|
-
bytes[6] = 0x70 | (randA >>> 8);
|
|
111
|
-
bytes[7] = randA;
|
|
112
|
-
bytes[8] = 0x80 | (randBHi >>> 24);
|
|
113
|
-
bytes[9] = randBHi >>> 16;
|
|
114
|
-
bytes[10] = randBHi >>> 8;
|
|
115
|
-
bytes[11] = randBHi;
|
|
116
|
-
bytes[12] = randBLo >>> 24;
|
|
117
|
-
bytes[13] = randBLo >>> 16;
|
|
118
|
-
bytes[14] = randBLo >>> 8;
|
|
119
|
-
bytes[15] = randBLo;
|
|
120
|
-
let text = "";
|
|
121
|
-
for (let i = 0; i < bytes.length; i++) {
|
|
122
|
-
text += UUID_CHARS.charAt(bytes[i] >>> 4);
|
|
123
|
-
text += UUID_CHARS.charAt(bytes[i] & 0xf);
|
|
124
|
-
if (i === 3 || i === 5 || i === 7 || i === 9) {
|
|
125
|
-
text += "-";
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
return text;
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* Generates a keypair based on current keygen algorithm config.
|
|
132
|
-
* @param extractable
|
|
133
|
-
* @param usages
|
|
134
|
-
*/
|
|
135
|
-
async function generateKeyPair(extractable, usages) {
|
|
136
|
-
return window.crypto.subtle.generateKey(keygenAlgorithmOptions, extractable, usages);
|
|
137
|
-
}
|
|
138
|
-
/**
|
|
139
|
-
* Export key as Json Web Key (JWK)
|
|
140
|
-
* @param key
|
|
141
|
-
*/
|
|
142
|
-
async function exportJwk(key) {
|
|
143
|
-
return window.crypto.subtle.exportKey(KEY_FORMAT_JWK, key);
|
|
144
|
-
}
|
|
145
|
-
/**
|
|
146
|
-
* Imports key as Json Web Key (JWK), can set extractable and usages.
|
|
147
|
-
* @param key
|
|
148
|
-
* @param extractable
|
|
149
|
-
* @param usages
|
|
150
|
-
*/
|
|
151
|
-
async function importJwk(key, extractable, usages) {
|
|
152
|
-
return window.crypto.subtle.importKey(KEY_FORMAT_JWK, key, keygenAlgorithmOptions, extractable, usages);
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* Signs given data with given key
|
|
156
|
-
* @param key
|
|
157
|
-
* @param data
|
|
158
|
-
*/
|
|
159
|
-
async function sign(key, data) {
|
|
160
|
-
return window.crypto.subtle.sign(keygenAlgorithmOptions, key, data);
|
|
161
|
-
}
|
|
162
|
-
/**
|
|
163
|
-
* Generates Base64 encoded jwk used in the Encrypted Authorize Response (EAR) flow
|
|
164
|
-
*/
|
|
165
|
-
async function generateEarKey() {
|
|
166
|
-
const key = await generateBaseKey();
|
|
167
|
-
const keyStr = urlEncodeArr(new Uint8Array(key));
|
|
168
|
-
const jwk = {
|
|
169
|
-
alg: "dir",
|
|
170
|
-
kty: "oct",
|
|
171
|
-
k: keyStr,
|
|
172
|
-
};
|
|
173
|
-
return base64Encode(JSON.stringify(jwk));
|
|
174
|
-
}
|
|
175
|
-
/**
|
|
176
|
-
* Parses earJwk for encryption key and returns CryptoKey object
|
|
177
|
-
* @param earJwk
|
|
178
|
-
* @returns
|
|
179
|
-
*/
|
|
180
|
-
async function importEarKey(earJwk) {
|
|
181
|
-
const b64DecodedJwk = base64Decode(earJwk);
|
|
182
|
-
const jwkJson = JSON.parse(b64DecodedJwk);
|
|
183
|
-
const rawKey = jwkJson.k;
|
|
184
|
-
const keyBuffer = base64DecToArr(rawKey);
|
|
185
|
-
return window.crypto.subtle.importKey(RAW, keyBuffer, AES_GCM, false, [
|
|
186
|
-
DECRYPT,
|
|
187
|
-
]);
|
|
188
|
-
}
|
|
189
|
-
/**
|
|
190
|
-
* Decrypt ear_jwe response returned in the Encrypted Authorize Response (EAR) flow
|
|
191
|
-
* @param earJwk
|
|
192
|
-
* @param earJwe
|
|
193
|
-
* @returns
|
|
194
|
-
*/
|
|
195
|
-
async function decryptEarResponse(earJwk, earJwe) {
|
|
196
|
-
const earJweParts = earJwe.split(".");
|
|
197
|
-
if (earJweParts.length !== 5) {
|
|
198
|
-
throw createBrowserAuthError(failedToDecryptEarResponse, "jwe_length");
|
|
199
|
-
}
|
|
200
|
-
const key = await importEarKey(earJwk).catch(() => {
|
|
201
|
-
throw createBrowserAuthError(failedToDecryptEarResponse, "import_key");
|
|
202
|
-
});
|
|
203
|
-
try {
|
|
204
|
-
const header = new TextEncoder().encode(earJweParts[0]);
|
|
205
|
-
const iv = base64DecToArr(earJweParts[2]);
|
|
206
|
-
const ciphertext = base64DecToArr(earJweParts[3]);
|
|
207
|
-
const tag = base64DecToArr(earJweParts[4]);
|
|
208
|
-
const tagLengthBits = tag.byteLength * 8;
|
|
209
|
-
// Concat ciphertext and tag
|
|
210
|
-
const encryptedData = new Uint8Array(ciphertext.length + tag.length);
|
|
211
|
-
encryptedData.set(ciphertext);
|
|
212
|
-
encryptedData.set(tag, ciphertext.length);
|
|
213
|
-
const decryptedData = await window.crypto.subtle.decrypt({
|
|
214
|
-
name: AES_GCM,
|
|
215
|
-
iv: iv,
|
|
216
|
-
tagLength: tagLengthBits,
|
|
217
|
-
additionalData: header,
|
|
218
|
-
}, key, encryptedData);
|
|
219
|
-
return new TextDecoder().decode(decryptedData);
|
|
220
|
-
}
|
|
221
|
-
catch (e) {
|
|
222
|
-
throw createBrowserAuthError(failedToDecryptEarResponse, "decrypt");
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
/**
|
|
226
|
-
* Generates symmetric base encryption key. This may be stored as all encryption/decryption keys will be derived from this one.
|
|
227
|
-
*/
|
|
228
|
-
async function generateBaseKey() {
|
|
229
|
-
const key = await window.crypto.subtle.generateKey({
|
|
230
|
-
name: AES_GCM,
|
|
231
|
-
length: 256,
|
|
232
|
-
}, true, [ENCRYPT, DECRYPT]);
|
|
233
|
-
return window.crypto.subtle.exportKey(RAW, key);
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* Returns the raw key to be passed into the key derivation function
|
|
237
|
-
* @param baseKey
|
|
238
|
-
* @returns
|
|
239
|
-
*/
|
|
240
|
-
async function generateHKDF(baseKey) {
|
|
241
|
-
return window.crypto.subtle.importKey(RAW, baseKey, HKDF, false, [
|
|
242
|
-
DERIVE_KEY,
|
|
243
|
-
]);
|
|
244
|
-
}
|
|
245
|
-
/**
|
|
246
|
-
* Given a base key and a nonce generates a derived key to be used in encryption and decryption.
|
|
247
|
-
* Note: every time we encrypt a new key is derived
|
|
248
|
-
* @param baseKey
|
|
249
|
-
* @param nonce
|
|
250
|
-
* @returns
|
|
251
|
-
*/
|
|
252
|
-
async function deriveKey(baseKey, nonce, context) {
|
|
253
|
-
return window.crypto.subtle.deriveKey({
|
|
254
|
-
name: HKDF,
|
|
255
|
-
salt: nonce,
|
|
256
|
-
hash: S256_HASH_ALG,
|
|
257
|
-
info: new TextEncoder().encode(context),
|
|
258
|
-
}, baseKey, { name: AES_GCM, length: 256 }, false, [ENCRYPT, DECRYPT]);
|
|
259
|
-
}
|
|
260
|
-
/**
|
|
261
|
-
* Encrypt the given data given a base key. Returns encrypted data and a nonce that must be provided during decryption
|
|
262
|
-
* @param key
|
|
263
|
-
* @param rawData
|
|
264
|
-
*/
|
|
265
|
-
async function encrypt(baseKey, rawData, context) {
|
|
266
|
-
const encodedData = new TextEncoder().encode(rawData);
|
|
267
|
-
// The nonce must never be reused with a given key.
|
|
268
|
-
const nonce = window.crypto.getRandomValues(new Uint8Array(16));
|
|
269
|
-
const derivedKey = await deriveKey(baseKey, nonce, context);
|
|
270
|
-
const encryptedData = await window.crypto.subtle.encrypt({
|
|
271
|
-
name: AES_GCM,
|
|
272
|
-
iv: new Uint8Array(12), // New key is derived for every encrypt so we don't need a new nonce
|
|
273
|
-
}, derivedKey, encodedData);
|
|
274
|
-
return {
|
|
275
|
-
data: urlEncodeArr(new Uint8Array(encryptedData)),
|
|
276
|
-
nonce: urlEncodeArr(nonce),
|
|
277
|
-
};
|
|
278
|
-
}
|
|
279
|
-
/**
|
|
280
|
-
* Decrypt data with the given key and nonce
|
|
281
|
-
* @param key
|
|
282
|
-
* @param nonce
|
|
283
|
-
* @param encryptedData
|
|
284
|
-
* @returns
|
|
285
|
-
*/
|
|
286
|
-
async function decrypt(baseKey, nonce, context, encryptedData) {
|
|
287
|
-
const encodedData = base64DecToArr(encryptedData);
|
|
288
|
-
const derivedKey = await deriveKey(baseKey, base64DecToArr(nonce), context);
|
|
289
|
-
const decryptedData = await window.crypto.subtle.decrypt({
|
|
290
|
-
name: AES_GCM,
|
|
291
|
-
iv: new Uint8Array(12), // New key is derived for every encrypt so we don't need a new nonce
|
|
292
|
-
}, derivedKey, encodedData);
|
|
293
|
-
return new TextDecoder().decode(decryptedData);
|
|
294
|
-
}
|
|
295
|
-
/**
|
|
296
|
-
* Returns the SHA-256 hash of an input string
|
|
297
|
-
* @param plainText
|
|
298
|
-
*/
|
|
299
|
-
async function hashString(plainText) {
|
|
300
|
-
const hashBuffer = await sha256Digest(plainText);
|
|
301
|
-
const hashBytes = new Uint8Array(hashBuffer);
|
|
302
|
-
return urlEncodeArr(hashBytes);
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
export { createNewGuid, decrypt, decryptEarResponse, encrypt, exportJwk, generateBaseKey, generateEarKey, generateHKDF, generateKeyPair, getRandomValues, hashString, importEarKey, importJwk, sha256Digest, sign, validateCryptoAvailable };
|
|
306
|
-
//# sourceMappingURL=BrowserCrypto.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BrowserCrypto.mjs","sources":["../../../../src/crypto/BrowserCrypto.ts"],"sourcesContent":[null],"names":["BrowserAuthErrorCodes.nonBrowserEnvironment","BrowserAuthErrorCodes.cryptoNonExistent","BrowserAuthErrorCodes.failedToDecryptEarResponse"],"mappings":"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"}
|