@lansweeper/discovery-sensor-proto 2.13.19 → 2.13.21
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.13.
|
|
4
|
+
"version": "2.13.21",
|
|
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": "2f28fbfdb252a33505f837e96df6d5a8b853adae"
|
|
20
20
|
}
|
|
@@ -268,4 +268,35 @@ message SystemHardware {
|
|
|
268
268
|
google.protobuf.StringValue packages = 11;
|
|
269
269
|
google.protobuf.StringValue platform_uuid = 12;
|
|
270
270
|
google.protobuf.StringValue smc_version_system = 13;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
/* Section element for monitors on Mac */
|
|
274
|
+
message MacMonitor {
|
|
275
|
+
google.protobuf.StringValue name = 1;
|
|
276
|
+
google.protobuf.StringValue mtl_gpu_family_support = 2;
|
|
277
|
+
repeated Monitor entries = 3;
|
|
278
|
+
google.protobuf.StringValue vendor = 4;
|
|
279
|
+
google.protobuf.StringValue sppci_bus = 5;
|
|
280
|
+
google.protobuf.StringValue sppci_cores = 6;
|
|
281
|
+
google.protobuf.StringValue sppci_device_type = 7;
|
|
282
|
+
google.protobuf.StringValue sppci_model = 8;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
message Monitor {
|
|
286
|
+
google.protobuf.StringValue name = 1;
|
|
287
|
+
google.protobuf.StringValue product_id = 2;
|
|
288
|
+
google.protobuf.StringValue serial_number = 3;
|
|
289
|
+
google.protobuf.StringValue vendor_id = 4;
|
|
290
|
+
google.protobuf.StringValue week = 5;
|
|
291
|
+
google.protobuf.StringValue year = 6;
|
|
292
|
+
google.protobuf.StringValue Id = 7;
|
|
293
|
+
google.protobuf.StringValue pixels = 8;
|
|
294
|
+
google.protobuf.StringValue resolution = 9;
|
|
295
|
+
google.protobuf.StringValue ambient_brightness = 10;
|
|
296
|
+
google.protobuf.StringValue connection_type = 11;
|
|
297
|
+
google.protobuf.StringValue display_type = 12;
|
|
298
|
+
google.protobuf.StringValue is_main = 13;
|
|
299
|
+
google.protobuf.StringValue mirror = 14;
|
|
300
|
+
google.protobuf.StringValue is_online = 15;
|
|
301
|
+
google.protobuf.StringValue pixel_resolution = 16;
|
|
271
302
|
}
|