53 lines
2.9 KiB
TypeScript
53 lines
2.9 KiB
TypeScript
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
|