@auth0/auth0-acul-react - v1.0.0
    Preparing search index...

    Interface ResetPasswordMfaVoiceChallengeMembers

    Interface defining the available methods and properties for the reset-password-mfa-voice-challenge screen.

    interface ResetPasswordMfaVoiceChallengeMembers {
        branding: BrandingMembers;
        client: ClientMembers;
        organization: OrganizationMembers;
        prompt: PromptMembers;
        tenant: TenantMembers;
        transaction: TransactionMembers;
        user: UserMembers;
        untrustedData: UntrustedDataMembers;
        getErrors(): Error[];
        changeLanguage(options: LanguageChangeOptions): Promise<void>;
        screen: ScreenMembersOnResetPasswordMfaVoiceChallenge;
        continue(
            payload: ResetPasswordMfaVoiceChallengeContinueOptions,
        ): Promise<void>;
        switchToSms(payload?: CustomOptions): Promise<void>;
        resendCode(payload?: CustomOptions): Promise<void>;
        tryAnotherMethod(payload?: CustomOptions): Promise<void>;
        resendManager(options?: StartResendOptions): ResendControl;
    }

    Hierarchy (View Summary)

    Index

    Properties

    branding: BrandingMembers
    organization: OrganizationMembers
    transaction: TransactionMembers
    untrustedData: UntrustedDataMembers

    Methods

    • Returns Error[]

    • Continues with the voice challenge using the provided code.

      Parameters

      Returns Promise<void>

      A promise that resolves when the challenge is submitted.

      const reset = new ResetPasswordMfaVoiceChallenge();
      await reset.continue({ code: '123456' });
    • Switches to SMS verification.

      Parameters

      • Optionalpayload: CustomOptions

        Optional custom options to include with the request.

      Returns Promise<void>

      A promise that resolves when the action completes.

    • Re-sends the code via voice call.

      Parameters

      • Optionalpayload: CustomOptions

        Optional custom options to include with the request.

      Returns Promise<void>

      A promise that resolves when the code is resent.

    • Allows the user to try another MFA method.

      Parameters

      • Optionalpayload: CustomOptions

        Optional custom options to include with the request.

      Returns Promise<void>

      A promise that resolves when the request is submitted.

    • Gets resend functionality with timeout management for this screen

      Parameters

      Returns ResendControl