@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 +1 -1
- package/src/agent_run_pane.tsx +5 -1
package/package.json
CHANGED
package/src/agent_run_pane.tsx
CHANGED
|
@@ -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
|
|
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 }) {
|