initial commit
This commit is contained in:
29
packages/db/shared/schemas/objects/PatientDocumentCreateInput.schema.d.ts
vendored
Normal file
29
packages/db/shared/schemas/objects/PatientDocumentCreateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
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
|
||||
Reference in New Issue
Block a user