Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/CloudFileCreateWithoutChunksInput.schema.d.ts
2026-04-04 22:13:55 -04:00

35 lines
1.7 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFileCreateWithoutChunksInputObjectSchema: z.ZodType<Prisma.CloudFileCreateWithoutChunksInput>;
export declare const CloudFileCreateWithoutChunksInputObjectZodSchema: 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>>;
folder: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderCreateNestedOneWithoutFilesInput, z.ZodTypeDef, Prisma.CloudFolderCreateNestedOneWithoutFilesInput>>>;
}, "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;
folder?: Prisma.CloudFolderCreateNestedOneWithoutFilesInput | 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;
folder?: Prisma.CloudFolderCreateNestedOneWithoutFilesInput | undefined;
}>;
//# sourceMappingURL=CloudFileCreateWithoutChunksInput.schema.d.ts.map