@lansweeper/multitenant-api-grpc 0.4.76 → 0.4.78
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 +19 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_pb.d.ts +7 -0
- package/gen-proto/multitenant_pb.js +63 -2
- package/generated-go/multitenant.pb.go +1269 -1244
- 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.78",
|
|
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": "8c15a4cc63de8f81555011ce6548b95d941d3120"
|
|
22
22
|
}
|
package/proto/multitenant.proto
CHANGED
|
@@ -118,6 +118,8 @@ message Install {
|
|
|
118
118
|
string global_id = 8;
|
|
119
119
|
message InstallState {
|
|
120
120
|
InstallStateValue value = 1;
|
|
121
|
+
string deleted_on = 2;
|
|
122
|
+
string deleted_data_started_on = 3;
|
|
121
123
|
}
|
|
122
124
|
InstallState state = 9;
|
|
123
125
|
string created_at = 10;
|
|
@@ -196,6 +198,7 @@ enum InstallType {
|
|
|
196
198
|
IT_AGENT=2;
|
|
197
199
|
CLOUD=3;
|
|
198
200
|
NETWORK_DISCOVERY=4;
|
|
201
|
+
MANUAL=5; // vNEXT manual reconciled installation, that will link all the manual assets that will come to vNEXT.
|
|
199
202
|
}
|
|
200
203
|
message CreateInstallResponse{
|
|
201
204
|
Install install = 1;
|