deleteMutation
deleteMutation: UseMutationResult<void, Error, string>
enrollMutation
enrollMutation: UseMutationResult<
CreateAuthenticationMethodResponseContent,
Error,
{ factorType: FactorTypeEnum; options?: EnrollOptions },
>
factorsQuery
factorsQuery: UseQueryResult<Record<FactorTypeEnum, Authenticator[]>>
verifyMutation
verifyMutation: UseMutationResult<
VerifyAuthenticationMethodResponseContent,
Error,
{
authenticationMethodId: string;
authSession: string;
factorType: FactorTypeEnum;
options: ConfirmEnrollmentOptions;
},
>