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

14 lines
367 B
TypeScript

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