@arbiwallet/contracts 1.0.258 → 1.0.260

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.
@@ -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/gen/referral.ts CHANGED
@@ -232,6 +232,7 @@ export interface ReferralPayoutResponse {
232
232
  comment?: string | undefined;
233
233
  createdAt: string;
234
234
  updatedAt: string;
235
+ walletUserId?: string | undefined;
235
236
  }
236
237
 
237
238
  export interface ListPayoutsRequest {
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.258",
4
+ "version": "1.0.260",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -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
 
@@ -241,6 +241,7 @@ message ReferralPayoutResponse {
241
241
  optional string comment = 8;
242
242
  string created_at = 9;
243
243
  string updated_at = 10;
244
+ optional string wallet_user_id = 11;
244
245
  }
245
246
 
246
247
  message ListPayoutsRequest {