@lansweeper/data-platform-outbound-grpc 0.1.80 → 0.1.81
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 +37 -0
- package/gen-proto/outbound_pb.js +309 -2
- package/generated-go/outbound.pb.go +5050 -4948
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +7 -0
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.81",
|
|
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": "4dcd8ee2f369885984ff82bb05307fa9a05fb415"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -303,6 +303,7 @@ message OtModule {
|
|
|
303
303
|
bool is_network_node = 7;
|
|
304
304
|
optional string scan_protocol = 8;
|
|
305
305
|
optional OtScanInfo scan_info = 9;
|
|
306
|
+
repeated OtFirmwareHistory fw_history = 10;
|
|
306
307
|
}
|
|
307
308
|
|
|
308
309
|
// Information about the OT rack the module is plugged into
|
|
@@ -335,6 +336,12 @@ message OtScanInfo {
|
|
|
335
336
|
optional google.protobuf.Timestamp last_scan = 10;
|
|
336
337
|
}
|
|
337
338
|
|
|
339
|
+
// Information about OT firmware history
|
|
340
|
+
message OtFirmwareHistory {
|
|
341
|
+
string firmware = 1;
|
|
342
|
+
google.protobuf.Timestamp from = 2;
|
|
343
|
+
google.protobuf.Timestamp until = 3;
|
|
344
|
+
}
|
|
338
345
|
|
|
339
346
|
/**
|
|
340
347
|
* Asset Type enables customers to manage the settings for a
|