@arbiwallet/contracts 1.0.246 → 1.0.247

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.
@@ -397,6 +397,7 @@ export interface GetExchangePaymentsItem {
397
397
  createdAt: string;
398
398
  customerName?: string | undefined;
399
399
  managerName?: string | undefined;
400
+ calculationId?: string | undefined;
400
401
  }
401
402
 
402
403
  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.246",
4
+ "version": "1.0.247",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -436,6 +436,7 @@ message GetExchangePaymentsItem {
436
436
  string created_at = 10;
437
437
  optional string customer_name = 11;
438
438
  optional string manager_name = 12;
439
+ optional string calculation_id = 13;
439
440
  }
440
441
 
441
442
  message GetExchangePaymentsResponse {