mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-25 17:02:46 +00:00
* fix(plugin-sdk): remove relative extension boundary escapes * Gate new plugin-sdk subpaths on host version * Add changelog entry for #51939 * Fix local staging for plugin-sdk host version gate * Raise host floor for line and googlechat plugins --------- Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
20 lines
684 B
TypeScript
20 lines
684 B
TypeScript
export * from "openclaw/plugin-sdk/matrix";
|
|
export {
|
|
assertHttpUrlTargetsPrivateNetwork,
|
|
closeDispatcher,
|
|
createPinnedDispatcher,
|
|
resolvePinnedHostnameWithPolicy,
|
|
ssrfPolicyFromAllowPrivateNetwork,
|
|
type LookupFn,
|
|
type SsrFPolicy,
|
|
} from "openclaw/plugin-sdk/infra-runtime";
|
|
export {
|
|
dispatchReplyFromConfigWithSettledDispatcher,
|
|
ensureConfiguredAcpBindingReady,
|
|
maybeCreateMatrixMigrationSnapshot,
|
|
resolveConfiguredAcpBindingRecord,
|
|
} from "openclaw/plugin-sdk/matrix-runtime-heavy";
|
|
// Keep auth-precedence available internally without re-exporting helper-api
|
|
// twice through both plugin-sdk/matrix and ../runtime-api.js.
|
|
export * from "./auth-precedence.js";
|