@nikcli-ai/sdk 1.200.0 → 1.201.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.
- package/dist/v2/gen/types.gen.d.ts +10 -0
- package/package.json +1 -1
|
@@ -2657,6 +2657,10 @@ export type Config = {
|
|
|
2657
2657
|
* Window the session message list via message-window visibleRange instead of rendering all messages. Default off.
|
|
2658
2658
|
*/
|
|
2659
2659
|
messageVirtualization?: boolean;
|
|
2660
|
+
/**
|
|
2661
|
+
* Collapse consecutive read-only tool calls (read/grep/glob/list/codesearch/webfetch) into a single summary row once the run finishes. Default off.
|
|
2662
|
+
*/
|
|
2663
|
+
explorationGrouping?: boolean;
|
|
2660
2664
|
};
|
|
2661
2665
|
requests?: {
|
|
2662
2666
|
/**
|
|
@@ -2664,6 +2668,12 @@ export type Config = {
|
|
|
2664
2668
|
*/
|
|
2665
2669
|
latestOnlyLspRefresh?: boolean;
|
|
2666
2670
|
};
|
|
2671
|
+
events?: {
|
|
2672
|
+
/**
|
|
2673
|
+
* Encode SSE event payloads through their registered schema before serializing. Drops keys the schema does not declare, so the wire shape follows the contract rather than the publisher. Default off.
|
|
2674
|
+
*/
|
|
2675
|
+
schemaEncoding?: boolean;
|
|
2676
|
+
};
|
|
2667
2677
|
};
|
|
2668
2678
|
rag?: RagConfig;
|
|
2669
2679
|
image?: ImageConfig;
|