agent-relay-server 0.19.1 → 0.19.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/cli.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-server",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "description": "Lightweight HTTP message relay for inter-agent communication across machines",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
package/src/cli.ts CHANGED
@@ -534,7 +534,7 @@ async function runRemoteOrchestratorUpgrades(opts: {
534
534
  continue;
535
535
  }
536
536
  try {
537
- const res = (await apiRequest("POST", `/api/orchestrators/${encodeURIComponent(id)}/action`, {
537
+ const res = (await apiRequest("POST", `/api/orchestrators/${encodeURIComponent(id)}/actions`, {
538
538
  action: "upgrade",
539
539
  targetVersion,
540
540
  providers: remoteProviders,