- Updated ESLint configuration to enforce stricter import rules for the @customer-portal/domain package, promoting better import hygiene and preventing deep imports. - Refactored various files across the BFF and portal applications to comply with the new import rules, ensuring that only the appropriate modules are imported from the domain. - Cleaned up unused imports and optimized code structure for improved maintainability and clarity. - Updated documentation to reflect changes in import practices and domain structure.
31 lines
840 B
TypeScript
31 lines
840 B
TypeScript
/**
|
|
* Orders Domain - Providers
|
|
*/
|
|
|
|
import * as WhmcsMapper from "./whmcs/mapper.js";
|
|
import * as WhmcsRaw from "./whmcs/raw.types.js";
|
|
import * as SalesforceFieldMap from "./salesforce/field-map.js";
|
|
import * as SalesforceMapper from "./salesforce/mapper.js";
|
|
import * as SalesforceRaw from "./salesforce/raw.types.js";
|
|
export * from "./types.js";
|
|
|
|
export const Whmcs = {
|
|
...WhmcsMapper,
|
|
mapper: WhmcsMapper,
|
|
raw: WhmcsRaw,
|
|
};
|
|
|
|
export const Salesforce = {
|
|
...SalesforceMapper,
|
|
mapper: SalesforceMapper,
|
|
raw: SalesforceRaw,
|
|
fieldMap: SalesforceFieldMap,
|
|
};
|
|
|
|
export { WhmcsMapper, WhmcsRaw, SalesforceMapper, SalesforceRaw };
|
|
export * from "./whmcs/mapper.js";
|
|
export * from "./whmcs/raw.types.js";
|
|
export * from "./salesforce/mapper.js";
|
|
export * from "./salesforce/raw.types.js";
|
|
export * from "./salesforce/field-map.js";
|