47 lines
4.3 KiB
TypeScript
47 lines
4.3 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const PatientDocumentWhereInputObjectSchema: z.ZodType<Prisma.PatientDocumentWhereInput>;
|
|
export declare const PatientDocumentWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientDocumentWhereInput, z.ZodTypeDef, Prisma.PatientDocumentWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientDocumentWhereInput, z.ZodTypeDef, Prisma.PatientDocumentWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientDocumentWhereInput, z.ZodTypeDef, Prisma.PatientDocumentWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientDocumentWhereInput, z.ZodTypeDef, Prisma.PatientDocumentWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientDocumentWhereInput, z.ZodTypeDef, Prisma.PatientDocumentWhereInput>>, "many">]>>;
|
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
patientId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
filename: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
originalName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
mimeType: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
fileSize: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BigIntFilter<never>, z.ZodTypeDef, Prisma.BigIntFilter<never>>>, z.ZodBigInt]>>;
|
|
filePath: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
uploadedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
patient: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientScalarRelationFilter, z.ZodTypeDef, Prisma.PatientScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.PatientWhereInput, z.ZodTypeDef, Prisma.PatientWhereInput>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.PatientDocumentWhereInput | Prisma.PatientDocumentWhereInput[] | undefined;
|
|
OR?: Prisma.PatientDocumentWhereInput[] | undefined;
|
|
NOT?: Prisma.PatientDocumentWhereInput | Prisma.PatientDocumentWhereInput[] | undefined;
|
|
filename?: string | Prisma.StringFilter<never> | undefined;
|
|
uploadedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
patientId?: number | Prisma.IntFilter<never> | undefined;
|
|
patient?: Prisma.PatientWhereInput | Prisma.PatientScalarRelationFilter | undefined;
|
|
mimeType?: string | Prisma.StringFilter<never> | undefined;
|
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
originalName?: string | Prisma.StringFilter<never> | undefined;
|
|
fileSize?: bigint | Prisma.BigIntFilter<never> | undefined;
|
|
filePath?: string | Prisma.StringFilter<never> | undefined;
|
|
}, {
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.PatientDocumentWhereInput | Prisma.PatientDocumentWhereInput[] | undefined;
|
|
OR?: Prisma.PatientDocumentWhereInput[] | undefined;
|
|
NOT?: Prisma.PatientDocumentWhereInput | Prisma.PatientDocumentWhereInput[] | undefined;
|
|
filename?: string | Prisma.StringFilter<never> | undefined;
|
|
uploadedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
patientId?: number | Prisma.IntFilter<never> | undefined;
|
|
patient?: Prisma.PatientWhereInput | Prisma.PatientScalarRelationFilter | undefined;
|
|
mimeType?: string | Prisma.StringFilter<never> | undefined;
|
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
originalName?: string | Prisma.StringFilter<never> | undefined;
|
|
fileSize?: bigint | Prisma.BigIntFilter<never> | undefined;
|
|
filePath?: string | Prisma.StringFilter<never> | undefined;
|
|
}>;
|
|
//# sourceMappingURL=PatientDocumentWhereInput.schema.d.ts.map
|