Files
DentalManagementE/packages/db/shared/schemas/objects/PatientAvgAggregateInput.schema.ts
2025-05-08 21:27:29 +05:30

13 lines
316 B
TypeScript

import { z } from 'zod';
import type { Prisma } from '../../../generated/prisma';
const Schema: z.ZodType<Prisma.PatientAvgAggregateInputType> = z
.object({
id: z.literal(true).optional(),
userId: z.literal(true).optional(),
})
.strict();
export const PatientAvgAggregateInputObjectSchema = Schema;