barsa 1b944f57aa Update Configuration Files and Refactor Code Structure
- Adjusted .prettierrc to ensure consistent formatting with a newline at the end of the file.
- Reformatted eslint.config.mjs for improved readability by aligning array elements.
- Updated pnpm-lock.yaml to use single quotes for consistency across dependencies.
- Simplified worktree setup in .cursor/worktrees.json for cleaner configuration.
- Enhanced documentation in .cursor/plans to clarify architecture refactoring.
- Refactored various service files for improved readability and maintainability, including rate-limiting and auth services.
- Updated imports and exports across multiple files for consistency and clarity.
- Improved error handling and logging in service methods to enhance debugging capabilities.
- Streamlined utility functions for better performance and maintainability across the domain packages.
2025-12-25 17:30:02 +09:00

30 lines
812 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 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";