agent-relay-orchestrator 0.127.1 → 0.127.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/control.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-orchestrator",
3
- "version": "0.127.1",
3
+ "version": "0.127.2",
4
4
  "description": "Agent Relay orchestrator — manages agent lifecycle across hosts",
5
5
  "type": "module",
6
6
  "bin": {
package/src/control.ts CHANGED
@@ -618,6 +618,7 @@ function spawnOptionsFromRecord(source: Record<string, any>, config: Orchestrato
618
618
  env: stringRecord(source.env),
619
619
  policyName: typeof source.policyName === "string" ? source.policyName : undefined,
620
620
  spawnRequestId: typeof source.spawnRequestId === "string" ? source.spawnRequestId : undefined,
621
+ taskId: Number.isSafeInteger(source.taskId) && source.taskId > 0 ? source.taskId : undefined,
621
622
  automationId: typeof source.automationId === "string" ? source.automationId : undefined,
622
623
  automationRunId: typeof source.automationRunId === "string" ? source.automationRunId : undefined,
623
624
  requestedVia: typeof source.requestedVia === "string" ? source.requestedVia : undefined,