Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/PdfFileScalarWhereInput.schema.d.ts
2026-04-04 22:13:55 -04:00

32 lines
2.8 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PdfFileScalarWhereInputObjectSchema: z.ZodType<Prisma.PdfFileScalarWhereInput>;
export declare const PdfFileScalarWhereInputObjectZodSchema: z.ZodObject<{
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PdfFileScalarWhereInput, z.ZodTypeDef, Prisma.PdfFileScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfFileScalarWhereInput, z.ZodTypeDef, Prisma.PdfFileScalarWhereInput>>, "many">]>>;
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfFileScalarWhereInput, z.ZodTypeDef, Prisma.PdfFileScalarWhereInput>>, "many">>;
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PdfFileScalarWhereInput, z.ZodTypeDef, Prisma.PdfFileScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfFileScalarWhereInput, z.ZodTypeDef, Prisma.PdfFileScalarWhereInput>>, "many">]>>;
id: 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]>>;
pdfData: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BytesFilter<never>, z.ZodTypeDef, Prisma.BytesFilter<never>>>, z.ZodType<Uint8Array<ArrayBuffer>, z.ZodTypeDef, Uint8Array<ArrayBuffer>>]>>;
uploadedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
groupId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
}, "strict", z.ZodTypeAny, {
id?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.PdfFileScalarWhereInput | Prisma.PdfFileScalarWhereInput[] | undefined;
OR?: Prisma.PdfFileScalarWhereInput[] | undefined;
NOT?: Prisma.PdfFileScalarWhereInput | Prisma.PdfFileScalarWhereInput[] | undefined;
filename?: string | Prisma.StringFilter<never> | undefined;
pdfData?: Uint8Array<ArrayBuffer> | Prisma.BytesFilter<never> | undefined;
uploadedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
groupId?: number | Prisma.IntFilter<never> | undefined;
}, {
id?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.PdfFileScalarWhereInput | Prisma.PdfFileScalarWhereInput[] | undefined;
OR?: Prisma.PdfFileScalarWhereInput[] | undefined;
NOT?: Prisma.PdfFileScalarWhereInput | Prisma.PdfFileScalarWhereInput[] | undefined;
filename?: string | Prisma.StringFilter<never> | undefined;
pdfData?: Uint8Array<ArrayBuffer> | Prisma.BytesFilter<never> | undefined;
uploadedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
groupId?: number | Prisma.IntFilter<never> | undefined;
}>;
//# sourceMappingURL=PdfFileScalarWhereInput.schema.d.ts.map