agent-relay-orchestrator 0.94.1 → 0.94.3

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 +2 -2
  2. package/src/api.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-orchestrator",
3
- "version": "0.94.1",
3
+ "version": "0.94.3",
4
4
  "description": "Agent Relay orchestrator — manages agent lifecycle across hosts",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,7 +17,7 @@
17
17
  "test": "bun test"
18
18
  },
19
19
  "dependencies": {
20
- "agent-relay-sdk": "0.2.74"
20
+ "agent-relay-sdk": "0.2.75"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/bun": "latest",
package/src/api.ts CHANGED
@@ -634,7 +634,7 @@ export function startApiServer(config: OrchestratorConfig, probeCache: ProviderP
634
634
  }
635
635
 
636
636
  if (req.method === "GET" && url.pathname === "/api/health") {
637
- return json({ ok: true, id: config.id, hostname: config.hostname });
637
+ return json({ status: "ok", ok: true, id: config.id, hostname: config.hostname });
638
638
  }
639
639
 
640
640
  return error("Not found", 404);