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(), siteKey: z.literal(true).optional(), username: z.literal(true).optional(), password: z.literal(true).optional() }).strict(); export const InsuranceCredentialMinAggregateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const InsuranceCredentialMinAggregateInputObjectZodSchema = makeSchema();