@nusoft/nuos-build-catalogue 0.35.1 → 0.36.0

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": "@nusoft/nuos-build-catalogue",
3
- "version": "0.35.1",
3
+ "version": "0.36.0",
4
4
  "description": "NuOS build-catalogue tooling: semantic search (WU 110) + migration runner that lifts markdown artefacts into JSON-backed workflow records (WU 111, Phase G).",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,7 +17,13 @@
17
17
  "database": null,
18
18
  "deployment": null,
19
19
  "externalServices": [],
20
- "notes": null
20
+ "notes": null,
21
+ "services": {
22
+ "database": { "provider": "none", "migrations": "none", "deployOnMerge": false, "secrets": [] },
23
+ "jobs": { "provider": "none", "deployOnMerge": false, "secrets": [] },
24
+ "web": { "provider": "none", "autoDeploy": false, "secrets": [] }
25
+ },
26
+ "servicesComment": "Backend service wiring (D150 / WU 231). Per service: 'provider', whether it 'deployOnMerge' to main, and the 'secrets' it needs; 'database' also names its 'migrations' tool; 'web' declares 'autoDeploy' (e.g. Vercel's Git integration). Set provider to 'none' to opt a service out. When a provider is set, `nuos init` scaffolds the deploy automation (build packages → migrate deploy → jobs deploy via the installed CLI) and the doctor verifies the secrets exist and flags deploy drift. Providers — database: supabase|neon|railway|none; jobs: trigger.dev|none; web: vercel|none."
21
27
  },
22
28
  "testing": {
23
29
  "framework": "vitest",