@lansweeper/discovery-sensor-proto 2.43.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
|
}
|
|
@@ -483,3 +483,29 @@ message Audio {
|
|
|
483
483
|
google.protobuf.StringValue coreaudio_input_source = 10;
|
|
484
484
|
google.protobuf.StringValue coreaudio_output_source = 11;
|
|
485
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
|
+
}
|