@lansweeper/discovery-sensor-proto 2.41.0 → 2.43.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.41.0",
4
+ "version": "2.43.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": "eeb452f9a83dbf3d3574e9c78cefb8b6b2c58af0"
19
+ "gitHead": "65ac8ed82c46b48a1ceed80b1a0daad5c5d664c9"
20
20
  }
@@ -433,3 +433,53 @@ message ServiceRule {
433
433
  google.protobuf.StringValue state = 2;
434
434
  }
435
435
 
436
+ /* Section element for universal accessiblity info on Mac */
437
+ message MacAccessibility {
438
+ google.protobuf.StringValue contrast = 1;
439
+ google.protobuf.StringValue cursor_mag = 2;
440
+ google.protobuf.StringValue display = 3;
441
+ google.protobuf.StringValue flash_screen = 4;
442
+ google.protobuf.StringValue keyboard_zoom = 5;
443
+ google.protobuf.StringValue mouse_keys = 6;
444
+ google.protobuf.StringValue scroll_zoom = 7;
445
+ google.protobuf.StringValue slow_keys = 8;
446
+ google.protobuf.StringValue sticky_keys = 9;
447
+ google.protobuf.StringValue voice_over = 10;
448
+ google.protobuf.StringValue zoom_mode = 11;
449
+ }
450
+
451
+ /* Section element for secure elements (Apple Pay) info on Mac */
452
+ message MacSecureElements {
453
+ google.protobuf.StringValue controller_firmware = 1;
454
+ google.protobuf.StringValue controller_hardware = 2;
455
+ google.protobuf.StringValue controller_info = 3;
456
+ google.protobuf.StringValue controller_middleware = 4;
457
+ google.protobuf.StringValue secure_elements_device = 5;
458
+ google.protobuf.StringValue secure_elements_firmware = 6;
459
+ google.protobuf.StringValue secure_elements_hardware = 7;
460
+ google.protobuf.StringValue secure_elements_id = 8;
461
+ google.protobuf.StringValue secure_elements_restricted_mode = 9;
462
+ google.protobuf.StringValue secure_elements_info = 10;
463
+ google.protobuf.StringValue secure_elements_os_version = 11;
464
+ google.protobuf.StringValue secure_elements_platform_id = 12;
465
+ google.protobuf.StringValue secure_elements_production_signed = 13;
466
+ }
467
+
468
+ /* Section element for audio info on Mac */
469
+ message MacAudio {
470
+ repeated Audio entries = 1;
471
+ }
472
+
473
+ message Audio {
474
+ google.protobuf.StringValue name = 1;
475
+ google.protobuf.StringValue coreaudio_default_audio_input_device = 2;
476
+ google.protobuf.StringValue coreaudio_default_audio_output_device = 3;
477
+ google.protobuf.StringValue coreaudio_default_audio_system_device = 4;
478
+ google.protobuf.StringValue coreaudio_device_input = 5;
479
+ google.protobuf.StringValue coreaudio_device_manufacturer = 6;
480
+ google.protobuf.StringValue coreaudio_device_output = 7;
481
+ google.protobuf.StringValue coreaudio_device_srate = 8;
482
+ google.protobuf.StringValue coreaudio_device_transport = 9;
483
+ google.protobuf.StringValue coreaudio_input_source = 10;
484
+ google.protobuf.StringValue coreaudio_output_source = 11;
485
+ }