import { User, UserTypes } from '@anthor/entities-types'; import { RecordIdAndRecordResponse } from '../base/Responses'; export interface RegisterUserResponse { registerUser: RecordIdAndRecordResponse; } export interface AuthUserResponse { authUser: string; } export interface UserTypeByEmailResponse { userTypeByEmail: UserTypes; } export interface ForgotPasswordResponse { forgotPassword: string; } export interface RefreshTokenResponse { refreshToken: string; } export interface SendLeadEmailResponse { sendLeadEmail: string; }