@wenlarge/communication 1.3.7 → 1.3.8
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.
|
@@ -4,16 +4,12 @@ import { Empty } from "./google/protobuf/empty";
|
|
|
4
4
|
export declare const protobufPackage = "billing";
|
|
5
5
|
export interface AssignWelcomeGrantRequest {
|
|
6
6
|
companyId: string;
|
|
7
|
-
email: string;
|
|
8
7
|
}
|
|
9
8
|
export interface CheckQuotaRequest {
|
|
10
9
|
companyId: string;
|
|
11
10
|
workflowId: string;
|
|
12
11
|
nodeId: string;
|
|
13
12
|
}
|
|
14
|
-
export interface CheckQuotaResponse {
|
|
15
|
-
companyId: string;
|
|
16
|
-
}
|
|
17
13
|
export interface GetBillingStatusRequest {
|
|
18
14
|
companyId: string;
|
|
19
15
|
}
|
package/package.json
CHANGED
package/proto/billing.proto
CHANGED
|
@@ -3,7 +3,6 @@ syntax = "proto3";
|
|
|
3
3
|
import "google/protobuf/empty.proto";
|
|
4
4
|
package billing;
|
|
5
5
|
|
|
6
|
-
|
|
7
6
|
service BillingService {
|
|
8
7
|
rpc AssignWelcomeGrant(AssignWelcomeGrantRequest) returns (google.protobuf.Empty);
|
|
9
8
|
rpc CheckQuota(CheckQuotaRequest) returns (google.protobuf.Empty);
|
|
@@ -15,7 +14,6 @@ service BillingService {
|
|
|
15
14
|
|
|
16
15
|
message AssignWelcomeGrantRequest {
|
|
17
16
|
string companyId = 1;
|
|
18
|
-
string email = 2;
|
|
19
17
|
}
|
|
20
18
|
|
|
21
19
|
message CheckQuotaRequest {
|
|
@@ -24,10 +22,6 @@ message CheckQuotaRequest {
|
|
|
24
22
|
string nodeId = 3;
|
|
25
23
|
}
|
|
26
24
|
|
|
27
|
-
message CheckQuotaResponse {
|
|
28
|
-
string companyId = 1;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
25
|
message GetBillingStatusRequest {
|
|
32
26
|
string companyId = 1;
|
|
33
27
|
}
|
package/src/generated/billing.ts
CHANGED
|
@@ -14,7 +14,6 @@ export const protobufPackage = "billing";
|
|
|
14
14
|
|
|
15
15
|
export interface AssignWelcomeGrantRequest {
|
|
16
16
|
companyId: string;
|
|
17
|
-
email: string;
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
export interface CheckQuotaRequest {
|
|
@@ -23,10 +22,6 @@ export interface CheckQuotaRequest {
|
|
|
23
22
|
nodeId: string;
|
|
24
23
|
}
|
|
25
24
|
|
|
26
|
-
export interface CheckQuotaResponse {
|
|
27
|
-
companyId: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
25
|
export interface GetBillingStatusRequest {
|
|
31
26
|
companyId: string;
|
|
32
27
|
}
|