@lansweeper/discovery-sensor-proto 2.44.0 → 2.46.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.46.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": "82b4355d89eb4735f1026f82ba5934f9576c9343"
|
|
20
20
|
}
|
|
@@ -509,3 +509,78 @@ message CardReader {
|
|
|
509
509
|
google.protobuf.StringValue subsystem_vendor_id = 6;
|
|
510
510
|
google.protobuf.StringValue vendor_id = 7;
|
|
511
511
|
}
|
|
512
|
+
|
|
513
|
+
/* Section element for hardware iBridge controller info on Mac */
|
|
514
|
+
message MacController {
|
|
515
|
+
google.protobuf.StringValue boot_uuid = 1;
|
|
516
|
+
google.protobuf.StringValue firmware_version = 2;
|
|
517
|
+
google.protobuf.StringValue extra_boot_policies = 3;
|
|
518
|
+
google.protobuf.StringValue model_identifier = 4;
|
|
519
|
+
google.protobuf.StringValue boot_args_filtering = 5;
|
|
520
|
+
google.protobuf.StringValue kernel_ctrr = 6;
|
|
521
|
+
google.protobuf.StringValue device_mdm_operations = 7;
|
|
522
|
+
google.protobuf.StringValue user_mdm_operations = 8;
|
|
523
|
+
google.protobuf.StringValue other_kernel_extensions = 9;
|
|
524
|
+
google.protobuf.StringValue system_integrity_protection = 10;
|
|
525
|
+
google.protobuf.StringValue signed_system_volume = 11;
|
|
526
|
+
google.protobuf.StringValue secure_boot = 12;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
/* Section element for diagnostics info on Mac */
|
|
530
|
+
message MacDiagnostics {
|
|
531
|
+
repeated Diagnostics entries = 1;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
message Diagnostics {
|
|
535
|
+
google.protobuf.StringValue name = 1;
|
|
536
|
+
google.protobuf.StringValue last_run = 2;
|
|
537
|
+
google.protobuf.StringValue result = 3;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
/* Section element for ethernet hardware info on Mac */
|
|
541
|
+
message MacEthernet {
|
|
542
|
+
google.protobuf.StringValue name = 1;
|
|
543
|
+
google.protobuf.StringValue bsd_device_name = 2;
|
|
544
|
+
google.protobuf.StringValue avb_support = 3;
|
|
545
|
+
google.protobuf.StringValue bus = 4;
|
|
546
|
+
google.protobuf.StringValue device_id = 5;
|
|
547
|
+
google.protobuf.StringValue driver = 6;
|
|
548
|
+
google.protobuf.StringValue mac_address = 7;
|
|
549
|
+
google.protobuf.StringValue max_link_speed = 8;
|
|
550
|
+
google.protobuf.StringValue pcie_link_speed = 9;
|
|
551
|
+
google.protobuf.StringValue pcie_link_width = 10;
|
|
552
|
+
google.protobuf.StringValue revision_id = 11;
|
|
553
|
+
google.protobuf.StringValue subsystem_id = 12;
|
|
554
|
+
google.protobuf.StringValue subsystem_vendor_id = 13;
|
|
555
|
+
google.protobuf.StringValue vendor_id = 14;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
/* Section element for NVMExpress info on Mac */
|
|
559
|
+
message MacNVMExpress {
|
|
560
|
+
google.protobuf.StringValue controller_name = 1;
|
|
561
|
+
repeated NVMExpress entries = 2;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
message NVMExpress {
|
|
565
|
+
google.protobuf.StringValue name = 1;
|
|
566
|
+
google.protobuf.StringValue bsd_name = 2;
|
|
567
|
+
google.protobuf.StringValue detachable_drive = 3;
|
|
568
|
+
google.protobuf.StringValue device_model = 4;
|
|
569
|
+
google.protobuf.StringValue device_revision = 5;
|
|
570
|
+
google.protobuf.StringValue device_serial_number = 6;
|
|
571
|
+
google.protobuf.StringValue partition_map_type = 7;
|
|
572
|
+
google.protobuf.StringValue removable_media = 8;
|
|
573
|
+
google.protobuf.StringValue size = 9;
|
|
574
|
+
google.protobuf.StringValue size_in_bytes = 10;
|
|
575
|
+
google.protobuf.StringValue smart_status = 11;
|
|
576
|
+
google.protobuf.StringValue trim_support = 12;
|
|
577
|
+
repeated NVMExpressVolume volumes = 13;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
message NVMExpressVolume {
|
|
581
|
+
google.protobuf.StringValue name = 1;
|
|
582
|
+
google.protobuf.StringValue bsd_name = 2;
|
|
583
|
+
google.protobuf.StringValue io_content = 3;
|
|
584
|
+
google.protobuf.StringValue size = 4;
|
|
585
|
+
google.protobuf.StringValue size_in_bytes = 5;
|
|
586
|
+
}
|