@lx-tech/contracts 1.0.16 → 1.0.17
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/gen/account.ts +4 -4
- package/package.json +1 -1
- package/proto/account.proto +2 -2
package/gen/account.ts
CHANGED
|
@@ -76,9 +76,9 @@ export interface AccountServiceClient {
|
|
|
76
76
|
|
|
77
77
|
confirmEmailChange(request: ConfirmEmailChangeRequest): Observable<ConfirmEmailChangeResponse>;
|
|
78
78
|
|
|
79
|
-
initPhoneChange(request:
|
|
79
|
+
initPhoneChange(request: InitPhoneChangeRequest): Observable<InitPhoneChangeResponse>;
|
|
80
80
|
|
|
81
|
-
confirmPhoneChange(request:
|
|
81
|
+
confirmPhoneChange(request: ConfirmPhoneChangeRequest): Observable<ConfirmPhoneChangeResponse>;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
export interface AccountServiceController {
|
|
@@ -95,11 +95,11 @@ export interface AccountServiceController {
|
|
|
95
95
|
): Promise<ConfirmEmailChangeResponse> | Observable<ConfirmEmailChangeResponse> | ConfirmEmailChangeResponse;
|
|
96
96
|
|
|
97
97
|
initPhoneChange(
|
|
98
|
-
request:
|
|
98
|
+
request: InitPhoneChangeRequest,
|
|
99
99
|
): Promise<InitPhoneChangeResponse> | Observable<InitPhoneChangeResponse> | InitPhoneChangeResponse;
|
|
100
100
|
|
|
101
101
|
confirmPhoneChange(
|
|
102
|
-
request:
|
|
102
|
+
request: ConfirmPhoneChangeRequest,
|
|
103
103
|
): Promise<ConfirmPhoneChangeResponse> | Observable<ConfirmPhoneChangeResponse> | ConfirmPhoneChangeResponse;
|
|
104
104
|
}
|
|
105
105
|
|
package/package.json
CHANGED
package/proto/account.proto
CHANGED
|
@@ -8,8 +8,8 @@ service AccountService {
|
|
|
8
8
|
rpc InitEmailChange(InitEmailChangeRequest) returns (InitEmailChangeResponse);
|
|
9
9
|
rpc ConfirmEmailChange(ConfirmEmailChangeRequest) returns (ConfirmEmailChangeResponse);
|
|
10
10
|
|
|
11
|
-
rpc InitPhoneChange(
|
|
12
|
-
rpc ConfirmPhoneChange(
|
|
11
|
+
rpc InitPhoneChange(InitPhoneChangeRequest) returns (InitPhoneChangeResponse);
|
|
12
|
+
rpc ConfirmPhoneChange(ConfirmPhoneChangeRequest) returns (ConfirmPhoneChangeResponse);
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
message GetAccountRequest {
|