AuthOtpResponse
AuthOtpResponse is returned when OTP is used.
{@see AuthResponse}
type AuthOtpResponse = {
data: {
user: null;
session: null;
messageId?: string | null;
}; error: null;
} | {data: {
user: null;
session: null;
messageId?: string | null;
}; error: AuthError;
};