@lansweeper/multitenant-api-grpc 0.4.65 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/multitenant-api-grpc",
3
- "version": "0.4.65",
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": "743560e1ccb8da1cdf73a6792d2c18b93b85f84f"
21
+ "gitHead": "69041bb0eaf4d2ab55bd185c96fa7ba0bd46cf9d"
22
22
  }
@@ -462,10 +462,17 @@ message GetSiteHierarchyIdsRequest {
462
462
  }
463
463
 
464
464
  message SiteHierarchyIdsItem{
465
+ enum ParentType {
466
+ UNKNOWN = 0;
467
+ NONE = 1;
468
+ ORG = 2;
469
+ MSMP = 3;
470
+ }
465
471
  string site_id = 1;
466
- string parent_type = 2;
472
+ ParentType parent_type = 2;
467
473
  string parent_id = 3;
468
474
  bool is_customer_account = 4;
475
+ bool skip_hivemind_export = 5;
469
476
  }
470
477
 
471
478
  message SiteHierarchyIdsPageInfo{
@@ -623,4 +630,4 @@ service Multitenant {
623
630
  rpc GetSitePreview(GetSitePreviewRequest) returns (GetSitePreviewResponse) {}
624
631
  rpc UpdateSiteSkipDataExport(UpdateSiteSkipDataExportRequest) returns (UpdateSiteSkipDataExportResponse) {}
625
632
  rpc GetSiteHierarchyIds(GetSiteHierarchyIdsRequest) returns (GetSiteHierarchyIdsResponse) {}
626
- }
633
+ }