13 lines
316 B
TypeScript
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;
|