Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/CloudFolderWhereInput.schema.d.ts
2026-04-04 22:13:55 -04:00

47 lines
4.4 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFolderWhereInputObjectSchema: z.ZodType<Prisma.CloudFolderWhereInput>;
export declare const CloudFolderWhereInputObjectZodSchema: z.ZodObject<{
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFolderWhereInput, z.ZodTypeDef, Prisma.CloudFolderWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFolderWhereInput, z.ZodTypeDef, Prisma.CloudFolderWhereInput>>, "many">]>>;
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFolderWhereInput, z.ZodTypeDef, Prisma.CloudFolderWhereInput>>, "many">>;
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFolderWhereInput, z.ZodTypeDef, Prisma.CloudFolderWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFolderWhereInput, z.ZodTypeDef, Prisma.CloudFolderWhereInput>>, "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]>>;
parent: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFolderNullableScalarRelationFilter, z.ZodTypeDef, Prisma.CloudFolderNullableScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.CloudFolderWhereInput, z.ZodTypeDef, Prisma.CloudFolderWhereInput>>]>>;
children: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderListRelationFilter, z.ZodTypeDef, Prisma.CloudFolderListRelationFilter>>>;
user: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserScalarRelationFilter, z.ZodTypeDef, Prisma.UserScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>]>>;
files: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileListRelationFilter, z.ZodTypeDef, Prisma.CloudFileListRelationFilter>>>;
}, "strict", z.ZodTypeAny, {
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
userId?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.CloudFolderWhereInput | Prisma.CloudFolderWhereInput[] | undefined;
OR?: Prisma.CloudFolderWhereInput[] | undefined;
NOT?: Prisma.CloudFolderWhereInput | Prisma.CloudFolderWhereInput[] | undefined;
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
name?: string | Prisma.StringFilter<never> | undefined;
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
children?: Prisma.CloudFolderListRelationFilter | undefined;
files?: Prisma.CloudFileListRelationFilter | undefined;
parentId?: number | Prisma.IntNullableFilter<never> | null | undefined;
parent?: Prisma.CloudFolderNullableScalarRelationFilter | Prisma.CloudFolderWhereInput | undefined;
}, {
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
userId?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.CloudFolderWhereInput | Prisma.CloudFolderWhereInput[] | undefined;
OR?: Prisma.CloudFolderWhereInput[] | undefined;
NOT?: Prisma.CloudFolderWhereInput | Prisma.CloudFolderWhereInput[] | undefined;
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | undefined;
name?: string | Prisma.StringFilter<never> | undefined;
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
children?: Prisma.CloudFolderListRelationFilter | undefined;
files?: Prisma.CloudFileListRelationFilter | undefined;
parentId?: number | Prisma.IntNullableFilter<never> | null | undefined;
parent?: Prisma.CloudFolderNullableScalarRelationFilter | Prisma.CloudFolderWhereInput | undefined;
}>;
//# sourceMappingURL=CloudFolderWhereInput.schema.d.ts.map