@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/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.40",
2
+ "version": "0.1.42",
3
3
  "package": "com.lansweeper.dp.outbound.v1",
4
4
  "service": true
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/data-platform-outbound-grpc",
3
- "version": "0.1.41",
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": "02b6937c49361ddb07635006472a5d933f22da10"
12
+ "gitHead": "60c059ce813c06d4ad41d0dc665a4b0132a7b85e"
13
13
  }
@@ -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 {