@cargo-ai/cli 1.0.43 → 1.0.44

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.
@@ -7,7 +7,7 @@ export function registerTraceCommands(parent, getApi) {
7
7
  .command("list")
8
8
  .description("List traces (aggregated over their spans)")
9
9
  .option("--workflow-uuid <uuid>", "Workflow UUID (omit to include all workflows in the workspace)")
10
- .option("--statuses <list>", "Comma-separated trace statuses (pending, error, success)")
10
+ .option("--statuses <list>", "Comma-separated trace statuses (pending, error, degraded, success)")
11
11
  .requiredOption("--started-after <date>", "Trace's first span started after (ISO date)")
12
12
  .option("--started-before <date>", "Trace's first span started on or before (ISO date)")
13
13
  .option("--limit <n>", "Limit", "30")
@@ -30,7 +30,7 @@ export function registerTraceCommands(parent, getApi) {
30
30
  .command("count")
31
31
  .description("Count traces matching the filter")
32
32
  .option("--workflow-uuid <uuid>", "Workflow UUID (omit to include all workflows in the workspace)")
33
- .option("--statuses <list>", "Comma-separated trace statuses (pending, error, success)")
33
+ .option("--statuses <list>", "Comma-separated trace statuses (pending, error, degraded, success)")
34
34
  .requiredOption("--started-after <date>", "Trace's first span started after (ISO date)")
35
35
  .option("--started-before <date>", "Trace's first span started on or before (ISO date)")
36
36
  .action(async (opts) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cargo-ai/cli",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
6
  "description": "Command-line interface for the Cargo API",
@@ -30,7 +30,7 @@
30
30
  "format:check": "prettier --check ."
31
31
  },
32
32
  "dependencies": {
33
- "@cargo-ai/api": "^1.0.54",
33
+ "@cargo-ai/api": "^1.0.56",
34
34
  "@cargo-ai/app-sdk": "^1.0.5",
35
35
  "@cargo-ai/cdk": "*",
36
36
  "@cargo-ai/types": "*",