@lansweeper/multitenant-api-grpc 0.4.43 → 0.4.45

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.43",
3
+ "version": "0.4.45",
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": "49dba08a4ba7843cd1bbfd7a2252d06bf6aa6726"
21
+ "gitHead": "33e52e141e74e5a7e1b29d707926eae2f85b1947"
22
22
  }
@@ -43,9 +43,14 @@ message Assets {
43
43
  BaseLimit view_risk_insights = 1;
44
44
  }
45
45
 
46
+ message Scopes {
47
+ int32 create_max = 1;
48
+ }
49
+
46
50
  message SiteLimits {
47
51
  reserved 2;
48
52
  SiteLimitsTiers tier = 1;
49
53
  optional RiskInsights risk_insights = 3;
50
54
  optional Assets assets = 4;
55
+ Scopes scopes = 5;
51
56
  }
@@ -149,15 +149,14 @@ message GetInstallbyClientIdResponse {
149
149
  Install install = 1;
150
150
  }
151
151
  message CreateInstallRequest{
152
- reserved 2;
152
+ reserved 2, 8;
153
153
  string site_id = 1;
154
154
  string display_name = 3;
155
155
  string description = 4;
156
156
  string status = 5;
157
157
  string fqdn = 6;
158
158
  string created_by_id = 7;
159
-
160
- bool create_sqs_queue = 8;
159
+
161
160
  string global_id = 9;
162
161
  InstallType type = 10;
163
162
  string client_id = 11;
@@ -428,7 +427,6 @@ message GetSiteLimitsResponse {
428
427
  map<string, lansweeper.shared.limits.v1.SiteLimits> site_limits = 1;
429
428
  }
430
429
 
431
-
432
430
  service Multitenant {
433
431
  rpc CheckAccessToSiteByAccountId(CheckAccessToSiteByAccountIdRequest) returns (CheckAccessToSiteByAccountIdResponse) {}
434
432
  rpc CheckAccessToSiteByClientId(CheckAccessToSiteByClientIdRequest) returns (CheckAccessToSiteByClientIdResponse) {}