Auth0 Universal Components
    Preparing search index...

    Interface UserMFAMgmtLogicProps

    interface UserMFAMgmtLogicProps {
        confirmEnrollment: (
            factorType: MFAType,
            authSession: string,
            authenticationMethodId: string,
            options: ConfirmEnrollmentOptions,
        ) => Promise<unknown>;
        customMessages: Partial<MFAMessages> | undefined;
        dialogOpen: boolean;
        disableDelete: boolean;
        disableEnroll: boolean;
        enrollFactor: MFAType | null;
        error: string | null;
        factorConfig?: Partial<Record<MFAType, FactorConfigOptions>>;
        factorsByType: Record<MFAType, Authenticator[]>;
        factorToDelete: { id: string; type: MFAType } | null;
        hasNoActiveFactors: boolean;
        hideHeader: boolean;
        isDeleteDialogOpen: boolean;
        isDeleting: boolean;
        isLoading: boolean;
        readOnly: boolean;
        schema: Partial<{ email?: RegExp; phone?: RegExp }> | undefined;
        showActiveOnly: boolean;
        styling: ComponentStyling<UserMFAMgmtClasses> | undefined;
        visibleFactorTypes: MFAType[];
    }
    Index

    Properties

    confirmEnrollment: (
        factorType: MFAType,
        authSession: string,
        authenticationMethodId: string,
        options: ConfirmEnrollmentOptions,
    ) => Promise<unknown>
    customMessages: Partial<MFAMessages> | undefined
    dialogOpen: boolean
    disableDelete: boolean
    disableEnroll: boolean
    enrollFactor: MFAType | null
    error: string | null
    factorConfig?: Partial<Record<MFAType, FactorConfigOptions>>
    factorsByType: Record<MFAType, Authenticator[]>
    factorToDelete: { id: string; type: MFAType } | null
    hasNoActiveFactors: boolean
    hideHeader: boolean
    isDeleteDialogOpen: boolean
    isDeleting: boolean
    isLoading: boolean
    readOnly: boolean
    schema: Partial<{ email?: RegExp; phone?: RegExp }> | undefined
    showActiveOnly: boolean
    styling: ComponentStyling<UserMFAMgmtClasses> | undefined
    visibleFactorTypes: MFAType[]