@maudecode/cowtail-cli 0.12.3 → 0.13.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 +17 -1
- package/package.json +1 -1
package/dist/cowtail.js
CHANGED
|
@@ -16518,6 +16518,20 @@ var openclawPluginMessageUpdateCommandSchema = requireOpenClawRenderableContent(
|
|
|
16518
16518
|
actions: exports_external.array(openclawActionDraftSchema).optional(),
|
|
16519
16519
|
deliveryState: openclawDeliveryStateSchema.optional()
|
|
16520
16520
|
}));
|
|
16521
|
+
var openclawMessageStreamSnapshotCommandBaseSchema = exports_external.object({
|
|
16522
|
+
type: exports_external.literal("openclaw_message_stream_snapshot"),
|
|
16523
|
+
requestId: openclawRequestIdSchema,
|
|
16524
|
+
streamId: nonEmptyStringSchema,
|
|
16525
|
+
sessionKey: nonEmptyStringSchema,
|
|
16526
|
+
threadId: nonEmptyStringSchema,
|
|
16527
|
+
text: openclawMessageTextSchema,
|
|
16528
|
+
links: exports_external.array(openclawLinkSchema).default([]),
|
|
16529
|
+
toolCalls: exports_external.array(openclawToolCallRecordSchema).default([]),
|
|
16530
|
+
isFinal: exports_external.boolean(),
|
|
16531
|
+
updatedAt: timestampSchema
|
|
16532
|
+
});
|
|
16533
|
+
var openclawMessageStreamSnapshotCommandSchema = requireOpenClawRenderableContent(openclawMessageStreamSnapshotCommandBaseSchema);
|
|
16534
|
+
var openclawMessageStreamSnapshotServerMessageSchema = requireOpenClawRenderableContent(openclawMessageStreamSnapshotCommandBaseSchema.omit({ requestId: true }));
|
|
16521
16535
|
var openclawIosNewThreadCommandSchema = exports_external.object({
|
|
16522
16536
|
type: exports_external.literal("ios_new_thread"),
|
|
16523
16537
|
requestId: openclawRequestIdSchema,
|
|
@@ -16576,6 +16590,7 @@ var openclawActionResultCommandSchema = exports_external.object({
|
|
|
16576
16590
|
var openclawRealtimeClientMessageSchema = exports_external.union([
|
|
16577
16591
|
openclawPluginMessageCommandSchema,
|
|
16578
16592
|
openclawPluginMessageUpdateCommandSchema,
|
|
16593
|
+
openclawMessageStreamSnapshotCommandSchema,
|
|
16579
16594
|
openclawIosNewThreadCommandSchema,
|
|
16580
16595
|
openclawIosReplyCommandSchema,
|
|
16581
16596
|
openclawIosActionCommandSchema,
|
|
@@ -16598,6 +16613,7 @@ var openclawRealtimeErrorSchema = exports_external.object({
|
|
|
16598
16613
|
});
|
|
16599
16614
|
var openclawRealtimeServerMessageSchema = exports_external.union([
|
|
16600
16615
|
openclawEventEnvelopeSchema,
|
|
16616
|
+
openclawMessageStreamSnapshotServerMessageSchema,
|
|
16601
16617
|
openclawRealtimeAckSchema,
|
|
16602
16618
|
openclawRealtimeErrorSchema
|
|
16603
16619
|
]);
|
|
@@ -18059,7 +18075,7 @@ import { tmpdir } from "node:os";
|
|
|
18059
18075
|
import { basename, dirname, join as join2 } from "node:path";
|
|
18060
18076
|
|
|
18061
18077
|
// src/lib/version.ts
|
|
18062
|
-
var rawVersion = "v0.
|
|
18078
|
+
var rawVersion = "v0.13.0"?.trim() || "dev";
|
|
18063
18079
|
var cowtailVersionLabel = rawVersion === "dev" || rawVersion.startsWith("v") ? rawVersion : `v${rawVersion}`;
|
|
18064
18080
|
|
|
18065
18081
|
// src/lib/update.ts
|