@lansweeper/multitenant-api-grpc 0.4.66 → 0.4.67
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/multitenant_pb.d.ts +3 -0
- package/gen-proto/multitenant_pb.js +31 -1
- package/generated-go/multitenant.pb.go +615 -604
- package/package.json +2 -2
- package/proto/multitenant.proto +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/multitenant-api-grpc",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.67",
|
|
4
4
|
"description": "Multitenant grpc",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"prepublishOnly": "cp -r ../../shared/limits ./proto"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "69041bb0eaf4d2ab55bd185c96fa7ba0bd46cf9d"
|
|
22
22
|
}
|
package/proto/multitenant.proto
CHANGED
|
@@ -472,6 +472,7 @@ message SiteHierarchyIdsItem{
|
|
|
472
472
|
ParentType parent_type = 2;
|
|
473
473
|
string parent_id = 3;
|
|
474
474
|
bool is_customer_account = 4;
|
|
475
|
+
bool skip_hivemind_export = 5;
|
|
475
476
|
}
|
|
476
477
|
|
|
477
478
|
message SiteHierarchyIdsPageInfo{
|
|
@@ -629,4 +630,4 @@ service Multitenant {
|
|
|
629
630
|
rpc GetSitePreview(GetSitePreviewRequest) returns (GetSitePreviewResponse) {}
|
|
630
631
|
rpc UpdateSiteSkipDataExport(UpdateSiteSkipDataExportRequest) returns (UpdateSiteSkipDataExportResponse) {}
|
|
631
632
|
rpc GetSiteHierarchyIds(GetSiteHierarchyIdsRequest) returns (GetSiteHierarchyIdsResponse) {}
|
|
632
|
-
}
|
|
633
|
+
}
|