@lansweeper/data-platform-outbound-grpc 0.1.118 → 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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +175 -0
- package/gen-proto/outbound_pb.js +1601 -200
- package/generated-go/outbound.pb.go +3935 -3522
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +31 -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.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
|
@@ -278,6 +278,7 @@ message Computer {
|
|
|
278
278
|
optional ComputerMacHardwareController mac_hardware_controller = 40;
|
|
279
279
|
repeated ComputerMacDiagnostics mac_diagnostic = 41;
|
|
280
280
|
optional ComputerMacEthernet mac_ethernet = 42;
|
|
281
|
+
optional ComputerMacNVMExpress mac_nvm_express = 43;
|
|
281
282
|
|
|
282
283
|
|
|
283
284
|
// OS
|
|
@@ -1558,6 +1559,36 @@ message ComputerMacNetworkLocation {
|
|
|
1558
1559
|
repeated NetworkInterface location_services = 3;
|
|
1559
1560
|
}
|
|
1560
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
|
+
|
|
1561
1592
|
/**
|
|
1562
1593
|
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards), macOS (MacAudio)
|
|
1563
1594
|
**/
|