@duet3d/objectmodel 3.6.0-alpha.7 → 3.6.0-alpha.8

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.
@@ -33,6 +33,8 @@ export declare class NetworkInterface extends ModelObject {
33
33
  gateway: string | null;
34
34
  mac: string | null;
35
35
  numReconnects: number | null;
36
+ rssi: number | null;
37
+ /** @deprecated use rssi instead */
36
38
  signal: number | null;
37
39
  speed: number | null;
38
40
  ssid: string | null;
@@ -41,6 +41,8 @@ class NetworkInterface extends ModelObject_1.default {
41
41
  this.gateway = null;
42
42
  this.mac = null;
43
43
  this.numReconnects = null;
44
+ this.rssi = null;
45
+ /** @deprecated use rssi instead */
44
46
  this.signal = null;
45
47
  this.speed = null;
46
48
  this.ssid = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.6.0-alpha.7",
3
+ "version": "3.6.0-alpha.8",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",