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