- Removed the domain mappings module, consolidating related types and schemas into the id-mappings feature. - Updated import paths across the BFF to reflect the new structure, ensuring compliance with import hygiene rules. - Cleaned up unused files and optimized the codebase for better maintainability and clarity.
25 lines
994 B
TypeScript
25 lines
994 B
TypeScript
/**
|
|
* @customer-portal/domain
|
|
* Unified domain package with Provider-Aware Structure.
|
|
*
|
|
* NOTE: Import from specific modules (e.g., @customer-portal/domain/billing)
|
|
* rather than from this root index for better tree-shaking.
|
|
*/
|
|
|
|
// Re-export domain modules
|
|
export * as Auth from "./auth/index.js";
|
|
export * as Billing from "./billing/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 Notifications from "./notifications/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 Services from "./services/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";
|