@lansweeper/data-platform-outbound-grpc 0.1.97 → 0.1.99
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 +139 -0
- package/gen-proto/outbound_pb.js +1130 -1
- package/generated-go/outbound.pb.go +5974 -5651
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +24 -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.99",
|
|
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": "6dace17939a80d549f779e0451d97192a62d1566"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -283,6 +283,8 @@ message Computer {
|
|
|
283
283
|
repeated ComputerWindowsSat windows_sat = 218;
|
|
284
284
|
repeated ComputerWindowsCodec windows_codec = 219;
|
|
285
285
|
optional ComputerMacAccessibility mac_accessibility = 220;
|
|
286
|
+
repeated ComputerMacOsFramework mac_framework = 221;
|
|
287
|
+
repeated ComputerMacPreferencePane mac_preference_pane = 222;
|
|
286
288
|
|
|
287
289
|
// USERS AND ACCOUNT
|
|
288
290
|
optional LastUser last_user = 301; // i.e. computer current user
|
|
@@ -2210,6 +2212,16 @@ message ComputerWindowsDesktopMonitor {
|
|
|
2210
2212
|
optional uint32 screen_width = 9;
|
|
2211
2213
|
}
|
|
2212
2214
|
|
|
2215
|
+
// Preference Panes, macOS only. To be mapped from inbound model: MacPreferencePanes
|
|
2216
|
+
message ComputerMacPreferencePane {
|
|
2217
|
+
optional string name = 1;
|
|
2218
|
+
optional string bundle_path_location = 2;
|
|
2219
|
+
optional string identifier = 3;
|
|
2220
|
+
optional bool is_visible = 4;
|
|
2221
|
+
optional string kind = 5;
|
|
2222
|
+
optional string supported_by = 6;
|
|
2223
|
+
optional string version = 7;
|
|
2224
|
+
}
|
|
2213
2225
|
|
|
2214
2226
|
/**
|
|
2215
2227
|
* Computer, Windows only: from WindowsDisplayControllerConfig.
|
|
@@ -2310,9 +2322,18 @@ message PortableBattery {
|
|
|
2310
2322
|
optional string smart_battery_version = 11;
|
|
2311
2323
|
}
|
|
2312
2324
|
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2325
|
+
// MacOS Frameworks system library. To be mapped from MacFramework inbound model
|
|
2326
|
+
message ComputerMacOsFramework {
|
|
2327
|
+
optional string name = 1;
|
|
2328
|
+
optional string arch_kind = 2;
|
|
2329
|
+
optional string info = 3;
|
|
2330
|
+
optional google.protobuf.Timestamp last_modified = 4;
|
|
2331
|
+
optional string obtained_from = 5;
|
|
2332
|
+
optional string path_location = 6;
|
|
2333
|
+
optional string private_framework = 7;
|
|
2334
|
+
repeated string signed_by = 8;
|
|
2335
|
+
optional string version = 9;
|
|
2336
|
+
}
|
|
2316
2337
|
|
|
2317
2338
|
/**
|
|
2318
2339
|
* A Mapped value is a numeric field that can optionally have a text looked up value.
|