import * as z from 'zod'; // prettier-ignore export const InsuranceContactInputSchema = z.object({ id: z.number().int(), userId: z.number().int(), name: z.string(), phoneNumber: z.string().optional().nullable(), createdAt: z.date(), user: z.unknown() }).strict(); export type InsuranceContactInputType = z.infer;