@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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.45",
2
+ "version": "0.1.46",
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.46",
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": "d5b8c606ff2005dd79af5646ef1d0dc080a651aa"
12
+ "gitHead": "c3f822e3a30701883dd225635733153ec6be8e50"
13
13
  }
@@ -219,14 +219,13 @@ message CloudEntity {
219
219
  * OS info: in OS standard section.
220
220
  */
221
221
  message OtModule {
222
- OtRack rack = 1;
223
- int32 slot_number = 2; // the specific slot for this module in the rack
224
- int32 slot_width = 3;
225
-
226
- bool is_main_module = 4;
227
- optional string component_type = 5;
228
- optional string part_number = 6;
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 {