@lansweeper/data-platform-outbound-grpc 0.1.78 → 0.1.80

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.77",
2
+ "version": "0.1.79",
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.78",
3
+ "version": "0.1.80",
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": "dc5c078e7b45b1670d69212acd66d4f91dbe9dea"
12
+ "gitHead": "9a0f1fe77f8012c68091c642c7612adf241c45e0"
13
13
  }
@@ -294,14 +294,15 @@ message OtModule {
294
294
  optional OtBusConfig bus_config = 2;
295
295
 
296
296
  bool is_main_module = 3;
297
- bool is_network_node = 7;
298
- optional string scan_protocol = 8;
299
297
 
300
298
  optional string part_number = 4;
301
299
  repeated OtModuleExtInfo ext_info = 5;
302
300
 
303
301
  optional string route_path = 6;
304
302
 
303
+ bool is_network_node = 7;
304
+ optional string scan_protocol = 8;
305
+ optional OtScanInfo scan_info = 9;
305
306
  }
306
307
 
307
308
  // Information about the OT rack the module is plugged into
@@ -320,6 +321,21 @@ message OtModuleExtInfo {
320
321
  string value = 2;
321
322
  }
322
323
 
324
+ // Information about the Scan config and last run of OT scan
325
+ message OtScanInfo {
326
+ optional string scan_target_id = 1;
327
+ optional string scan_target_name = 2;
328
+ optional string sensor_id = 3;
329
+ optional string sensor_name = 4;
330
+ optional string protocol_id = 5;
331
+ optional string protocol_name = 6;
332
+ optional int32 port = 7;
333
+ optional string network_protocol = 8;
334
+ optional google.protobuf.Timestamp last_tried = 9;
335
+ optional google.protobuf.Timestamp last_scan = 10;
336
+ }
337
+
338
+
323
339
  /**
324
340
  * Asset Type enables customers to manage the settings for a
325
341
  * category of information in a centralized, reusable way.
@@ -1761,13 +1777,13 @@ message ComputerWindowsDisplay {
1761
1777
  message ComputerWindowsDisplayController {
1762
1778
  optional int32 bits_per_pixel = 1;
1763
1779
  optional string caption = 2;
1764
- optional int32 color_planes = 3;
1765
- optional int32 device_entries_in_a_color_table = 4;
1766
- optional int32 device_specific_pens = 5;
1767
- optional int32 horizontal_resolution = 6;
1780
+ optional uint32 color_planes = 3;
1781
+ optional uint32 device_entries_in_a_color_table = 4;
1782
+ optional uint32 device_specific_pens = 5;
1783
+ optional uint32 horizontal_resolution = 6;
1768
1784
  optional string name = 7;
1769
1785
  optional int32 refresh_rate = 8;
1770
- optional int32 vertical_resolution = 9;
1786
+ optional uint32 vertical_resolution = 9;
1771
1787
  optional string video_mode = 10;
1772
1788
  }
1773
1789