import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; const makeSchema = () => z.object({ id: z.number().int().optional(), name: z.string(), phoneNumber: z.string().optional().nullable(), createdAt: z.coerce.date().optional() }).strict(); export const InsuranceContactUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const InsuranceContactUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema();