initial commit
This commit is contained in:
17
packages/db/shared/schemas/createOnePatient.schema.d.ts
vendored
Normal file
17
packages/db/shared/schemas/createOnePatient.schema.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const PatientCreateOneSchema: z.ZodType<Prisma.PatientCreateArgs>;
|
||||
export declare const PatientCreateOneZodSchema: 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>>>;
|
||||
data: z.ZodUnion<[z.ZodType<Prisma.PatientCreateInput, z.ZodTypeDef, Prisma.PatientCreateInput>, z.ZodType<Prisma.PatientUncheckedCreateInput, z.ZodTypeDef, Prisma.PatientUncheckedCreateInput>]>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
data: Prisma.PatientUncheckedCreateInput | Prisma.PatientCreateInput;
|
||||
include?: Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
data: Prisma.PatientUncheckedCreateInput | Prisma.PatientCreateInput;
|
||||
include?: Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=createOnePatient.schema.d.ts.map
|
||||
Reference in New Issue
Block a user