initial commit
This commit is contained in:
26
packages/db/shared/schemas/objects/CloudFolderUpdateWithoutUserInput.schema.d.ts
vendored
Normal file
26
packages/db/shared/schemas/objects/CloudFolderUpdateWithoutUserInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const CloudFolderUpdateWithoutUserInputObjectSchema: z.ZodType<Prisma.CloudFolderUpdateWithoutUserInput>;
|
||||
export declare const CloudFolderUpdateWithoutUserInputObjectZodSchema: 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>>>;
|
||||
files: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileUpdateManyWithoutFolderNestedInput, z.ZodTypeDef, Prisma.CloudFileUpdateManyWithoutFolderNestedInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | 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;
|
||||
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
||||
children?: Prisma.CloudFolderUpdateManyWithoutParentNestedInput | undefined;
|
||||
files?: Prisma.CloudFileUpdateManyWithoutFolderNestedInput | undefined;
|
||||
parent?: Prisma.CloudFolderUpdateOneWithoutChildrenNestedInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=CloudFolderUpdateWithoutUserInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user