@north-light/crouter-api 0.3.193 → 0.3.194

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.
@@ -3,6 +3,8 @@ import type { IsoTime, NodeIdDTO } from './common.js';
3
3
  export interface BashJobStatusDTO {
4
4
  job_id: string;
5
5
  command: string;
6
+ /** Human-readable label supplied with the bash call, or null when absent. */
7
+ purpose: string | null;
6
8
  started_at: IsoTime;
7
9
  elapsed_ms: number;
8
10
  /** Persisted supervisor process group, or null for legacy jobs. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@north-light/crouter-api",
3
- "version": "0.3.193",
3
+ "version": "0.3.194",
4
4
  "description": "Typed crtrd /v1 API contract — DTOs, route builders, the error contract, and the CrtrClient. Zero runtime dependencies.",
5
5
  "type": "module",
6
6
  "main": "./dist/api/index.js",