@autohq/cli 0.1.291 → 0.1.292

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.
@@ -19726,6 +19726,20 @@ var RuntimeBridgeOutputUiMessageChunkEnvelopeSchema = external_exports.object({
19726
19726
  chunk: JsonValueSchema,
19727
19727
  createdAt: external_exports.string().datetime()
19728
19728
  }).strict();
19729
+ var RuntimeBridgeOutputUiMessagePartEnvelopeSchema = external_exports.object({
19730
+ type: external_exports.literal("ui.message.part"),
19731
+ sessionId: SessionIdSchema,
19732
+ runtimeId: RuntimeIdSchema,
19733
+ bridgeLeaseId: RuntimeBridgeLeaseIdSchema,
19734
+ outputSeq: external_exports.number().int().positive(),
19735
+ messageId: external_exports.string().trim().min(1),
19736
+ role: external_exports.enum(["system", "user", "assistant"]),
19737
+ partIndex: external_exports.number().int().nonnegative(),
19738
+ part: JsonValueSchema,
19739
+ coveredSeq: external_exports.number().int().positive(),
19740
+ messageMetadata: JsonValueSchema.optional(),
19741
+ createdAt: external_exports.string().datetime()
19742
+ }).strict();
19729
19743
  var RuntimeBridgeOutputUiMessageCompletedEnvelopeSchema = external_exports.object({
19730
19744
  type: external_exports.literal("ui.message.completed"),
19731
19745
  sessionId: SessionIdSchema,
@@ -19745,6 +19759,7 @@ var RuntimeBridgeOutputEnvelopeSchema = external_exports.union([
19745
19759
  RuntimeBridgeOutputEntryEnvelopeSchema,
19746
19760
  RuntimeBridgeOutputDeltaEnvelopeSchema,
19747
19761
  RuntimeBridgeOutputUiMessageChunkEnvelopeSchema,
19762
+ RuntimeBridgeOutputUiMessagePartEnvelopeSchema,
19748
19763
  RuntimeBridgeOutputUiMessageCompletedEnvelopeSchema
19749
19764
  ]);
19750
19765
  function legacyRuntimeTurnStatus(entry, sessionStatusAfter) {
@@ -23384,7 +23399,7 @@ Object.assign(lookup, {
23384
23399
  // package.json
23385
23400
  var package_default = {
23386
23401
  name: "@autohq/cli",
23387
- version: "0.1.291",
23402
+ version: "0.1.292",
23388
23403
  license: "SEE LICENSE IN README.md",
23389
23404
  publishConfig: {
23390
23405
  access: "public"
package/dist/index.js CHANGED
@@ -23182,7 +23182,7 @@ var init_package = __esm({
23182
23182
  "package.json"() {
23183
23183
  package_default = {
23184
23184
  name: "@autohq/cli",
23185
- version: "0.1.291",
23185
+ version: "0.1.292",
23186
23186
  license: "SEE LICENSE IN README.md",
23187
23187
  publishConfig: {
23188
23188
  access: "public"
@@ -33177,6 +33177,20 @@ var RuntimeBridgeOutputUiMessageChunkEnvelopeSchema = external_exports.object({
33177
33177
  chunk: JsonValueSchema2,
33178
33178
  createdAt: external_exports.string().datetime()
33179
33179
  }).strict();
33180
+ var RuntimeBridgeOutputUiMessagePartEnvelopeSchema = external_exports.object({
33181
+ type: external_exports.literal("ui.message.part"),
33182
+ sessionId: SessionIdSchema2,
33183
+ runtimeId: RuntimeIdSchema2,
33184
+ bridgeLeaseId: RuntimeBridgeLeaseIdSchema2,
33185
+ outputSeq: external_exports.number().int().positive(),
33186
+ messageId: external_exports.string().trim().min(1),
33187
+ role: external_exports.enum(["system", "user", "assistant"]),
33188
+ partIndex: external_exports.number().int().nonnegative(),
33189
+ part: JsonValueSchema2,
33190
+ coveredSeq: external_exports.number().int().positive(),
33191
+ messageMetadata: JsonValueSchema2.optional(),
33192
+ createdAt: external_exports.string().datetime()
33193
+ }).strict();
33180
33194
  var RuntimeBridgeOutputUiMessageCompletedEnvelopeSchema = external_exports.object({
33181
33195
  type: external_exports.literal("ui.message.completed"),
33182
33196
  sessionId: SessionIdSchema2,
@@ -33196,6 +33210,7 @@ var RuntimeBridgeOutputEnvelopeSchema = external_exports.union([
33196
33210
  RuntimeBridgeOutputEntryEnvelopeSchema,
33197
33211
  RuntimeBridgeOutputDeltaEnvelopeSchema,
33198
33212
  RuntimeBridgeOutputUiMessageChunkEnvelopeSchema,
33213
+ RuntimeBridgeOutputUiMessagePartEnvelopeSchema,
33199
33214
  RuntimeBridgeOutputUiMessageCompletedEnvelopeSchema
33200
33215
  ]);
33201
33216
  function legacyRuntimeTurnStatus(entry, sessionStatusAfter) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.291",
3
+ "version": "0.1.292",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"