@rudderhq/cli 0.3.5-canary.11 → 0.3.5-canary.13

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/index.js CHANGED
@@ -9499,6 +9499,11 @@ function formatChatMessage(row, maxOutputChars = 1200) {
9499
9499
  role: row.role,
9500
9500
  kind: row.kind,
9501
9501
  status: row.status,
9502
+ ...row.runId ? {
9503
+ runId: row.runId,
9504
+ runCommand: `rudder runs get ${row.runId}`,
9505
+ transcriptCommand: `rudder runs transcript ${row.runId}`
9506
+ } : {},
9502
9507
  createdAt: row.createdAt,
9503
9508
  body: clip(row.body, 220),
9504
9509
  transcriptEntries: row.transcriptSummary?.entryCount ?? row.transcript?.length ?? 0,
@@ -9511,6 +9516,11 @@ function formatChatTranscriptMessage(row, maxChars) {
9511
9516
  role: row.role,
9512
9517
  kind: row.kind,
9513
9518
  status: row.status,
9519
+ ...row.runId ? {
9520
+ runId: row.runId,
9521
+ runCommand: `rudder runs get ${row.runId}`,
9522
+ transcriptCommand: `rudder runs transcript ${row.runId}`
9523
+ } : {},
9514
9524
  createdAt: row.createdAt,
9515
9525
  body: clip(row.body, 220)
9516
9526
  };