@lansweeper/multitenant-api-grpc 0.4.32 → 0.4.34
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 +6 -0
- package/gen-proto/multitenant_pb.js +62 -2
- package/generated-go/multitenant.pb.go +252 -226
- package/package.json +2 -2
- package/proto/multitenant.proto +3 -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.34",
|
|
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": "0a010bca573629447a8f42f6fdfdfb30c0796d5b"
|
|
19
19
|
}
|
package/proto/multitenant.proto
CHANGED
|
@@ -111,7 +111,8 @@ message Install {
|
|
|
111
111
|
InstallState state = 9;
|
|
112
112
|
string created_at = 10;
|
|
113
113
|
string license = 11;
|
|
114
|
-
string type = 12;
|
|
114
|
+
string type = 12 [deprecated = true];
|
|
115
|
+
InstallType install_type = 13;
|
|
115
116
|
}
|
|
116
117
|
|
|
117
118
|
message InstallCredentials {
|
|
@@ -199,6 +200,7 @@ message CreateAndLinkInstallRequest{
|
|
|
199
200
|
InstallType type = 5;
|
|
200
201
|
string created_by_id = 6;
|
|
201
202
|
string client_id = 7;
|
|
203
|
+
string external_id = 8;
|
|
202
204
|
}
|
|
203
205
|
|
|
204
206
|
message CreateAndLinkInstallResponse{
|