- 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.
8 lines
108 B
TypeScript
8 lines
108 B
TypeScript
/**
|
|
* Dashboard Domain
|
|
*/
|
|
|
|
export * from "./contract";
|
|
export * from "./schema";
|
|
export * from "./utils";
|