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

    Interface MfaLoginOptionsMembers

    Interface defining the available methods and properties for the mfa-login-options screen

    interface MfaLoginOptionsMembers {
        branding: BrandingMembers;
        client: ClientMembers;
        organization: OrganizationMembers;
        prompt: PromptMembers;
        tenant: TenantMembers;
        transaction: TransactionMembers;
        user: UserMembers;
        untrustedData: UntrustedDataMembers;
        getErrors(): Error[];
        changeLanguage(options: LanguageChangeOptions): Promise<void>;
        screen: ScreenMembersOnMfaLoginOptions;
        enroll(payload: LoginEnrollOptions): Promise<void>;
        returnToPrevious(payload?: CustomOptions): Promise<void>;
    }

    Hierarchy (View Summary)

    Index

    Properties

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

    Methods

    • Returns Error[]

    • Continues the login process with the selected MFA factor

      Parameters

      Returns Promise<void>

      const mfaLoginOptions = new MfaLoginOptions();
      await mfaLoginOptions.enroll({
      action: 'push-notification'
      });
    • Returns to the previous screen in the authentication flow

      Parameters

      Returns Promise<void>

      const mfaLoginOptions = new MfaLoginOptions();
      await mfaLoginOptions.returnToPrevious();