import { UserTypes } from '@anthor/entities-types'; export interface AuthUserInput { email: string; password: string; type: UserTypes; } export interface UserTypeByEmailInput { email: string; } export interface ForgotPasswordInput { email: string; type: UserTypes; } export interface RefreshTokenInput { token: string; } export interface SendLeadEmailInput { subject: string; html: string; }