@lansweeper/data-platform-outbound-grpc 0.1.46 → 0.1.47
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 +18 -12
- package/gen-proto/outbound_pb.js +160 -124
- package/generated-go/outbound.pb.go +2126 -2122
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +9 -8
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.47",
|
|
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": "c3f822e3a30701883dd225635733153ec6be8e50"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -219,14 +219,13 @@ message CloudEntity {
|
|
|
219
219
|
* OS info: in OS standard section.
|
|
220
220
|
*/
|
|
221
221
|
message OtModule {
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
optional string
|
|
228
|
-
|
|
229
|
-
repeated OtModuleExtInfo ext_info = 7;
|
|
222
|
+
optional string component_type = 1;
|
|
223
|
+
optional OtRack rack = 2;
|
|
224
|
+
|
|
225
|
+
bool is_main_module = 3;
|
|
226
|
+
|
|
227
|
+
optional string part_number = 4;
|
|
228
|
+
repeated OtModuleExtInfo ext_info = 5;
|
|
230
229
|
}
|
|
231
230
|
|
|
232
231
|
// Information about the OT rack the module is plugged into
|
|
@@ -235,6 +234,8 @@ message OtRack {
|
|
|
235
234
|
optional string name = 2;
|
|
236
235
|
optional string type = 3;
|
|
237
236
|
int32 size = 4;
|
|
237
|
+
optional int32 slot_number = 5; // the specific slot number for this module in the rack
|
|
238
|
+
optional int32 slot_width = 6; // the specific slot width for this module in the rack
|
|
238
239
|
}
|
|
239
240
|
|
|
240
241
|
message OtModuleExtInfo {
|