@alebooking/contracts 1.0.15 → 1.0.16
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/auth.ts +2 -0
- package/package.json +1 -1
- package/proto/auth.proto +3 -1
package/gen/auth.ts
CHANGED
package/package.json
CHANGED
package/proto/auth.proto
CHANGED
|
@@ -47,10 +47,12 @@ message TelegramInitResponse {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
message TelegramVerifyRequestQuery {
|
|
50
|
-
|
|
50
|
+
int64 id = 1;
|
|
51
51
|
string first_name = 2;
|
|
52
52
|
string last_name = 3;
|
|
53
53
|
string username = 4;
|
|
54
|
+
string photo_url = 5;
|
|
55
|
+
int64 auth_date = 6;
|
|
54
56
|
string hash = 7;
|
|
55
57
|
}
|
|
56
58
|
|