55 lines
3.7 KiB
TypeScript
55 lines
3.7 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const CloudFileChunkFindFirstSelectSchema: z.ZodType<Prisma.CloudFileChunkSelect>;
|
|
export declare const CloudFileChunkFindFirstSelectZodSchema: 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 CloudFileChunkFindFirstSchema: z.ZodType<Prisma.CloudFileChunkFindFirstArgs>;
|
|
export declare const CloudFileChunkFindFirstZodSchema: 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=findFirstCloudFileChunk.schema.d.ts.map
|