@llblab/pi-telegram 0.10.2 → 0.10.3
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/CHANGELOG.md +4 -0
- package/README.md +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.10.3: Dependency Audit Hotfix
|
|
4
|
+
|
|
5
|
+
- `[Dependencies]` Refreshed the lockfile transitive dependency set to resolve current `protobufjs` / `@protobufjs/utf8` npm audit advisories inherited through development peer installs. Impact: `npm run validate` is green again without changing runtime API or bridge behavior.
|
|
6
|
+
|
|
3
7
|
## 0.10.2: Delete Message Port Hotfix
|
|
4
8
|
|
|
5
9
|
- `[ctx.deleteMessage()]` Added `deleteMessage()` to `TelegramSectionContext` and `TelegramSectionCallbackContext`. Extensions can now delete the message that triggered a callback — useful for cleaning up confirmation dialogs after the user makes a choice.
|
package/README.md
CHANGED
|
@@ -236,6 +236,14 @@ Import from `@llblab/pi-telegram`, call `registerTelegramSection()`, and return
|
|
|
236
236
|
- Replies to Telegram prompts are sent as Telegram replies to the source message when possible; if the source message is unavailable, delivery falls back to a normal message.
|
|
237
237
|
- Temporary inbound Telegram files are cleaned up on later session starts.
|
|
238
238
|
|
|
239
|
+
## Companion Extensions
|
|
240
|
+
|
|
241
|
+
Third-party extensions that integrate with `pi-telegram`:
|
|
242
|
+
|
|
243
|
+
| Extension | Description | Install |
|
|
244
|
+
|-----------|-------------|---------|
|
|
245
|
+
| [`pi-telegram-tool-status`](https://github.com/Timur00Kh/pi-telegram-tool-status) | Live-updating service message listing tools used by the agent. One message per Telegram prompt, edited in-place as tools execute. | `pi install npm:pi-telegram-tool-status` |
|
|
246
|
+
|
|
239
247
|
## License
|
|
240
248
|
|
|
241
249
|
MIT
|