18 lines
411 B
TypeScript
Raw Normal View History

/**
* Services Domain
*
* Exports services contracts + schemas.
*
* Provider adapters (BFF-only) live under: `@customer-portal/domain/services/providers`.
*
* Types are derived from Zod schemas (Schema-First Approach)
*/
export { type PricingTier, type CatalogPriceInfo } from "./contract.js";
// Schemas (includes derived types)
export * from "./schema.js";
// Utilities
export * from "./utils.js";