@lansweeper/data-platform-outbound-grpc 0.1.117 → 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.116",
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.117",
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": "1f9e65d4a8051a184ecd00512d629c19005f9b42"
12
+ "gitHead": "a5e49e050642b0398d50533753efb3b6582627c2"
13
13
  }
@@ -275,11 +275,11 @@ 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;
280
281
 
281
282
 
282
-
283
283
  // OS
284
284
  optional Bios bios = 101;
285
285
  repeated OperatingSystemPatch os_patch = 102;
@@ -853,6 +853,22 @@ message LinuxOperatingSystemInfo {
853
853
  optional string os_release = 5;
854
854
  }
855
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
+
856
872
  message WindowsOperatingSystemInfo {
857
873
  optional string version = 1;
858
874
  optional int32 service_pack = 2;