2025-10-03 14:26:55 +09:00
|
|
|
/**
|
|
|
|
|
* @customer-portal/domain
|
|
|
|
|
* Unified domain package with Provider-Aware Structure.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Re-export domain modules
|
|
|
|
|
export * as Billing from "./billing";
|
|
|
|
|
export * as Subscriptions from "./subscriptions";
|
|
|
|
|
export * as Payments from "./payments";
|
|
|
|
|
export * as Sim from "./sim";
|
|
|
|
|
export * as Orders from "./orders";
|
|
|
|
|
export * as Catalog from "./catalog";
|
|
|
|
|
export * as Common from "./common";
|
|
|
|
|
export * as Toolkit from "./toolkit";
|
2025-10-03 16:37:52 +09:00
|
|
|
export * as Auth from "./auth";
|
2025-10-03 14:26:55 +09:00
|
|
|
|