@lotics/ui 41.0.0 → 41.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lotics/ui",
3
- "version": "41.0.0",
3
+ "version": "41.0.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./vite": {
@@ -48,7 +48,11 @@ export interface AgentRunLike {
48
48
  * the wrong document, and the only exit was to sit through it.
49
49
  */
50
50
  cancel: () => void;
51
- error: string | null;
51
+ /** The breaking error that killed the run. Accepts `undefined` as well as
52
+ * `null` so an SDK run — whose `error` is an OPTIONAL property — satisfies
53
+ * this without the caller reshaping the object the SDK docs say to hand
54
+ * straight over. The pane normalizes both to absent. */
55
+ error: string | null | undefined;
52
56
  }
53
57
 
54
58
  export function AgentRunScope({ children }: { children: ReactNode }) {