initial commit
This commit is contained in:
23
packages/db/shared/schemas/objects/CloudFileChunkCountOrderByAggregateInput.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/objects/CloudFileChunkCountOrderByAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const CloudFileChunkCountOrderByAggregateInputObjectSchema: z.ZodType<Prisma.CloudFileChunkCountOrderByAggregateInput>;
|
||||
export declare const CloudFileChunkCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
fileId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
seq: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
data: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
data?: "asc" | "desc" | undefined;
|
||||
seq?: "asc" | "desc" | undefined;
|
||||
fileId?: "asc" | "desc" | undefined;
|
||||
}, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
data?: "asc" | "desc" | undefined;
|
||||
seq?: "asc" | "desc" | undefined;
|
||||
fileId?: "asc" | "desc" | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=CloudFileChunkCountOrderByAggregateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user