@lansweeper/multitenant-api-grpc 0.4.44 → 0.4.46
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/limits/limits_pb.d.ts +26 -0
- package/gen-proto/limits/limits_pb.js +204 -1
- package/gen-proto/multitenant_pb.d.ts +1 -0
- package/gen-proto/multitenant_pb.js +2 -1
- package/generated-go/multitenant.pb.go +346 -341
- package/package.json +2 -2
- package/proto/limits/limits.proto +5 -0
- package/proto/multitenant.proto +1 -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.46",
|
|
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": "c0ae9baf9c6aa6eb449e1805e9ec8c6900033a77"
|
|
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
|
}
|
package/proto/multitenant.proto
CHANGED
|
@@ -166,6 +166,7 @@ enum InstallType {
|
|
|
166
166
|
OT=1;
|
|
167
167
|
IT_AGENT=2;
|
|
168
168
|
CLOUD=3;
|
|
169
|
+
NETWORK_DISCOVERY=4;
|
|
169
170
|
}
|
|
170
171
|
message CreateInstallResponse{
|
|
171
172
|
Install install = 1;
|
|
@@ -427,7 +428,6 @@ message GetSiteLimitsResponse {
|
|
|
427
428
|
map<string, lansweeper.shared.limits.v1.SiteLimits> site_limits = 1;
|
|
428
429
|
}
|
|
429
430
|
|
|
430
|
-
|
|
431
431
|
service Multitenant {
|
|
432
432
|
rpc CheckAccessToSiteByAccountId(CheckAccessToSiteByAccountIdRequest) returns (CheckAccessToSiteByAccountIdResponse) {}
|
|
433
433
|
rpc CheckAccessToSiteByClientId(CheckAccessToSiteByClientIdRequest) returns (CheckAccessToSiteByClientIdResponse) {}
|