@lansweeper/data-platform-outbound-grpc 0.1.43 → 0.1.45

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.42",
2
+ "version": "0.1.44",
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.43",
3
+ "version": "0.1.45",
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": "60c059ce813c06d4ad41d0dc665a4b0132a7b85e"
12
+ "gitHead": "51306fd15afb768e6dce52a4b79a76953831d44b"
13
13
  }
@@ -145,6 +145,8 @@ message Asset {
145
145
  repeated SoundCard sound_card = 30;
146
146
  repeated Keyboard keyboard = 28;
147
147
  repeated PointingDevice pointing_device = 29;
148
+ repeated AutoRunCommand auto_run_command = 34;
149
+ optional BootConfig boot_config = 35;
148
150
 
149
151
  optional LastUser last_user = 31;
150
152
 
@@ -217,19 +219,22 @@ message CloudEntity {
217
219
  * OS info: in OS standard section.
218
220
  */
219
221
  message OtModule {
220
- int32 rack_number = 1;
221
- string rack_name = 2;
222
- int32 rack_size = 3;
223
- int32 slot = 4;
224
- int32 slot_width = 5;
225
-
226
- bool is_main_module = 6;
227
-
228
- optional string component_type = 7;
229
-
230
- optional string part_number = 8;
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;
230
+ }
231
231
 
232
- repeated OtModuleExtInfo ext_info = 9;
232
+ // Information about the OT rack the module is plugged into
233
+ message OtRack {
234
+ int32 number = 1;
235
+ optional string name = 2;
236
+ optional string type = 3;
237
+ int32 size = 4;
233
238
  }
234
239
 
235
240
  message OtModuleExtInfo {
@@ -579,6 +584,34 @@ message PointingDevice {
579
584
  optional int32 quad_speed_threshold = 11;
580
585
  }
581
586
 
587
+ /**
588
+ * AutoRunCommand: Windows.Autorun
589
+ **/
590
+ message AutoRunCommand {
591
+ optional string caption = 1;
592
+ optional string command = 2;
593
+ optional string location = 3;
594
+ optional string name = 4;
595
+ optional string user = 5;
596
+ optional string user_sid = 6;
597
+ }
598
+
599
+ /**
600
+ * BootConfig: Windows.BootConfig
601
+ **/
602
+ message BootConfig {
603
+ optional string boot_directory = 1;
604
+ optional string caption = 2;
605
+ optional string name = 3;
606
+ optional string configuration_path = 4;
607
+ optional string scratch_directory = 5;
608
+ optional string temp_directory = 6;
609
+
610
+ // from mac
611
+ optional string boot_volume = 7;
612
+ optional string boot_mode = 8;
613
+ }
614
+
582
615
  /**
583
616
  * Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)
584
617
  **/