@cat-factory/app 0.241.2 → 0.241.3
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.
|
@@ -229,6 +229,14 @@ Both links are absolute on purpose: this page ships inside the `@cat-factory/app
|
|
|
229
229
|
relative path out of it resolves only from a checkout, which is the one place its reader is not.
|
|
230
230
|
(`scripts/check-shipped-doc-links.mjs` fails CI on a shipped doc that grows one.)
|
|
231
231
|
|
|
232
|
+
The BACKEND half of an operation is registered with one dependency: the runtime facade you boot
|
|
233
|
+
through (`@cat-factory/node-server`, `@cat-factory/local-server` or `@cat-factory/worker`) exports
|
|
234
|
+
every registry constructor and every type a registration literal names. Do not reach below it for
|
|
235
|
+
`@cat-factory/kernel`, `@cat-factory/contracts` or `@cat-factory/prompt-fragments`: those publish at
|
|
236
|
+
EXACT versions, so floating one past what your facade pins resolves a second physical copy and your
|
|
237
|
+
registrations land where nothing reads them
|
|
238
|
+
([ADR 0044](https://github.com/kibertoad/cat-factory/blob/main/backend/docs/adr/0044-facade-extension-surface.md)).
|
|
239
|
+
|
|
232
240
|
The **same type can be delivered from the backend** instead of code-shipped: register it on the
|
|
233
241
|
deployment's app-owned `TaskTypeRegistry` and it arrives in the workspace snapshot's
|
|
234
242
|
`customTaskTypes`, folded into the SAME merged catalog (data over the wire, never components). The
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.241.
|
|
3
|
+
"version": "0.241.3",
|
|
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",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"valibot": "^1.4.2",
|
|
41
41
|
"vue": "3.5.40",
|
|
42
42
|
"wretch": "^3.0.9",
|
|
43
|
-
"@cat-factory/contracts": "0.
|
|
43
|
+
"@cat-factory/contracts": "0.262.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@toad-contracts/testing": "0.3.2",
|