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 PatientCreateOrConnectWithoutDocumentsInputObjectSchema: z.ZodType<Prisma.PatientCreateOrConnectWithoutDocumentsInput>;
|
|
export declare const PatientCreateOrConnectWithoutDocumentsInputObjectZodSchema: z.ZodObject<{
|
|
where: z.ZodLazy<z.ZodType<Prisma.PatientWhereUniqueInput, z.ZodTypeDef, Prisma.PatientWhereUniqueInput>>;
|
|
create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientCreateWithoutDocumentsInput, z.ZodTypeDef, Prisma.PatientCreateWithoutDocumentsInput>>, z.ZodLazy<z.ZodType<Prisma.PatientUncheckedCreateWithoutDocumentsInput, z.ZodTypeDef, Prisma.PatientUncheckedCreateWithoutDocumentsInput>>]>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
create: Prisma.PatientCreateWithoutDocumentsInput | Prisma.PatientUncheckedCreateWithoutDocumentsInput;
|
|
where: Prisma.PatientWhereUniqueInput;
|
|
}, {
|
|
create: Prisma.PatientCreateWithoutDocumentsInput | Prisma.PatientUncheckedCreateWithoutDocumentsInput;
|
|
where: Prisma.PatientWhereUniqueInput;
|
|
}>;
|
|
//# sourceMappingURL=PatientCreateOrConnectWithoutDocumentsInput.schema.d.ts.map
|