humanish 0.52.0 → 0.54.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/program.js CHANGED
@@ -27,7 +27,7 @@ import { reclaimRunSandboxes } from "./reclaim.js";
27
27
  import { RunIndexCache, readRunIndex } from "./run-index.js";
28
28
  import { readLabSummary } from "./lab-summary.js";
29
29
  import { readProjectState } from "./tui-project.js";
30
- import { openObserverArtifact } from "./tui-actions.js";
30
+ import { openObserverArtifact, stopRun } from "./tui-actions.js";
31
31
  import { readRunDetail } from "./run-detail.js";
32
32
  import { launchRun, readLaunchLogTail } from "./tui-launch.js";
33
33
  import { TUI_MIN_NODE_MAJOR, nodeSupportsTui, tuiBundleUrl } from "./tui-contract.js";
@@ -338,7 +338,8 @@ function registerTuiCommand(parent, io) {
338
338
  readLabSummary,
339
339
  readProjectState,
340
340
  openObserver: openObserverArtifact,
341
- reclaimRun: (target, runId) => reclaimRunSandboxes(target, runId)
341
+ reclaimRun: (target, runId) => reclaimRunSandboxes(target, runId),
342
+ stopRun
342
343
  },
343
344
  stdin,
344
345
  stdout