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

21 lines
2.1 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema';
import { StringWithAggregatesFilterObjectSchema as StringWithAggregatesFilterObjectSchema } from './StringWithAggregatesFilter.schema';
import { IntNullableWithAggregatesFilterObjectSchema as IntNullableWithAggregatesFilterObjectSchema } from './IntNullableWithAggregatesFilter.schema';
import { DateTimeWithAggregatesFilterObjectSchema as DateTimeWithAggregatesFilterObjectSchema } from './DateTimeWithAggregatesFilter.schema'
const cloudfolderscalarwherewithaggregatesinputSchema = z.object({
AND: z.union([z.lazy(() => CloudFolderScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => CloudFolderScalarWhereWithAggregatesInputObjectSchema).array()]).optional(),
OR: z.lazy(() => CloudFolderScalarWhereWithAggregatesInputObjectSchema).array().optional(),
NOT: z.union([z.lazy(() => CloudFolderScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => CloudFolderScalarWhereWithAggregatesInputObjectSchema).array()]).optional(),
id: z.union([z.lazy(() => IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(),
userId: z.union([z.lazy(() => IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(),
name: z.union([z.lazy(() => StringWithAggregatesFilterObjectSchema), z.string()]).optional(),
parentId: z.union([z.lazy(() => IntNullableWithAggregatesFilterObjectSchema), z.number().int()]).optional().nullable(),
createdAt: z.union([z.lazy(() => DateTimeWithAggregatesFilterObjectSchema), z.coerce.date()]).optional(),
updatedAt: z.union([z.lazy(() => DateTimeWithAggregatesFilterObjectSchema), z.coerce.date()]).optional()
}).strict();
export const CloudFolderScalarWhereWithAggregatesInputObjectSchema: z.ZodType<Prisma.CloudFolderScalarWhereWithAggregatesInput> = cloudfolderscalarwherewithaggregatesinputSchema as unknown as z.ZodType<Prisma.CloudFolderScalarWhereWithAggregatesInput>;
export const CloudFolderScalarWhereWithAggregatesInputObjectZodSchema = cloudfolderscalarwherewithaggregatesinputSchema;