- 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.
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
/**
|
|
* Billing Module Exports
|
|
*/
|
|
|
|
export * from "./billing.module.js";
|
|
export * from "./billing.controller.js";
|
|
export * from "./services/invoice-retrieval.service.js";
|