@lansweeper/data-platform-outbound-grpc 0.1.114 → 0.1.116
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +104 -0
- package/gen-proto/outbound_pb.js +834 -1
- package/generated-go/outbound.pb.go +7496 -7241
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +21 -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.116",
|
|
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": "abee90f96e0db687a5b1a2ac4c1d3bdb840c9a6c"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -273,7 +273,9 @@ 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;
|
|
278
|
+
repeated ComputerMacDiagnostics mac_diagnostic = 41;
|
|
277
279
|
|
|
278
280
|
|
|
279
281
|
// OS
|
|
@@ -1029,6 +1031,13 @@ message ScannedPort {
|
|
|
1029
1031
|
|
|
1030
1032
|
}
|
|
1031
1033
|
|
|
1034
|
+
// macOS Diagnostic model
|
|
1035
|
+
message ComputerMacDiagnostics {
|
|
1036
|
+
optional string name = 1;
|
|
1037
|
+
optional google.protobuf.Timestamp last_run = 2;
|
|
1038
|
+
optional bool result = 3;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1032
1041
|
message HttpServerInfo {
|
|
1033
1042
|
int32 port = 1;
|
|
1034
1043
|
optional bool ssl = 2;
|
|
@@ -2376,6 +2385,17 @@ message ComputerMacPreferencePane {
|
|
|
2376
2385
|
optional string version = 7;
|
|
2377
2386
|
}
|
|
2378
2387
|
|
|
2388
|
+
// Card Reader, macOS Only. To be mppaer from MacCardReader inbound model
|
|
2389
|
+
message ComputerMacCardReader {
|
|
2390
|
+
optional string device_id = 1;
|
|
2391
|
+
optional string link_speed = 2;
|
|
2392
|
+
optional string link_width = 3;
|
|
2393
|
+
optional string revision_id = 4;
|
|
2394
|
+
optional string subsystem_id = 5;
|
|
2395
|
+
optional string subsystem_vendor_id = 6;
|
|
2396
|
+
optional string vendor_id = 7;
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2379
2399
|
/**
|
|
2380
2400
|
* Computer, Windows only: from WindowsDisplayControllerConfig.
|
|
2381
2401
|
*/
|