@vultisig/cli 2.3.3 → 2.5.0

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/index.js +545 -171
  3. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @vultisig/cli
2
2
 
3
+ ## 2.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#781](https://github.com/vultisig/vultisig-sdk/pull/781) [`d0743b5`](https://github.com/vultisig/vultisig-sdk/commit/d0743b5ef2d5275966c0d8a34bcb6c1329bdef44) Thanks [@neavra](https://github.com/neavra)! - Advertise `supported_surfaces: ["balance_summary"]` to the agent backend and
8
+ render the `data-balance_summary` card as a terminal table instead of triggering
9
+ the backend's legacy "echo card_payload JSON verbatim" path. Adds a defensive
10
+ fallback that pretty-renders a balance card envelope if it ever arrives embedded
11
+ in message content (older backend). Cards surface in the TUI (table), pipe mode
12
+ (`balance_summary` NDJSON event), and `agent ask` (`cards` field / rendered
13
+ table). Card string fields (token symbol, chain, address, amounts) are stripped
14
+ of terminal control bytes at the parse boundary so attacker-influenced on-chain
15
+ metadata or a legacy-echoed payload can't inject ANSI/OSC escape sequences into
16
+ the rendered balances table.
17
+
18
+ ### Patch Changes
19
+
20
+ - [#779](https://github.com/vultisig/vultisig-sdk/pull/779) [`3cb521d`](https://github.com/vultisig/vultisig-sdk/commit/3cb521d190ab67a24199249f4494f02bf31cbcb1) Thanks [@neavra](https://github.com/neavra)! - Fix CLI client-side tool dispatch. The CLI gated dispatch on a `clientExecuted` wire flag the backend no longer emits, so `sign_typed_data`, `vault_coin`, `vault_chain`, and `address_book` silently stopped dispatching and degraded to display-only progress. Dispatch now keys on the existing client-side-tool registry (mirroring the app's `toolUIRegistry`), restoring those flows.
21
+
22
+ - [#780](https://github.com/vultisig/vultisig-sdk/pull/780) [`cbd8f13`](https://github.com/vultisig/vultisig-sdk/commit/cbd8f13112405a56f7b5d27c3562c2f161909ac9) Thanks [@neavra](https://github.com/neavra)! - Recover the assistant answer (and any tx_ready signable card) when an agent SSE stream drops mid-turn. The backend keeps processing on a detached context and persists the message, so on a transport disconnect the CLI now polls `/messages/since` (server-clock anchored via `X-Server-Now`, opaque-cursor round-trip, bounded retries) to recover what the dropped stream missed instead of losing the turn. A recovered tx_ready flows through the same confirm/sign gate as a live one. Pipe mode emits a `reconnecting` event so agent consumers can distinguish "still working" from "failed"; a deliberate Ctrl+C abort is unaffected.
23
+
24
+ - Updated dependencies [[`0f350ff`](https://github.com/vultisig/vultisig-sdk/commit/0f350ff128a42764950e71b4c156907ec59a3c37), [`6f53d2c`](https://github.com/vultisig/vultisig-sdk/commit/6f53d2cb3d1a56ff9377cc32c7c6f4e750fe8f21), [`b51902b`](https://github.com/vultisig/vultisig-sdk/commit/b51902bc08045e3977116565e430c1454d0ba607), [`dfd1cf3`](https://github.com/vultisig/vultisig-sdk/commit/dfd1cf3fdf9b650a2e70e8a72f751ef6e465bbbe)]:
25
+ - @vultisig/sdk@2.5.0
26
+ - @vultisig/core-chain@2.17.6
27
+ - @vultisig/rujira@38.0.0
28
+
29
+ ## 2.4.0
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies [[`0567316`](https://github.com/vultisig/vultisig-sdk/commit/056731699c9d1c9f16d9c9eb049e747c73f1c33d), [`3156d9f`](https://github.com/vultisig/vultisig-sdk/commit/3156d9fbe5116cb7d92e9e0033e036e1da1eb2fa), [`a3dbf1b`](https://github.com/vultisig/vultisig-sdk/commit/a3dbf1b55f0e83cacdefbbee3532a01d8f7ba3af), [`e240dae`](https://github.com/vultisig/vultisig-sdk/commit/e240dae5df253b544e688c3e41d3037ec30fbdc0)]:
34
+ - @vultisig/core-chain@2.17.0
35
+ - @vultisig/sdk@2.4.0
36
+ - @vultisig/rujira@37.0.0
37
+
3
38
  ## 2.3.3
4
39
 
5
40
  ### Patch Changes