@lansweeper/data-platform-outbound-grpc 0.1.66 → 0.1.68
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 +15 -0
- package/gen-proto/outbound_pb.js +127 -1
- package/generated-go/outbound.pb.go +3608 -3572
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +30 -19
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.68",
|
|
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": "b2d6af82d05873c6d41026942c0ae3add58c8348"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -140,23 +140,23 @@ message Asset {
|
|
|
140
140
|
optional MonitorInventory monitor_inventory = 10;
|
|
141
141
|
optional NetworkInterfaces network_interfaces = 11;
|
|
142
142
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
143
|
+
// START OF DEPRECATED: in Computer message now
|
|
144
|
+
optional SoftwareInventory software_inventory = 9;
|
|
145
|
+
repeated AntivirusSoftware antivirus = 26;
|
|
146
|
+
repeated OperatingSystemPatch os_patch = 13;
|
|
147
|
+
repeated OperatingSystemFeature os_feature = 37;
|
|
148
|
+
repeated Processor processor = 15;
|
|
149
|
+
optional Chassis chassis = 18;
|
|
150
|
+
optional Memory memory = 19;
|
|
151
|
+
optional Motherboard motherboard = 21;
|
|
152
|
+
repeated OpticalDrive optical_drive = 24;
|
|
153
|
+
repeated HardDrive hard_drive = 25;
|
|
154
|
+
repeated GraphicsCard graphics_card = 27;
|
|
155
|
+
repeated SoundCard sound_card = 30;
|
|
156
|
+
repeated Keyboard keyboard = 28;
|
|
157
|
+
repeated PointingDevice pointing_device = 29;
|
|
158
|
+
optional LastUser last_user = 31;
|
|
159
|
+
// END OF DEPRECATED and now in Computer
|
|
160
160
|
|
|
161
161
|
optional Computer computer = 75;
|
|
162
162
|
|
|
@@ -335,10 +335,10 @@ message AssetType {
|
|
|
335
335
|
int32 ls_id = 3;
|
|
336
336
|
// Fing Type
|
|
337
337
|
optional string fing_type = 2;
|
|
338
|
-
|
|
339
338
|
optional string sub_type = 4; // sub type for OT and CDK
|
|
340
339
|
}
|
|
341
340
|
|
|
341
|
+
|
|
342
342
|
/**
|
|
343
343
|
* Detailed Source information for each source (aka installation in legacy terms)
|
|
344
344
|
* that at least once contributed to sending a scan about this asset.
|
|
@@ -377,6 +377,13 @@ message CoreFields {
|
|
|
377
377
|
optional string mac_vendor = 7;
|
|
378
378
|
optional string sensor_id = 8;
|
|
379
379
|
optional string fqdn = 9;
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* Asset confidence 1-100:
|
|
383
|
+
* - 100 is for credential-scan assets by LS internal scanners
|
|
384
|
+
* - <100 is for e.g. CDR or imported data from 3rd parties
|
|
385
|
+
*/
|
|
386
|
+
int32 confidence = 10;
|
|
380
387
|
}
|
|
381
388
|
|
|
382
389
|
message LastUser {
|
|
@@ -584,7 +591,11 @@ message HardwareInfo {
|
|
|
584
591
|
|
|
585
592
|
optional bool is_family = 6;
|
|
586
593
|
optional string serial = 7;
|
|
587
|
-
|
|
594
|
+
|
|
595
|
+
optional string type_name = 10; // e.g.: "SMART_HOME"
|
|
596
|
+
optional string type_caption = 14; // e.g.: "Smart Device"
|
|
597
|
+
optional string type_group = 15; // e.g.: "Smart Home"
|
|
598
|
+
|
|
588
599
|
optional string make_name = 11;
|
|
589
600
|
optional string model_name = 12;
|
|
590
601
|
optional string family_name = 13;
|