13 lines
636 B
TypeScript
13 lines
636 B
TypeScript
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<Prisma.AppointmentFileUncheckedCreateWithoutAppointmentInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentFileUncheckedCreateWithoutAppointmentInput>;
|
|
export const AppointmentFileUncheckedCreateWithoutAppointmentInputObjectZodSchema = makeSchema();
|