barsa c7230f391a Refactor global exception handling and support case management
- 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.
2025-11-26 16:36:06 +09:00

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";