/** * Orders Domain * * Exports orders contracts + schemas. * * Provider adapters (BFF-only) live under: `@customer-portal/domain/orders/providers`. * * Types are derived from Zod schemas (Schema-First Approach) */ // Business types and constants export { type OrderCreationType, type OrderStatus, type OrderType, type OrderTypeValue, type UserMapping, // Checkout types type CheckoutItem, type CheckoutTotals, type CheckoutCart, type OrderCreateResponse, // Constants ORDER_TYPE, ORDER_STATUS, ACTIVATION_TYPE, type ActivationTypeValue, SIM_TYPE, type SimTypeValue, ACCESS_MODE, type AccessModeValue, ORDER_FULFILLMENT_ERROR_CODE, type OrderFulfillmentErrorCode, } from "./contract.js"; // Schemas (includes derived types) export * from "./schema.js"; // Validation (extended business rules) export * from "./validation.js"; // Utilities export * from "./utils.js"; export * from "./events.js"; export { buildSimOrderConfigurations, normalizeBillingCycle, normalizeOrderSelections, buildOrderDisplayItems, categorizeOrderItem, type BuildSimOrderConfigurationsOptions, type OrderStatusDescriptor, type OrderStatusInput, type OrderStatusState, type OrderStatusTone, type OrderServiceCategory, type OrderTotalsInputItem, deriveOrderStatusDescriptor, getOrderServiceCategory, calculateOrderTotals, formatScheduledDate, } from "./helpers.js"; // Provider adapters // NOTE: Provider adapters are intentionally not exported from the module root. // Import BFF-only provider adapters from: // @customer-portal/domain/orders/providers