initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFolderUpdateInputObjectSchema: z.ZodType<Prisma.CloudFolderUpdateInput>;
export declare const CloudFolderUpdateInputObjectZodSchema: z.ZodObject<{
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
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>>]>>;
parent: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderUpdateOneWithoutChildrenNestedInput, z.ZodTypeDef, Prisma.CloudFolderUpdateOneWithoutChildrenNestedInput>>>;
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderUpdateManyWithoutParentNestedInput, z.ZodTypeDef, Prisma.CloudFolderUpdateManyWithoutParentNestedInput>>>;
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserUpdateOneRequiredWithoutCloudFoldersNestedInput, z.ZodTypeDef, Prisma.UserUpdateOneRequiredWithoutCloudFoldersNestedInput>>>;
files: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileUpdateManyWithoutFolderNestedInput, z.ZodTypeDef, Prisma.CloudFileUpdateManyWithoutFolderNestedInput>>>;
}, "strict", z.ZodTypeAny, {
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
user?: Prisma.UserUpdateOneRequiredWithoutCloudFoldersNestedInput | undefined;
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
children?: Prisma.CloudFolderUpdateManyWithoutParentNestedInput | undefined;
files?: Prisma.CloudFileUpdateManyWithoutFolderNestedInput | undefined;
parent?: Prisma.CloudFolderUpdateOneWithoutChildrenNestedInput | undefined;
}, {
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
user?: Prisma.UserUpdateOneRequiredWithoutCloudFoldersNestedInput | undefined;
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
children?: Prisma.CloudFolderUpdateManyWithoutParentNestedInput | undefined;
files?: Prisma.CloudFileUpdateManyWithoutFolderNestedInput | undefined;
parent?: Prisma.CloudFolderUpdateOneWithoutChildrenNestedInput | undefined;
}>;
//# sourceMappingURL=CloudFolderUpdateInput.schema.d.ts.map