@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 CHANGED
@@ -49,6 +49,8 @@ export interface TelegramVerifyRequestQuery {
49
49
  firstName: string;
50
50
  lastName: string;
51
51
  username: string;
52
+ photoUrl: string;
53
+ authDate: number;
52
54
  hash: string;
53
55
  }
54
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alebooking/contracts",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Protobug definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/auth.proto CHANGED
@@ -47,10 +47,12 @@ message TelegramInitResponse {
47
47
  }
48
48
 
49
49
  message TelegramVerifyRequestQuery {
50
- int32 id = 1;
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