export interface SetPasswordRequestBody { token: string; password: string; } export interface AuthLoginRequestBody { email: string; password: string; ip: string; } export interface SendPasswordLinkDto { email: string; user: string; }