@lansweeper/data-platform-outbound-grpc 0.1.117 → 0.1.119
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 +270 -0
- package/gen-proto/outbound_pb.js +6919 -4769
- package/generated-go/outbound.pb.go +8176 -7535
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +48 -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.119",
|
|
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": "e8b148f57d5461694a2069d216c7c27aea1d1cb8"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -275,11 +275,12 @@ 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
|
+
optional ComputerMacNVMExpress mac_nvm_express = 43;
|
|
280
282
|
|
|
281
283
|
|
|
282
|
-
|
|
283
284
|
// OS
|
|
284
285
|
optional Bios bios = 101;
|
|
285
286
|
repeated OperatingSystemPatch os_patch = 102;
|
|
@@ -853,6 +854,22 @@ message LinuxOperatingSystemInfo {
|
|
|
853
854
|
optional string os_release = 5;
|
|
854
855
|
}
|
|
855
856
|
|
|
857
|
+
/* Section element for hardware iBridge controller info on Mac */
|
|
858
|
+
message ComputerMacHardwareController {
|
|
859
|
+
optional string boot_uuid = 1;
|
|
860
|
+
optional string firmware_version = 2;
|
|
861
|
+
optional string extra_boot_policies = 3;
|
|
862
|
+
optional string model_identifier = 4;
|
|
863
|
+
optional bool boot_args_filtering_enabled = 5;
|
|
864
|
+
optional bool kernel_ctrr_enabled = 6;
|
|
865
|
+
optional bool device_mdm_operations = 7;
|
|
866
|
+
optional bool user_mdm_operations = 8;
|
|
867
|
+
optional bool other_kernel_extensions = 9;
|
|
868
|
+
optional bool system_integrity_protection = 10;
|
|
869
|
+
optional bool signed_system_volume = 11;
|
|
870
|
+
optional string secure_boot = 12;
|
|
871
|
+
}
|
|
872
|
+
|
|
856
873
|
message WindowsOperatingSystemInfo {
|
|
857
874
|
optional string version = 1;
|
|
858
875
|
optional int32 service_pack = 2;
|
|
@@ -1542,6 +1559,36 @@ message ComputerMacNetworkLocation {
|
|
|
1542
1559
|
repeated NetworkInterface location_services = 3;
|
|
1543
1560
|
}
|
|
1544
1561
|
|
|
1562
|
+
/* Section element for NVMExpress info on Mac */
|
|
1563
|
+
message ComputerMacNVMExpress {
|
|
1564
|
+
optional string controller_name = 1;
|
|
1565
|
+
repeated NVMExpress entries = 2;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
message NVMExpress {
|
|
1569
|
+
optional string name = 1;
|
|
1570
|
+
optional string bsd_name = 2;
|
|
1571
|
+
optional bool detachable_drive = 3;
|
|
1572
|
+
optional string device_model = 4;
|
|
1573
|
+
optional string device_revision = 5;
|
|
1574
|
+
optional string device_serial_number = 6;
|
|
1575
|
+
optional string partition_map_type = 7;
|
|
1576
|
+
optional bool removable_media = 8;
|
|
1577
|
+
optional string size = 9;
|
|
1578
|
+
optional uint64 size_in_bytes = 10;
|
|
1579
|
+
optional string smart_status = 11;
|
|
1580
|
+
optional bool trim_support = 12;
|
|
1581
|
+
repeated NVMExpressVolume volumes = 13;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
message NVMExpressVolume {
|
|
1585
|
+
optional string name = 1;
|
|
1586
|
+
optional string bsd_name = 2;
|
|
1587
|
+
optional string io_content = 3;
|
|
1588
|
+
optional string size = 4;
|
|
1589
|
+
optional uint64 size_in_bytes = 5;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1545
1592
|
/**
|
|
1546
1593
|
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards), macOS (MacAudio)
|
|
1547
1594
|
**/
|