initial commit
This commit is contained in:
26
packages/db/shared/schemas/objects/PdfFileOrderByWithRelationInput.schema.d.ts
vendored
Normal file
26
packages/db/shared/schemas/objects/PdfFileOrderByWithRelationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
||||
Reference in New Issue
Block a user