Files
openclaw/extensions/telegram/src/thread-spec.ts
Peter Steinberger af3b86091f fix(telegram): preserve direct-message topic routing (#126207)
* fix(telegram): preserve direct message topic identity

* fix(telegram): break topic routing import cycle
2026-08-19 18:00:56 -07:00

7 lines
236 B
TypeScript

// Telegram plugin module defines the canonical thread identity contract.
export type TelegramThreadSpec = {
id?: number;
/** dm is the historical bot-private topic scope. */
scope: "direct-messages" | "dm" | "forum" | "none";
};