@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/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +173 -12
- package/gen-proto/outbound_pb.js +1390 -131
- package/generated-go/outbound.pb.go +2873 -2498
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +45 -12
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.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": "
|
|
12
|
+
"gitHead": "51306fd15afb768e6dce52a4b79a76953831d44b"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -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
|
-
|
|
221
|
-
|
|
222
|
-
int32
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
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
|
-
|
|
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
|
**/
|