@lansweeper/data-platform-outbound-grpc 0.1.43 → 0.1.44
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 +129 -0
- package/gen-proto/outbound_pb.js +1021 -1
- package/generated-go/outbound.pb.go +2603 -2305
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +30 -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.44",
|
|
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": "c1e0c9f83ceece5b3bc51af7a9f130031ab4b24c"
|
|
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
|
|
|
@@ -579,6 +581,34 @@ message PointingDevice {
|
|
|
579
581
|
optional int32 quad_speed_threshold = 11;
|
|
580
582
|
}
|
|
581
583
|
|
|
584
|
+
/**
|
|
585
|
+
* AutoRunCommand: Windows.Autorun
|
|
586
|
+
**/
|
|
587
|
+
message AutoRunCommand {
|
|
588
|
+
optional string caption = 1;
|
|
589
|
+
optional string command = 2;
|
|
590
|
+
optional string location = 3;
|
|
591
|
+
optional string name = 4;
|
|
592
|
+
optional string user = 5;
|
|
593
|
+
optional string user_sid = 6;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
/**
|
|
597
|
+
* BootConfig: Windows.BootConfig
|
|
598
|
+
**/
|
|
599
|
+
message BootConfig {
|
|
600
|
+
optional string boot_directory = 1;
|
|
601
|
+
optional string caption = 2;
|
|
602
|
+
optional string name = 3;
|
|
603
|
+
optional string configuration_path = 4;
|
|
604
|
+
optional string scratch_directory = 5;
|
|
605
|
+
optional string temp_directory = 6;
|
|
606
|
+
|
|
607
|
+
// from mac
|
|
608
|
+
optional string boot_volume = 7;
|
|
609
|
+
optional string boot_mode = 8;
|
|
610
|
+
}
|
|
611
|
+
|
|
582
612
|
/**
|
|
583
613
|
* Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)
|
|
584
614
|
**/
|