initial commit
This commit is contained in:
44
packages/db/shared/schemas/objects/PatientDocumentScalarWhereInput.schema.d.ts
vendored
Normal file
44
packages/db/shared/schemas/objects/PatientDocumentScalarWhereInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const PatientDocumentScalarWhereInputObjectSchema: z.ZodType<Prisma.PatientDocumentScalarWhereInput>;
|
||||
export declare const PatientDocumentScalarWhereInputObjectZodSchema: z.ZodObject<{
|
||||
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientDocumentScalarWhereInput, z.ZodTypeDef, Prisma.PatientDocumentScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientDocumentScalarWhereInput, z.ZodTypeDef, Prisma.PatientDocumentScalarWhereInput>>, "many">]>>;
|
||||
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientDocumentScalarWhereInput, z.ZodTypeDef, Prisma.PatientDocumentScalarWhereInput>>, "many">>;
|
||||
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PatientDocumentScalarWhereInput, z.ZodTypeDef, Prisma.PatientDocumentScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PatientDocumentScalarWhereInput, z.ZodTypeDef, Prisma.PatientDocumentScalarWhereInput>>, "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]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.PatientDocumentScalarWhereInput | Prisma.PatientDocumentScalarWhereInput[] | undefined;
|
||||
OR?: Prisma.PatientDocumentScalarWhereInput[] | undefined;
|
||||
NOT?: Prisma.PatientDocumentScalarWhereInput | Prisma.PatientDocumentScalarWhereInput[] | undefined;
|
||||
filename?: string | Prisma.StringFilter<never> | undefined;
|
||||
uploadedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
patientId?: number | Prisma.IntFilter<never> | 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.PatientDocumentScalarWhereInput | Prisma.PatientDocumentScalarWhereInput[] | undefined;
|
||||
OR?: Prisma.PatientDocumentScalarWhereInput[] | undefined;
|
||||
NOT?: Prisma.PatientDocumentScalarWhereInput | Prisma.PatientDocumentScalarWhereInput[] | undefined;
|
||||
filename?: string | Prisma.StringFilter<never> | undefined;
|
||||
uploadedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
patientId?: number | Prisma.IntFilter<never> | 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=PatientDocumentScalarWhereInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user