35 lines
3.1 KiB
TypeScript
35 lines
3.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const PdfFileWhereInputObjectSchema: z.ZodType<Prisma.PdfFileWhereInput>;
|
|
export declare const PdfFileWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PdfFileWhereInput, z.ZodTypeDef, Prisma.PdfFileWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfFileWhereInput, z.ZodTypeDef, Prisma.PdfFileWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfFileWhereInput, z.ZodTypeDef, Prisma.PdfFileWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PdfFileWhereInput, z.ZodTypeDef, Prisma.PdfFileWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.PdfFileWhereInput, z.ZodTypeDef, Prisma.PdfFileWhereInput>>, "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]>>;
|
|
group: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PdfGroupScalarRelationFilter, z.ZodTypeDef, Prisma.PdfGroupScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.PdfGroupWhereInput, z.ZodTypeDef, Prisma.PdfGroupWhereInput>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.PdfFileWhereInput | Prisma.PdfFileWhereInput[] | undefined;
|
|
OR?: Prisma.PdfFileWhereInput[] | undefined;
|
|
NOT?: Prisma.PdfFileWhereInput | Prisma.PdfFileWhereInput[] | 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;
|
|
group?: Prisma.PdfGroupScalarRelationFilter | Prisma.PdfGroupWhereInput | undefined;
|
|
}, {
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.PdfFileWhereInput | Prisma.PdfFileWhereInput[] | undefined;
|
|
OR?: Prisma.PdfFileWhereInput[] | undefined;
|
|
NOT?: Prisma.PdfFileWhereInput | Prisma.PdfFileWhereInput[] | 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;
|
|
group?: Prisma.PdfGroupScalarRelationFilter | Prisma.PdfGroupWhereInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=PdfFileWhereInput.schema.d.ts.map
|