- Changed worktree setup command from npm to pnpm for improved package management. - Added SupportModule to app.module.ts and router.config.ts for better support case handling. - Refactored OrderEventsService to utilize OrderUpdateEventPayload for improved type safety. - Updated InvoicesList component to use INVOICE_STATUS for status filtering and improved type definitions. - Enhanced SimActions and SimDetailsCard components to utilize SimStatus for better state management. - Refactored Subscription components to leverage new utility functions for status handling and billing cycle labels. - Improved SupportCasesView with better state management and error handling. - Updated API query keys to include support cases for better data retrieval.
20 lines
697 B
TypeScript
20 lines
697 B
TypeScript
/**
|
|
* @customer-portal/domain
|
|
* Unified domain package with Provider-Aware Structure.
|
|
*/
|
|
|
|
// Re-export domain modules
|
|
export * as Billing from "./billing/index";
|
|
export * as Subscriptions from "./subscriptions/index";
|
|
export * as Payments from "./payments/index";
|
|
export * as Sim from "./sim/index";
|
|
export * as Support from "./support/index";
|
|
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";
|