36 lines
903 B
TypeScript
36 lines
903 B
TypeScript
import * as z from 'zod';
|
|
export declare const PatientDocumentUpsertResultSchema: z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
patientId: z.ZodNumber;
|
|
filename: z.ZodString;
|
|
originalName: z.ZodString;
|
|
mimeType: z.ZodString;
|
|
fileSize: z.ZodBigInt;
|
|
filePath: z.ZodString;
|
|
uploadedAt: z.ZodDate;
|
|
updatedAt: z.ZodDate;
|
|
patient: z.ZodUnknown;
|
|
}, "strip", z.ZodTypeAny, {
|
|
id: number;
|
|
filename: string;
|
|
uploadedAt: Date;
|
|
patientId: number;
|
|
mimeType: string;
|
|
updatedAt: Date;
|
|
originalName: string;
|
|
fileSize: bigint;
|
|
filePath: string;
|
|
patient?: unknown;
|
|
}, {
|
|
id: number;
|
|
filename: string;
|
|
uploadedAt: Date;
|
|
patientId: number;
|
|
mimeType: string;
|
|
updatedAt: Date;
|
|
originalName: string;
|
|
fileSize: bigint;
|
|
filePath: string;
|
|
patient?: unknown;
|
|
}>;
|
|
//# sourceMappingURL=PatientDocumentUpsertResult.schema.d.ts.map
|