41 lines
2.5 KiB
TypeScript
41 lines
2.5 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFileChunkSelectObjectSchema: z.ZodType<Prisma.CloudFileChunkSelect>;
|
|
export declare const CloudFileChunkSelectObjectZodSchema: 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.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFileSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFileInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
include?: Prisma.CloudFileInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.CloudFileSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}, {
|
|
include?: Prisma.CloudFileInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.CloudFileSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
data?: boolean | undefined;
|
|
seq?: boolean | undefined;
|
|
fileId?: boolean | undefined;
|
|
file?: boolean | {
|
|
include?: Prisma.CloudFileInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.CloudFileSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
}, {
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
data?: boolean | undefined;
|
|
seq?: boolean | undefined;
|
|
fileId?: boolean | undefined;
|
|
file?: boolean | {
|
|
include?: Prisma.CloudFileInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.CloudFileSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFileChunkSelect.schema.d.ts.map
|