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

14 lines
571 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
const makeSchema = () => z.object({
id: z.literal(true).optional(),
filename: z.literal(true).optional(),
pdfData: z.literal(true).optional(),
uploadedAt: z.literal(true).optional(),
groupId: z.literal(true).optional()
}).strict();
export const PdfFileMaxAggregateInputObjectSchema: z.ZodType<Prisma.PdfFileMaxAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.PdfFileMaxAggregateInputType>;
export const PdfFileMaxAggregateInputObjectZodSchema = makeSchema();