2025-10-03 14:26:55 +09:00
|
|
|
/**
|
|
|
|
|
* @customer-portal/domain
|
|
|
|
|
* Unified domain package with Provider-Aware Structure.
|
2025-12-26 17:27:22 +09:00
|
|
|
*
|
|
|
|
|
* NOTE: Import from specific modules (e.g., @customer-portal/domain/billing)
|
|
|
|
|
* rather than from this root index for better tree-shaking.
|
2025-10-03 14:26:55 +09:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Re-export domain modules
|
2025-12-26 17:27:22 +09:00
|
|
|
export * as Auth from "./auth/index.js";
|
2025-12-10 15:22:10 +09:00
|
|
|
export * as Billing from "./billing/index.js";
|
2025-12-17 14:07:22 +09:00
|
|
|
export * as Checkout from "./checkout/index.js";
|
2025-12-10 15:22:10 +09:00
|
|
|
export * as Common from "./common/index.js";
|
|
|
|
|
export * as Customer from "./customer/index.js";
|
|
|
|
|
export * as Dashboard from "./dashboard/index.js";
|
2025-12-26 17:27:22 +09:00
|
|
|
export * as Notifications from "./notifications/index.js";
|
2025-12-22 18:59:38 +09:00
|
|
|
export * as Opportunity from "./opportunity/index.js";
|
2025-12-17 14:07:22 +09:00
|
|
|
export * as Orders from "./orders/index.js";
|
|
|
|
|
export * as Payments from "./payments/index.js";
|
2025-12-26 17:27:22 +09:00
|
|
|
export * as Services from "./services/index.js";
|
2025-12-17 14:07:22 +09:00
|
|
|
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";
|