29 lines
1.4 KiB
TypeScript
29 lines
1.4 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFolderUncheckedCreateWithoutFilesInputObjectSchema: z.ZodType<Prisma.CloudFolderUncheckedCreateWithoutFilesInput>;
|
|
export declare const CloudFolderUncheckedCreateWithoutFilesInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
userId: z.ZodNumber;
|
|
name: z.ZodString;
|
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderUncheckedCreateNestedManyWithoutParentInput, z.ZodTypeDef, Prisma.CloudFolderUncheckedCreateNestedManyWithoutParentInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
userId: number;
|
|
name: string;
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
updatedAt?: Date | undefined;
|
|
children?: Prisma.CloudFolderUncheckedCreateNestedManyWithoutParentInput | undefined;
|
|
parentId?: number | null | undefined;
|
|
}, {
|
|
userId: number;
|
|
name: string;
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
updatedAt?: Date | undefined;
|
|
children?: Prisma.CloudFolderUncheckedCreateNestedManyWithoutParentInput | undefined;
|
|
parentId?: number | null | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFolderUncheckedCreateWithoutFilesInput.schema.d.ts.map
|