@lansweeper/multitenant-api-grpc 0.4.21 → 0.4.23
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 +90 -0
- package/gen-proto/multitenant_pb.js +720 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +26 -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.23",
|
|
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": "7b276e676851cdb2736a07ab5b28a08e0868b655"
|
|
19
19
|
}
|
package/proto/multitenant.proto
CHANGED
|
@@ -417,6 +417,26 @@ message GetInstallationLicenseByClientIdResponse {
|
|
|
417
417
|
string license = 1;
|
|
418
418
|
}
|
|
419
419
|
|
|
420
|
+
message AllProfileExistsRequest{
|
|
421
|
+
option deprecated = true;
|
|
422
|
+
string site_id = 1;
|
|
423
|
+
repeated string emails = 2;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
message AllProfileExistsResponse{
|
|
427
|
+
option deprecated = true;
|
|
428
|
+
bool all = 1;
|
|
429
|
+
}
|
|
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
|
+
|
|
420
440
|
service Multitenant {
|
|
421
441
|
rpc CheckAccessToSiteByAccountId(CheckAccessToSiteByAccountIdRequest) returns (CheckAccessToSiteByAccountIdResponse) {}
|
|
422
442
|
|
|
@@ -469,4 +489,10 @@ service Multitenant {
|
|
|
469
489
|
rpc CreateTrialSiteAndInstaller(CreateTrialSiteAndInstallerRequest) returns (CreateTrialSiteAndInstallerResponse) {}
|
|
470
490
|
|
|
471
491
|
rpc GetInstallationLicenseByClientId(GetInstallationLicenseByClientIdRequest) returns (GetInstallationLicenseByClientIdResponse) {}
|
|
492
|
+
|
|
493
|
+
rpc AllProfilesExist(AllProfilesExistRequest) returns (AllProfilesExistResponse) {}
|
|
494
|
+
|
|
495
|
+
rpc AllProfileExists(AllProfileExistsRequest) returns (AllProfileExistsResponse) {
|
|
496
|
+
option deprecated = true;
|
|
497
|
+
}
|
|
472
498
|
}
|