mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 14:00:51 +00:00
* Extensions: fix oxfmt drift on main * Plugins: restore runtime barrel exports on main * Config: restore web search compatibility types * Telegram: align test harness with reply runtime * Plugin SDK: fix channel config accessor generics * CLI: remove redundant search provider casts * Tests: restore main typecheck coverage * Lobster: fix test import formatting * Extensions: route bundled seams through plugin-sdk * Tests: use extension env helper for xai * Image generation: fix main oxfmt drift * Config: restore latest main compatibility checks * Plugin SDK: align guardrail tests with lint * Telegram: type native command skill mock
26 lines
793 B
TypeScript
26 lines
793 B
TypeScript
export {
|
|
DEFAULT_ACCOUNT_ID,
|
|
PAIRING_APPROVED_MESSAGE,
|
|
buildChannelConfigSchema,
|
|
collectStatusIssuesFromLastError,
|
|
formatTrimmedAllowFromEntries,
|
|
getChatChannelMeta,
|
|
looksLikeIMessageTargetId,
|
|
normalizeIMessageMessagingTarget,
|
|
resolveChannelMediaMaxBytes,
|
|
resolveIMessageConfigAllowFrom,
|
|
resolveIMessageConfigDefaultTo,
|
|
IMessageConfigSchema,
|
|
type ChannelPlugin,
|
|
type IMessageAccountConfig,
|
|
} from "openclaw/plugin-sdk/imessage";
|
|
export {
|
|
resolveIMessageGroupRequireMention,
|
|
resolveIMessageGroupToolPolicy,
|
|
} from "./src/group-policy.js";
|
|
|
|
export { monitorIMessageProvider } from "./src/monitor.js";
|
|
export type { MonitorIMessageOpts } from "./src/monitor.js";
|
|
export { probeIMessage } from "./src/probe.js";
|
|
export { sendMessageIMessage } from "./src/send.js";
|