initial commit
This commit is contained in:
23
packages/db/shared/schemas/upsertOnePatient.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/upsertOnePatient.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const PatientUpsertOneSchema: z.ZodType<Prisma.PatientUpsertArgs>;
|
||||
export declare const PatientUpsertOneZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.PatientSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodOptional<z.ZodType<Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
where: z.ZodType<Prisma.PatientWhereUniqueInput, z.ZodTypeDef, Prisma.PatientWhereUniqueInput>;
|
||||
create: z.ZodUnion<[z.ZodType<Prisma.PatientCreateInput, z.ZodTypeDef, Prisma.PatientCreateInput>, z.ZodType<Prisma.PatientUncheckedCreateInput, z.ZodTypeDef, Prisma.PatientUncheckedCreateInput>]>;
|
||||
update: z.ZodUnion<[z.ZodType<Prisma.PatientUpdateInput, z.ZodTypeDef, Prisma.PatientUpdateInput>, z.ZodType<Prisma.PatientUncheckedUpdateInput, z.ZodTypeDef, Prisma.PatientUncheckedUpdateInput>]>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
create: Prisma.PatientUncheckedCreateInput | Prisma.PatientCreateInput;
|
||||
where: Prisma.PatientWhereUniqueInput;
|
||||
update: Prisma.PatientUpdateInput | Prisma.PatientUncheckedUpdateInput;
|
||||
include?: Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
create: Prisma.PatientUncheckedCreateInput | Prisma.PatientCreateInput;
|
||||
where: Prisma.PatientWhereUniqueInput;
|
||||
update: Prisma.PatientUpdateInput | Prisma.PatientUncheckedUpdateInput;
|
||||
include?: Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=upsertOnePatient.schema.d.ts.map
|
||||
Reference in New Issue
Block a user