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

14 lines
1.0 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const AppointmentCreateManyPatientInputEnvelopeObjectSchema: z.ZodType<Prisma.AppointmentCreateManyPatientInputEnvelope>;
export declare const AppointmentCreateManyPatientInputEnvelopeObjectZodSchema: z.ZodObject<{
data: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.AppointmentCreateManyPatientInput, z.ZodTypeDef, Prisma.AppointmentCreateManyPatientInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.AppointmentCreateManyPatientInput, z.ZodTypeDef, Prisma.AppointmentCreateManyPatientInput>>, "many">]>;
skipDuplicates: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
data: Prisma.AppointmentCreateManyPatientInput | Prisma.AppointmentCreateManyPatientInput[];
skipDuplicates?: boolean | undefined;
}, {
data: Prisma.AppointmentCreateManyPatientInput | Prisma.AppointmentCreateManyPatientInput[];
skipDuplicates?: boolean | undefined;
}>;
//# sourceMappingURL=AppointmentCreateManyPatientInputEnvelope.schema.d.ts.map