mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 23:51:11 +00:00
* chore(plugins): gate deprecation hygiene in CI and purge internal deprecated usage * fix(agents): migrate auth-profiles oauth import to OAuthProviderId * fix(whatsapp): use durability param in delivery-recovery test * chore(scripts): declare shouldRunDeprecationHygieneChecks in check-changed types * test(plugins): update runtime-api guard for ssrf policy rename
17 lines
723 B
TypeScript
17 lines
723 B
TypeScript
// Private runtime barrel for the bundled Tlon extension.
|
|
// Keep this barrel thin and aligned with the local extension surface.
|
|
|
|
export type { ReplyPayload } from "openclaw/plugin-sdk/reply-runtime";
|
|
export type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";
|
|
export type { RuntimeEnv } from "openclaw/plugin-sdk/runtime";
|
|
export { createDedupeCache } from "openclaw/plugin-sdk/core";
|
|
export { createLoggerBackedRuntime } from "./src/logger-runtime.js";
|
|
export {
|
|
fetchWithSsrFGuard,
|
|
isBlockedHostnameOrIp,
|
|
ssrfPolicyFromDangerouslyAllowPrivateNetwork,
|
|
type LookupFn,
|
|
type SsrFPolicy,
|
|
} from "openclaw/plugin-sdk/ssrf-runtime";
|
|
export { SsrFBlockedError } from "openclaw/plugin-sdk/ssrf-runtime";
|