@lansweeper/discovery-sensor-proto 2.44.0 → 2.45.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.45.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": "6b348df7978169f7bee2d7926eb14b5267b212a2"
|
|
20
20
|
}
|
|
@@ -509,3 +509,30 @@ 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
|
+
}
|