@7n/tauri-components 0.13.4 → 0.13.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.13.5] - 2026-07-20
4
+
5
+ ### Fixed
6
+
7
+ - acp-kit: помилка невдалого запиту (error) тепер повертається в UI-конверт, а не лише пишеться в journal — RequestView більше не показує порожній 'failed' без пояснення
8
+
3
9
  ## [0.13.4] - 2026-07-20
4
10
 
5
11
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7n/tauri-components",
3
- "version": "0.13.4",
3
+ "version": "0.13.5",
4
4
  "type": "module",
5
5
  "description": "Shared LLM agent engine + Vue/Quasar UI for Tauri apps (chat, journal, trust-tier approval).",
6
6
  "license": "MIT",
@@ -141,8 +141,17 @@ export function createAcpAgentKit({
141
141
  try {
142
142
  turn = await turnPromise
143
143
  } catch (error) {
144
- await journal.update(requestId, { status: 'failed', error: String(error?.message ?? error) })
145
- return { requestId, status: 'failed', summary: null, actions: baseActions, question: null, pendingApproval: null }
144
+ const message = String(error?.message ?? error)
145
+ await journal.update(requestId, { status: 'failed', error: message })
146
+ return {
147
+ requestId,
148
+ status: 'failed',
149
+ summary: null,
150
+ error: message,
151
+ actions: baseActions,
152
+ question: null,
153
+ pendingApproval: null
154
+ }
146
155
  }
147
156
  const fields = finalizeTurn(turn)
148
157
  const actions = [...baseActions, ...turn.trace]
@@ -3,7 +3,7 @@ type: JS Module
3
3
  title: acp-kit.js
4
4
  resource: npm/src/core/acp-kit.js
5
5
  docgen:
6
- crc: 7838ed4e
6
+ crc: f5342002
7
7
  model: omlx/gemma-4-e4b-it-OptiQ-4bit
8
8
  score: 100
9
9
  judgeModel: openai-codex/gpt-5.4-mini