@arbiwallet/contracts 1.0.257 → 1.0.259

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.
@@ -90,7 +90,7 @@ export interface CreateExchangeDealRequest {
90
90
  expensesForCourier?: number | undefined;
91
91
  includeInTotalCalculation?: boolean | undefined;
92
92
  oneCurrencyExchange?: boolean | undefined;
93
- receivedFromDealer?: boolean | undefined;
93
+ receivedFromDealer?: number | undefined;
94
94
  receivedFromDealerWalletId?: string | undefined;
95
95
  customerDocName?: string | undefined;
96
96
  customerDocNationality?: string | undefined;
@@ -186,7 +186,7 @@ export interface GetExchangeDealDetailsResult {
186
186
  outputWalletId: string;
187
187
  outputWalletName?: string | undefined;
188
188
  oneCurrencyExchange: boolean;
189
- receivedFromDealer: boolean;
189
+ receivedFromDealer?: number | undefined;
190
190
  receivedFromDealerWalletId?: string | undefined;
191
191
  receivedFromDealerWalletName?: string | undefined;
192
192
  exchangeStatusId?: 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.257",
4
+ "version": "1.0.259",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -119,7 +119,7 @@ message CreateExchangeDealRequest {
119
119
  optional double expenses_for_courier = 15;
120
120
  optional bool include_in_total_calculation = 16;
121
121
  optional bool one_currency_exchange = 17;
122
- optional bool received_from_dealer = 18;
122
+ optional double received_from_dealer = 18;
123
123
  optional string received_from_dealer_wallet_id = 19;
124
124
 
125
125
  optional string customer_doc_name = 20;
@@ -224,7 +224,7 @@ message GetExchangeDealDetailsResult {
224
224
  optional string output_wallet_name = 23;
225
225
 
226
226
  bool one_currency_exchange = 24;
227
- bool received_from_dealer = 25;
227
+ optional double received_from_dealer = 25;
228
228
  optional string received_from_dealer_wallet_id = 26;
229
229
  optional string received_from_dealer_wallet_name = 27;
230
230