@arbiwallet/contracts 1.0.13 → 1.0.14

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
@@ -18,8 +18,6 @@ export interface TelegramAuthRequest {
18
18
  lastName: string;
19
19
  authDate: string;
20
20
  photoUrl: string;
21
- languageCode: string;
22
- allowsWriteToPm: boolean;
23
21
  }
24
22
 
25
23
  export interface GoogleAuthRequest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arbiwallet/contracts",
3
3
  "descriptions": "Generate and manage smart contracts for ArbiWallet",
4
- "version": "1.0.13",
4
+ "version": "1.0.14",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
package/proto/auth.proto CHANGED
@@ -20,8 +20,6 @@ message TelegramAuthRequest {
20
20
  string last_name = 5;
21
21
  string auth_date = 6;
22
22
  string photo_url = 7;
23
- string language_code = 8;
24
- bool allows_write_to_pm = 9;
25
23
  }
26
24
 
27
25
  message GoogleAuthRequest {