@matter-server/dashboard 0.5.12 → 0.5.13

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.
@@ -127,6 +127,7 @@ class Connection {
127
127
  this.ws_server_url = ws_server_url;
128
128
  this.wsFactory = wsFactory ?? (url => new WebSocket(url));
129
129
  }
130
+ ws_server_url;
130
131
  serverInfo = void 0;
131
132
  socket;
132
133
  wsFactory;
@@ -197,6 +198,8 @@ class CommandTimeoutError extends MatterError {
197
198
  this.timeoutMs = timeoutMs;
198
199
  this.name = "CommandTimeoutError";
199
200
  }
201
+ command;
202
+ timeoutMs;
200
203
  }
201
204
  class ConnectionClosedError extends MatterError {
202
205
  constructor(message = "Connection closed while command was pending") {
@@ -223,6 +226,7 @@ class MatterNode {
223
226
  this.attribute_subscriptions = data.attribute_subscriptions;
224
227
  this.matter_version = data.matter_version;
225
228
  }
229
+ data;
226
230
  node_id;
227
231
  date_commissioned;
228
232
  last_interview;
@@ -294,6 +298,7 @@ class MatterClient {
294
298
  this.connection = new Connection(this.url, wsFactory);
295
299
  this.serverBaseAddress = this.url.split("://")[1].split(":")[0] ?? "";
296
300
  }
301
+ url;
297
302
  connection;
298
303
  nodes = {};
299
304
  serverBaseAddress;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matter-server/dashboard",
3
- "version": "0.5.12",
3
+ "version": "0.5.13",
4
4
  "description": "Dashboard for OHF Matter Server",
5
5
  "bugs": {
6
6
  "url": "https://github.com/matter-js/matterjs-server/issues"
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "devDependencies": {
25
25
  "@babel/preset-env": "^7.29.2",
26
- "@matter/main": "0.17.0-alpha.0-20260401-1edc54c9a",
26
+ "@matter/main": "0.17.0-alpha.0-20260402-bd064abc8",
27
27
  "@rollup/plugin-babel": "^7.0.0",
28
28
  "@rollup/plugin-commonjs": "^29.0.2",
29
29
  "rollup-plugin-copy": "^3.5.0",
@@ -37,8 +37,8 @@
37
37
  "dependencies": {
38
38
  "@lit/context": "^1.1.6",
39
39
  "@material/web": "^2.4.1",
40
- "@matter-server/ws-client": "0.5.12",
41
- "@matter-server/custom-clusters": "0.5.12",
40
+ "@matter-server/ws-client": "0.5.13",
41
+ "@matter-server/custom-clusters": "0.5.13",
42
42
  "@mdi/js": "^7.4.47",
43
43
  "lit": "^3.3.2",
44
44
  "tslib": "^2.8.1",