2025-10-03 14:26:55 +09:00
|
|
|
/**
|
|
|
|
|
* Common Domain
|
2025-11-26 16:36:06 +09:00
|
|
|
*
|
2025-10-03 14:26:55 +09:00
|
|
|
* Shared types and utilities used across all domains.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-10-08 18:35:05 +09:00
|
|
|
export * from "./types";
|
|
|
|
|
export * from "./schema";
|
|
|
|
|
export * from "./validation";
|
2025-11-26 16:36:06 +09:00
|
|
|
export * from "./errors";
|
2025-10-03 14:26:55 +09:00
|
|
|
|
2025-10-08 13:46:23 +09:00
|
|
|
// Common provider types (generic wrappers used across domains)
|
2025-10-08 18:35:05 +09:00
|
|
|
export * as CommonProviders from "./providers/index";
|
2025-10-08 13:46:23 +09:00
|
|
|
|
|
|
|
|
// Re-export provider types for convenience
|
2025-10-08 18:35:05 +09:00
|
|
|
export type { WhmcsResponse, WhmcsErrorResponse } from "./providers/whmcs";
|
|
|
|
|
export type { SalesforceResponse } from "./providers/salesforce";
|
2025-10-08 13:46:23 +09:00
|
|
|
|