- Removed the domain mappings module, consolidating related types and schemas into the id-mappings feature. - Updated import paths across the BFF to reflect the new structure, ensuring compliance with import hygiene rules. - Cleaned up unused files and optimized the codebase for better maintainability and clarity.
18 lines
504 B
TypeScript
18 lines
504 B
TypeScript
/**
|
|
* WHMCS Provider
|
|
*
|
|
* Handles mapping from WHMCS API to domain types.
|
|
* Exports transformation functions and raw API types (request/response).
|
|
*/
|
|
|
|
export * from "./mapper.js";
|
|
export * from "./raw.types.js";
|
|
export {
|
|
getCustomFieldValue,
|
|
getCustomFieldsMap,
|
|
serializeWhmcsKeyValueMap,
|
|
} from "../../../common/providers/whmcs-utils/index.js";
|
|
|
|
// Re-export domain types for provider namespace convenience
|
|
export type { WhmcsClient, EmailPreferences, SubUser, Stats } from "../../schema.js";
|