@lansweeper/discovery-sensor-proto 2.22.2 → 2.23.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lansweeper/discovery-sensor-proto",
3
3
  "description": "Discovery Sensor proto",
4
- "version": "2.22.2",
4
+ "version": "2.23.0",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
7
7
  "license": "MIT",
@@ -16,5 +16,5 @@
16
16
  "devDependencies": {
17
17
  "@types/google-protobuf": "^3.15.5"
18
18
  },
19
- "gitHead": "5a954c61b23a2ace8bf3fbdca26e985a7d9027b9"
19
+ "gitHead": "36da4e19a25b6c2940ac4076431bc6fc50db54bc"
20
20
  }
@@ -312,4 +312,29 @@ message Monitor {
312
312
  google.protobuf.StringValue quartz_extreme = 19;
313
313
  google.protobuf.StringValue device_type = 20;
314
314
  google.protobuf.StringValue built_in = 21;
315
- }
315
+ }
316
+
317
+ /* Section element for firewire info on Mac */
318
+ message MacFirewire {
319
+ repeated Firewire entries = 1;
320
+ }
321
+
322
+ message Firewire {
323
+ google.protobuf.StringValue name = 1;
324
+ google.protobuf.StringValue max_device_speed = 2;
325
+ }
326
+
327
+ /* Section element for modem info on Mac */
328
+ message MacModem {
329
+ repeated Modem entries = 1;
330
+ }
331
+
332
+ message Modem {
333
+ google.protobuf.StringValue name = 1;
334
+ google.protobuf.StringValue country_info = 2;
335
+ google.protobuf.StringValue driver_info = 3;
336
+ google.protobuf.StringValue hw_version = 4;
337
+ google.protobuf.StringValue interface_type = 5;
338
+ google.protobuf.StringValue model = 6;
339
+ google.protobuf.StringValue modulation = 7;
340
+ }