35 lines
1.7 KiB
TypeScript
35 lines
1.7 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFileCreateWithoutFolderInputObjectSchema: z.ZodType<Prisma.CloudFileCreateWithoutFolderInput>;
|
|
export declare const CloudFileCreateWithoutFolderInputObjectZodSchema: z.ZodObject<{
|
|
name: z.ZodString;
|
|
mimeType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
fileSize: z.ZodBigInt;
|
|
isComplete: z.ZodOptional<z.ZodBoolean>;
|
|
totalChunks: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
user: z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutCloudFilesInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutCloudFilesInput>>;
|
|
chunks: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileChunkCreateNestedManyWithoutFileInput, z.ZodTypeDef, Prisma.CloudFileChunkCreateNestedManyWithoutFileInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
user: Prisma.UserCreateNestedOneWithoutCloudFilesInput;
|
|
name: string;
|
|
fileSize: bigint;
|
|
createdAt?: Date | undefined;
|
|
mimeType?: string | null | undefined;
|
|
updatedAt?: Date | undefined;
|
|
isComplete?: boolean | undefined;
|
|
totalChunks?: number | null | undefined;
|
|
chunks?: Prisma.CloudFileChunkCreateNestedManyWithoutFileInput | undefined;
|
|
}, {
|
|
user: Prisma.UserCreateNestedOneWithoutCloudFilesInput;
|
|
name: string;
|
|
fileSize: bigint;
|
|
createdAt?: Date | undefined;
|
|
mimeType?: string | null | undefined;
|
|
updatedAt?: Date | undefined;
|
|
isComplete?: boolean | undefined;
|
|
totalChunks?: number | null | undefined;
|
|
chunks?: Prisma.CloudFileChunkCreateNestedManyWithoutFileInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFileCreateWithoutFolderInput.schema.d.ts.map
|