@lansweeper/multitenant-api-grpc 0.4.30 → 0.4.32
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 +22 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_pb.d.ts +2 -0
- package/gen-proto/multitenant_pb.js +3 -1
- package/generated-go/multitenant.pb.go +298 -291
- package/package.json +2 -2
- package/proto/multitenant.proto +3 -0
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.32",
|
|
4
4
|
"description": "Multitenant grpc",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"@grpc/grpc-js": "^1.6.2"
|
|
17
17
|
},
|
|
18
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "fc5eb915e936f9355198b94dfcba32c451b9a0ea"
|
|
19
19
|
}
|
package/proto/multitenant.proto
CHANGED
|
@@ -182,6 +182,8 @@ message CreateInstallRequest{
|
|
|
182
182
|
enum InstallType {
|
|
183
183
|
IT=0;
|
|
184
184
|
OT=1;
|
|
185
|
+
IT_AGENT=2;
|
|
186
|
+
CLOUD=3;
|
|
185
187
|
}
|
|
186
188
|
|
|
187
189
|
message CreateInstallResponse{
|
|
@@ -443,6 +445,7 @@ message AllProfilesExistResponse{
|
|
|
443
445
|
PreviewAccount createdBy = 3;
|
|
444
446
|
}
|
|
445
447
|
|
|
448
|
+
|
|
446
449
|
message SendInviteLocalUsersMailRequest{
|
|
447
450
|
string site_id = 1;
|
|
448
451
|
}
|