mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 22:53:57 +00:00
* fix(telegram): retry plugin callback submit text * fix(telegram): harden plugin callback submit text * fix(telegram): preserve plugin callback submit semantics * fix(telegram): release callback dedupe after submit failure * fix(telegram): settle skipped plugin callback submissions * style(telegram): format public API exports * chore: leave changelog to release generation --------- Co-authored-by: Peter Steinberger <steipete@gmail.com>
20 lines
733 B
TypeScript
20 lines
733 B
TypeScript
// Telegram API module exposes the plugin public contract.
|
|
export {
|
|
TELEGRAM_COMMAND_NAME_PATTERN,
|
|
normalizeTelegramCommandDescription,
|
|
normalizeTelegramCommandName,
|
|
resolveTelegramCustomCommands,
|
|
} from "./src/command-config.js";
|
|
export { parseTelegramTopicConversation } from "./src/topic-conversation.js";
|
|
export { singleAccountKeysToMove } from "./src/setup-contract.js";
|
|
export { mergeTelegramAccountConfig } from "./src/accounts.js";
|
|
export {
|
|
buildCommandsPaginationKeyboard,
|
|
buildTelegramModelsProviderChannelData,
|
|
} from "./src/command-ui.js";
|
|
export type {
|
|
TelegramInteractiveHandlerContext,
|
|
TelegramInteractiveHandlerRegistration,
|
|
TelegramInteractiveHandlerResult,
|
|
} from "./src/interactive-dispatch.js";
|