agent-relay-server 0.40.0 → 0.41.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.40.0",
5
+ "version": "0.41.0",
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",
@@ -4038,6 +4038,34 @@
4038
4038
  ]
4039
4039
  }
4040
4040
  },
4041
+ "/api/continuation-archives": {
4042
+ "post": {
4043
+ "operationId": "postContinuationArchiveRoute",
4044
+ "summary": "Post Continuation Archive",
4045
+ "tags": [
4046
+ "Other"
4047
+ ],
4048
+ "responses": {
4049
+ "200": {
4050
+ "description": "Success",
4051
+ "content": {
4052
+ "application/json": {}
4053
+ }
4054
+ }
4055
+ },
4056
+ "security": [
4057
+ {
4058
+ "bearerAuth": []
4059
+ },
4060
+ {
4061
+ "tokenHeader": []
4062
+ },
4063
+ {
4064
+ "tokenQuery": []
4065
+ }
4066
+ ]
4067
+ }
4068
+ },
4041
4069
  "/api/config/{namespace}": {
4042
4070
  "get": {
4043
4071
  "operationId": "getConfigNamespace",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-server",
3
- "version": "0.40.0",
3
+ "version": "0.41.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.25"
36
+ "agent-relay-sdk": "0.2.26"
37
37
  },
38
38
  "scripts": {
39
39
  "prepack": "bun run build:dashboard:bundle >&2",