initial commit
This commit is contained in:
47
packages/db/shared/schemas/objects/CloudFileOrderByWithRelationInput.schema.d.ts
vendored
Normal file
47
packages/db/shared/schemas/objects/CloudFileOrderByWithRelationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const CloudFileOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.CloudFileOrderByWithRelationInput>;
|
||||
export declare const CloudFileOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
name: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
mimeType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
fileSize: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
folderId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
isComplete: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
totalChunks: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserOrderByWithRelationInput, z.ZodTypeDef, Prisma.UserOrderByWithRelationInput>>>;
|
||||
folder: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderOrderByWithRelationInput, z.ZodTypeDef, Prisma.CloudFolderOrderByWithRelationInput>>>;
|
||||
chunks: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileChunkOrderByRelationAggregateInput, z.ZodTypeDef, Prisma.CloudFileChunkOrderByRelationAggregateInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
user?: Prisma.UserOrderByWithRelationInput | undefined;
|
||||
name?: "asc" | "desc" | undefined;
|
||||
mimeType?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
updatedAt?: "asc" | "desc" | undefined;
|
||||
fileSize?: "asc" | "desc" | undefined;
|
||||
isComplete?: "asc" | "desc" | undefined;
|
||||
totalChunks?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
chunks?: Prisma.CloudFileChunkOrderByRelationAggregateInput | undefined;
|
||||
folderId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
folder?: Prisma.CloudFolderOrderByWithRelationInput | undefined;
|
||||
}, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
userId?: "asc" | "desc" | undefined;
|
||||
user?: Prisma.UserOrderByWithRelationInput | undefined;
|
||||
name?: "asc" | "desc" | undefined;
|
||||
mimeType?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
updatedAt?: "asc" | "desc" | undefined;
|
||||
fileSize?: "asc" | "desc" | undefined;
|
||||
isComplete?: "asc" | "desc" | undefined;
|
||||
totalChunks?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
chunks?: Prisma.CloudFileChunkOrderByRelationAggregateInput | undefined;
|
||||
folderId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
folder?: Prisma.CloudFolderOrderByWithRelationInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=CloudFileOrderByWithRelationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user