@nikcli-ai/sdk 1.147.0 → 1.149.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.
|
@@ -2575,6 +2575,10 @@ export type Config = {
|
|
|
2575
2575
|
* Bound in-memory TUI sync payload (message/part/diff/todo) with LRU eviction on session sync. Default off.
|
|
2576
2576
|
*/
|
|
2577
2577
|
cacheEviction?: boolean;
|
|
2578
|
+
/**
|
|
2579
|
+
* Window the session message list via message-window visibleRange instead of rendering all messages. Default off.
|
|
2580
|
+
*/
|
|
2581
|
+
messageVirtualization?: boolean;
|
|
2578
2582
|
};
|
|
2579
2583
|
requests?: {
|
|
2580
2584
|
/**
|
|
@@ -2920,7 +2924,7 @@ export type McpResource = {
|
|
|
2920
2924
|
};
|
|
2921
2925
|
export type ManagedWorktreeInfo = {
|
|
2922
2926
|
id: string;
|
|
2923
|
-
parentId
|
|
2927
|
+
parentId: string | null;
|
|
2924
2928
|
name: string;
|
|
2925
2929
|
branch: string;
|
|
2926
2930
|
directory: string;
|