@lansweeper/data-platform-outbound-grpc 0.1.130 → 0.1.132

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.129",
2
+ "version": "0.1.131",
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.130",
3
+ "version": "0.1.132",
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": "974d2fa809df55cc5fa8b1d5e69a43716859b10c"
12
+ "gitHead": "32d39239a39417f75a9a2341f6f33963795f9c13"
13
13
  }
@@ -449,16 +449,7 @@ message ReconciliationInfo {
449
449
  EntryState state = 2;
450
450
  optional MasterType master_type = 3; // NULL | ENGINE | USER
451
451
 
452
- // START - deprecated fields
453
- optional EntityPath master = 4; // NULL if GOLDEN / Filled with ID of master if overridden
454
- optional EntityPath reference = 5; // Filled by ENGINE with the Master ID chosen, if any: To preserve history of engine decisions vs user decisions.
455
- repeated EntityPath alias = 6; // Master is keeping a link to all aliases
456
-
457
- optional int32 confidence = 7; // Numeric value 0-100 of correlation confidence.
458
-
459
- // For future use of correlation leads that brought to merge.
460
- optional string debug_string = 8;
461
- // END - deprecated fields
452
+ reserved 4,5,6,7,8;
462
453
 
463
454
  optional CorrelationInfo master_asset = 9; // null if GOLDEN / Filled with ID of master if overridden
464
455
  optional CorrelationInfo reference_asset = 10; // Filled by ENGINE with the Master ID chosen, if any: To preserve history of engine decisions vs user decisions.
@@ -468,12 +459,14 @@ message ReconciliationInfo {
468
459
  message CorrelationInfo {
469
460
  EntityPath entity = 1;
470
461
 
471
- repeated Tag tags = 2;
462
+ reserved 2; // deprecated tags
472
463
 
473
464
  optional int32 confidence = 3; // Numeric value 0-100 of correlation confidence.
474
465
 
475
466
  // For future use of correlation leads that brought to merge.
476
467
  optional string debug_string = 4;
468
+
469
+ optional CorrelationFields correlation_fields = 5;
477
470
  }
478
471
 
479
472
  /**
@@ -581,9 +574,10 @@ message AssetType {
581
574
  message SourceInfo {
582
575
  string source_id = 1; // source id, like installation id of IT
583
576
  string source_type = 2; // source type like e.g. IT
584
- optional string source_agent = 3; // source agent name and version
585
- optional string source_name = 4; // source name
577
+ optional string source_agent = 3; // source agent name and version
578
+ optional string source_name = 4; // source name
586
579
  string raw_id = 5; // entity/asset raw id for source
580
+ optional string entity_id = 7; // entity/asset id in data-core
587
581
  google.protobuf.Timestamp last_synced = 6;
588
582
  // later here we could also have a summary of errors, if needed to keep history
589
583
  }