- Added `RealtimeModule` and `RealtimeApiModule` to the BFF application for improved real-time capabilities. - Updated `CatalogCdcSubscriber` and `OrderCdcSubscriber` to utilize `RealtimeService` for publishing catalog and order updates, ensuring instant notifications across connected clients. - Enhanced `OrderEventsService` to leverage `RealtimeService` for order event subscriptions, improving reliability across multiple BFF instances. - Introduced `AccountEventsListener` in the portal layout to handle real-time account updates. - Removed stale time and garbage collection settings from several hooks to streamline data fetching processes.
21 lines
785 B
TypeScript
21 lines
785 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 Subscriptions from "./subscriptions/index.js";
|
|
export * as Payments from "./payments/index.js";
|
|
export * as Sim from "./sim/index.js";
|
|
export * as Support from "./support/index.js";
|
|
export * as Orders from "./orders/index.js";
|
|
export * as Catalog from "./catalog/index.js";
|
|
export * as Common from "./common/index.js";
|
|
export * as Toolkit from "./toolkit/index.js";
|
|
export * as Auth from "./auth/index.js";
|
|
export * as Customer from "./customer/index.js";
|
|
export * as Mappings from "./mappings/index.js";
|
|
export * as Dashboard from "./dashboard/index.js";
|
|
export * as Realtime from "./realtime/index.js";
|