2025-10-03 15:05:46 +09:00
|
|
|
/**
|
|
|
|
|
* Orders Domain - Providers
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import * as WhmcsMapper from "./whmcs/mapper";
|
|
|
|
|
import * as SalesforceMapper from "./salesforce/mapper";
|
|
|
|
|
|
|
|
|
|
export const Whmcs = {
|
|
|
|
|
...WhmcsMapper,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const Salesforce = {
|
|
|
|
|
...SalesforceMapper,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Re-export raw types for convenience
|
|
|
|
|
export * from "./whmcs/raw.types";
|
|
|
|
|
export * from "./salesforce/raw.types";
|