import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; const makeSchema = () => z.object({ officeName: z.string().optional().nullable(), receptionistName: z.string().optional().nullable(), dentistName: z.string().optional().nullable(), phoneNumber: z.string().optional().nullable(), email: z.string().optional().nullable(), fax: z.string().optional().nullable() }).strict(); export const OfficeContactCreateWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const OfficeContactCreateWithoutUserInputObjectZodSchema = makeSchema();