@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/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +29 -106
- package/gen-proto/outbound_pb.js +249 -1004
- package/generated-go/outbound.pb.go +4723 -4927
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +5 -22
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.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": "
|
|
12
|
+
"gitHead": "76fa2066f51be87bcc3300ac84effd934314adfb"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -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
|
|
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
|
|
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
|
-
|
|
327
|
-
optional int32
|
|
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 {
|