mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-27 04:47:03 -06:00
af3b86091f
* fix(telegram): preserve direct message topic identity * fix(telegram): break topic routing import cycle
7 lines
236 B
TypeScript
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";
|
|
};
|