@interopio/gateway-server 0.16.0 → 0.17.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interopio/gateway-server",
3
- "version": "0.16.0",
3
+ "version": "0.17.1",
4
4
  "keywords": [
5
5
  "gateway",
6
6
  "server",
@@ -75,10 +75,10 @@
75
75
  "node": ">=20.10 || >= 22.12 || >= 24"
76
76
  },
77
77
  "dependencies": {
78
- "@interopio/gateway": "^0.19.0",
78
+ "@interopio/gateway": "^0.20.1",
79
79
  "ws": "^8.18.3",
80
80
  "tough-cookie": "^6.0.0",
81
- "http-cookie-agent": "^7.0.2"
81
+ "http-cookie-agent": "^7.0.3"
82
82
  },
83
83
  "peerDependencies": {
84
84
  "undici": "^7.16.0"
@@ -144,7 +144,8 @@ type GatewayConfig = {
144
144
  cluster?: {
145
145
  enabled?: boolean
146
146
  configuration?: {
147
- node_id?: string
147
+ node_id?: string,
148
+ [key: string]: unknown
148
149
  },
149
150
  type: 'p2p' | 'broker',
150
151
  p2p?: {
@@ -154,7 +155,8 @@ type GatewayConfig = {
154
155
  config?: {
155
156
  directory_uri: string,
156
157
  announce_interval?: number, // defaults to 10000
157
- request?: RequestFn
158
+ request?: RequestFn,
159
+ [key: string]: unknown
158
160
  }
159
161
  }
160
162
  binding?: {