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,35 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFileCreateManyUserInputObjectSchema: z.ZodType<Prisma.CloudFileCreateManyUserInput>;
export declare const CloudFileCreateManyUserInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
name: z.ZodString;
mimeType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
fileSize: z.ZodBigInt;
folderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
isComplete: z.ZodOptional<z.ZodBoolean>;
totalChunks: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
createdAt: z.ZodOptional<z.ZodDate>;
updatedAt: z.ZodOptional<z.ZodDate>;
}, "strict", z.ZodTypeAny, {
name: string;
fileSize: bigint;
createdAt?: Date | undefined;
id?: number | undefined;
mimeType?: string | null | undefined;
updatedAt?: Date | undefined;
isComplete?: boolean | undefined;
totalChunks?: number | null | undefined;
folderId?: number | null | undefined;
}, {
name: string;
fileSize: bigint;
createdAt?: Date | undefined;
id?: number | undefined;
mimeType?: string | null | undefined;
updatedAt?: Date | undefined;
isComplete?: boolean | undefined;
totalChunks?: number | null | undefined;
folderId?: number | null | undefined;
}>;
//# sourceMappingURL=CloudFileCreateManyUserInput.schema.d.ts.map