@lansweeper/data-platform-outbound-grpc 0.1.129 → 0.1.130
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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +57 -0
- package/gen-proto/outbound_pb.js +486 -2
- package/generated-go/outbound.pb.go +8040 -7889
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +22 -6
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.130",
|
|
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": "974d2fa809df55cc5fa8b1d5e69a43716859b10c"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -449,16 +449,32 @@ message ReconciliationInfo {
|
|
|
449
449
|
EntryState state = 2;
|
|
450
450
|
optional MasterType master_type = 3; // NULL | ENGINE | USER
|
|
451
451
|
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
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
|
|
455
456
|
|
|
456
|
-
|
|
457
|
+
optional int32 confidence = 7; // Numeric value 0-100 of correlation confidence.
|
|
457
458
|
|
|
458
|
-
|
|
459
|
-
|
|
459
|
+
// For future use of correlation leads that brought to merge.
|
|
460
|
+
optional string debug_string = 8;
|
|
461
|
+
// END - deprecated fields
|
|
462
|
+
|
|
463
|
+
optional CorrelationInfo master_asset = 9; // null if GOLDEN / Filled with ID of master if overridden
|
|
464
|
+
optional CorrelationInfo reference_asset = 10; // Filled by ENGINE with the Master ID chosen, if any: To preserve history of engine decisions vs user decisions.
|
|
465
|
+
repeated CorrelationInfo alias_asset = 11; // Master is keeping a link to all aliases
|
|
460
466
|
}
|
|
461
467
|
|
|
468
|
+
message CorrelationInfo {
|
|
469
|
+
EntityPath entity = 1;
|
|
470
|
+
|
|
471
|
+
repeated Tag tags = 2;
|
|
472
|
+
|
|
473
|
+
optional int32 confidence = 3; // Numeric value 0-100 of correlation confidence.
|
|
474
|
+
|
|
475
|
+
// For future use of correlation leads that brought to merge.
|
|
476
|
+
optional string debug_string = 4;
|
|
477
|
+
}
|
|
462
478
|
|
|
463
479
|
/**
|
|
464
480
|
* Cloud entity coming from CDK scanner.
|