2025-10-03 14:26:55 +09:00
|
|
|
/**
|
|
|
|
|
* Common Domain
|
|
|
|
|
*
|
|
|
|
|
* Shared types and utilities used across all domains.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-10-08 18:14:12 +09:00
|
|
|
export * from "./types.js";
|
|
|
|
|
export * from "./schema.js";
|
|
|
|
|
export * from "./validation.js";
|
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:14:12 +09:00
|
|
|
export * as CommonProviders from "./providers/index.js";
|
2025-10-08 13:46:23 +09:00
|
|
|
|
|
|
|
|
// Re-export provider types for convenience
|
2025-10-08 18:14:12 +09:00
|
|
|
export type { WhmcsResponse, WhmcsErrorResponse } from "./providers/whmcs.js";
|
|
|
|
|
export type { SalesforceResponse } from "./providers/salesforce.js";
|
2025-10-08 13:46:23 +09:00
|
|
|
|