initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
const makeSchema = () => z.object({
id: z.literal(true).optional(),
userId: z.literal(true).optional(),
name: z.literal(true).optional(),
mimeType: z.literal(true).optional(),
fileSize: z.literal(true).optional(),
folderId: z.literal(true).optional(),
isComplete: z.literal(true).optional(),
totalChunks: z.literal(true).optional(),
createdAt: z.literal(true).optional(),
updatedAt: z.literal(true).optional()
}).strict();
export const CloudFileMinAggregateInputObjectSchema: z.ZodType<Prisma.CloudFileMinAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.CloudFileMinAggregateInputType>;
export const CloudFileMinAggregateInputObjectZodSchema = makeSchema();