@lotics/app-sdk 0.55.2 → 0.55.3

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 (2) hide show
  1. package/docs/ai.md +2 -2
  2. package/package.json +1 -1
package/docs/ai.md CHANGED
@@ -76,8 +76,8 @@ The terminal `submit_result` call is captured into `output`, **not** rendered as
76
76
  <AgentRun
77
77
  parts={run.parts}
78
78
  state={run.status === "streaming" ? "streaming" : run.status === "error" ? "error" : "done"}
79
- error={run.error} // the breaking error — a terminal danger row
80
- labelForTool={(name) => toolLabels[name]} // optional: localize tool labels
79
+ error={run.error} // the breaking error — a terminal danger row
80
+ labelForCall={(call) => toolLabels[call.toolName]} // optional: localize tool labels
81
81
  />
82
82
  ```
83
83
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lotics/app-sdk",
3
- "version": "0.55.2",
3
+ "version": "0.55.3",
4
4
  "description": "Runtime SDK for Lotics custom-code apps — typed hooks, postMessage bridge, mount entry point",
5
5
  "type": "module",
6
6
  "exports": {