@lansweeper/data-platform-outbound-grpc 0.1.133 → 0.1.135
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 +69 -0
- package/gen-proto/outbound_pb.js +566 -2
- package/generated-go/outbound.pb.go +8165 -7998
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +17 -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.135",
|
|
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": "489f8294c069e6986456a27e942ecf686f69b509"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -208,8 +208,11 @@ message Asset {
|
|
|
208
208
|
* Every source that contributed sending a scan for this asset is listed here.
|
|
209
209
|
* The source_info is a actually a map by source type/id, keeping history of scans.
|
|
210
210
|
* If the asset was discovered by a single sources, it's redudant with info already in main asset msg.
|
|
211
|
+
* The list are two as we keep both the active source info and the unlinked source info
|
|
212
|
+
* (i.e. the sources of duplicates that are unlinked by the user)
|
|
211
213
|
*/
|
|
212
214
|
repeated SourceInfo source_info = 74;
|
|
215
|
+
repeated SourceInfo unlinked_source_info = 86;
|
|
213
216
|
|
|
214
217
|
/**
|
|
215
218
|
* This is unique and source of UUID asset_id. Kept also in verbose key format for debug/future use.
|
|
@@ -372,6 +375,7 @@ message Computer {
|
|
|
372
375
|
optional ComputerMacRegionalSettings mac_regional_settings = 224;
|
|
373
376
|
repeated ComputerMacInstallHistory mac_install_history = 225;
|
|
374
377
|
optional ComputerLinuxBasicInfo linux_basic_info = 226;
|
|
378
|
+
repeated ComputerLinuxPcieCard linux_pcie_cards = 227;
|
|
375
379
|
|
|
376
380
|
// USERS AND ACCOUNT
|
|
377
381
|
optional LastUser last_user = 301; // i.e. computer current user
|
|
@@ -2378,6 +2382,19 @@ message ComputerWindowsComApp {
|
|
|
2378
2382
|
optional string caption = 2;
|
|
2379
2383
|
}
|
|
2380
2384
|
|
|
2385
|
+
/**
|
|
2386
|
+
* Linux only, all cards are aggregated in a single source.
|
|
2387
|
+
*/
|
|
2388
|
+
message ComputerLinuxPcieCard {
|
|
2389
|
+
optional string device_id = 1;
|
|
2390
|
+
optional string type = 2;
|
|
2391
|
+
optional string name = 3;
|
|
2392
|
+
optional string manufacturer = 4;
|
|
2393
|
+
optional string subsystem_name = 5;
|
|
2394
|
+
optional string subsystem_manufacturer = 6;
|
|
2395
|
+
optional string parent = 7;
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2381
2398
|
/**
|
|
2382
2399
|
* Computer Windows only: from Windows Codec.
|
|
2383
2400
|
*/
|