7 lines
608 B
TypeScript
7 lines
608 B
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { BackupDestinationWhereInputObjectSchema as BackupDestinationWhereInputObjectSchema } from './objects/BackupDestinationWhereInput.schema';
|
|
|
|
export const BackupDestinationDeleteManySchema: z.ZodType<Prisma.BackupDestinationDeleteManyArgs> = z.object({ where: BackupDestinationWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.BackupDestinationDeleteManyArgs>;
|
|
|
|
export const BackupDestinationDeleteManyZodSchema = z.object({ where: BackupDestinationWhereInputObjectSchema.optional() }).strict(); |