agent-relay-server 0.27.1 → 0.28.0

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/docs/openapi.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "Agent Relay API",
5
- "version": "0.21.0",
5
+ "version": "0.27.2",
6
6
  "description": "Real-time message bus for inter-agent communication. Agent-first: this spec is designed for machine consumption — agents can self-discover the full API surface via GET /api/spec.",
7
7
  "license": {
8
8
  "name": "MIT",
@@ -7399,6 +7399,9 @@
7399
7399
  "claimable": {
7400
7400
  "type": "string"
7401
7401
  },
7402
+ "replyExpected": {
7403
+ "type": "string"
7404
+ },
7402
7405
  "from": {
7403
7406
  "type": "string"
7404
7407
  },
@@ -7460,6 +7463,16 @@
7460
7463
  }
7461
7464
  }
7462
7465
  },
7466
+ "409": {
7467
+ "description": "Conflict",
7468
+ "content": {
7469
+ "application/json": {
7470
+ "schema": {
7471
+ "$ref": "#/components/schemas/Error"
7472
+ }
7473
+ }
7474
+ }
7475
+ },
7463
7476
  "422": {
7464
7477
  "description": "Unprocessable entity",
7465
7478
  "content": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-server",
3
- "version": "0.27.1",
3
+ "version": "0.28.0",
4
4
  "description": "Lightweight HTTP message relay for inter-agent communication across machines",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
@@ -33,7 +33,7 @@
33
33
  "CONTRIBUTING.md"
34
34
  ],
35
35
  "dependencies": {
36
- "agent-relay-sdk": "0.2.16"
36
+ "agent-relay-sdk": "0.2.17"
37
37
  },
38
38
  "scripts": {
39
39
  "prepack": "bun run build:dashboard:bundle >&2",