29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const PatientDocumentCreateInputObjectSchema: z.ZodType<Prisma.PatientDocumentCreateInput>;
|
|
export declare const PatientDocumentCreateInputObjectZodSchema: z.ZodObject<{
|
|
filename: z.ZodString;
|
|
originalName: z.ZodString;
|
|
mimeType: z.ZodString;
|
|
fileSize: z.ZodBigInt;
|
|
filePath: z.ZodString;
|
|
uploadedAt: z.ZodOptional<z.ZodDate>;
|
|
patient: z.ZodLazy<z.ZodType<Prisma.PatientCreateNestedOneWithoutDocumentsInput, z.ZodTypeDef, Prisma.PatientCreateNestedOneWithoutDocumentsInput>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
filename: string;
|
|
patient: Prisma.PatientCreateNestedOneWithoutDocumentsInput;
|
|
mimeType: string;
|
|
originalName: string;
|
|
fileSize: bigint;
|
|
filePath: string;
|
|
uploadedAt?: Date | undefined;
|
|
}, {
|
|
filename: string;
|
|
patient: Prisma.PatientCreateNestedOneWithoutDocumentsInput;
|
|
mimeType: string;
|
|
originalName: string;
|
|
fileSize: bigint;
|
|
filePath: string;
|
|
uploadedAt?: Date | undefined;
|
|
}>;
|
|
//# sourceMappingURL=PatientDocumentCreateInput.schema.d.ts.map
|