initial commit
This commit is contained in:
53
packages/db/shared/schemas/objects/PatientDocumentSelect.schema.d.ts
vendored
Normal file
53
packages/db/shared/schemas/objects/PatientDocumentSelect.schema.d.ts
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const PatientDocumentSelectObjectSchema: z.ZodType<Prisma.PatientDocumentSelect>;
|
||||
export declare const PatientDocumentSelectObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
patientId: z.ZodOptional<z.ZodBoolean>;
|
||||
filename: z.ZodOptional<z.ZodBoolean>;
|
||||
originalName: z.ZodOptional<z.ZodBoolean>;
|
||||
mimeType: z.ZodOptional<z.ZodBoolean>;
|
||||
fileSize: z.ZodOptional<z.ZodBoolean>;
|
||||
filePath: z.ZodOptional<z.ZodBoolean>;
|
||||
uploadedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | {
|
||||
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
originalName?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | {
|
||||
include?: Prisma.PatientInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PatientSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
originalName?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=PatientDocumentSelect.schema.d.ts.map
|
||||
Reference in New Issue
Block a user