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