@lansweeper/discovery-sensor-proto 2.42.0 → 2.44.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.44.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": "05739818541f1eb51c5845041a43cded5de0b2c9"
|
|
20
20
|
}
|
|
@@ -464,3 +464,48 @@ message MacSecureElements {
|
|
|
464
464
|
google.protobuf.StringValue secure_elements_platform_id = 12;
|
|
465
465
|
google.protobuf.StringValue secure_elements_production_signed = 13;
|
|
466
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
|
+
}
|
|
486
|
+
|
|
487
|
+
/* Section element for camera info on Mac */
|
|
488
|
+
message MacCamera {
|
|
489
|
+
repeated Camera entries = 1;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
message Camera {
|
|
493
|
+
google.protobuf.StringValue name = 1;
|
|
494
|
+
google.protobuf.StringValue model_id = 2;
|
|
495
|
+
google.protobuf.StringValue unique_id = 3;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
/* Section element for card reader info on Mac */
|
|
499
|
+
message MacCardReader {
|
|
500
|
+
repeated CardReader entries = 1;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
message CardReader {
|
|
504
|
+
google.protobuf.StringValue device_id = 1;
|
|
505
|
+
google.protobuf.StringValue link_speed = 2;
|
|
506
|
+
google.protobuf.StringValue link_width = 3;
|
|
507
|
+
google.protobuf.StringValue revision_id = 4;
|
|
508
|
+
google.protobuf.StringValue subsystem_id = 5;
|
|
509
|
+
google.protobuf.StringValue subsystem_vendor_id = 6;
|
|
510
|
+
google.protobuf.StringValue vendor_id = 7;
|
|
511
|
+
}
|