- Replaced inline error throwing with NotFoundException in the BillingController to enhance error handling and provide clearer responses for missing WHMCS client mappings. - Updated multiple methods to ensure consistent error management across the controller, improving maintainability and clarity in API responses.
13 lines
389 B
TypeScript
13 lines
389 B
TypeScript
/**
|
|
* WHMCS shared provider helpers (domain-internal)
|
|
*
|
|
* Intentionally NOT exported from `@customer-portal/domain/common/providers` to avoid
|
|
* expanding the app-facing API surface. This module is used by domain mappers via
|
|
* an internal alias.
|
|
*/
|
|
|
|
export * from "./parsing.js";
|
|
export * from "./normalize.js";
|
|
export * from "./custom-fields.js";
|
|
export * from "./php-serialize.js";
|