22 lines
544 B
TypeScript
Raw Normal View History

/**
* Customer Domain - Providers
*
* Providers handle mapping from external systems to domain types:
* - Portal: Prisma (portal DB) UserAuth
* - Whmcs: WHMCS API WhmcsClient
*/
export * from "./portal/index.js";
export * from "./whmcs/index.js";
// Provider-specific WHMCS integration types (BFF-only)
export type {
WhmcsAddClientParams,
WhmcsValidateLoginParams,
WhmcsCreateSsoTokenParams,
WhmcsClientResponse,
WhmcsAddClientResponse,
WhmcsValidateLoginResponse,
WhmcsSsoResponse,
} from "./whmcs/raw.types.js";