@plitzi/sdk-shared 0.32.6 → 0.32.8
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 +16 -0
- package/dist/types/ServerTypes.d.ts +8 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @plitzi/sdk-shared
|
|
2
2
|
|
|
3
|
+
## 0.32.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- v0.32.8
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @plitzi/nexus@0.32.8
|
|
10
|
+
|
|
11
|
+
## 0.32.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- v0.32.7
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @plitzi/nexus@0.32.7
|
|
18
|
+
|
|
3
19
|
## 0.32.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -280,6 +280,14 @@ export type SSRServerConfig = {
|
|
|
280
280
|
serviceUrl: string;
|
|
281
281
|
renderBaseUrl: string;
|
|
282
282
|
};
|
|
283
|
+
/** MCP Apps: enables the interactive `ui://` render view plitzi_render links to. `sdkBase` is this server's
|
|
284
|
+
* absolute origin (it must serve the Plitzi SDK bundle under /sdk-assets — see `static`); the iframe imports
|
|
285
|
+
* the SDK from there and renders the widget client-side. When absent, the view is not registered. `devMode`
|
|
286
|
+
* selects the SDK vendor bundle name (dev vs prod split), matching the SSR asset resolution. */
|
|
287
|
+
renderApp?: {
|
|
288
|
+
sdkBase: string;
|
|
289
|
+
devMode?: boolean;
|
|
290
|
+
};
|
|
283
291
|
/** Backing store for draft-preview tokens. Defaults to an in-memory store (single replica); inject a shared
|
|
284
292
|
* store (e.g. Redis) for multi-replica correctness. */
|
|
285
293
|
draftStore?: DraftStore;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plitzi/sdk-shared",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.8",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -1233,7 +1233,7 @@
|
|
|
1233
1233
|
},
|
|
1234
1234
|
"dependencies": {
|
|
1235
1235
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
1236
|
-
"@plitzi/nexus": "0.32.
|
|
1236
|
+
"@plitzi/nexus": "0.32.8",
|
|
1237
1237
|
"@plitzi/plitzi-ui": "^1.6.17",
|
|
1238
1238
|
"date-fns": "^4.4.0",
|
|
1239
1239
|
"date-fns-tz": "^3.2.0",
|