initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PdfFileSelectObjectSchema: z.ZodType<Prisma.PdfFileSelect>;
export declare const PdfFileSelectObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodBoolean>;
filename: z.ZodOptional<z.ZodBoolean>;
pdfData: z.ZodOptional<z.ZodBoolean>;
uploadedAt: z.ZodOptional<z.ZodBoolean>;
groupId: z.ZodOptional<z.ZodBoolean>;
group: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PdfGroupSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PdfGroupSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PdfGroupInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PdfGroupInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
}, "strict", z.ZodTypeAny, {
include?: Prisma.PdfGroupInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.PdfGroupSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
}, {
include?: Prisma.PdfGroupInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.PdfGroupSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
}>>]>>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
filename?: boolean | undefined;
pdfData?: boolean | undefined;
uploadedAt?: boolean | undefined;
groupId?: boolean | undefined;
group?: boolean | {
include?: Prisma.PdfGroupInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.PdfGroupSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
} | undefined;
}, {
id?: boolean | undefined;
filename?: boolean | undefined;
pdfData?: boolean | undefined;
uploadedAt?: boolean | undefined;
groupId?: boolean | undefined;
group?: boolean | {
include?: Prisma.PdfGroupInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.PdfGroupSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
} | undefined;
}>;
//# sourceMappingURL=PdfFileSelect.schema.d.ts.map