@cargo-ai/cli 1.0.40 → 1.0.41

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.
@@ -1 +1 @@
1
- {"version":3,"file":"span.d.ts","sourceRoot":"","sources":["../../../src/commands/orchestration/span.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AAGxC,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,GAAG,GAAG,IAAI,CAwO7E"}
1
+ {"version":3,"file":"span.d.ts","sourceRoot":"","sources":["../../../src/commands/orchestration/span.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AAGxC,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,GAAG,GAAG,IAAI,CAoP7E"}
@@ -11,6 +11,7 @@ export function registerSpanCommands(parent, getApi) {
11
11
  .option("--record-title <title>", "Record title (ilike)")
12
12
  .option("--record-title-or-id <text>", "Record id or title (ilike on id or title, same as run list)")
13
13
  .option("--execution-title <text>", "Execution title (ilike)")
14
+ .option("--execution-title-or-error-message <text>", "Execution title or error message (ilike on title or error message)")
14
15
  .option("--node-uuid <uuid>", "Node UUID")
15
16
  .option("--node-kind <kind>", "Node kind: native | connector | tool | agent")
16
17
  .option("--node-slug <slug>", "Workflow node slug (exact match)")
@@ -37,6 +38,7 @@ export function registerSpanCommands(parent, getApi) {
37
38
  recordTitle: opts.recordTitle,
38
39
  recordTitleOrId: opts.recordTitleOrId,
39
40
  executionTitle: opts.executionTitle,
41
+ executionTitleOrErrorMessage: opts.executionTitleOrErrorMessage,
40
42
  nodeUuid: opts.nodeUuid,
41
43
  nodeKind: opts.nodeKind !== undefined
42
44
  ? opts.nodeKind
@@ -72,6 +74,7 @@ export function registerSpanCommands(parent, getApi) {
72
74
  .option("--record-title <title>", "Record title (ilike)")
73
75
  .option("--record-title-or-id <text>", "Record id or title (ilike on id or title, same as run list)")
74
76
  .option("--execution-title <text>", "Execution title (ilike)")
77
+ .option("--execution-title-or-error-message <text>", "Execution title or error message (ilike on title or error message)")
75
78
  .option("--node-uuid <uuid>", "Node UUID")
76
79
  .option("--node-kind <kind>", "Node kind: native | connector | tool | agent")
77
80
  .option("--node-slug <slug>", "Workflow node slug (exact match)")
@@ -96,6 +99,7 @@ export function registerSpanCommands(parent, getApi) {
96
99
  recordTitle: opts.recordTitle,
97
100
  recordTitleOrId: opts.recordTitleOrId,
98
101
  executionTitle: opts.executionTitle,
102
+ executionTitleOrErrorMessage: opts.executionTitleOrErrorMessage,
99
103
  nodeUuid: opts.nodeUuid,
100
104
  nodeKind: opts.nodeKind !== undefined
101
105
  ? opts.nodeKind
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cargo-ai/cli",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
6
  "description": "Command-line interface for the Cargo API",
@@ -30,15 +30,15 @@
30
30
  "format:check": "prettier --check ."
31
31
  },
32
32
  "dependencies": {
33
- "@cargo-ai/api": "^1.0.48",
33
+ "@cargo-ai/api": "^1.0.52",
34
34
  "@cargo-ai/app-sdk": "^1.0.5",
35
35
  "@cargo-ai/cdk": "*",
36
36
  "@cargo-ai/types": "*",
37
- "@cargo-ai/worker-sdk": "^1.0.10",
37
+ "@cargo-ai/worker-sdk": "^1.0.11",
38
38
  "@modelcontextprotocol/sdk": "1.29.0",
39
39
  "commander": "^12.1.0",
40
40
  "tsx": "^4.19.2",
41
- "undici": "^7.28.0"
41
+ "undici": "^7.29.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@cargo-ai/eslint-config": "*",