- Replaced multiple global exception filters with a unified exception filter to streamline error handling across the application. - Removed deprecated AuthErrorFilter and GlobalExceptionFilter to reduce redundancy. - Enhanced SupportController to include new endpoints for listing, retrieving, and creating support cases, improving the support case management functionality. - Integrated SalesforceCaseService for better interaction with Salesforce data in support case operations. - Updated support case schemas to align with new requirements and ensure data consistency.
19 lines
401 B
TypeScript
19 lines
401 B
TypeScript
/**
|
|
* Support Domain - Providers
|
|
*/
|
|
|
|
import * as SalesforceMapper from "./salesforce/mapper";
|
|
import * as SalesforceRaw from "./salesforce/raw.types";
|
|
|
|
export const Salesforce = {
|
|
...SalesforceMapper,
|
|
...SalesforceRaw,
|
|
mapper: SalesforceMapper,
|
|
raw: SalesforceRaw,
|
|
};
|
|
|
|
export { SalesforceMapper, SalesforceRaw };
|
|
export * from "./salesforce/mapper";
|
|
export * from "./salesforce/raw.types";
|
|
|