Files
DentalManagementMH06/packages/db/shared/schemas/objects/AppointmentFileMinAggregateInput.schema.ts

14 lines
608 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
const makeSchema = () => z.object({
id: z.literal(true).optional(),
appointmentId: z.literal(true).optional(),
filename: z.literal(true).optional(),
mimeType: z.literal(true).optional(),
filePath: z.literal(true).optional()
}).strict();
export const AppointmentFileMinAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentFileMinAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentFileMinAggregateInputType>;
export const AppointmentFileMinAggregateInputObjectZodSchema = makeSchema();