barsa 1dc8fbf36d Refactor user management and validation integration
- Replaced UsersService with UsersFacade across various modules for improved abstraction and consistency.
- Updated validation imports to utilize the new @customer-portal/validation package, enhancing modularity.
- Removed deprecated validation files and streamlined user-related logic in controllers and services.
- Enhanced order processing by integrating field mappings for Salesforce orders, improving maintainability.
- Improved error handling and response structures in authentication and user management workflows.
2025-11-04 13:28:36 +09:00

35 lines
791 B
TypeScript

/**
* Orders Domain - Providers
*/
import * as WhmcsMapper from "./whmcs/mapper";
import * as WhmcsRaw from "./whmcs/raw.types";
import * as SalesforceFieldMap from "./salesforce/field-map";
import * as SalesforceMapper from "./salesforce/mapper";
import * as SalesforceRaw from "./salesforce/raw.types";
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";
export * from "./whmcs/raw.types";
export * from "./salesforce/mapper";
export * from "./salesforce/raw.types";
export * from "./salesforce/field-map";