35 lines
3.2 KiB
TypeScript
35 lines
3.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFolderScalarWhereInputObjectSchema: z.ZodType<Prisma.CloudFolderScalarWhereInput>;
|
|
export declare const CloudFolderScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFolderScalarWhereInput, z.ZodTypeDef, Prisma.CloudFolderScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFolderScalarWhereInput, z.ZodTypeDef, Prisma.CloudFolderScalarWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFolderScalarWhereInput, z.ZodTypeDef, Prisma.CloudFolderScalarWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFolderScalarWhereInput, z.ZodTypeDef, Prisma.CloudFolderScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFolderScalarWhereInput, z.ZodTypeDef, Prisma.CloudFolderScalarWhereInput>>, "many">]>>;
|
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
userId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
parentId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.CloudFolderScalarWhereInput | Prisma.CloudFolderScalarWhereInput[] | undefined;
|
|
OR?: Prisma.CloudFolderScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.CloudFolderScalarWhereInput | Prisma.CloudFolderScalarWhereInput[] | undefined;
|
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
parentId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
}, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.CloudFolderScalarWhereInput | Prisma.CloudFolderScalarWhereInput[] | undefined;
|
|
OR?: Prisma.CloudFolderScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.CloudFolderScalarWhereInput | Prisma.CloudFolderScalarWhereInput[] | undefined;
|
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
parentId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFolderScalarWhereInput.schema.d.ts.map
|