@smithers-orchestrator/driver 0.20.0 → 0.20.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithers-orchestrator/driver",
3
- "version": "0.20.0",
3
+ "version": "0.20.1",
4
4
  "description": "Workflow execution driver — runs tasks, acts on EngineDecisions, reports results",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -63,11 +63,11 @@
63
63
  "dependencies": {
64
64
  "effect": "^3.21.1",
65
65
  "zod": "^4.3.6",
66
- "@smithers-orchestrator/db": "0.20.0",
67
- "@smithers-orchestrator/errors": "0.20.0",
68
- "@smithers-orchestrator/graph": "0.20.0",
69
- "@smithers-orchestrator/observability": "0.20.0",
70
- "@smithers-orchestrator/scheduler": "0.20.0"
66
+ "@smithers-orchestrator/db": "0.20.1",
67
+ "@smithers-orchestrator/errors": "0.20.1",
68
+ "@smithers-orchestrator/observability": "0.20.1",
69
+ "@smithers-orchestrator/graph": "0.20.1",
70
+ "@smithers-orchestrator/scheduler": "0.20.1"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@types/bun": "latest",
package/src/RunOptions.ts CHANGED
@@ -30,6 +30,7 @@ export type RunOptions = {
30
30
  maxOutputBytes?: number;
31
31
  toolTimeoutMs?: number;
32
32
  hot?: boolean | HotReloadOptions;
33
+ annotations?: Record<string, string | number | boolean>;
33
34
  auth?: RunAuthContext | null;
34
35
  config?: Record<string, unknown>;
35
36
  cliAgentToolsDefault?: "all" | "explicit-only";