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
80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
export type {
|
|
ChannelMessageActionAdapter,
|
|
ChannelPlugin,
|
|
OpenClawConfig,
|
|
OpenClawPluginApi,
|
|
PluginRuntime,
|
|
TelegramAccountConfig,
|
|
TelegramActionConfig,
|
|
TelegramNetworkConfig,
|
|
} from "openclaw/plugin-sdk/telegram";
|
|
export type {
|
|
OpenClawPluginService,
|
|
OpenClawPluginServiceContext,
|
|
PluginLogger,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export type {
|
|
AcpRuntime,
|
|
AcpRuntimeCapabilities,
|
|
AcpRuntimeDoctorReport,
|
|
AcpRuntimeEnsureInput,
|
|
AcpRuntimeEvent,
|
|
AcpRuntimeHandle,
|
|
AcpRuntimeStatus,
|
|
AcpRuntimeTurnInput,
|
|
AcpRuntimeErrorCode,
|
|
AcpSessionUpdateTag,
|
|
} from "openclaw/plugin-sdk/acp-runtime";
|
|
export { AcpRuntimeError } from "openclaw/plugin-sdk/acp-runtime";
|
|
|
|
export {
|
|
buildTokenChannelStatusSummary,
|
|
clearAccountEntryFields,
|
|
DEFAULT_ACCOUNT_ID,
|
|
normalizeAccountId,
|
|
PAIRING_APPROVED_MESSAGE,
|
|
parseTelegramTopicConversation,
|
|
projectCredentialSnapshotFields,
|
|
resolveConfiguredFromCredentialStatuses,
|
|
resolveTelegramPollVisibility,
|
|
} from "openclaw/plugin-sdk/telegram";
|
|
export {
|
|
buildChannelConfigSchema,
|
|
getChatChannelMeta,
|
|
jsonResult,
|
|
readNumberParam,
|
|
readReactionParams,
|
|
readStringArrayParam,
|
|
readStringOrNumberParam,
|
|
readStringParam,
|
|
resolvePollMaxSelections,
|
|
TelegramConfigSchema,
|
|
} from "openclaw/plugin-sdk/telegram-core";
|
|
export type { TelegramProbe } from "./src/probe.js";
|
|
export { auditTelegramGroupMembership, collectTelegramUnmentionedGroupIds } from "./src/audit.js";
|
|
export { telegramMessageActions } from "./src/channel-actions.js";
|
|
export { monitorTelegramProvider } from "./src/monitor.js";
|
|
export { probeTelegram } from "./src/probe.js";
|
|
export {
|
|
createForumTopicTelegram,
|
|
deleteMessageTelegram,
|
|
editForumTopicTelegram,
|
|
editMessageReplyMarkupTelegram,
|
|
editMessageTelegram,
|
|
pinMessageTelegram,
|
|
reactMessageTelegram,
|
|
renameForumTopicTelegram,
|
|
sendMessageTelegram,
|
|
sendPollTelegram,
|
|
sendStickerTelegram,
|
|
sendTypingTelegram,
|
|
unpinMessageTelegram,
|
|
} from "./src/send.js";
|
|
export {
|
|
createTelegramThreadBindingManager,
|
|
getTelegramThreadBindingManager,
|
|
setTelegramThreadBindingIdleTimeoutBySessionKey,
|
|
setTelegramThreadBindingMaxAgeBySessionKey,
|
|
} from "./src/thread-bindings.js";
|
|
export { resolveTelegramToken } from "./src/token.js";
|