@lansweeper/discovery-sensor-proto 2.50.0 → 2.51.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.50.0",
4
+ "version": "2.51.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": "d432ed3f68ad723cf1b6efc49cd95f5fcc4ff14c"
19
+ "gitHead": "27414c31e1aaa9bba7178c899fa8e00d527e5d65"
20
20
  }
@@ -748,3 +748,27 @@ message USBDevice {
748
748
  google.protobuf.StringValue vendor_id = 12;
749
749
  repeated USBDevice sub_devices = 13;
750
750
  }
751
+
752
+ /* Section element for Thunderbolt devices info on Mac */
753
+ message MacThunderbolt {
754
+ repeated ThunderboltController entries = 1;
755
+ }
756
+
757
+ message ThunderboltController {
758
+ google.protobuf.StringValue name = 1;
759
+ google.protobuf.StringValue device_name = 2;
760
+ google.protobuf.StringValue domain_uuid = 3;
761
+ google.protobuf.StringValue route_string = 4;
762
+ google.protobuf.StringValue switch_uid = 5;
763
+ google.protobuf.StringValue switch_version = 6;
764
+ google.protobuf.StringValue vendor_name = 7;
765
+ repeated ThunderboltPort ports = 8;
766
+ }
767
+
768
+ message ThunderboltPort {
769
+ google.protobuf.StringValue current_link_width = 1;
770
+ google.protobuf.StringValue current_speed = 2;
771
+ google.protobuf.StringValue link_status = 3;
772
+ google.protobuf.StringValue receptacle_id = 4;
773
+ google.protobuf.StringValue receptacle_status = 5;
774
+ }