@ciganov/contracts 1.0.0 → 1.0.1
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/dist/gen/auth.d.ts +0 -2
- package/dist/gen/auth.js +1 -1
- package/package.json +1 -1
- package/proto/auth.proto +1 -3
package/dist/gen/auth.d.ts
CHANGED
|
@@ -2,14 +2,12 @@ import { Observable } from "rxjs";
|
|
|
2
2
|
export declare const protobufPackage = "auth.v1";
|
|
3
3
|
export interface SendOtpRequest {
|
|
4
4
|
identifier: string;
|
|
5
|
-
type: string;
|
|
6
5
|
}
|
|
7
6
|
export interface SendOtpResponse {
|
|
8
7
|
ok: boolean;
|
|
9
8
|
}
|
|
10
9
|
export interface VerifyOtpRequest {
|
|
11
10
|
identifier: string;
|
|
12
|
-
type: string;
|
|
13
11
|
code: string;
|
|
14
12
|
}
|
|
15
13
|
export interface VerifyOtpResponse {
|
package/dist/gen/auth.js
CHANGED
package/package.json
CHANGED
package/proto/auth.proto
CHANGED
|
@@ -9,7 +9,6 @@ service AuthService {
|
|
|
9
9
|
|
|
10
10
|
message SendOtpRequest {
|
|
11
11
|
string identifier = 1;
|
|
12
|
-
string type = 2;
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
message SendOtpResponse {
|
|
@@ -18,8 +17,7 @@ message SendOtpResponse {
|
|
|
18
17
|
|
|
19
18
|
message VerifyOtpRequest {
|
|
20
19
|
string identifier = 1;
|
|
21
|
-
string
|
|
22
|
-
string code = 3;
|
|
20
|
+
string code = 2;
|
|
23
21
|
}
|
|
24
22
|
|
|
25
23
|
message VerifyOtpResponse {
|