@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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.115",
2
+ "version": "0.1.116",
3
3
  "package": "com.lansweeper.dp.outbound.v1",
4
4
  "service": true
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/data-platform-outbound-grpc",
3
- "version": "0.1.116",
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": "abee90f96e0db687a5b1a2ac4c1d3bdb840c9a6c"
12
+ "gitHead": "1f9e65d4a8051a184ecd00512d629c19005f9b42"
13
13
  }
@@ -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;