@locusai/telegram 0.9.16 → 0.9.18
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/bin/telegram.js +5 -2
- package/package.json +2 -2
package/bin/telegram.js
CHANGED
|
@@ -37477,7 +37477,8 @@ var ApiResponseSchema = exports_external.object({
|
|
|
37477
37477
|
meta: exports_external.object({
|
|
37478
37478
|
pagination: PaginationMetaSchema.optional(),
|
|
37479
37479
|
timestamp: exports_external.string(),
|
|
37480
|
-
path: exports_external.string()
|
|
37480
|
+
path: exports_external.string(),
|
|
37481
|
+
requestId: exports_external.string().optional()
|
|
37481
37482
|
}).optional()
|
|
37482
37483
|
});
|
|
37483
37484
|
var SuccessResponseSchema = exports_external.object({
|
|
@@ -42515,7 +42516,9 @@ Run /worktrees to see the list.`), { parse_mode: "HTML" });
|
|
|
42515
42516
|
const manager = createWorktreeManager(config2);
|
|
42516
42517
|
if (arg === "all") {
|
|
42517
42518
|
const count = manager.removeAll();
|
|
42518
|
-
await ctx.reply(formatSuccess(`Removed ${count} worktree(s).`), {
|
|
42519
|
+
await ctx.reply(formatSuccess(`Removed ${count} worktree(s).`), {
|
|
42520
|
+
parse_mode: "HTML"
|
|
42521
|
+
});
|
|
42519
42522
|
return;
|
|
42520
42523
|
}
|
|
42521
42524
|
const index = Number.parseInt(arg, 10);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@locusai/telegram",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.18",
|
|
4
4
|
"description": "Telegram bot for Locus - remote control your AI agents from Telegram",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"author": "",
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@locusai/sdk": "^0.9.
|
|
35
|
+
"@locusai/sdk": "^0.9.18",
|
|
36
36
|
"dotenv": "^16.4.7",
|
|
37
37
|
"telegraf": "^4.16.3"
|
|
38
38
|
},
|