11 lines
449 B
TypeScript
11 lines
449 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
|
|
|
|
const makeSchema = () => z.object({
|
|
id: z.literal(true).optional(),
|
|
userId: z.literal(true).optional()
|
|
}).strict();
|
|
export const PatientSumAggregateInputObjectSchema: z.ZodType<Prisma.PatientSumAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.PatientSumAggregateInputType>;
|
|
export const PatientSumAggregateInputObjectZodSchema = makeSchema();
|