@lansweeper/discovery-sensor-proto 2.48.0 → 2.49.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.48.0",
4
+ "version": "2.49.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": "71f321565bad7feaaf7fc787618d87c078c89ede"
19
+ "gitHead": "7417ebdebba87e27596a0c6da8c00e6acc66d8a6"
20
20
  }
@@ -673,3 +673,48 @@ message SATAVolume {
673
673
  google.protobuf.StringValue volume_uuid = 10;
674
674
  google.protobuf.StringValue writable = 11;
675
675
  }
676
+
677
+ /* Section element for SPI devices info on Mac */
678
+ message MacSPI {
679
+ repeated SPIDevice entries = 1;
680
+ }
681
+
682
+ message SPIDevice {
683
+ google.protobuf.StringValue name = 1;
684
+ google.protobuf.StringValue product_id = 2;
685
+ google.protobuf.StringValue vendor_id = 3;
686
+ google.protobuf.StringValue stfw_version = 4;
687
+ google.protobuf.StringValue serial_number = 5;
688
+ google.protobuf.StringValue device_speed = 6;
689
+ google.protobuf.StringValue manufacturer = 7;
690
+ google.protobuf.StringValue location_id = 8;
691
+ google.protobuf.StringValue mtfw_version = 9;
692
+ }
693
+
694
+ /* Section element for storage devices info on Mac */
695
+ message MacStorage {
696
+ repeated StorageVolume entries = 1;
697
+ }
698
+
699
+ message StorageVolume {
700
+ google.protobuf.StringValue name = 1;
701
+ google.protobuf.StringValue bsd_name = 2;
702
+ google.protobuf.StringValue file_system = 3;
703
+ google.protobuf.StringValue free_space_in_bytes = 4;
704
+ google.protobuf.StringValue ignore_ownership = 5;
705
+ google.protobuf.StringValue mount_point = 6;
706
+ google.protobuf.StringValue size_in_bytes = 7;
707
+ google.protobuf.StringValue volume_uuid = 8;
708
+ google.protobuf.StringValue writable = 9;
709
+ repeated StorageDrive physical_drives = 10;
710
+ }
711
+
712
+ message StorageDrive {
713
+ google.protobuf.StringValue device_name = 1;
714
+ google.protobuf.StringValue is_internal_disk = 2;
715
+ google.protobuf.StringValue media_name = 3;
716
+ google.protobuf.StringValue medium_type = 4;
717
+ google.protobuf.StringValue partition_map_type = 5;
718
+ google.protobuf.StringValue protocol = 6;
719
+ google.protobuf.StringValue smart_status = 7;
720
+ }