70 lines
4.3 KiB
TypeScript
70 lines
4.3 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const CloudFolderFindManySelectSchema: z.ZodType<Prisma.CloudFolderSelect>;
|
|
export declare const CloudFolderFindManySelectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
userId: z.ZodOptional<z.ZodBoolean>;
|
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
parentId: z.ZodOptional<z.ZodBoolean>;
|
|
parent: z.ZodOptional<z.ZodBoolean>;
|
|
children: z.ZodOptional<z.ZodBoolean>;
|
|
user: z.ZodOptional<z.ZodBoolean>;
|
|
files: z.ZodOptional<z.ZodBoolean>;
|
|
createdAt: z.ZodOptional<z.ZodBoolean>;
|
|
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
|
_count: z.ZodOptional<z.ZodBoolean>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
userId?: boolean | undefined;
|
|
user?: boolean | undefined;
|
|
name?: boolean | undefined;
|
|
updatedAt?: boolean | undefined;
|
|
children?: boolean | undefined;
|
|
files?: boolean | undefined;
|
|
parentId?: boolean | undefined;
|
|
parent?: boolean | undefined;
|
|
_count?: boolean | undefined;
|
|
}, {
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
userId?: boolean | undefined;
|
|
user?: boolean | undefined;
|
|
name?: boolean | undefined;
|
|
updatedAt?: boolean | undefined;
|
|
children?: boolean | undefined;
|
|
files?: boolean | undefined;
|
|
parentId?: boolean | undefined;
|
|
parent?: boolean | undefined;
|
|
_count?: boolean | undefined;
|
|
}>;
|
|
export declare const CloudFolderFindManySchema: z.ZodType<Prisma.CloudFolderFindManyArgs>;
|
|
export declare const CloudFolderFindManyZodSchema: z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodType<Prisma.CloudFolderSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFolderSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
|
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.CloudFolderInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFolderInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.CloudFolderOrderByWithRelationInput, z.ZodTypeDef, Prisma.CloudFolderOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.CloudFolderOrderByWithRelationInput, z.ZodTypeDef, Prisma.CloudFolderOrderByWithRelationInput>, "many">]>>;
|
|
where: z.ZodOptional<z.ZodType<Prisma.CloudFolderWhereInput, z.ZodTypeDef, Prisma.CloudFolderWhereInput>>;
|
|
cursor: z.ZodOptional<z.ZodType<Prisma.CloudFolderWhereUniqueInput, z.ZodTypeDef, Prisma.CloudFolderWhereUniqueInput>>;
|
|
take: z.ZodOptional<z.ZodNumber>;
|
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "parentId", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "parentId", "createdAt", "updatedAt"]>, "many">]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
where?: Prisma.CloudFolderWhereInput | undefined;
|
|
include?: Prisma.CloudFolderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.CloudFolderSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
orderBy?: Prisma.CloudFolderOrderByWithRelationInput | Prisma.CloudFolderOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
|
}, {
|
|
where?: Prisma.CloudFolderWhereInput | undefined;
|
|
include?: Prisma.CloudFolderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.CloudFolderSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
orderBy?: Prisma.CloudFolderOrderByWithRelationInput | Prisma.CloudFolderOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
|
}>;
|
|
//# sourceMappingURL=findManyCloudFolder.schema.d.ts.map
|