25 lines
994 B
TypeScript
Raw Normal View History

/**
* @customer-portal/domain
* Unified domain package with Provider-Aware Structure.
*
* NOTE: Import from specific modules (e.g., @customer-portal/domain/billing)
* rather than from this root index for better tree-shaking.
*/
// Re-export domain modules
export * as Auth from "./auth/index.js";
export * as Billing from "./billing/index.js";
export * as Checkout from "./checkout/index.js";
export * as Common from "./common/index.js";
export * as Customer from "./customer/index.js";
export * as Dashboard from "./dashboard/index.js";
export * as Notifications from "./notifications/index.js";
export * as Opportunity from "./opportunity/index.js";
export * as Orders from "./orders/index.js";
export * as Payments from "./payments/index.js";
export * as Services from "./services/index.js";
export * as Sim from "./sim/index.js";
export * as Subscriptions from "./subscriptions/index.js";
export * as Support from "./support/index.js";
export * as Toolkit from "./toolkit/index.js";