2025-10-03 15:05:46 +09:00
|
|
|
/**
|
|
|
|
|
* Billing Domain - Providers
|
|
|
|
|
*/
|
|
|
|
|
|
2025-12-10 15:22:10 +09:00
|
|
|
import * as WhmcsMapper from "./whmcs/mapper.js";
|
|
|
|
|
import * as WhmcsRaw from "./whmcs/raw.types.js";
|
2025-10-03 15:05:46 +09:00
|
|
|
|
|
|
|
|
export const Whmcs = {
|
|
|
|
|
...WhmcsMapper,
|
2025-10-03 17:33:39 +09:00
|
|
|
mapper: WhmcsMapper,
|
|
|
|
|
raw: WhmcsRaw,
|
2025-10-03 15:05:46 +09:00
|
|
|
};
|
|
|
|
|
|
2025-10-03 17:33:39 +09:00
|
|
|
export { WhmcsMapper, WhmcsRaw };
|
2025-12-10 15:22:10 +09:00
|
|
|
export * from "./whmcs/mapper.js";
|
|
|
|
|
export * from "./whmcs/raw.types.js";
|