55 lines
3.6 KiB
TypeScript
55 lines
3.6 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const PdfFileFindFirstOrThrowSelectSchema: z.ZodType<Prisma.PdfFileSelect>;
|
|
export declare const PdfFileFindFirstOrThrowSelectZodSchema: 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.ZodBoolean>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: boolean | undefined;
|
|
filename?: boolean | undefined;
|
|
pdfData?: boolean | undefined;
|
|
uploadedAt?: boolean | undefined;
|
|
groupId?: boolean | undefined;
|
|
group?: boolean | undefined;
|
|
}, {
|
|
id?: boolean | undefined;
|
|
filename?: boolean | undefined;
|
|
pdfData?: boolean | undefined;
|
|
uploadedAt?: boolean | undefined;
|
|
groupId?: boolean | undefined;
|
|
group?: boolean | undefined;
|
|
}>;
|
|
export declare const PdfFileFindFirstOrThrowSchema: z.ZodType<Prisma.PdfFileFindFirstOrThrowArgs>;
|
|
export declare const PdfFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodType<Prisma.PdfFileSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PdfFileSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
|
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.PdfFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PdfFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.PdfFileOrderByWithRelationInput, z.ZodTypeDef, Prisma.PdfFileOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.PdfFileOrderByWithRelationInput, z.ZodTypeDef, Prisma.PdfFileOrderByWithRelationInput>, "many">]>>;
|
|
where: z.ZodOptional<z.ZodType<Prisma.PdfFileWhereInput, z.ZodTypeDef, Prisma.PdfFileWhereInput>>;
|
|
cursor: z.ZodOptional<z.ZodType<Prisma.PdfFileWhereUniqueInput, z.ZodTypeDef, Prisma.PdfFileWhereUniqueInput>>;
|
|
take: z.ZodOptional<z.ZodNumber>;
|
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "filename", "pdfData", "uploadedAt", "groupId"]>, z.ZodArray<z.ZodEnum<["id", "filename", "pdfData", "uploadedAt", "groupId"]>, "many">]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
where?: Prisma.PdfFileWhereInput | undefined;
|
|
include?: Prisma.PdfFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.PdfFileSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
orderBy?: Prisma.PdfFileOrderByWithRelationInput | Prisma.PdfFileOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
|
|
}, {
|
|
where?: Prisma.PdfFileWhereInput | undefined;
|
|
include?: Prisma.PdfFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.PdfFileSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
orderBy?: Prisma.PdfFileOrderByWithRelationInput | Prisma.PdfFileOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
|
|
}>;
|
|
//# sourceMappingURL=findFirstOrThrowPdfFile.schema.d.ts.map
|