@lansweeper/data-platform-outbound-grpc 0.1.71 → 0.1.73

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.70",
2
+ "version": "0.1.72",
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.71",
3
+ "version": "0.1.73",
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": "4fc0f022f841cd2b96f0dabffdfda88f8280f198"
12
+ "gitHead": "76fa2066f51be87bcc3300ac84effd934314adfb"
13
13
  }
@@ -142,24 +142,6 @@ message Asset {
142
142
  optional NetworkProtocols network_protocols = 76;
143
143
  optional PortScan port_scan = 77;
144
144
 
145
- // START OF DEPRECATED: in Computer message now
146
- optional SoftwareInventory software_inventory = 9;
147
- repeated AntivirusSoftware antivirus = 26;
148
- repeated OperatingSystemPatch os_patch = 13;
149
- repeated OperatingSystemFeature os_feature = 37;
150
- repeated Processor processor = 15;
151
- optional Chassis chassis = 18;
152
- optional Memory memory = 19;
153
- optional Motherboard motherboard = 21;
154
- repeated OpticalDrive optical_drive = 24;
155
- repeated HardDrive hard_drive = 25;
156
- repeated GraphicsCard graphics_card = 27;
157
- repeated SoundCard sound_card = 30;
158
- repeated Keyboard keyboard = 28;
159
- repeated PointingDevice pointing_device = 29;
160
- optional LastUser last_user = 31;
161
- // END OF DEPRECATED and now in Computer
162
-
163
145
  optional Computer computer = 75;
164
146
 
165
147
  optional OtModule ot_module = 16; // OT specific module info when asset type is 'OT'
@@ -304,7 +286,7 @@ message CloudEntity {
304
286
  */
305
287
  message OtModule {
306
288
  optional string component_type = 1;
307
- optional OtRack rack = 2;
289
+ optional OtBusConfig bus_config = 2;
308
290
 
309
291
  bool is_main_module = 3;
310
292
  bool is_network_node = 7;
@@ -318,13 +300,14 @@ message OtModule {
318
300
  }
319
301
 
320
302
  // Information about the OT rack the module is plugged into
321
- message OtRack {
303
+ message OtBusConfig {
322
304
  int32 number = 1;
323
305
  optional string name = 2;
324
306
  optional string type = 3;
325
307
  int32 size = 4;
326
- optional int32 slot_number = 5; // the specific slot number for this module in the rack
327
- optional int32 slot_width = 6; // the specific slot width for this module in the rack
308
+ int32 start_index = 7;
309
+ optional int32 position = 5; // the specific slot number for this module in the rack
310
+ optional int32 width = 6; // the specific slot width for this module in the rack
328
311
  }
329
312
 
330
313
  message OtModuleExtInfo {