10 lines
440 B
TypeScript
10 lines
440 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
|
|
|
|
const makeSchema = () => z.object({
|
|
id: z.number().int().optional()
|
|
}).strict();
|
|
export const BackupDestinationWhereUniqueInputObjectSchema: z.ZodType<Prisma.BackupDestinationWhereUniqueInput> = makeSchema() as unknown as z.ZodType<Prisma.BackupDestinationWhereUniqueInput>;
|
|
export const BackupDestinationWhereUniqueInputObjectZodSchema = makeSchema();
|