import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; const makeSchema = () => z.object({ id: z.number().int().optional(), filename: z.string(), mimeType: z.string().optional().nullable(), filePath: z.string().optional().nullable() }).strict(); export const AppointmentFileUncheckedCreateWithoutAppointmentInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentFileUncheckedCreateWithoutAppointmentInputObjectZodSchema = makeSchema();