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,55 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
export declare const CloudFileChunkFindManySelectSchema: z.ZodType<Prisma.CloudFileChunkSelect>;
export declare const CloudFileChunkFindManySelectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodBoolean>;
fileId: z.ZodOptional<z.ZodBoolean>;
seq: z.ZodOptional<z.ZodBoolean>;
data: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
file: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
data?: boolean | undefined;
seq?: boolean | undefined;
fileId?: boolean | undefined;
file?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
data?: boolean | undefined;
seq?: boolean | undefined;
fileId?: boolean | undefined;
file?: boolean | undefined;
}>;
export declare const CloudFileChunkFindManySchema: z.ZodType<Prisma.CloudFileChunkFindManyArgs>;
export declare const CloudFileChunkFindManyZodSchema: z.ZodObject<{
select: z.ZodOptional<z.ZodType<Prisma.CloudFileChunkSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFileChunkSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.CloudFileChunkOrderByWithRelationInput, z.ZodTypeDef, Prisma.CloudFileChunkOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.CloudFileChunkOrderByWithRelationInput, z.ZodTypeDef, Prisma.CloudFileChunkOrderByWithRelationInput>, "many">]>>;
where: z.ZodOptional<z.ZodType<Prisma.CloudFileChunkWhereInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereInput>>;
cursor: z.ZodOptional<z.ZodType<Prisma.CloudFileChunkWhereUniqueInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "fileId", "seq", "data", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "fileId", "seq", "data", "createdAt"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.CloudFileChunkWhereInput | undefined;
include?: Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.CloudFileChunkSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
orderBy?: Prisma.CloudFileChunkOrderByWithRelationInput | Prisma.CloudFileChunkOrderByWithRelationInput[] | undefined;
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
}, {
where?: Prisma.CloudFileChunkWhereInput | undefined;
include?: Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.CloudFileChunkSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
orderBy?: Prisma.CloudFileChunkOrderByWithRelationInput | Prisma.CloudFileChunkOrderByWithRelationInput[] | undefined;
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
}>;
//# sourceMappingURL=findManyCloudFileChunk.schema.d.ts.map