/** * `TagadaPayClient` — pluggable-transport client for the Hub's * in-process TagadaPay handoff (and any external HTTP caller that * still wants the lower-level surface). * * • `Tagada` — modern HTTP client. Use this for partner / * external integrations (top-level export): * `import { Tagada } from '@tagadapay/node-sdk'` * `tagada.partners.accounts.create(...)` * * • `TagadaPayClient` — pluggable-transport client. Two transports: * - `InternalTransport` for in-process Hub * calls (no HTTP hop) — used by * `src/app/services/tagadapay/client.ts`. * - `HttpTransport` for the public * `/api/tagadapay/v1/*` surface. */ export { TagadaPayClient, type ClientTransport, type TagadaPayClientConfig, } from './client.js'; export { createInternalTransport, type InternalAdapters, } from './internalTransport.js'; export { createHttpTransport, TagadaPayApiError, type HttpTransportConfig, } from './httpTransport.js'; export * from './types.js'; //# sourceMappingURL=index.d.ts.map