@lansweeper/data-platform-outbound-grpc 0.1.116 → 0.1.118

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.117",
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.118",
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": "a5e49e050642b0398d50533753efb3b6582627c2"
13
13
  }
@@ -275,8 +275,10 @@ message Computer {
275
275
  optional ComputerMacSecureElements mac_secure_elements = 37;
276
276
  repeated ComputerMacCamera mac_camera = 38;
277
277
  repeated ComputerMacCardReader mac_card_reader = 39;
278
+ optional ComputerMacHardwareController mac_hardware_controller = 40;
278
279
  repeated ComputerMacDiagnostics mac_diagnostic = 41;
279
-
280
+ optional ComputerMacEthernet mac_ethernet = 42;
281
+
280
282
 
281
283
  // OS
282
284
  optional Bios bios = 101;
@@ -851,6 +853,22 @@ message LinuxOperatingSystemInfo {
851
853
  optional string os_release = 5;
852
854
  }
853
855
 
856
+ /* Section element for hardware iBridge controller info on Mac */
857
+ message ComputerMacHardwareController {
858
+ optional string boot_uuid = 1;
859
+ optional string firmware_version = 2;
860
+ optional string extra_boot_policies = 3;
861
+ optional string model_identifier = 4;
862
+ optional bool boot_args_filtering_enabled = 5;
863
+ optional bool kernel_ctrr_enabled = 6;
864
+ optional bool device_mdm_operations = 7;
865
+ optional bool user_mdm_operations = 8;
866
+ optional bool other_kernel_extensions = 9;
867
+ optional bool system_integrity_protection = 10;
868
+ optional bool signed_system_volume = 11;
869
+ optional string secure_boot = 12;
870
+ }
871
+
854
872
  message WindowsOperatingSystemInfo {
855
873
  optional string version = 1;
856
874
  optional int32 service_pack = 2;
@@ -2292,6 +2310,24 @@ message WindowsSinglePageFile {
2292
2310
  optional bool writeable = 15;
2293
2311
  }
2294
2312
 
2313
+ /* Section element for ethernet hardware info on Mac */
2314
+ message ComputerMacEthernet {
2315
+ optional string name = 1;
2316
+ optional string bsd_device_name = 2;
2317
+ optional bool avb_support = 3;
2318
+ optional string bus = 4;
2319
+ optional string device_id = 5;
2320
+ optional string driver = 6;
2321
+ optional string mac_address = 7;
2322
+ optional string max_link_speed = 8;
2323
+ optional string pcie_link_speed = 9;
2324
+ optional uint32 pcie_link_width = 10;
2325
+ optional string revision_id = 11;
2326
+ optional string subsystem_id = 12;
2327
+ optional string subsystem_vendor_id = 13;
2328
+ optional string vendor_id = 14;
2329
+ }
2330
+
2295
2331
  message WindowsPageFileCombinedData {
2296
2332
  repeated WindowsPageFileUsage page_file_usages = 1;
2297
2333
  repeated WindowsPageFileSetting page_file_settings = 2;