Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}
;

§Type

§
{
access_token: string;
token_type: "bearer";
expires_in: number;
refresh_token: string;
user: User;
}
[src]