26 lines
2.3 KiB
TypeScript
26 lines
2.3 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFolderUpdateWithoutFilesInputObjectSchema: z.ZodType<Prisma.CloudFolderUpdateWithoutFilesInput>;
|
|
export declare const CloudFolderUpdateWithoutFilesInputObjectZodSchema: 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>>>;
|
|
}, "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;
|
|
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;
|
|
parent?: Prisma.CloudFolderUpdateOneWithoutChildrenNestedInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFolderUpdateWithoutFilesInput.schema.d.ts.map
|