26 lines
1.3 KiB
TypeScript
26 lines
1.3 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const PdfFileOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.PdfFileOrderByWithRelationInput>;
|
|
export declare const PdfFileOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
filename: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
pdfData: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
uploadedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
groupId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
group: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PdfGroupOrderByWithRelationInput, z.ZodTypeDef, Prisma.PdfGroupOrderByWithRelationInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: "asc" | "desc" | undefined;
|
|
filename?: "asc" | "desc" | undefined;
|
|
pdfData?: "asc" | "desc" | undefined;
|
|
uploadedAt?: "asc" | "desc" | undefined;
|
|
groupId?: "asc" | "desc" | undefined;
|
|
group?: Prisma.PdfGroupOrderByWithRelationInput | undefined;
|
|
}, {
|
|
id?: "asc" | "desc" | undefined;
|
|
filename?: "asc" | "desc" | undefined;
|
|
pdfData?: "asc" | "desc" | undefined;
|
|
uploadedAt?: "asc" | "desc" | undefined;
|
|
groupId?: "asc" | "desc" | undefined;
|
|
group?: Prisma.PdfGroupOrderByWithRelationInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=PdfFileOrderByWithRelationInput.schema.d.ts.map
|