2025-10-03 14:26:55 +09:00
|
|
|
/**
|
2025-12-25 13:59:28 +09:00
|
|
|
* Services Domain
|
2025-12-23 17:53:08 +09:00
|
|
|
*
|
2025-12-26 17:27:22 +09:00
|
|
|
* Exports services contracts + schemas.
|
|
|
|
|
*
|
|
|
|
|
* Provider adapters (BFF-only) live under: `@customer-portal/domain/services/providers`.
|
2025-12-23 17:53:08 +09:00
|
|
|
*
|
2025-10-08 10:33:33 +09:00
|
|
|
* Types are derived from Zod schemas (Schema-First Approach)
|
2025-10-03 14:26:55 +09:00
|
|
|
*/
|
|
|
|
|
|
2025-12-26 14:53:03 +09:00
|
|
|
export { type PricingTier, type CatalogPriceInfo } from "./contract.js";
|
2025-10-03 14:26:55 +09:00
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
// Schemas (includes derived types)
|
2025-12-10 15:22:10 +09:00
|
|
|
export * from "./schema.js";
|
2025-10-03 14:26:55 +09:00
|
|
|
|
2025-10-20 13:53:35 +09:00
|
|
|
// Utilities
|
2025-12-10 15:22:10 +09:00
|
|
|
export * from "./utils.js";
|