import { i as OpenClawConfig } from "./types.openclaw-fYj4Ft14.js"; import { _ as GroupPolicy } from "./types.base-D238NWJT.js"; import { v as TelegramAccountConfig$1 } from "./types.channels-CxRwjkzX.js"; import { s as ReplyPayload } from "./types-I4tsJNmk.js"; import { s as ExecApprovalRequest } from "./exec-approvals-BMVAZXjT.js"; import { v as ChannelMessageActionAdapter } from "./types.core-BdBUJhNx.js"; import { n as MonitorTelegramOpts } from "./runtime-BXIX19nP.js"; //#region extensions/telegram/src/bot-access.d.ts type NormalizedAllowFrom = { entries: string[]; hasWildcard: boolean; hasEntries: boolean; invalidEntries: string[]; }; //#endregion //#region extensions/telegram/src/group-access.d.ts declare const resolveTelegramRuntimeGroupPolicy: (params: { providerConfigPresent: boolean; groupPolicy?: TelegramAccountConfig$1["groupPolicy"]; defaultGroupPolicy?: TelegramAccountConfig$1["groupPolicy"]; }) => { groupPolicy: GroupPolicy; providerMissingFallbackApplied: boolean; }; //#endregion //#region extensions/telegram/src/exec-approval-forwarding.d.ts declare function shouldSuppressTelegramExecApprovalForwardingFallback(params: { cfg: OpenClawConfig; target: { channel: string; accountId?: string | null; }; request: ExecApprovalRequest; }): boolean; declare function buildTelegramExecApprovalPendingPayload(params: { request: ExecApprovalRequest; nowMs: number; }): ReplyPayload; //#endregion //#region extensions/telegram/src/sticker-cache-store.d.ts interface CachedSticker { fileId: string; fileUniqueId: string; emoji?: string; setName?: string; description: string; cachedAt: string; receivedFrom?: string; } /** * Get a cached sticker by its unique ID. */ declare function getCachedSticker(fileUniqueId: string): CachedSticker | null; /** * Add or update a sticker in the cache. */ declare function cacheSticker(sticker: CachedSticker): void; /** * Search cached stickers by text query (fuzzy match on description + emoji + setName). */ declare function searchStickers(query: string, limit?: number): CachedSticker[]; /** * Get all cached stickers (for debugging/listing). */ declare function getAllCachedStickers(): CachedSticker[]; /** * Get cache statistics. */ declare function getCacheStats(): { count: number; oldestAt?: string; newestAt?: string; }; //#endregion //#region extensions/telegram/src/sticker-cache.d.ts interface DescribeStickerParams { imagePath: string; cfg: OpenClawConfig; agentDir?: string; agentId?: string; } /** * Describe a sticker image using vision API. * Auto-detects an available vision provider based on configured API keys. * Returns null if no vision provider is available. */ declare function describeStickerImage(params: DescribeStickerParams): Promise; //#endregion //#region extensions/telegram/src/channel-actions.d.ts declare const telegramMessageActions: ChannelMessageActionAdapter; //#endregion //#region extensions/telegram/src/monitor.d.ts declare function monitorTelegramProvider(opts?: MonitorTelegramOpts): Promise; //#endregion //#region extensions/telegram/src/thread-bindings.d.ts type TelegramBindingTargetKind = "subagent" | "acp"; type TelegramThreadBindingRecord = { accountId: string; conversationId: string; targetKind: TelegramBindingTargetKind; targetSessionKey: string; agentId?: string; label?: string; boundBy?: string; boundAt: number; lastActivityAt: number; idleTimeoutMs?: number; maxAgeMs?: number; metadata?: Record; }; type TelegramThreadBindingManager = { accountId: string; shouldPersistMutations: () => boolean; getIdleTimeoutMs: () => number; getMaxAgeMs: () => number; getByConversationId: (conversationId: string) => TelegramThreadBindingRecord | undefined; listBySessionKey: (targetSessionKey: string) => TelegramThreadBindingRecord[]; listBindings: () => TelegramThreadBindingRecord[]; touchConversation: (conversationId: string, at?: number) => TelegramThreadBindingRecord | null; unbindConversation: (params: { conversationId: string; reason?: string; sendFarewell?: boolean; }) => TelegramThreadBindingRecord | null; unbindBySessionKey: (params: { targetSessionKey: string; reason?: string; sendFarewell?: boolean; }) => TelegramThreadBindingRecord[]; stop: () => void; }; declare function createTelegramThreadBindingManager(params: { cfg: OpenClawConfig; accountId?: string; persist?: boolean; idleTimeoutMs?: number; maxAgeMs?: number; enableSweeper?: boolean; }): TelegramThreadBindingManager; declare function getTelegramThreadBindingManager(accountId?: string): TelegramThreadBindingManager | null; declare function setTelegramThreadBindingIdleTimeoutBySessionKey(params: { targetSessionKey: string; accountId?: string; idleTimeoutMs: number; }): TelegramThreadBindingRecord[]; declare function setTelegramThreadBindingMaxAgeBySessionKey(params: { targetSessionKey: string; accountId?: string; maxAgeMs: number; }): TelegramThreadBindingRecord[]; declare function resetTelegramThreadBindingsForTests(): Promise; //#endregion //#region extensions/telegram/src/topic-conversation.d.ts type ParsedTelegramTopicConversation = { chatId: string; topicId: string; canonicalConversationId: string; }; declare function parseTelegramTopicConversation(params: { conversationId: string; parentConversationId?: string; }): ParsedTelegramTopicConversation | null; //#endregion //#region extensions/telegram/src/poll-visibility.d.ts declare function resolveTelegramPollVisibility(params: { pollAnonymous?: boolean; pollPublic?: boolean; }): boolean | undefined; //#endregion //#region extensions/telegram/runtime-api.d.ts type TelegramAccountConfig = NonNullable["telegram"]>; type TelegramActionConfig = NonNullable; type TelegramNetworkConfig = NonNullable; //#endregion export { shouldSuppressTelegramExecApprovalForwardingFallback as C, buildTelegramExecApprovalPendingPayload as S, NormalizedAllowFrom as T, cacheSticker as _, ParsedTelegramTopicConversation as a, getCachedSticker as b, getTelegramThreadBindingManager as c, setTelegramThreadBindingMaxAgeBySessionKey as d, monitorTelegramProvider as f, CachedSticker as g, describeStickerImage as h, resolveTelegramPollVisibility as i, resetTelegramThreadBindingsForTests as l, DescribeStickerParams as m, TelegramActionConfig as n, parseTelegramTopicConversation as o, telegramMessageActions as p, TelegramNetworkConfig as r, createTelegramThreadBindingManager as s, TelegramAccountConfig as t, setTelegramThreadBindingIdleTimeoutBySessionKey as u, getAllCachedStickers as v, resolveTelegramRuntimeGroupPolicy as w, searchStickers as x, getCacheStats as y };