@plitzi/sdk-shared 0.32.18 → 0.32.20
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/CHANGELOG.md +12 -0
- package/dist/types/ServerTypes.d.ts +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -292,6 +292,11 @@ export type SSRServerConfig = {
|
|
|
292
292
|
mcpAi?: {
|
|
293
293
|
enabled?: boolean;
|
|
294
294
|
path?: string;
|
|
295
|
+
/** Whether the plitzi_render view may paint from the tool arguments while the host is still STREAMING them:
|
|
296
|
+
* a placeholder that grows with the widget being authored, instead of the static "Rendering…" held for as
|
|
297
|
+
* long as the model takes to write the batch. Defaults to true; hosts that stream nothing are unaffected
|
|
298
|
+
* either way. Set false to keep every view blank until the finished widget arrives. */
|
|
299
|
+
renderStreaming?: boolean;
|
|
295
300
|
};
|
|
296
301
|
/** Receives a {@link ServerLogEvent} for every HTTP request this server answers — whatever stage answered it
|
|
297
302
|
* and whatever the outcome — plus every MCP tool call and resource read inside those requests. Without it the
|