initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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(),
|
||||
filename: z.literal(true).optional(),
|
||||
originalName: z.literal(true).optional(),
|
||||
mimeType: z.literal(true).optional(),
|
||||
fileSize: z.literal(true).optional(),
|
||||
filePath: z.literal(true).optional(),
|
||||
uploadedAt: z.literal(true).optional(),
|
||||
updatedAt: z.literal(true).optional()
|
||||
}).strict();
|
||||
export const PatientDocumentMaxAggregateInputObjectSchema: z.ZodType<Prisma.PatientDocumentMaxAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.PatientDocumentMaxAggregateInputType>;
|
||||
export const PatientDocumentMaxAggregateInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user