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

11 lines
765 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { ClaimCreateManyAppointmentInputObjectSchema as ClaimCreateManyAppointmentInputObjectSchema } from './ClaimCreateManyAppointmentInput.schema'
const makeSchema = () => z.object({
data: z.union([z.lazy(() => ClaimCreateManyAppointmentInputObjectSchema), z.lazy(() => ClaimCreateManyAppointmentInputObjectSchema).array()]),
skipDuplicates: z.boolean().optional()
}).strict();
export const ClaimCreateManyAppointmentInputEnvelopeObjectSchema: z.ZodType<Prisma.ClaimCreateManyAppointmentInputEnvelope> = makeSchema() as unknown as z.ZodType<Prisma.ClaimCreateManyAppointmentInputEnvelope>;
export const ClaimCreateManyAppointmentInputEnvelopeObjectZodSchema = makeSchema();