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,38 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFileUncheckedCreateInputObjectSchema: z.ZodType<Prisma.CloudFileUncheckedCreateInput>;
export declare const CloudFileUncheckedCreateInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
userId: 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>;
chunks: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileChunkUncheckedCreateNestedManyWithoutFileInput, z.ZodTypeDef, Prisma.CloudFileChunkUncheckedCreateNestedManyWithoutFileInput>>>;
}, "strict", z.ZodTypeAny, {
userId: number;
name: string;
fileSize: bigint;
createdAt?: Date | undefined;
id?: number | undefined;
mimeType?: string | null | undefined;
isComplete?: boolean | undefined;
totalChunks?: number | null | undefined;
chunks?: Prisma.CloudFileChunkUncheckedCreateNestedManyWithoutFileInput | undefined;
folderId?: number | null | undefined;
}, {
userId: number;
name: string;
fileSize: bigint;
createdAt?: Date | undefined;
id?: number | undefined;
mimeType?: string | null | undefined;
isComplete?: boolean | undefined;
totalChunks?: number | null | undefined;
chunks?: Prisma.CloudFileChunkUncheckedCreateNestedManyWithoutFileInput | undefined;
folderId?: number | null | undefined;
}>;
//# sourceMappingURL=CloudFileUncheckedCreateInput.schema.d.ts.map