@lansweeper/data-platform-outbound-grpc 0.1.116 → 0.1.117
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 +107 -0
- package/gen-proto/outbound_pb.js +845 -0
- package/generated-go/outbound.pb.go +7086 -6855
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +20 -0
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.117",
|
|
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": "1f9e65d4a8051a184ecd00512d629c19005f9b42"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -276,6 +276,8 @@ message Computer {
|
|
|
276
276
|
repeated ComputerMacCamera mac_camera = 38;
|
|
277
277
|
repeated ComputerMacCardReader mac_card_reader = 39;
|
|
278
278
|
repeated ComputerMacDiagnostics mac_diagnostic = 41;
|
|
279
|
+
optional ComputerMacEthernet mac_ethernet = 42;
|
|
280
|
+
|
|
279
281
|
|
|
280
282
|
|
|
281
283
|
// OS
|
|
@@ -2292,6 +2294,24 @@ message WindowsSinglePageFile {
|
|
|
2292
2294
|
optional bool writeable = 15;
|
|
2293
2295
|
}
|
|
2294
2296
|
|
|
2297
|
+
/* Section element for ethernet hardware info on Mac */
|
|
2298
|
+
message ComputerMacEthernet {
|
|
2299
|
+
optional string name = 1;
|
|
2300
|
+
optional string bsd_device_name = 2;
|
|
2301
|
+
optional bool avb_support = 3;
|
|
2302
|
+
optional string bus = 4;
|
|
2303
|
+
optional string device_id = 5;
|
|
2304
|
+
optional string driver = 6;
|
|
2305
|
+
optional string mac_address = 7;
|
|
2306
|
+
optional string max_link_speed = 8;
|
|
2307
|
+
optional string pcie_link_speed = 9;
|
|
2308
|
+
optional uint32 pcie_link_width = 10;
|
|
2309
|
+
optional string revision_id = 11;
|
|
2310
|
+
optional string subsystem_id = 12;
|
|
2311
|
+
optional string subsystem_vendor_id = 13;
|
|
2312
|
+
optional string vendor_id = 14;
|
|
2313
|
+
}
|
|
2314
|
+
|
|
2295
2315
|
message WindowsPageFileCombinedData {
|
|
2296
2316
|
repeated WindowsPageFileUsage page_file_usages = 1;
|
|
2297
2317
|
repeated WindowsPageFileSetting page_file_settings = 2;
|