import * as z from 'zod'; // prettier-ignore export const PatientConversationModelSchema = z.object({ id: z.number().int(), patientId: z.number().int(), userId: z.number().int(), stage: z.string(), aiHandoff: z.boolean(), updatedAt: z.date(), patient: z.unknown(), user: z.unknown() }).strict(); export type PatientConversationPureType = z.infer;