AuthMFAVerifyResponseData
import type { AuthMFAVerifyResponseData } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";Data returned after successful MFA verification. Contains new session tokens and updated user information.
type AuthMFAVerifyResponseData = {
access_token: string;
token_type: "bearer";
expires_in: number;
refresh_token: string;
user: User;
};