@lansweeper/data-platform-outbound-grpc 0.1.79 → 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/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +92 -9
- package/gen-proto/outbound_pb.js +738 -79
- package/generated-go/outbound.pb.go +5151 -4962
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +18 -2
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.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": "
|
|
12
|
+
"gitHead": "9a0f1fe77f8012c68091c642c7612adf241c45e0"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -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.
|