@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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.99",
2
+ "version": "0.1.100",
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.100",
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": "7a3dffd4903f0573325570739bfcac3dd9d1118a"
12
+ "gitHead": "7eaeede58a264bd7b16b9b862188d07486f6652e"
13
13
  }
@@ -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
  /**