@dkcinema/contracts 1.0.12 → 1.0.13
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/output/auth.ts +0 -12
- package/package.json +1 -1
- package/protos/auth.proto +0 -12
package/output/auth.ts
CHANGED
|
@@ -20,18 +20,6 @@ export interface UserResponse {
|
|
|
20
20
|
email: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
export interface User {
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export interface GetUserRequest {
|
|
27
|
-
/** или int64, или UUID */
|
|
28
|
-
userId: string;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export interface GetUserResponse {
|
|
32
|
-
user: User | undefined;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
23
|
export interface VerifyEmailOtpRequest {
|
|
36
24
|
code: string;
|
|
37
25
|
email: string;
|
package/package.json
CHANGED
package/protos/auth.proto
CHANGED
|
@@ -23,18 +23,6 @@ message UserResponse {
|
|
|
23
23
|
string email = 3;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
message User {
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
message GetUserRequest {
|
|
31
|
-
string user_id = 1; // или int64, или UUID
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
message GetUserResponse {
|
|
35
|
-
User user = 1;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
26
|
message VerifyEmailOtpRequest {
|
|
39
27
|
string code = 1;
|
|
40
28
|
string email = 2;
|