@alebooking/contracts 1.0.13 → 1.0.15

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,7 +49,6 @@ export interface TelegramVerifyRequestQuery {
49
49
  firstName: string;
50
50
  lastName: string;
51
51
  username: string;
52
- photoUrl: string;
53
52
  hash: string;
54
53
  }
55
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alebooking/contracts",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
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
@@ -51,9 +51,9 @@ message TelegramVerifyRequestQuery {
51
51
  string first_name = 2;
52
52
  string last_name = 3;
53
53
  string username = 4;
54
- string photo_url = 5;
55
54
  string hash = 7;
56
55
  }
56
+
57
57
  message TelegramVerifyRequest {
58
58
  TelegramVerifyRequestQuery query = 1;
59
59
  }