- 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.
10 lines
264 B
TypeScript
10 lines
264 B
TypeScript
/**
|
|
* Orders Domain - Providers
|
|
*/
|
|
export * from "./types.js";
|
|
export * from "./whmcs/mapper.js";
|
|
export * from "./whmcs/raw.types.js";
|
|
export * from "./salesforce/mapper.js";
|
|
export * from "./salesforce/raw.types.js";
|
|
export * from "./salesforce/field-map.js";
|