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
498 B
TypeScript

/**
* Common Domain
*
* Shared types and utilities used across all domains.
*/
export * from "./types";
export * from "./schema";
export * from "./validation";
export * from "./errors";
// Common provider types (generic wrappers used across domains)
export * as CommonProviders from "./providers/index";
// Re-export provider types for convenience
export type { WhmcsResponse, WhmcsErrorResponse } from "./providers/whmcs";
export type { SalesforceResponse } from "./providers/salesforce";