@webmcp-auto-ui/sdk 2.5.14 → 2.5.16

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmcp-auto-ui/sdk",
3
- "version": "2.5.14",
3
+ "version": "2.5.16",
4
4
  "description": "Skills CRUD, HyperSkill format, Svelte 5 stores",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "type": "module",
@@ -213,7 +213,7 @@ function createCanvasVanilla() {
213
213
  created: new Date().toISOString(),
214
214
  mcp: _mcpUrl,
215
215
  llm: _llm,
216
- blocks: _blocks.map((b) => ({ type: b.type, data: b.data })),
216
+ blocks: _blocks.map((b) => ({ type: b.type, data: JSON.parse(JSON.stringify(b.data)) })),
217
217
  };
218
218
  if (Object.keys(_themeOverrides).length > 0) skill.theme = _themeOverrides;
219
219
  if (_enabledServerIds.length > 0) skill.servers = _enabledServerIds;