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

10 lines
460 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 ServiceLineTransactionWhereUniqueInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionWhereUniqueInput> = makeSchema() as unknown as z.ZodType<Prisma.ServiceLineTransactionWhereUniqueInput>;
export const ServiceLineTransactionWhereUniqueInputObjectZodSchema = makeSchema();