@lansweeper/data-platform-outbound-grpc 0.1.41 → 0.1.43
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 +58 -0
- package/gen-proto/outbound_pb.js +480 -2
- package/generated-go/outbound.pb.go +2630 -2486
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +15 -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.43",
|
|
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": "60c059ce813c06d4ad41d0dc665a4b0132a7b85e"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -114,6 +114,8 @@ message Asset {
|
|
|
114
114
|
*/
|
|
115
115
|
optional string unique_key = 23;
|
|
116
116
|
|
|
117
|
+
repeated ScanError scan_error = 33;
|
|
118
|
+
|
|
117
119
|
repeated Tag tag = 14;
|
|
118
120
|
repeated Relation relation = 20; // e.g. relations to and from OT parent module to sub-modules
|
|
119
121
|
|
|
@@ -250,6 +252,17 @@ message AssetType {
|
|
|
250
252
|
optional string sub_type = 4; // sub type for OT and CDK
|
|
251
253
|
}
|
|
252
254
|
|
|
255
|
+
/**
|
|
256
|
+
* Scan errors.
|
|
257
|
+
*/
|
|
258
|
+
message ScanError {
|
|
259
|
+
string section = 1; // name of section
|
|
260
|
+
string error = 2; // error descr
|
|
261
|
+
optional string source = 3; // e.g. "WMI"
|
|
262
|
+
optional google.protobuf.Timestamp timestamp = 4;
|
|
263
|
+
optional int64 duration = 5;
|
|
264
|
+
}
|
|
265
|
+
|
|
253
266
|
/**
|
|
254
267
|
* Core Fields for all Assets.
|
|
255
268
|
*/
|
|
@@ -268,6 +281,8 @@ message CoreFields {
|
|
|
268
281
|
message LastUser {
|
|
269
282
|
string user_name = 1;
|
|
270
283
|
optional string user_type = 2;
|
|
284
|
+
optional string upn = 3;
|
|
285
|
+
optional string sid = 4;
|
|
271
286
|
}
|
|
272
287
|
|
|
273
288
|
message HardwareInfo {
|