barsa 76361d6422 Implement Salesforce Integration for Services and Cache Management
- Introduced ServicesCdcSubscriber for handling Salesforce Change Data Capture events, enabling real-time updates for product and account eligibility changes.
- Developed utility functions for building SOQL queries related to services, enhancing data retrieval capabilities.
- Created base service classes for internet, SIM, and VPN offerings, improving code organization and maintainability.
- Implemented ServicesCacheService for efficient caching and invalidation of service data, leveraging CDC for real-time updates.
- Enhanced existing service components to utilize new caching mechanisms and ensure data consistency across the application.
2025-12-25 13:59:28 +09:00

26 lines
651 B
TypeScript

/**
* Services Domain - Providers
*/
import * as SalesforceMapper from "./salesforce/mapper.js";
import * as SalesforceRaw from "./salesforce/raw.types.js";
import * as WhmcsMapper from "./whmcs/mapper.js";
import * as WhmcsRaw from "./whmcs/raw.types.js";
export const Salesforce = {
...SalesforceMapper,
mapper: SalesforceMapper,
raw: SalesforceRaw,
};
export const Whmcs = {
...WhmcsMapper,
raw: WhmcsRaw,
};
export { SalesforceMapper, SalesforceRaw, WhmcsMapper, WhmcsRaw };
export * from "./salesforce/mapper.js";
export * from "./salesforce/raw.types.js";
export * from "./whmcs/mapper.js";
export * from "./whmcs/raw.types.js";