@arbiwallet/contracts 1.0.35 → 1.0.36

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.
package/gen/ledger.ts CHANGED
@@ -367,6 +367,8 @@ export interface InternalTransferResponse {
367
367
  receiverAvailable: string;
368
368
  receiverReserved: string;
369
369
  receiverTotal: string;
370
+ /** id строки TransactionFeedItem у отправителя (INTERNAL_TRANSFER_SENT) — для истории / деталей */
371
+ transactionId: string;
370
372
  }
371
373
 
372
374
  export const LEDGER_V1_PACKAGE_NAME = "ledger.v1";
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.35",
4
+ "version": "1.0.36",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -337,4 +337,6 @@ message InternalTransferResponse {
337
337
  string receiver_available = 7;
338
338
  string receiver_reserved = 8;
339
339
  string receiver_total = 9;
340
+ // id строки TransactionFeedItem у отправителя (INTERNAL_TRANSFER_SENT) — для истории / деталей
341
+ string transaction_id = 10;
340
342
  }