import { z } from 'zod';
import { DEAL_TYPES } from './index';

/** Canonical deal-type zod schema. Derives from the registry tuple. */
export const dealTypeSchema = z.enum(DEAL_TYPES);
