@arbiwallet/contracts 1.0.264 → 1.0.265

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.
@@ -150,6 +150,7 @@ export interface GetExchangeDealsItem {
150
150
  outputCurrencyId: string;
151
151
  outputWalletId: string;
152
152
  exchangeStatusId: string;
153
+ exchangeStatusName: string;
153
154
  status: boolean;
154
155
  payed: boolean;
155
156
  referrerId?: string | undefined;
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.264",
4
+ "version": "1.0.265",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -182,23 +182,24 @@ message GetExchangeDealsItem {
182
182
  string output_currency_id = 12;
183
183
  string output_wallet_id = 13;
184
184
  string exchange_status_id = 14;
185
- bool status = 15;
186
- bool payed = 16;
187
- optional string referrer_id = 17;
188
- optional string referrer_text = 18;
189
- optional string office_id = 19;
190
- repeated GetExchangeDealsReceipt receipts = 20;
191
- optional GetExchangeDealsManager manager = 21;
192
- optional string payment_id = 22;
193
- string payer_name = 23;
194
- string payer_data = 24;
195
- optional string calculation_source_id = 25;
196
- optional double exchange_rate_1_iter = 26;
197
- optional double exchange_rate_2_iter = 27;
198
- optional double usdt_rate = 28;
199
- optional double output_amount_in_usdt = 29;
200
- bool include_in_total_calculation = 30;
201
- bool one_currency_exchange = 31;
185
+ string exchange_status_name = 15;
186
+ bool status = 16;
187
+ bool payed = 17;
188
+ optional string referrer_id = 18;
189
+ optional string referrer_text = 19;
190
+ optional string office_id = 20;
191
+ repeated GetExchangeDealsReceipt receipts = 21;
192
+ optional GetExchangeDealsManager manager = 22;
193
+ optional string payment_id = 23;
194
+ string payer_name = 24;
195
+ string payer_data = 25;
196
+ optional string calculation_source_id = 26;
197
+ optional double exchange_rate_1_iter = 27;
198
+ optional double exchange_rate_2_iter = 28;
199
+ optional double usdt_rate = 29;
200
+ optional double output_amount_in_usdt = 30;
201
+ bool include_in_total_calculation = 31;
202
+ bool one_currency_exchange = 32;
202
203
  }
203
204
 
204
205
  message GetExchangeDealsResponse {