- 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.
26 lines
650 B
TypeScript
26 lines
650 B
TypeScript
/**
|
|
* Catalog 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";
|