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

13 lines
558 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(),
callDuration: z.literal(true).optional()
}).strict();
export const CommunicationSumAggregateInputObjectSchema: z.ZodType<Prisma.CommunicationSumAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.CommunicationSumAggregateInputType>;
export const CommunicationSumAggregateInputObjectZodSchema = makeSchema();