mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-24 18:51:16 +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
453 B
TypeScript
17 lines
453 B
TypeScript
// Tlon API module exposes the plugin public contract.
|
|
export {
|
|
createDedupeCache,
|
|
createLoggerBackedRuntime,
|
|
fetchWithSsrFGuard,
|
|
isBlockedHostnameOrIp,
|
|
type LookupFn,
|
|
type OpenClawConfig,
|
|
type ReplyPayload,
|
|
type RuntimeEnv,
|
|
SsrFBlockedError,
|
|
type SsrFPolicy,
|
|
ssrfPolicyFromDangerouslyAllowPrivateNetwork,
|
|
} from "./runtime-api.js";
|
|
export { tlonPlugin } from "./src/channel.js";
|
|
export { setTlonRuntime } from "./src/runtime.js";
|