2025-10-07 17:38:39 +09:00
|
|
|
/**
|
|
|
|
|
* Customer Domain - Providers
|
2025-12-25 17:30:02 +09:00
|
|
|
*
|
2025-10-08 16:31:42 +09:00
|
|
|
* Providers handle mapping from external systems to domain types:
|
|
|
|
|
* - Portal: Prisma (portal DB) → UserAuth
|
|
|
|
|
* - Whmcs: WHMCS API → WhmcsClient
|
2025-10-07 17:38:39 +09:00
|
|
|
*/
|
|
|
|
|
|
2025-12-26 17:27:22 +09:00
|
|
|
export * from "./portal/index.js";
|
|
|
|
|
export * from "./whmcs/index.js";
|
2025-12-26 14:53:03 +09:00
|
|
|
|
2025-12-26 17:27:22 +09:00
|
|
|
// Provider-specific integration types (BFF-only convenience re-exports)
|
2026-01-06 16:52:02 +09:00
|
|
|
export type {
|
|
|
|
|
SalesforceAccountFieldMap,
|
|
|
|
|
SalesforceAccountRecord,
|
|
|
|
|
SalesforceContactRecord,
|
|
|
|
|
} from "../contract.js";
|
2025-12-26 14:53:03 +09:00
|
|
|
export type {
|
|
|
|
|
WhmcsAddClientParams,
|
|
|
|
|
WhmcsValidateLoginParams,
|
|
|
|
|
WhmcsCreateSsoTokenParams,
|
|
|
|
|
WhmcsClientResponse,
|
|
|
|
|
WhmcsAddClientResponse,
|
|
|
|
|
WhmcsValidateLoginResponse,
|
|
|
|
|
WhmcsSsoResponse,
|
|
|
|
|
} from "./whmcs/raw.types.js";
|