AuthMFAListFactorsResponse
import type { AuthMFAListFactorsResponse } from "https://esm.sh/@supabase/supabase-js@2.104.1/dist/index.d.mts";response of ListFactors, which should contain all the types of factors that are available, this ensures we always include all
type AuthMFAListFactorsResponse<T extends FactorTypes = FactorTypes> = RequestResult<{
all: Factor[];
} & [K in T[number]]: Factor<K, "verified">[]>;