Type alias AuthOtpResponse

AuthOtpResponse: {
    data: {
        messageId?: string | null;
        session: null;
        user: null;
    };
    error: null;
} | {
    data: {
        messageId?: string | null;
        session: null;
        user: null;
    };
    error: AuthError;
}

AuthOtpResponse is returned when OTP is used.

{@see AuthResponse}

Generated using TypeDoc