@lansweeper/data-platform-outbound-grpc 0.1.114 → 0.1.115
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/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +64 -0
- package/gen-proto/outbound_pb.js +512 -1
- package/generated-go/outbound.pb.go +6919 -6769
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +13 -1
package/java.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.115",
|
|
4
4
|
"description": "Data Platform Outbound gRPC",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@grpc/grpc-js": "^1.5.1",
|
|
10
10
|
"google-protobuf": "^3.17.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "37b7c014dd79cbfba8c884c232f419536f854924"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -273,7 +273,8 @@ message Computer {
|
|
|
273
273
|
repeated ComputerMacBluetooth mac_bluetooth = 35;
|
|
274
274
|
repeated ComputerMacNetworkLocation mac_network_location = 36;
|
|
275
275
|
optional ComputerMacSecureElements mac_secure_elements = 37;
|
|
276
|
-
repeated ComputerMacCamera mac_camera = 38;
|
|
276
|
+
repeated ComputerMacCamera mac_camera = 38;
|
|
277
|
+
repeated ComputerMacCardReader mac_card_reader = 39;
|
|
277
278
|
|
|
278
279
|
|
|
279
280
|
// OS
|
|
@@ -2376,6 +2377,17 @@ message ComputerMacPreferencePane {
|
|
|
2376
2377
|
optional string version = 7;
|
|
2377
2378
|
}
|
|
2378
2379
|
|
|
2380
|
+
// Card Reader, macOS Only. To be mppaer from MacCardReader inbound model
|
|
2381
|
+
message ComputerMacCardReader {
|
|
2382
|
+
optional string device_id = 1;
|
|
2383
|
+
optional string link_speed = 2;
|
|
2384
|
+
optional string link_width = 3;
|
|
2385
|
+
optional string revision_id = 4;
|
|
2386
|
+
optional string subsystem_id = 5;
|
|
2387
|
+
optional string subsystem_vendor_id = 6;
|
|
2388
|
+
optional string vendor_id = 7;
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2379
2391
|
/**
|
|
2380
2392
|
* Computer, Windows only: from WindowsDisplayControllerConfig.
|
|
2381
2393
|
*/
|