agent-relay-server 0.11.0 → 0.11.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/db.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-server",
3
- "version": "0.11.0",
3
+ "version": "0.11.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/db.ts CHANGED
@@ -4688,7 +4688,7 @@ function rowToOrchestrator(row: any): Orchestrator {
4688
4688
  const providerCatalog = Array.isArray(meta.providerCatalog) ? meta.providerCatalog as Orchestrator["providerCatalog"] : undefined;
4689
4689
  const compatibility = contractCompatibility(contracts, { orchestratorProtocol: CONTRACT_REQUIREMENTS.orchestratorProtocol });
4690
4690
  const supervisorRaw = stringValue(meta.supervisor);
4691
- const supervisor = supervisorRaw === "systemd" || supervisorRaw === "process" || supervisorRaw === "unknown" ? supervisorRaw : undefined;
4691
+ const supervisor = supervisorRaw === "systemd" || supervisorRaw === "launchd" || supervisorRaw === "process" || supervisorRaw === "unknown" ? supervisorRaw : undefined;
4692
4692
  const selfUnit = stringValue(meta.selfUnit);
4693
4693
  const runtimePrefix = stringValue(meta.runtimePrefix);
4694
4694
  const upgrade = parseOrchestratorUpgrade(meta.upgrade);