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

35 lines
3.4 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFileUpdateWithoutFolderInputObjectSchema: z.ZodType<Prisma.CloudFileUpdateWithoutFolderInput>;
export declare const CloudFileUpdateWithoutFolderInputObjectZodSchema: z.ZodObject<{
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
mimeType: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
fileSize: z.ZodOptional<z.ZodUnion<[z.ZodBigInt, z.ZodLazy<z.ZodType<Prisma.BigIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BigIntFieldUpdateOperationsInput>>]>>;
isComplete: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BoolFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.BoolFieldUpdateOperationsInput>>]>>;
totalChunks: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.NullableIntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableIntFieldUpdateOperationsInput>>]>>>;
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserUpdateOneRequiredWithoutCloudFilesNestedInput, z.ZodTypeDef, Prisma.UserUpdateOneRequiredWithoutCloudFilesNestedInput>>>;
chunks: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileChunkUpdateManyWithoutFileNestedInput, z.ZodTypeDef, Prisma.CloudFileChunkUpdateManyWithoutFileNestedInput>>>;
}, "strict", z.ZodTypeAny, {
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
user?: Prisma.UserUpdateOneRequiredWithoutCloudFilesNestedInput | undefined;
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
mimeType?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
fileSize?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
isComplete?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
totalChunks?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
chunks?: Prisma.CloudFileChunkUpdateManyWithoutFileNestedInput | undefined;
}, {
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
user?: Prisma.UserUpdateOneRequiredWithoutCloudFilesNestedInput | undefined;
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
mimeType?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
fileSize?: bigint | Prisma.BigIntFieldUpdateOperationsInput | undefined;
isComplete?: boolean | Prisma.BoolFieldUpdateOperationsInput | undefined;
totalChunks?: number | Prisma.NullableIntFieldUpdateOperationsInput | null | undefined;
chunks?: Prisma.CloudFileChunkUpdateManyWithoutFileNestedInput | undefined;
}>;
//# sourceMappingURL=CloudFileUpdateWithoutFolderInput.schema.d.ts.map