/** * Public surface for the DBIS Complete Credential (cc-*) adapters. * * Covers the upstream bounded-context repos the orchestrator needs: * - cc-identity-core → identityClient (HTTP, provider-switched) * - cc-compliance-controls → controlsMatrix (embedded v0 with * optional remote JSON override) * * cc-payment-adapters / cc-audit-ledger / cc-shared-events are still * template scaffolds upstream at recon time; when those services * ship, add sibling clients here following the same pattern. */ export * from "./types"; export { createCcIdentityClient, } from "./identityClient"; export type { CcIdentityClient, CcIdentityConfig, } from "./identityClient"; export { loadControlsMatrix, findControl, } from "./controlsMatrix"; export type { CcControlsConfig, } from "./controlsMatrix";