import { i as OpenClawConfig } from "./types.openclaw-fYj4Ft14.js"; import { $n as PluginRuntime } from "./types-C_nat0ED.js"; import { n as RuntimeEnv } from "./runtime-Bxifh4bY.js"; import { n as PollInput } from "./polls-CfHkU59X.js"; import { r as ChannelAccountSnapshot, v as ChannelMessageActionAdapter } from "./types.core-BdBUJhNx.js"; import { n as ChannelRuntimeSurface } from "./channel-runtime-surface.types-CouuvmKm.js"; import { t as RetryConfig } from "./retry-iCQJ-qpp.js"; import { a as TelegramBotInfo, r as probeTelegram } from "./probe-D5oaZHHj.js"; import { n as collectTelegramUnmentionedGroupIds, t as auditTelegramGroupMembership } from "./audit-D5xr4v97.js"; import { n as resolveTelegramToken } from "./token-CCCD8Kgg.js"; import { Bot } from "grammy"; //#region extensions/telegram/src/button-types.d.ts type TelegramButtonStyle = "danger" | "success" | "primary"; type TelegramInlineButton = { text: string; callback_data?: string; url?: string; web_app?: { url: string; }; style?: TelegramButtonStyle; }; type TelegramInlineButtons = ReadonlyArray>; //#endregion //#region extensions/telegram/src/send.d.ts type TelegramApi = Bot["api"]; type TelegramApiOverride = Partial; type TelegramCreateForumTopicParams = NonNullable[2]>; type TelegramSendOpts = { cfg: OpenClawConfig; token?: string; accountId?: string; verbose?: boolean; mediaUrl?: string; mediaLocalRoots?: readonly string[]; mediaReadFile?: (filePath: string) => Promise; gatewayClientScopes?: readonly string[]; maxBytes?: number; api?: TelegramApiOverride; retry?: RetryConfig; textMode?: "markdown" | "html"; plainText?: string; /** Send audio as voice message instead of audio file. Defaults to false. */ asVoice?: boolean; /** Send video as video note instead of regular video. Defaults to false. */ asVideoNote?: boolean; /** Send message silently (no notification). Defaults to false. */ silent?: boolean; /** Message ID to reply to (for threading) */ replyToMessageId?: number; /** Quote text for Telegram reply_parameters. */ quoteText?: string; /** Forum topic thread ID (for forum supergroups) */ messageThreadId?: number; /** Inline keyboard buttons (reply markup). */ buttons?: TelegramInlineButtons; /** Send image as document to avoid Telegram compression. Defaults to false. */ forceDocument?: boolean; }; type TelegramSendResult = { messageId: string; chatId: string; }; type TelegramReactionOpts = { cfg: OpenClawConfig; token?: string; accountId?: string; api?: TelegramApiOverride; remove?: boolean; verbose?: boolean; retry?: RetryConfig; gatewayClientScopes?: readonly string[]; }; type TelegramTypingOpts = { cfg: OpenClawConfig; token?: string; accountId?: string; verbose?: boolean; api?: TelegramApiOverride; retry?: RetryConfig; messageThreadId?: number; }; declare function sendMessageTelegram(to: string, text: string, opts: TelegramSendOpts): Promise; declare function sendTypingTelegram(to: string, opts: TelegramTypingOpts): Promise<{ ok: true; }>; declare function reactMessageTelegram(chatIdInput: string | number, messageIdInput: string | number, emoji: string, opts: TelegramReactionOpts): Promise<{ ok: true; } | { ok: false; warning: string; }>; type TelegramDeleteOpts = { cfg: OpenClawConfig; token?: string; accountId?: string; notify?: boolean; verbose?: boolean; api?: TelegramApiOverride; retry?: RetryConfig; gatewayClientScopes?: readonly string[]; }; declare function deleteMessageTelegram(chatIdInput: string | number, messageIdInput: string | number, opts: TelegramDeleteOpts): Promise<{ ok: true; } | { ok: false; warning: string; }>; declare function pinMessageTelegram(chatIdInput: string | number, messageIdInput: string | number, opts: TelegramDeleteOpts): Promise<{ ok: true; messageId: string; chatId: string; }>; declare function unpinMessageTelegram(chatIdInput: string | number, messageIdInput: string | number | undefined, opts: TelegramDeleteOpts): Promise<{ ok: true; chatId: string; messageId?: string; }>; type TelegramEditForumTopicOpts = TelegramDeleteOpts & { name?: string; iconCustomEmojiId?: string; }; declare function editForumTopicTelegram(chatIdInput: string | number, messageThreadIdInput: string | number, opts: TelegramEditForumTopicOpts): Promise<{ ok: true; chatId: string; messageThreadId: number; name?: string; iconCustomEmojiId?: string; }>; declare function renameForumTopicTelegram(chatIdInput: string | number, messageThreadIdInput: string | number, name: string, opts: TelegramDeleteOpts): Promise<{ ok: true; chatId: string; messageThreadId: number; name: string; }>; type TelegramEditOpts = { token?: string; accountId?: string; verbose?: boolean; api?: TelegramApiOverride; retry?: RetryConfig; gatewayClientScopes?: readonly string[]; textMode?: "markdown" | "html"; /** Controls whether link previews are shown in the edited message. */ linkPreview?: boolean; /** Inline keyboard buttons (reply markup). Pass empty array to remove buttons. */ buttons?: TelegramInlineButtons; /** Use Telegram's media-caption edit endpoint, or fall back to it when text edits target media. */ editMode?: "text" | "caption" | "auto"; /** Resolved runtime config from the command or gateway boundary. */ cfg: OpenClawConfig; }; type TelegramEditReplyMarkupOpts = { token?: string; accountId?: string; verbose?: boolean; api?: TelegramApiOverride; retry?: RetryConfig; gatewayClientScopes?: readonly string[]; /** Inline keyboard buttons (reply markup). Pass empty array to remove buttons. */ buttons?: TelegramInlineButtons; /** Resolved runtime config from the command or gateway boundary. */ cfg: OpenClawConfig; }; declare function editMessageReplyMarkupTelegram(chatIdInput: string | number, messageIdInput: string | number, buttons: TelegramInlineButtons, opts: TelegramEditReplyMarkupOpts): Promise<{ ok: true; messageId: string; chatId: string; }>; declare function editMessageTelegram(chatIdInput: string | number, messageIdInput: string | number, text: string, opts: TelegramEditOpts): Promise<{ ok: true; messageId: string; chatId: string; }>; type TelegramStickerOpts = { cfg: OpenClawConfig; token?: string; accountId?: string; verbose?: boolean; api?: TelegramApiOverride; retry?: RetryConfig; gatewayClientScopes?: readonly string[]; /** Message ID to reply to (for threading) */ replyToMessageId?: number; /** Forum topic thread ID (for forum supergroups) */ messageThreadId?: number; }; /** * Send a sticker to a Telegram chat by file_id. * @param to - Chat ID or username (e.g., "123456789" or "@username") * @param fileId - Telegram file_id of the sticker to send * @param opts - Optional configuration */ declare function sendStickerTelegram(to: string, fileId: string, opts: TelegramStickerOpts): Promise; type TelegramPollOpts = { cfg: OpenClawConfig; token?: string; accountId?: string; verbose?: boolean; api?: TelegramApiOverride; retry?: RetryConfig; gatewayClientScopes?: readonly string[]; /** Message ID to reply to (for threading) */ replyToMessageId?: number; /** Forum topic thread ID (for forum supergroups) */ messageThreadId?: number; /** Send message silently (no notification). Defaults to false. */ silent?: boolean; /** Whether votes are anonymous. Defaults to true (Telegram default). */ isAnonymous?: boolean; }; /** * Send a poll to a Telegram chat. * @param to - Chat ID or username (e.g., "123456789" or "@username") * @param poll - Poll input with question, options, maxSelections, and optional durationHours * @param opts - Optional configuration */ declare function sendPollTelegram(to: string, poll: PollInput, opts: TelegramPollOpts): Promise<{ messageId: string; chatId: string; pollId?: string; }>; type TelegramCreateForumTopicOpts = { cfg: OpenClawConfig; token?: string; accountId?: string; api?: TelegramApiOverride; verbose?: boolean; retry?: RetryConfig; gatewayClientScopes?: readonly string[]; /** Icon color for the topic (must be one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, 0xFB6F5F). */ iconColor?: TelegramCreateForumTopicParams["icon_color"]; /** Custom emoji ID for the topic icon. */ iconCustomEmojiId?: string; }; type TelegramCreateForumTopicResult = { topicId: number; name: string; chatId: string; }; /** * Create a forum topic in a Telegram supergroup. * Requires the bot to have `can_manage_topics` permission. * * @param chatId - Supergroup chat ID * @param name - Topic name (1-128 characters) * @param opts - Optional configuration */ declare function createForumTopicTelegram(chatId: string, name: string, opts: TelegramCreateForumTopicOpts): Promise; //#endregion //#region extensions/telegram/src/monitor.types.d.ts type MonitorTelegramOpts = { token?: string; accountId?: string; config?: OpenClawConfig; runtime?: RuntimeEnv; channelRuntime?: ChannelRuntimeSurface; abortSignal?: AbortSignal; useWebhook?: boolean; webhookPath?: string; webhookPort?: number; webhookSecret?: string; webhookHost?: string; proxyFetch?: typeof fetch; webhookUrl?: string; webhookCertPath?: string; botInfo?: TelegramBotInfo; setStatus?: (patch: Omit) => void; isolatedIngress?: { enabled?: boolean; }; }; type TelegramMonitorFn = (opts?: MonitorTelegramOpts) => Promise; //#endregion //#region extensions/telegram/src/runtime.types.d.ts type TelegramProbeFn = typeof probeTelegram; type TelegramAuditCollectFn = typeof collectTelegramUnmentionedGroupIds; type TelegramAuditMembershipFn = typeof auditTelegramGroupMembership; type TelegramSendFn = typeof sendMessageTelegram; type TelegramResolveTokenFn = typeof resolveTelegramToken; type BasePluginRuntimeChannel = PluginRuntime extends { channel: infer T; } ? T : never; type TelegramChannelRuntime = { probeTelegram?: TelegramProbeFn; collectTelegramUnmentionedGroupIds?: TelegramAuditCollectFn; auditTelegramGroupMembership?: TelegramAuditMembershipFn; monitorTelegramProvider?: TelegramMonitorFn; sendMessageTelegram?: TelegramSendFn; resolveTelegramToken?: TelegramResolveTokenFn; messageActions?: ChannelMessageActionAdapter; }; interface TelegramRuntimeChannel extends BasePluginRuntimeChannel { telegram?: TelegramChannelRuntime; } interface TelegramRuntime extends PluginRuntime { channel: TelegramRuntimeChannel; } //#endregion //#region extensions/telegram/src/runtime.d.ts declare const setTelegramRuntime: (next: TelegramRuntime) => void, clearTelegramRuntime: () => void, getTelegramRuntime: () => TelegramRuntime, getOptionalTelegramRuntime: () => TelegramRuntime | null; //#endregion export { TelegramButtonStyle as _, deleteMessageTelegram as a, editMessageTelegram as c, renameForumTopicTelegram as d, sendMessageTelegram as f, unpinMessageTelegram as g, sendTypingTelegram as h, createForumTopicTelegram as i, pinMessageTelegram as l, sendStickerTelegram as m, MonitorTelegramOpts as n, editForumTopicTelegram as o, sendPollTelegram as p, TelegramApiOverride as r, editMessageReplyMarkupTelegram as s, setTelegramRuntime as t, reactMessageTelegram as u, TelegramInlineButtons as v };