11 lines
497 B
TypeScript
11 lines
497 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 InsuranceCredentialAvgAggregateInputObjectSchema: z.ZodType<Prisma.InsuranceCredentialAvgAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.InsuranceCredentialAvgAggregateInputType>;
|
|
export const InsuranceCredentialAvgAggregateInputObjectZodSchema = makeSchema();
|