Files
openclaw/src/plugin-sdk/provider-catalog-shared.ts
2026-03-27 23:55:10 +00:00

13 lines
436 B
TypeScript

// Shared provider catalog helpers for provider plugins.
//
// Keep provider-owned exports out of this subpath so plugin loaders can import it
// without recursing through provider-specific facades.
export type { ProviderCatalogContext, ProviderCatalogResult } from "../plugins/types.js";
export {
buildPairedProviderApiKeyCatalog,
buildSingleProviderApiKeyCatalog,
findCatalogTemplate,
} from "../plugins/provider-catalog.js";