@lansweeper/multitenant-api-grpc 0.4.22 → 0.4.24
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 +34 -0
- package/gen-proto/multitenant_grpc_pb.js +66 -0
- package/gen-proto/multitenant_pb.d.ts +85 -0
- package/gen-proto/multitenant_pb.js +664 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +26 -1
package/proto/multitenant.proto
CHANGED
|
@@ -418,14 +418,33 @@ message GetInstallationLicenseByClientIdResponse {
|
|
|
418
418
|
}
|
|
419
419
|
|
|
420
420
|
message AllProfileExistsRequest{
|
|
421
|
+
option deprecated = true;
|
|
421
422
|
string site_id = 1;
|
|
422
423
|
repeated string emails = 2;
|
|
423
424
|
}
|
|
424
425
|
|
|
425
426
|
message AllProfileExistsResponse{
|
|
427
|
+
option deprecated = true;
|
|
426
428
|
bool all = 1;
|
|
427
429
|
}
|
|
428
430
|
|
|
431
|
+
message AllProfilesExistRequest{
|
|
432
|
+
string site_id = 1;
|
|
433
|
+
repeated string emails = 2;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
message AllProfilesExistResponse{
|
|
437
|
+
bool all = 1;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
message GetSiteSubscriptionRequest {
|
|
441
|
+
string site_id = 1;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
message GetSiteSubscriptionResponse {
|
|
445
|
+
SubscriptionType type = 1;
|
|
446
|
+
}
|
|
447
|
+
|
|
429
448
|
service Multitenant {
|
|
430
449
|
rpc CheckAccessToSiteByAccountId(CheckAccessToSiteByAccountIdRequest) returns (CheckAccessToSiteByAccountIdResponse) {}
|
|
431
450
|
|
|
@@ -479,5 +498,11 @@ service Multitenant {
|
|
|
479
498
|
|
|
480
499
|
rpc GetInstallationLicenseByClientId(GetInstallationLicenseByClientIdRequest) returns (GetInstallationLicenseByClientIdResponse) {}
|
|
481
500
|
|
|
482
|
-
rpc
|
|
501
|
+
rpc AllProfilesExist(AllProfilesExistRequest) returns (AllProfilesExistResponse) {}
|
|
502
|
+
|
|
503
|
+
rpc AllProfileExists(AllProfileExistsRequest) returns (AllProfileExistsResponse) {
|
|
504
|
+
option deprecated = true;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
rpc GetSiteSubscription(GetSiteSubscriptionRequest) returns (GetSiteSubscriptionResponse) {}
|
|
483
508
|
}
|