@lansweeper/data-platform-outbound-grpc 0.1.118 → 0.1.120
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 +251 -0
- package/gen-proto/outbound_pb.js +2009 -1
- package/generated-go/outbound.pb.go +4344 -3759
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +45 -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.120",
|
|
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": "b977380281e9b3751ae134a8de986604223e3629"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -278,6 +278,8 @@ 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;
|
|
282
|
+
repeated ComputerMacSPIDevice mac_spi_device = 44;
|
|
281
283
|
|
|
282
284
|
|
|
283
285
|
// OS
|
|
@@ -1558,6 +1560,49 @@ message ComputerMacNetworkLocation {
|
|
|
1558
1560
|
repeated NetworkInterface location_services = 3;
|
|
1559
1561
|
}
|
|
1560
1562
|
|
|
1563
|
+
/* Section element for NVMExpress info on Mac */
|
|
1564
|
+
message ComputerMacNVMExpress {
|
|
1565
|
+
optional string controller_name = 1;
|
|
1566
|
+
repeated NVMExpress entries = 2;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
message NVMExpress {
|
|
1570
|
+
optional string name = 1;
|
|
1571
|
+
optional string bsd_name = 2;
|
|
1572
|
+
optional bool detachable_drive = 3;
|
|
1573
|
+
optional string device_model = 4;
|
|
1574
|
+
optional string device_revision = 5;
|
|
1575
|
+
optional string device_serial_number = 6;
|
|
1576
|
+
optional string partition_map_type = 7;
|
|
1577
|
+
optional bool removable_media = 8;
|
|
1578
|
+
optional string size = 9;
|
|
1579
|
+
optional uint64 size_in_bytes = 10;
|
|
1580
|
+
optional string smart_status = 11;
|
|
1581
|
+
optional bool trim_support = 12;
|
|
1582
|
+
repeated NVMExpressVolume volumes = 13;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
message NVMExpressVolume {
|
|
1586
|
+
optional string name = 1;
|
|
1587
|
+
optional string bsd_name = 2;
|
|
1588
|
+
optional string io_content = 3;
|
|
1589
|
+
optional string size = 4;
|
|
1590
|
+
optional uint64 size_in_bytes = 5;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
// SPI Device, macOS only, to be mapped from MacSPI inbound model
|
|
1594
|
+
message ComputerMacSPIDevice {
|
|
1595
|
+
optional string name = 1;
|
|
1596
|
+
optional string product_id = 2;
|
|
1597
|
+
optional string vendor_id = 3;
|
|
1598
|
+
optional string stfw_version = 4;
|
|
1599
|
+
optional string serial_number = 5;
|
|
1600
|
+
optional string device_speed = 6;
|
|
1601
|
+
optional string manufacturer = 7;
|
|
1602
|
+
optional string location_id = 8;
|
|
1603
|
+
optional string mtfw_version = 9;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1561
1606
|
/**
|
|
1562
1607
|
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards), macOS (MacAudio)
|
|
1563
1608
|
**/
|