14 lines
1.1 KiB
TypeScript
14 lines
1.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const PatientCreateOrConnectWithoutAppointmentsInputObjectSchema: z.ZodType<Prisma.PatientCreateOrConnectWithoutAppointmentsInput>;
|
|
export declare const PatientCreateOrConnectWithoutAppointmentsInputObjectZodSchema: z.ZodObject<{
|
|
where: z.ZodLazy<z.ZodType<Prisma.PatientWhereUniqueInput, z.ZodTypeDef, Prisma.PatientWhereUniqueInput>>;
|
|
create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientCreateWithoutAppointmentsInput, z.ZodTypeDef, Prisma.PatientCreateWithoutAppointmentsInput>>, z.ZodLazy<z.ZodType<Prisma.PatientUncheckedCreateWithoutAppointmentsInput, z.ZodTypeDef, Prisma.PatientUncheckedCreateWithoutAppointmentsInput>>]>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
create: Prisma.PatientCreateWithoutAppointmentsInput | Prisma.PatientUncheckedCreateWithoutAppointmentsInput;
|
|
where: Prisma.PatientWhereUniqueInput;
|
|
}, {
|
|
create: Prisma.PatientCreateWithoutAppointmentsInput | Prisma.PatientUncheckedCreateWithoutAppointmentsInput;
|
|
where: Prisma.PatientWhereUniqueInput;
|
|
}>;
|
|
//# sourceMappingURL=PatientCreateOrConnectWithoutAppointmentsInput.schema.d.ts.map
|