7 lines
581 B
TypeScript
7 lines
581 B
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { CloudFileChunkWhereInputObjectSchema as CloudFileChunkWhereInputObjectSchema } from './objects/CloudFileChunkWhereInput.schema';
|
|
|
|
export const CloudFileChunkDeleteManySchema: z.ZodType<Prisma.CloudFileChunkDeleteManyArgs> = z.object({ where: CloudFileChunkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.CloudFileChunkDeleteManyArgs>;
|
|
|
|
export const CloudFileChunkDeleteManyZodSchema = z.object({ where: CloudFileChunkWhereInputObjectSchema.optional() }).strict(); |