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

13 lines
545 B
TypeScript

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(),
userId: z.literal(true).optional(),
staffId: z.literal(true).optional()
}).strict();
export const AppointmentSumAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentSumAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentSumAggregateInputType>;
export const AppointmentSumAggregateInputObjectZodSchema = makeSchema();