@lansweeper/data-platform-outbound-grpc 0.1.137 → 0.1.138
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 +32 -10
- package/gen-proto/outbound_pb.js +207 -25
- package/generated-go/outbound.pb.go +315 -243
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +11 -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.138",
|
|
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": "538b76eb782de3605dad0ecbb6ae81b975db955b"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -3349,7 +3349,18 @@ enum ReconRuleId {
|
|
|
3349
3349
|
RECONCILE_BY_NETBIOS = 2;
|
|
3350
3350
|
}
|
|
3351
3351
|
|
|
3352
|
+
/**
|
|
3353
|
+
* Configuration of rules for reconciliation.
|
|
3354
|
+
* Wraps a list of ReconRule, site specific.
|
|
3355
|
+
*/
|
|
3352
3356
|
message ReconRuleSet {
|
|
3357
|
+
repeated ReconRule recon_rules = 1;
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3360
|
+
/**
|
|
3361
|
+
* Configuration of a single reconciliation rule.
|
|
3362
|
+
*/
|
|
3363
|
+
message ReconRule {
|
|
3353
3364
|
ReconRuleId id = 1; // ID of the rule
|
|
3354
3365
|
string name = 2; // Short name
|
|
3355
3366
|
string description = 3; // Description
|