@arbiwallet/contracts 1.0.269 → 1.0.270

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.
@@ -410,7 +410,20 @@ export interface GetExchangePaymentsItem {
410
410
  customerName?: string | undefined;
411
411
  managerName?: string | undefined;
412
412
  calculationId?: string | undefined;
413
- cryptoNetwork?: string | undefined;
413
+ cryptoNetwork?:
414
+ | string
415
+ | undefined;
416
+ /** Tx hash / provider track id for crypto payments. */
417
+ trackId?:
418
+ | string
419
+ | undefined;
420
+ /** Network fee in USDT (crypto), when stored. */
421
+ networkFee?:
422
+ | number
423
+ | undefined;
424
+ /** Base amount without network fee (crypto), when stored. */
425
+ amountBase?: number | undefined;
426
+ uuid?: string | undefined;
414
427
  }
415
428
 
416
429
  export interface GetExchangePaymentsResponse {
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.269",
4
+ "version": "1.0.270",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -453,6 +453,13 @@ message GetExchangePaymentsItem {
453
453
  optional string manager_name = 12;
454
454
  optional string calculation_id = 13;
455
455
  optional string crypto_network = 14;
456
+ /** Tx hash / provider track id for crypto payments. */
457
+ optional string track_id = 15;
458
+ /** Network fee in USDT (crypto), when stored. */
459
+ optional double network_fee = 16;
460
+ /** Base amount without network fee (crypto), when stored. */
461
+ optional double amount_base = 17;
462
+ optional string uuid = 18;
456
463
  }
457
464
 
458
465
  message GetExchangePaymentsResponse {