@nest-cinema/contracts 1.0.10 → 1.0.11

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
@@ -51,6 +51,7 @@ export interface TelegramVerifyRequest {
51
51
  username?: string | undefined;
52
52
  photoUrl?: string | undefined;
53
53
  authDate: number;
54
+ hash: string;
54
55
  }
55
56
 
56
57
  export interface TelegramVerifyResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nest-cinema/contracts",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Protobuf definitions and generated typescript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/auth.proto CHANGED
@@ -53,6 +53,7 @@ message TelegramVerifyRequest {
53
53
  optional string username = 4;
54
54
  optional string photo_url = 5;
55
55
  int64 auth_date = 6;
56
+ string hash = 7;
56
57
  }
57
58
  message TelegramVerifyResponse {
58
59
  oneof result {