@deadragdoll/tellymcp 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README-ru.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # TellyMCP
2
2
 
3
- [English](README.md) | [Русский](README-ru.md)
3
+ [English](README.md) | [Русский](README-ru.md) | [Standalone Guide](STANDALONE.md) | [Standalone RU](STANDALONE-ru.md)
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/%40deadragdoll%2Ftellymcp)](https://www.npmjs.com/package/@deadragdoll/tellymcp)
6
6
  [![npm downloads](https://img.shields.io/npm/dm/%40deadragdoll%2Ftellymcp)](https://www.npmjs.com/package/@deadragdoll/tellymcp)
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # TellyMCP
2
2
 
3
- [English](README.md) | [Русский](README-ru.md)
3
+ [English](README.md) | [Русский](README-ru.md) | [Standalone Guide](STANDALONE.md) | [Standalone RU](STANDALONE-ru.md)
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/%40deadragdoll%2Ftellymcp)](https://www.npmjs.com/package/@deadragdoll/tellymcp)
6
6
  [![npm downloads](https://img.shields.io/npm/dm/%40deadragdoll%2Ftellymcp)](https://www.npmjs.com/package/@deadragdoll/tellymcp)
@@ -278,7 +278,7 @@ const TelegramMcpGatewayDeliveryService = {
278
278
  try {
279
279
  await runtime.telegramTransport.sendNotification({
280
280
  sessionId: targetSession.sessionId,
281
- ...(targetSession.label ? { sessionLabel: targetSession.label } : {}),
281
+ sessionLabel: delivery.source_session_label,
282
282
  recipient: {
283
283
  telegramChatId: targetBinding.telegramChatId,
284
284
  telegramUserId: targetBinding.telegramUserId,
@@ -248,7 +248,7 @@ class LocalCollaborationBackend {
248
248
  await this.inboxStore.createInboxMessage(inboxMessage);
249
249
  await this.telegramTransport.sendNotification({
250
250
  sessionId: targetSession.sessionId,
251
- ...(targetSession.label ? { sessionLabel: targetSession.label } : {}),
251
+ sessionLabel: sourceLabel,
252
252
  recipient: {
253
253
  telegramChatId: targetBinding.telegramChatId,
254
254
  telegramUserId: targetBinding.telegramUserId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deadragdoll/tellymcp",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "TellyMCP - Telegram Human-in-the-Loop MCP Server",
5
5
  "main": "dist/services/features/telegram-mcp/runtime.service.js",
6
6
  "bin": {