@lansweeper/data-platform-outbound-grpc 0.1.141 → 0.1.142
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 +36 -0
- package/gen-proto/outbound_pb.js +300 -1
- package/generated-go/outbound.pb.go +672 -584
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +6 -4
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.142",
|
|
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": "24b04a3fff899899a40562ed30d191439dbb3d9c"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -3356,8 +3356,8 @@ message User {
|
|
|
3356
3356
|
repeated Tag tag = 13;
|
|
3357
3357
|
repeated Relation relation = 14; // e.g. relations to and from OT parent module to sub-modules
|
|
3358
3358
|
|
|
3359
|
-
|
|
3360
|
-
|
|
3359
|
+
optional CorrelationFields correlation_fields = 15;
|
|
3360
|
+
optional ReconciliationInfo reconciliation = 16;
|
|
3361
3361
|
|
|
3362
3362
|
// user info:
|
|
3363
3363
|
UserCoreFields core = 20;
|
|
@@ -3400,8 +3400,8 @@ message Group {
|
|
|
3400
3400
|
repeated Tag tag = 13;
|
|
3401
3401
|
repeated Relation relation = 14; // e.g. relations to and from OT parent module to sub-modules
|
|
3402
3402
|
|
|
3403
|
-
|
|
3404
|
-
|
|
3403
|
+
optional CorrelationFields correlation_fields = 15;
|
|
3404
|
+
optional ReconciliationInfo reconciliation = 16;
|
|
3405
3405
|
|
|
3406
3406
|
// group info:
|
|
3407
3407
|
GroupCoreFields core = 20;
|
|
@@ -3413,6 +3413,8 @@ message Group {
|
|
|
3413
3413
|
|
|
3414
3414
|
/* Core fields for groups */
|
|
3415
3415
|
message GroupCoreFields {
|
|
3416
|
+
optional string sid = 1;
|
|
3417
|
+
optional string name = 2;
|
|
3416
3418
|
}
|
|
3417
3419
|
|
|
3418
3420
|
/**
|