@lansweeper/discovery-sensor-proto 2.47.0 → 2.48.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.
|
|
4
|
+
"version": "2.48.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": "
|
|
19
|
+
"gitHead": "71f321565bad7feaaf7fc787618d87c078c89ede"
|
|
20
20
|
}
|
|
@@ -622,3 +622,54 @@ message PrinterCupsFilter {
|
|
|
622
622
|
google.protobuf.StringValue image_type = 1;
|
|
623
623
|
google.protobuf.StringValue image_type_setting = 2;
|
|
624
624
|
}
|
|
625
|
+
|
|
626
|
+
/* Section element for SATA devices info on Mac */
|
|
627
|
+
message MacSATA {
|
|
628
|
+
repeated SATAController entries = 1;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
message SATAController {
|
|
632
|
+
google.protobuf.StringValue name = 1;
|
|
633
|
+
google.protobuf.StringValue negotiated_link_speed = 2;
|
|
634
|
+
google.protobuf.StringValue physical_interconnect = 3;
|
|
635
|
+
google.protobuf.StringValue port_description = 4;
|
|
636
|
+
google.protobuf.StringValue port_speed = 5;
|
|
637
|
+
google.protobuf.StringValue product = 6;
|
|
638
|
+
google.protobuf.StringValue vendor = 7;
|
|
639
|
+
repeated SATADevice devices = 8;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
message SATADevice {
|
|
643
|
+
google.protobuf.StringValue name = 1;
|
|
644
|
+
google.protobuf.StringValue bsd_name = 2;
|
|
645
|
+
google.protobuf.StringValue detachable_drive = 3;
|
|
646
|
+
google.protobuf.StringValue device_model = 4;
|
|
647
|
+
google.protobuf.StringValue device_revision = 5;
|
|
648
|
+
google.protobuf.StringValue device_serial_number = 6;
|
|
649
|
+
google.protobuf.StringValue partition_map_type = 7;
|
|
650
|
+
google.protobuf.StringValue removable_media = 8;
|
|
651
|
+
google.protobuf.StringValue size = 9;
|
|
652
|
+
google.protobuf.StringValue size_in_bytes = 10;
|
|
653
|
+
google.protobuf.StringValue smart_status = 11;
|
|
654
|
+
google.protobuf.StringValue medium_type = 12;
|
|
655
|
+
google.protobuf.StringValue native_command_queuing = 13;
|
|
656
|
+
google.protobuf.StringValue queue_depth = 14;
|
|
657
|
+
google.protobuf.StringValue trim_support = 15;
|
|
658
|
+
google.protobuf.StringValue async_notification = 16;
|
|
659
|
+
google.protobuf.StringValue power_off = 17;
|
|
660
|
+
repeated SATAVolume volumes = 18;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
message SATAVolume {
|
|
664
|
+
google.protobuf.StringValue name = 1;
|
|
665
|
+
google.protobuf.StringValue bsd_name = 2;
|
|
666
|
+
google.protobuf.StringValue file_system = 3;
|
|
667
|
+
google.protobuf.StringValue free_space = 4;
|
|
668
|
+
google.protobuf.StringValue free_space_in_bytes = 5;
|
|
669
|
+
google.protobuf.StringValue io_content = 6;
|
|
670
|
+
google.protobuf.StringValue mount_point = 7;
|
|
671
|
+
google.protobuf.StringValue size = 8;
|
|
672
|
+
google.protobuf.StringValue size_in_bytes = 9;
|
|
673
|
+
google.protobuf.StringValue volume_uuid = 10;
|
|
674
|
+
google.protobuf.StringValue writable = 11;
|
|
675
|
+
}
|