@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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.118",
2
+ "version": "0.1.119",
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.119",
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": "e8b148f57d5461694a2069d216c7c27aea1d1cb8"
12
+ "gitHead": "b977380281e9b3751ae134a8de986604223e3629"
13
13
  }
@@ -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
  **/