2025-10-03 14:26:55 +09:00
|
|
|
/**
|
|
|
|
|
* @customer-portal/domain
|
|
|
|
|
* Unified domain package with Provider-Aware Structure.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Re-export domain modules
|
2025-10-08 18:35:05 +09:00
|
|
|
export * as Billing from "./billing/index";
|
|
|
|
|
export * as Subscriptions from "./subscriptions/index";
|
|
|
|
|
export * as Payments from "./payments/index";
|
|
|
|
|
export * as Sim from "./sim/index";
|
2025-11-18 14:06:27 +09:00
|
|
|
export * as Support from "./support/index";
|
2025-10-08 18:35:05 +09:00
|
|
|
export * as Orders from "./orders/index";
|
|
|
|
|
export * as Catalog from "./catalog/index";
|
|
|
|
|
export * as Common from "./common/index";
|
|
|
|
|
export * as Toolkit from "./toolkit/index";
|
|
|
|
|
export * as Auth from "./auth/index";
|
|
|
|
|
export * as Customer from "./customer/index";
|
|
|
|
|
export * as Mappings from "./mappings/index";
|
|
|
|
|
export * as Dashboard from "./dashboard/index";
|