initial commit
This commit is contained in:
41
packages/db/shared/schemas/objects/PdfFileSelect.schema.d.ts
vendored
Normal file
41
packages/db/shared/schemas/objects/PdfFileSelect.schema.d.ts
vendored
Normal 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
|
||||
Reference in New Issue
Block a user