@lansweeper/data-platform-outbound-grpc 0.1.99 → 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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +229 -0
- package/gen-proto/outbound_pb.js +2480 -608
- package/generated-go/outbound.pb.go +3354 -2773
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +42 -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
|
@@ -285,6 +285,7 @@ message Computer {
|
|
|
285
285
|
optional ComputerMacAccessibility mac_accessibility = 220;
|
|
286
286
|
repeated ComputerMacOsFramework mac_framework = 221;
|
|
287
287
|
repeated ComputerMacPreferencePane mac_preference_pane = 222;
|
|
288
|
+
optional ComputerMacRegionalSettings mac_regional_settings = 224;
|
|
288
289
|
|
|
289
290
|
// USERS AND ACCOUNT
|
|
290
291
|
optional LastUser last_user = 301; // i.e. computer current user
|
|
@@ -1216,15 +1217,20 @@ message PointingDevice {
|
|
|
1216
1217
|
}
|
|
1217
1218
|
|
|
1218
1219
|
/**
|
|
1219
|
-
* AutoRunCommand: Windows.Autorun
|
|
1220
|
+
* AutoRunCommand: Windows.Autorun and Mac - MacStartupItems
|
|
1220
1221
|
**/
|
|
1221
1222
|
message AutoRunCommand {
|
|
1222
1223
|
optional string caption = 1;
|
|
1223
1224
|
optional string command = 2;
|
|
1224
1225
|
optional string location = 3;
|
|
1225
1226
|
optional string name = 4;
|
|
1226
|
-
optional string user = 5;
|
|
1227
|
-
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
|
|
1228
1234
|
}
|
|
1229
1235
|
|
|
1230
1236
|
/**
|
|
@@ -2100,7 +2106,40 @@ message WindowsCertificateLocation {
|
|
|
2100
2106
|
string folder = 2;
|
|
2101
2107
|
}
|
|
2102
2108
|
|
|
2109
|
+
// macOS Language and Regional Settings, macOS only. To be mapped from inbound model: MacRegional
|
|
2110
|
+
message ComputerMacRegionalSettings {
|
|
2111
|
+
optional MacRegionalUserSettings user_settings = 1;
|
|
2112
|
+
optional MacRegionalSystemSettings system_settings = 2;
|
|
2113
|
+
optional MacRegionalRecoveryOsSettings recovery_os_settings = 3;
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2116
|
+
message MacRegionalUserSettings {
|
|
2117
|
+
repeated string linguistic_data_assets_requested = 1;
|
|
2118
|
+
optional string user_assistant_language = 2;
|
|
2119
|
+
optional string user_assistant_voice_language = 3;
|
|
2120
|
+
optional string user_calendar = 4;
|
|
2121
|
+
optional string user_country_code = 5;
|
|
2122
|
+
optional string user_current_input_source = 6;
|
|
2123
|
+
optional string user_language_code = 7;
|
|
2124
|
+
optional string user_locale = 8;
|
|
2125
|
+
repeated string user_preferred_interface_languages = 9;
|
|
2126
|
+
optional string user_temperature_unit = 10;
|
|
2127
|
+
optional string user_uses_metric_system = 11;
|
|
2128
|
+
}
|
|
2103
2129
|
|
|
2130
|
+
message MacRegionalSystemSettings {
|
|
2131
|
+
optional string system_country = 1;
|
|
2132
|
+
repeated string system_interface_languages = 2;
|
|
2133
|
+
repeated string system_languages = 3;
|
|
2134
|
+
optional string system_locale = 4;
|
|
2135
|
+
optional string system_text_direction = 5;
|
|
2136
|
+
optional string system_uses_metric_system = 6;
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
message MacRegionalRecoveryOsSettings {
|
|
2140
|
+
optional string boot_keyboard_code = 1;
|
|
2141
|
+
optional string boot_locale = 2;
|
|
2142
|
+
}
|
|
2104
2143
|
|
|
2105
2144
|
/**
|
|
2106
2145
|
* Computer Windows only: page files.
|