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

13 lines
1.1 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { CloudFileScalarWhereInputObjectSchema as CloudFileScalarWhereInputObjectSchema } from './CloudFileScalarWhereInput.schema';
import { CloudFileUpdateManyMutationInputObjectSchema as CloudFileUpdateManyMutationInputObjectSchema } from './CloudFileUpdateManyMutationInput.schema';
import { CloudFileUncheckedUpdateManyWithoutFolderInputObjectSchema as CloudFileUncheckedUpdateManyWithoutFolderInputObjectSchema } from './CloudFileUncheckedUpdateManyWithoutFolderInput.schema'
const makeSchema = () => z.object({
where: z.lazy(() => CloudFileScalarWhereInputObjectSchema),
data: z.union([z.lazy(() => CloudFileUpdateManyMutationInputObjectSchema), z.lazy(() => CloudFileUncheckedUpdateManyWithoutFolderInputObjectSchema)])
}).strict();
export const CloudFileUpdateManyWithWhereWithoutFolderInputObjectSchema: z.ZodType<Prisma.CloudFileUpdateManyWithWhereWithoutFolderInput> = makeSchema() as unknown as z.ZodType<Prisma.CloudFileUpdateManyWithWhereWithoutFolderInput>;
export const CloudFileUpdateManyWithWhereWithoutFolderInputObjectZodSchema = makeSchema();