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