Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/PdfFileMinAggregateInput.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 PdfFileMinAggregateInputObjectSchema: z.ZodType<Prisma.PdfFileMinAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.PdfFileMinAggregateInputType>;
export const PdfFileMinAggregateInputObjectZodSchema = makeSchema();