@cat-factory/app 0.26.5 → 0.26.6

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.
@@ -114,7 +114,9 @@ function buildManifestPayload(): {
114
114
  const template = descriptor.value?.manifestTemplate
115
115
  if (!template) return null
116
116
  const base = descriptor.value?.savedManifest ?? template
117
- const manifest: Record<string, unknown> = structuredClone(base)
117
+ // `base` is a Vue reactive proxy, which structuredClone refuses (DataCloneError). The
118
+ // manifest is plain JSON config, so a JSON round-trip both unwraps the proxy and deep-clones.
119
+ const manifest: Record<string, unknown> = JSON.parse(JSON.stringify(base))
118
120
  const providerConfig: Record<string, unknown> = {
119
121
  ...(manifest.providerConfig as Record<string, unknown> | undefined),
120
122
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/app",
3
- "version": "0.26.5",
3
+ "version": "0.26.6",
4
4
  "description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
5
5
  "repository": {
6
6
  "type": "git",