mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-21 15:01:03 +00:00
30 lines
1016 B
TypeScript
30 lines
1016 B
TypeScript
// Keep the external runtime API light so Jiti callers can resolve Matrix config
|
|
// helpers without traversing the full plugin-sdk/runtime graph or bootstrapping
|
|
// matrix-js-sdk during plain runtime-api import.
|
|
export * from "./src/auth-precedence.js";
|
|
export * from "./helper-api.js";
|
|
export {
|
|
assertHttpUrlTargetsPrivateNetwork,
|
|
closeDispatcher,
|
|
createPinnedDispatcher,
|
|
resolvePinnedHostnameWithPolicy,
|
|
ssrfPolicyFromAllowPrivateNetwork,
|
|
type LookupFn,
|
|
type SsrFPolicy,
|
|
} from "openclaw/plugin-sdk/infra-runtime";
|
|
export {
|
|
setMatrixThreadBindingIdleTimeoutBySessionKey,
|
|
setMatrixThreadBindingMaxAgeBySessionKey,
|
|
} from "./thread-bindings-runtime.js";
|
|
export { writeJsonFileAtomically } from "../../src/plugin-sdk/json-store.js";
|
|
export type {
|
|
ChannelDirectoryEntry,
|
|
ChannelMessageActionContext,
|
|
OpenClawConfig,
|
|
PluginRuntime,
|
|
RuntimeLogger,
|
|
RuntimeEnv,
|
|
WizardPrompter,
|
|
} from "../../src/plugin-sdk/matrix.js";
|
|
export { formatZonedTimestamp } from "../../src/plugin-sdk/matrix.js";
|