agent-relay-server 0.83.1 → 0.84.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.83.1",
5
+ "version": "0.84.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",
@@ -16,6 +16,118 @@
16
16
  }
17
17
  ],
18
18
  "paths": {
19
+ "/api/auth/providers": {
20
+ "get": {
21
+ "operationId": "getAuthProvidersRoute",
22
+ "summary": "Get Auth Providers",
23
+ "tags": [
24
+ "Other"
25
+ ],
26
+ "responses": {
27
+ "200": {
28
+ "description": "Success",
29
+ "content": {
30
+ "application/json": {}
31
+ }
32
+ }
33
+ },
34
+ "security": [
35
+ {
36
+ "bearerAuth": []
37
+ },
38
+ {
39
+ "tokenHeader": []
40
+ },
41
+ {
42
+ "tokenQuery": []
43
+ }
44
+ ]
45
+ }
46
+ },
47
+ "/api/auth/login": {
48
+ "post": {
49
+ "operationId": "postAuthLoginRoute",
50
+ "summary": "Post Auth Login",
51
+ "tags": [
52
+ "Other"
53
+ ],
54
+ "responses": {
55
+ "200": {
56
+ "description": "Success",
57
+ "content": {
58
+ "application/json": {}
59
+ }
60
+ }
61
+ },
62
+ "security": [
63
+ {
64
+ "bearerAuth": []
65
+ },
66
+ {
67
+ "tokenHeader": []
68
+ },
69
+ {
70
+ "tokenQuery": []
71
+ }
72
+ ]
73
+ }
74
+ },
75
+ "/api/auth/refresh": {
76
+ "post": {
77
+ "operationId": "postAuthRefreshRoute",
78
+ "summary": "Post Auth Refresh",
79
+ "tags": [
80
+ "Other"
81
+ ],
82
+ "responses": {
83
+ "200": {
84
+ "description": "Success",
85
+ "content": {
86
+ "application/json": {}
87
+ }
88
+ }
89
+ },
90
+ "security": [
91
+ {
92
+ "bearerAuth": []
93
+ },
94
+ {
95
+ "tokenHeader": []
96
+ },
97
+ {
98
+ "tokenQuery": []
99
+ }
100
+ ]
101
+ }
102
+ },
103
+ "/api/auth/logout": {
104
+ "post": {
105
+ "operationId": "postAuthLogoutRoute",
106
+ "summary": "Post Auth Logout",
107
+ "tags": [
108
+ "Other"
109
+ ],
110
+ "responses": {
111
+ "200": {
112
+ "description": "Success",
113
+ "content": {
114
+ "application/json": {}
115
+ }
116
+ }
117
+ },
118
+ "security": [
119
+ {
120
+ "bearerAuth": []
121
+ },
122
+ {
123
+ "tokenHeader": []
124
+ },
125
+ {
126
+ "tokenQuery": []
127
+ }
128
+ ]
129
+ }
130
+ },
19
131
  "/api/artifacts": {
20
132
  "post": {
21
133
  "operationId": "postArtifact",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-server",
3
- "version": "0.83.1",
3
+ "version": "0.84.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.63",
36
+ "agent-relay-sdk": "0.2.64",
37
37
  "ajv": "^8.20.0"
38
38
  },
39
39
  "scripts": {