Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/PatientDocumentAvgAggregateInput.schema.ts
2026-04-04 22:13:55 -04:00

12 lines
524 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
const makeSchema = () => z.object({
id: z.literal(true).optional(),
patientId: z.literal(true).optional(),
fileSize: z.literal(true).optional()
}).strict();
export const PatientDocumentAvgAggregateInputObjectSchema: z.ZodType<Prisma.PatientDocumentAvgAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.PatientDocumentAvgAggregateInputType>;
export const PatientDocumentAvgAggregateInputObjectZodSchema = makeSchema();