- Introduced new controllers for internet eligibility and service health checks to enhance backend functionality. - Created service modules for internet, SIM, and VPN offerings, improving organization and maintainability. - Developed various components for internet and SIM configuration, including forms and plan cards, to streamline user interactions. - Implemented hooks for managing service configurations and eligibility checks, enhancing frontend data handling. - Updated utility functions for pricing and catalog operations to support new service structures and improve performance.
23 lines
891 B
TypeScript
23 lines
891 B
TypeScript
/**
|
|
* @customer-portal/domain
|
|
* Unified domain package with Provider-Aware Structure.
|
|
*/
|
|
|
|
// Re-export domain modules
|
|
export * as Billing from "./billing/index.js";
|
|
export * as Services from "./services/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 Auth from "./auth/index.js";
|
|
export * as Mappings from "./mappings/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 Realtime from "./realtime/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";
|