@lansweeper/data-platform-outbound-grpc 0.1.100 → 0.1.101
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 +27 -0
- package/gen-proto/outbound_pb.js +252 -2
- package/generated-go/outbound.pb.go +3700 -3648
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +8 -3
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.101",
|
|
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": "7eaeede58a264bd7b16b9b862188d07486f6652e"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -1217,15 +1217,20 @@ message PointingDevice {
|
|
|
1217
1217
|
}
|
|
1218
1218
|
|
|
1219
1219
|
/**
|
|
1220
|
-
* AutoRunCommand: Windows.Autorun
|
|
1220
|
+
* AutoRunCommand: Windows.Autorun and Mac - MacStartupItems
|
|
1221
1221
|
**/
|
|
1222
1222
|
message AutoRunCommand {
|
|
1223
1223
|
optional string caption = 1;
|
|
1224
1224
|
optional string command = 2;
|
|
1225
1225
|
optional string location = 3;
|
|
1226
1226
|
optional string name = 4;
|
|
1227
|
-
optional string user = 5;
|
|
1228
|
-
optional string user_sid = 6;
|
|
1227
|
+
optional string user = 5; // Windows Only
|
|
1228
|
+
optional string user_sid = 6; // Windows Only
|
|
1229
|
+
optional string order_preference = 7; // macOS only
|
|
1230
|
+
repeated string provides = 8; // macOS only
|
|
1231
|
+
repeated string required = 9; // macOS only
|
|
1232
|
+
repeated string uses = 10; // macOS only
|
|
1233
|
+
optional bool enabled = 11; // macOS only
|
|
1229
1234
|
}
|
|
1230
1235
|
|
|
1231
1236
|
/**
|