@lansweeper/multitenant-api-grpc 0.4.20 → 0.4.22
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/multitenant_grpc_pb.d.ts +17 -0
- package/gen-proto/multitenant_grpc_pb.js +33 -0
- package/gen-proto/multitenant_pb.d.ts +82 -0
- package/gen-proto/multitenant_pb.js +608 -1
- package/package.json +2 -2
- package/proto/multitenant.proto +19 -1
package/proto/multitenant.proto
CHANGED
|
@@ -134,11 +134,18 @@ message GetInstallsByIdResponse {
|
|
|
134
134
|
repeated Install install = 1;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
message NullableInstallType {
|
|
138
|
+
oneof kind {
|
|
139
|
+
InstallType data = 1;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
137
143
|
message GetInstallsBySiteRequest {
|
|
138
144
|
string site_id = 1;
|
|
139
145
|
message Filter {
|
|
140
146
|
InstallStateValue state = 1;
|
|
141
|
-
InstallType type=2;
|
|
147
|
+
InstallType type=2 [deprecated = true];
|
|
148
|
+
NullableInstallType install_type=3;
|
|
142
149
|
}
|
|
143
150
|
Filter filter = 2;
|
|
144
151
|
}
|
|
@@ -410,6 +417,15 @@ message GetInstallationLicenseByClientIdResponse {
|
|
|
410
417
|
string license = 1;
|
|
411
418
|
}
|
|
412
419
|
|
|
420
|
+
message AllProfileExistsRequest{
|
|
421
|
+
string site_id = 1;
|
|
422
|
+
repeated string emails = 2;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
message AllProfileExistsResponse{
|
|
426
|
+
bool all = 1;
|
|
427
|
+
}
|
|
428
|
+
|
|
413
429
|
service Multitenant {
|
|
414
430
|
rpc CheckAccessToSiteByAccountId(CheckAccessToSiteByAccountIdRequest) returns (CheckAccessToSiteByAccountIdResponse) {}
|
|
415
431
|
|
|
@@ -462,4 +478,6 @@ service Multitenant {
|
|
|
462
478
|
rpc CreateTrialSiteAndInstaller(CreateTrialSiteAndInstallerRequest) returns (CreateTrialSiteAndInstallerResponse) {}
|
|
463
479
|
|
|
464
480
|
rpc GetInstallationLicenseByClientId(GetInstallationLicenseByClientIdRequest) returns (GetInstallationLicenseByClientIdResponse) {}
|
|
481
|
+
|
|
482
|
+
rpc AllProfileExists(AllProfileExistsRequest) returns (AllProfileExistsResponse) {}
|
|
465
483
|
}
|