@arbiwallet/contracts 1.0.282 → 1.0.283

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/user.ts CHANGED
@@ -100,6 +100,8 @@ export interface UserResponse {
100
100
  instagram?: string | undefined;
101
101
  facebook?: string | undefined;
102
102
  facebookUrl?: string | undefined;
103
+ utmDataJson?: string | undefined;
104
+ blockInTg?: boolean | undefined;
103
105
  }
104
106
 
105
107
  export interface AdminGetUserForUpdateRequest {
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.282",
4
+ "version": "1.0.283",
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/user.proto CHANGED
@@ -144,6 +144,8 @@ message UserResponse {
144
144
  optional string instagram = 47;
145
145
  optional string facebook = 48;
146
146
  optional string facebook_url = 49;
147
+ optional string utm_data_json = 50;
148
+ optional bool block_in_tg = 51;
147
149
  }
148
150
 
149
151
  message AdminGetUserForUpdateRequest {