@maudecode/cowtail-cli 0.1.0 → 0.9.0
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/dist/cowtail.js +14 -1
- package/package.json +3 -3
package/dist/cowtail.js
CHANGED
|
@@ -16501,6 +16501,17 @@ var openclawIosMarkThreadReadCommandSchema = exports_external.object({
|
|
|
16501
16501
|
requestId: openclawRequestIdSchema,
|
|
16502
16502
|
threadId: nonEmptyStringSchema
|
|
16503
16503
|
});
|
|
16504
|
+
var openclawIosRenameThreadCommandSchema = exports_external.object({
|
|
16505
|
+
type: exports_external.literal("ios_rename_thread"),
|
|
16506
|
+
requestId: openclawRequestIdSchema,
|
|
16507
|
+
threadId: nonEmptyStringSchema,
|
|
16508
|
+
title: nonEmptyStringSchema
|
|
16509
|
+
});
|
|
16510
|
+
var openclawIosDeleteThreadCommandSchema = exports_external.object({
|
|
16511
|
+
type: exports_external.literal("ios_delete_thread"),
|
|
16512
|
+
requestId: openclawRequestIdSchema,
|
|
16513
|
+
threadId: nonEmptyStringSchema
|
|
16514
|
+
});
|
|
16504
16515
|
var openclawSessionBoundCommandSchema = exports_external.object({
|
|
16505
16516
|
type: exports_external.literal("openclaw_session_bound"),
|
|
16506
16517
|
requestId: openclawRequestIdSchema,
|
|
@@ -16520,6 +16531,8 @@ var openclawRealtimeClientMessageSchema = exports_external.discriminatedUnion("t
|
|
|
16520
16531
|
openclawIosReplyCommandSchema,
|
|
16521
16532
|
openclawIosActionCommandSchema,
|
|
16522
16533
|
openclawIosMarkThreadReadCommandSchema,
|
|
16534
|
+
openclawIosRenameThreadCommandSchema,
|
|
16535
|
+
openclawIosDeleteThreadCommandSchema,
|
|
16523
16536
|
openclawSessionBoundCommandSchema,
|
|
16524
16537
|
openclawActionResultCommandSchema
|
|
16525
16538
|
]);
|
|
@@ -17996,7 +18009,7 @@ import { tmpdir } from "node:os";
|
|
|
17996
18009
|
import { basename, dirname, join as join2 } from "node:path";
|
|
17997
18010
|
|
|
17998
18011
|
// src/lib/version.ts
|
|
17999
|
-
var rawVersion = "v0.
|
|
18012
|
+
var rawVersion = "v0.9.0"?.trim() || "dev";
|
|
18000
18013
|
var cowtailVersionLabel = rawVersion === "dev" || rawVersion.startsWith("v") ? rawVersion : `v${rawVersion}`;
|
|
18001
18014
|
|
|
18002
18015
|
// src/lib/update.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maudecode/cowtail-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Cowtail CLI",
|
|
6
6
|
"repository": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@maudecode/cowtail-protocol": "file:../protocol",
|
|
37
|
-
"@types/node": "^
|
|
37
|
+
"@types/node": "^25.6.0",
|
|
38
38
|
"clipanion": "^4.0.0-rc.4",
|
|
39
|
-
"typescript": "^
|
|
39
|
+
"typescript": "^6.0.3"
|
|
40
40
|
}
|
|
41
41
|
}
|