initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { SortOrderSchema } from '../enums/SortOrder.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
id: SortOrderSchema.optional(),
|
||||
fileId: SortOrderSchema.optional(),
|
||||
seq: SortOrderSchema.optional(),
|
||||
data: SortOrderSchema.optional(),
|
||||
createdAt: SortOrderSchema.optional()
|
||||
}).strict();
|
||||
export const CloudFileChunkMaxOrderByAggregateInputObjectSchema: z.ZodType<Prisma.CloudFileChunkMaxOrderByAggregateInput> = makeSchema() as unknown as z.ZodType<Prisma.CloudFileChunkMaxOrderByAggregateInput>;
|
||||
export const CloudFileChunkMaxOrderByAggregateInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user