2025-10-08 16:31:42 +09:00
|
|
|
/**
|
|
|
|
|
* WHMCS Provider
|
2025-12-15 17:29:28 +09:00
|
|
|
*
|
2025-10-08 16:31:42 +09:00
|
|
|
* Handles mapping from WHMCS API to domain types.
|
|
|
|
|
* Exports transformation functions and raw API types (request/response).
|
|
|
|
|
*/
|
2025-10-07 17:38:39 +09:00
|
|
|
|
2025-12-10 15:22:10 +09:00
|
|
|
export * from "./mapper.js";
|
|
|
|
|
export * from "./raw.types.js";
|
2025-12-15 17:29:28 +09:00
|
|
|
export {
|
|
|
|
|
getCustomFieldValue,
|
|
|
|
|
getCustomFieldsMap,
|
|
|
|
|
serializeWhmcsKeyValueMap,
|
2025-12-26 17:27:22 +09:00
|
|
|
} from "../../../common/providers/whmcs-utils/index.js";
|
2025-10-08 16:31:42 +09:00
|
|
|
|
|
|
|
|
// Re-export domain types for provider namespace convenience
|
2025-12-10 15:22:10 +09:00
|
|
|
export type { WhmcsClient, EmailPreferences, SubUser, Stats } from "../../schema.js";
|