@arbiwallet/contracts 1.0.26 → 1.0.27

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
@@ -143,6 +143,8 @@ export interface RegisterWithdrawalResponse {
143
143
  withdrawalId: string;
144
144
  /** Текущий статус (enum строкой, см. реализацию). */
145
145
  status: string;
146
+ /** id строки ленты (WITHDRAWAL_CREATED), как в GetTransactionFeed.items[].id. */
147
+ transactionFeedItemId?: string | undefined;
146
148
  }
147
149
 
148
150
  export interface ReserveFundsRequest {
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.26",
4
+ "version": "1.0.27",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -142,6 +142,7 @@ message RegisterWithdrawalRequest {
142
142
  message RegisterWithdrawalResponse {
143
143
  string withdrawal_id = 1; // Внутренний id вывода в ledger.
144
144
  string status = 2; // Текущий статус (enum строкой, см. реализацию).
145
+ optional string transaction_feed_item_id = 3; // id строки ленты (WITHDRAWAL_CREATED), как в GetTransactionFeed.items[].id.
145
146
  }
146
147
 
147
148
  message ReserveFundsRequest {