@lansweeper/data-platform-outbound-grpc 0.1.119 → 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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +76 -0
- package/gen-proto/outbound_pb.js +608 -1
- package/generated-go/outbound.pb.go +3763 -3591
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +14 -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
|
@@ -279,6 +279,7 @@ message Computer {
|
|
|
279
279
|
repeated ComputerMacDiagnostics mac_diagnostic = 41;
|
|
280
280
|
optional ComputerMacEthernet mac_ethernet = 42;
|
|
281
281
|
optional ComputerMacNVMExpress mac_nvm_express = 43;
|
|
282
|
+
repeated ComputerMacSPIDevice mac_spi_device = 44;
|
|
282
283
|
|
|
283
284
|
|
|
284
285
|
// OS
|
|
@@ -1589,6 +1590,19 @@ message NVMExpressVolume {
|
|
|
1589
1590
|
optional uint64 size_in_bytes = 5;
|
|
1590
1591
|
}
|
|
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
|
+
|
|
1592
1606
|
/**
|
|
1593
1607
|
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards), macOS (MacAudio)
|
|
1594
1608
|
**/
|