@warpgogol/werkstatt-shared 0.14.0 → 0.15.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.
Files changed (437) hide show
  1. package/README.md +31 -13
  2. package/README.uk.md +25 -15
  3. package/package.json +519 -762
  4. package/src/{share/agent → agent}/ard-catalog.ts +6 -1
  5. package/src/{share/agent → agent}/dns-aid.test.ts +2 -2
  6. package/src/{share/agent → agent}/manifest.ts +15 -1
  7. package/src/{share/agent → agent}/search.ts +6 -1
  8. package/src/{share → agent}/tests/api-catalog.test.ts +2 -2
  9. package/src/{share → agent}/tests/ard-catalog.test.ts +2 -2
  10. package/src/{share → agent}/tests/capability.test.ts +1 -1
  11. package/src/{share → agent}/tests/fleet-catalog.test.ts +1 -1
  12. package/src/{share → agent}/tests/knowledge.test.ts +2 -2
  13. package/src/{share → agent}/tests/manifest.test.ts +1 -1
  14. package/src/{share → agent}/tests/mcp-card.test.ts +2 -2
  15. package/src/agent/tests/omit-empty.test.ts +33 -0
  16. package/src/{share → agent}/tests/openapi.test.ts +2 -2
  17. package/src/{share → agent}/tests/proof.test.ts +1 -1
  18. package/src/{share → attribution}/material-credits.ts +4 -4
  19. package/src/{share → checks}/check-hints.ts +6 -1
  20. package/src/checks/index.ts +4 -1
  21. package/src/checks/lib/astro-site-url.ts +6 -1
  22. package/src/checks/lib/i18n.ts +14 -0
  23. package/src/checks/result-helpers.ts +22 -5
  24. package/src/checks/tests/remediation-auto-populate.test.ts +83 -0
  25. package/src/{share → client-scripts}/counter-utils.ts +6 -2
  26. package/src/{share/scripts → client-scripts}/external-link-qr.ts +11 -16
  27. package/src/{share/scripts → client-scripts}/external-links.ts +12 -1
  28. package/src/{share/scripts → client-scripts}/gsap-counter.ts +8 -3
  29. package/src/client-scripts/index.ts +35 -0
  30. package/src/{share/scripts → client-scripts}/inline-number-animation.ts +1 -1
  31. package/src/{share/scripts → client-scripts}/lenis.ts +6 -1
  32. package/src/{share/scripts → client-scripts}/lordicon.ts +6 -1
  33. package/src/{share/scripts → client-scripts}/orchestrator.ts +10 -1
  34. package/src/{share/scripts → client-scripts}/scheduler.ts +6 -1
  35. package/src/client-scripts/scroll-spy.ts +106 -0
  36. package/src/client-scripts/tests/external-link-qr.test.ts +8 -0
  37. package/src/client-scripts/tests/external-links.test.ts +25 -0
  38. package/src/client-scripts/tests/gsap-counter.test.ts +8 -0
  39. package/src/client-scripts/tests/gsap-mountain-journey.test.ts +8 -0
  40. package/src/client-scripts/tests/gsap-parallax.test.ts +8 -0
  41. package/src/client-scripts/tests/gsap-reveal.test.ts +8 -0
  42. package/src/client-scripts/tests/gsap-stagger.test.ts +8 -0
  43. package/src/client-scripts/tests/inline-number-animation.test.ts +8 -0
  44. package/src/client-scripts/tests/lenis.test.ts +8 -0
  45. package/src/client-scripts/tests/live-photos.test.ts +8 -0
  46. package/src/client-scripts/tests/lordicon.test.ts +8 -0
  47. package/src/client-scripts/tests/orchestrator.test.ts +47 -0
  48. package/src/client-scripts/tests/scheduler.test.ts +23 -0
  49. package/src/client-scripts/tests/scroll-spy.test.ts +204 -0
  50. package/src/{share/scripts → client-scripts/tests}/video-player.test.ts +51 -31
  51. package/src/component/contracts.ts +206 -0
  52. package/src/component/index.ts +11 -0
  53. package/src/{share → content}/content-reference.ts +3 -3
  54. package/src/{share/content → content}/entity-id.ts +6 -3
  55. package/src/content/index.ts +3 -0
  56. package/src/{share/content → content}/merge.ts +6 -1
  57. package/src/content/system-manifest.test.ts +107 -0
  58. package/src/content/system-manifest.ts +12 -94
  59. package/src/{share → content}/tests/resolve-field-path.test.ts +1 -1
  60. package/src/{share → content}/tests/substitute-deep.test.ts +1 -1
  61. package/src/content-discipline/index.ts +19 -0
  62. package/src/{share/content-discipline → content-discipline}/parsers.ts +2 -2
  63. package/src/{share/env.d.ts → env.d.ts} +6 -3
  64. package/src/fingerprint/canonical-json.ts +731 -0
  65. package/src/fingerprint/index.ts +12 -0
  66. package/src/fingerprint/primitives.ts +72 -0
  67. package/src/{share/i18n → i18n}/localization.ts +6 -2
  68. package/src/integration/adapters.ts +10 -71
  69. package/src/integration/dispatch.ts +1 -1
  70. package/src/integration/funnel.ts +6 -1
  71. package/src/integration/index.ts +101 -4
  72. package/src/integration/lagebild-destination-adapter.ts +108 -0
  73. package/src/integration/lagebild-ingress.ts +7 -12
  74. package/src/integration/orchestration.ts +11 -10
  75. package/src/integration/tests/deliver-event.test.ts +1 -1
  76. package/src/integration/tests/dispatch.test.ts +4 -4
  77. package/src/integration/tests/hub-runtime.test.ts +22 -14
  78. package/src/integration/vitest.config.ts +8 -0
  79. package/src/kernel/desired-state.ts +227 -0
  80. package/src/kernel/diagnostic.ts +289 -0
  81. package/src/kernel/fs-atomic.ts +131 -0
  82. package/src/kernel/index.ts +15 -0
  83. package/src/kernel/tests/fs-atomic.test.ts +150 -0
  84. package/src/kernel/tests/workspace-io.test.ts +187 -0
  85. package/src/kernel/types.ts +459 -0
  86. package/src/kernel/workspace-io.ts +248 -0
  87. package/src/{share → knowledge}/tests/claim.test.ts +1 -1
  88. package/src/{share → knowledge}/tests/derivation.test.ts +1 -1
  89. package/src/{share → knowledge}/tests/freshness.test.ts +1 -1
  90. package/src/{share → knowledge}/tests/ledger.test.ts +1 -1
  91. package/src/{share → knowledge}/tests/plan.test.ts +1 -1
  92. package/src/{share → knowledge}/tests/source.test.ts +1 -1
  93. package/src/legal/index.ts +15 -0
  94. package/src/{share/middleware → middleware}/access-protection.ts +8 -8
  95. package/src/{share → node}/dev-props-validator.ts +6 -1
  96. package/src/{share → node}/import-scan.ts +23 -3
  97. package/src/{share → node}/semantic/derived-prices-loader.ts +4 -2
  98. package/src/{share → node}/semantic/markdown-twin-provenance.ts +1 -1
  99. package/src/node/tests/derived-prices-loader.test.ts +59 -0
  100. package/src/node/tests/markdown-twin-provenance.test.ts +152 -0
  101. package/src/observability/env-resolver.ts +6 -1
  102. package/src/observability/index.ts +6 -1
  103. package/src/observability/otlp-converter.ts +6 -1
  104. package/src/observability/otlp-transport.ts +6 -1
  105. package/src/observability/pusher.ts +6 -1
  106. package/src/observability/redact.ts +6 -1
  107. package/src/observability/typed-refs.ts +6 -2
  108. package/src/observability/vitest.config.ts +1 -0
  109. package/src/{share → offers}/formula-eval.ts +3 -3
  110. package/src/{share → offers}/tests/formula-eval.test.ts +2 -2
  111. package/src/onboarding/index.ts +1 -0
  112. package/src/{share → onboarding}/tests/onboarding-yaml.test.ts +1 -1
  113. package/src/ontology/archetype-registry.ts +6 -1
  114. package/src/ontology/archetypes/index.json +33 -1
  115. package/src/ontology/archetypes/index.yaml +27 -1
  116. package/src/ontology/archetypes/sections/entity-grid.yaml +46 -0
  117. package/src/ontology/archetypes/sections/exit-diagram.yaml +43 -0
  118. package/src/ontology/biome-token-projection.ts +6 -1
  119. package/src/ontology/cosmic/index.ts +6 -1
  120. package/src/ontology/cosmic/moon-catalog.ts +6 -1
  121. package/src/ontology/cosmic/planet-catalog.ts +6 -1
  122. package/src/ontology/cosmic/star-catalog.ts +6 -1
  123. package/src/ontology/enums.ts +6 -1
  124. package/src/ontology/external-surfaces/index.ts +1 -1
  125. package/src/ontology/index.ts +6 -2
  126. package/src/ontology/manifest.ts +26 -4
  127. package/src/ontology/operations/artifact-store.ts +45 -0
  128. package/src/ontology/operations/dht.ts +98 -0
  129. package/src/ontology/operations/handoff.ts +92 -0
  130. package/src/ontology/operations/index.ts +187 -1
  131. package/src/ontology/operations/leitstand.ts +99 -0
  132. package/src/ontology/operations/materialization.ts +90 -0
  133. package/src/ontology/operations/mission.ts +111 -0
  134. package/src/ontology/operations/naming-policy.ts +132 -0
  135. package/src/ontology/operations/notausgang.ts +64 -0
  136. package/src/ontology/operations/release.ts +121 -0
  137. package/src/ontology/operations/sternsystem.ts +192 -0
  138. package/src/ontology/operations/werkstatt.ts +48 -0
  139. package/src/ontology/schemas/biome.ts +7 -2
  140. package/src/ontology/schemas/capability.ts +1 -1
  141. package/src/ontology/schemas/constellation.ts +6 -1
  142. package/src/ontology/schemas/index.ts +6 -2
  143. package/src/ontology/schemas/manifest-resolver.ts +6 -1
  144. package/src/ontology/schemas/page-entry.ts +9 -5
  145. package/src/ontology/schemas/system/growth.ts +6 -1
  146. package/src/ontology/schemas/system/manifest.ts +40 -1
  147. package/src/ontology/schemas/system/page-output.ts +7 -6
  148. package/src/ontology/schemas/system/tests/growth.test.ts +22 -0
  149. package/src/ontology/schemas/system/tests/integrations.test.ts +12 -0
  150. package/src/ontology/schemas/system/tests/manifest.test.ts +22 -0
  151. package/src/ontology/schemas/system/tests/page-output.test.ts +13 -0
  152. package/src/ontology/schemas/system/tests/release.test.ts +22 -0
  153. package/src/ontology/schemas/system/tests/text.test.ts +18 -0
  154. package/src/ontology/schemas/system/tests/verification.test.ts +12 -0
  155. package/src/ontology/schemas/system/text.ts +15 -0
  156. package/src/ontology/schemas/system.ts +6 -2
  157. package/src/ontology/schemas/tests/biome.test.ts +19 -0
  158. package/src/ontology/schemas/tests/capability.test.ts +22 -0
  159. package/src/ontology/schemas/tests/constellation.test.ts +22 -0
  160. package/src/ontology/schemas/tests/dns-records.test.ts +13 -0
  161. package/src/ontology/schemas/tests/manifest-resolver.test.ts +13 -0
  162. package/src/ontology/schemas/tests/page-entry.test.ts +22 -0
  163. package/src/ontology/schemas/tests/section-archetype.test.ts +12 -0
  164. package/src/ontology/schemas/tests/site-family.test.ts +18 -0
  165. package/src/ontology/schemas/tests/system.test.ts +20 -0
  166. package/src/ontology/shared-section-props/body-fragments.ts +2 -0
  167. package/src/ontology/tests/sternsystem-owner.test.ts +1 -1
  168. package/src/ontology/vitest.config.ts +1 -0
  169. package/src/{share → page}/page.ts +13 -9
  170. package/src/{share → page}/tests/dev-props-validator.test.ts +1 -1
  171. package/src/{share → page}/tests/hero-section-numbering-parity.test.ts +1 -1
  172. package/src/passport/index.ts +6 -1
  173. package/src/passport/key-rotate.ts +10 -2
  174. package/src/passport/schema.ts +6 -1
  175. package/src/passport/sign.ts +8 -3
  176. package/src/passport/vitest.config.ts +1 -0
  177. package/src/pbt/index.test.ts +95 -0
  178. package/src/pbt/index.ts +251 -0
  179. package/src/plugin/plugin-contract.ts +1 -1
  180. package/src/{share → policy}/entitlement.ts +24 -4
  181. package/src/{share → policy}/feature-policy.ts +8 -3
  182. package/src/{share → policy}/visibility.ts +7 -2
  183. package/src/redirects/redirects.ts +117 -0
  184. package/src/{share → redirects/tests}/redirects.test.ts +1 -1
  185. package/src/remediation/remediation-catalog.ts +316 -0
  186. package/src/{share/routes → routes}/template-filter.ts +1 -1
  187. package/src/{share → runtime}/runtime-context.ts +7 -2
  188. package/src/{share → runtime}/shared-context.ts +1 -1
  189. package/src/{share/schemas → schemas}/claims.ts +2 -2
  190. package/src/{share/schemas → schemas}/effects.ts +6 -1
  191. package/src/{share/schemas → schemas}/features.ts +1 -1
  192. package/src/{share/schemas → schemas}/index.ts +3 -3
  193. package/src/{share/schemas → schemas}/navigation.ts +6 -1
  194. package/src/{share/schemas → schemas}/page-base.ts +6 -2
  195. package/src/{share/schemas → schemas}/person.ts +1 -1
  196. package/src/{share/schemas → schemas}/standard-list-item.ts +1 -1
  197. package/src/schemas/tests/claim-records.test.ts +52 -0
  198. package/src/schemas/tests/claims.test.ts +23 -0
  199. package/src/schemas/tests/effects.test.ts +116 -0
  200. package/src/schemas/tests/features.test.ts +61 -0
  201. package/src/schemas/tests/horizontal-align.test.ts +16 -0
  202. package/src/schemas/tests/icon-color.test.ts +16 -0
  203. package/src/schemas/tests/live-photo.test.ts +40 -0
  204. package/src/schemas/tests/material-credit.test.ts +51 -0
  205. package/src/schemas/tests/media.test.ts +26 -0
  206. package/src/schemas/tests/navigation.test.ts +58 -0
  207. package/src/schemas/tests/page-base.test.ts +19 -0
  208. package/src/schemas/tests/participant.test.ts +26 -0
  209. package/src/schemas/tests/person.test.ts +12 -0
  210. package/src/schemas/tests/print.test.ts +30 -0
  211. package/src/schemas/tests/section-background.test.ts +31 -0
  212. package/src/schemas/tests/section-body.test.ts +16 -0
  213. package/src/schemas/tests/section-cards.test.ts +17 -0
  214. package/src/schemas/tests/section-cta.test.ts +41 -0
  215. package/src/schemas/tests/section-header.test.ts +31 -0
  216. package/src/schemas/tests/section-image.test.ts +24 -0
  217. package/src/schemas/tests/section-motion.test.ts +29 -0
  218. package/src/schemas/tests/section-shell.test.ts +42 -0
  219. package/src/schemas/tests/section-stats.test.ts +17 -0
  220. package/src/schemas/tests/site-background.test.ts +33 -0
  221. package/src/schemas/tests/standard-list-item.test.ts +16 -0
  222. package/src/{share → sections}/rfc0042-utils.ts +1 -1
  223. package/src/{share/semantic → semantic}/block-extractors/index.ts +20 -1
  224. package/src/{share/semantic → semantic}/business-projection.ts +95 -1
  225. package/src/semantic/canonical-uri.ts +54 -0
  226. package/src/{share/semantic → semantic}/extract.ts +100 -1
  227. package/src/semantic/fact-extraction.test.ts +47 -0
  228. package/src/semantic/fact-extraction.ts +46 -0
  229. package/src/semantic/freshness.ts +67 -0
  230. package/src/{share/semantic → semantic}/ids.ts +6 -1
  231. package/src/{share/semantic → semantic}/index.ts +9 -2
  232. package/src/{share/semantic → semantic}/jsonld/breadcrumb.ts +6 -2
  233. package/src/{share/semantic → semantic}/jsonld/context.ts +6 -2
  234. package/src/{share/semantic → semantic}/jsonld/faq.ts +6 -2
  235. package/src/{share/semantic → semantic}/jsonld/initiative.ts +6 -1
  236. package/src/{share/semantic → semantic}/jsonld/organization.ts +6 -1
  237. package/src/{share/semantic → semantic}/jsonld/person.ts +6 -2
  238. package/src/{share/semantic → semantic}/jsonld/service.ts +6 -2
  239. package/src/semantic/jsonld/shared.ts +36 -0
  240. package/src/semantic/jsonld/tests/article.test.ts +89 -0
  241. package/src/semantic/jsonld/tests/breadcrumb.test.ts +62 -0
  242. package/src/semantic/jsonld/tests/collection-list.test.ts +39 -0
  243. package/src/semantic/jsonld/tests/faq.test.ts +60 -0
  244. package/src/semantic/jsonld/tests/initiative.test.ts +56 -0
  245. package/src/semantic/jsonld/tests/organization.test.ts +123 -0
  246. package/src/semantic/jsonld/tests/person.test.ts +89 -0
  247. package/src/semantic/jsonld/tests/service.test.ts +65 -0
  248. package/src/semantic/jsonld/tests/shared.test.ts +41 -0
  249. package/src/semantic/jsonld/tests/video.test.ts +84 -0
  250. package/src/semantic/jsonld/tests/webpage.test.ts +93 -0
  251. package/src/semantic/jsonld/tests/website.test.ts +27 -0
  252. package/src/semantic/jsonld/types.ts +24 -0
  253. package/src/{share/semantic → semantic}/jsonld/webpage.ts +6 -1
  254. package/src/semantic/jsonld/website.ts +32 -0
  255. package/src/{share/semantic → semantic}/jsonld.ts +6 -1
  256. package/src/{share/semantic → semantic}/llms.ts +41 -3
  257. package/src/{share/semantic → semantic}/models.ts +27 -38
  258. package/src/{share/semantic → semantic}/organization-profile.ts +3 -0
  259. package/src/{share/semantic → semantic}/page-builders/markdown-page.ts +6 -3
  260. package/src/{share/semantic → semantic}/page-utils.ts +6 -3
  261. package/src/semantic/tests/ai.test.ts +55 -0
  262. package/src/semantic/tests/block-extraction.test.ts +34 -0
  263. package/src/{share/tests/breadcrumbs.test.ts → semantic/tests/breadcrumbs-0229.test.ts} +1 -1
  264. package/src/semantic/tests/breadcrumbs.test.ts +127 -0
  265. package/src/{share → semantic}/tests/build-page-price-markers.test.ts +2 -2
  266. package/src/semantic/tests/build-page.test.ts +122 -0
  267. package/src/semantic/tests/business-projection.test.ts +367 -0
  268. package/src/semantic/tests/canonical-uri.test.ts +56 -0
  269. package/src/semantic/tests/extract.test.ts +209 -0
  270. package/src/semantic/tests/feed.test.ts +113 -0
  271. package/src/semantic/tests/freshness.pbt.test.ts +108 -0
  272. package/src/semantic/tests/helpers.ts +32 -0
  273. package/src/semantic/tests/ids.test.ts +118 -0
  274. package/src/{share/tests/image-sitemap.test.ts → semantic/tests/image-sitemap-0150.test.ts} +1 -1
  275. package/src/semantic/tests/image-sitemap.test.ts +109 -0
  276. package/src/{share → semantic}/tests/jsonld-service.test.ts +2 -2
  277. package/src/{share → semantic}/tests/jsonld-video.test.ts +3 -3
  278. package/src/{share → semantic}/tests/jsonld-webpage.test.ts +3 -3
  279. package/src/semantic/tests/jsonld.test.ts +61 -0
  280. package/src/{share → semantic}/tests/llms-0789.test.ts +2 -2
  281. package/src/semantic/tests/llms-policy.test.ts +60 -0
  282. package/src/semantic/tests/llms.test.ts +164 -0
  283. package/src/semantic/tests/markdown-hygiene.test.ts +72 -0
  284. package/src/semantic/tests/markdown-page.test.ts +97 -0
  285. package/src/{share → semantic}/tests/organization-jsonld.test.ts +3 -3
  286. package/src/semantic/tests/organization-profile.test.ts +107 -0
  287. package/src/{share/tests/output-projection.test.ts → semantic/tests/output-projection-0143.test.ts} +1 -1
  288. package/src/semantic/tests/output-projection.test.ts +77 -0
  289. package/src/semantic/tests/page-markdown.test.ts +98 -0
  290. package/src/semantic/tests/page-utils.test.ts +88 -0
  291. package/src/{share/tests/price-marker-resolver.test.ts → semantic/tests/price-marker-resolver-0767.test.ts} +2 -2
  292. package/src/semantic/tests/price-marker-resolver.test.ts +90 -0
  293. package/src/semantic/tests/project-claims.pbt.test.ts +60 -0
  294. package/src/semantic/tests/robots.test.ts +70 -0
  295. package/src/{share/semantic → semantic}/tests/split-sentences.test.ts +1 -1
  296. package/src/{share → semantic}/tests/twin-path.test.ts +1 -1
  297. package/src/semantic/tests/update-stamp.test.ts +102 -0
  298. package/src/signing/index.ts +13 -0
  299. package/src/signing/key.ts +139 -0
  300. package/src/signing/sign.ts +66 -0
  301. package/src/signing/types.ts +29 -0
  302. package/src/{share/slug → slug}/slug-url.ts +4 -1
  303. package/src/stack/run-tool.ts +108 -0
  304. package/src/stack/stack-checks.ts +124 -0
  305. package/src/stack/tests/run-tool.test.ts +138 -0
  306. package/src/stack/tests/stack-checks.test.ts +141 -0
  307. package/src/stack/tests/walk-files.test.ts +131 -0
  308. package/src/stack/walk-files.ts +114 -0
  309. package/src/surface/blueprint.ts +342 -66
  310. package/src/surface/decision-composer.ts +6 -1
  311. package/src/surface/geo.ts +6 -1
  312. package/src/surface/index.ts +11 -7
  313. package/src/surface/types.ts +2 -2
  314. package/src/surface/vitest.config.ts +1 -0
  315. package/src/tests/signing-core.test.ts +129 -0
  316. package/src/{share → text}/css-value-normalize.ts +6 -1
  317. package/src/text/string-utils.ts +24 -0
  318. package/src/{share → text}/tests/text-normalize.test.ts +5 -0
  319. package/src/{share → text}/text-normalize.ts +4 -3
  320. package/src/{share → text}/wrap-inline-numbers.ts +1 -1
  321. package/src/types/axiom-study.d.ts +36 -0
  322. package/src/types/hls-js-light.d.ts +21 -0
  323. package/src/types/qrcode-browser.d.ts +23 -0
  324. package/src/typography/fix.pbt.test.ts +208 -0
  325. package/src/typography/fix.ts +148 -0
  326. package/src/typography/index.ts +54 -0
  327. package/src/typography/locale-defaults.ts +97 -0
  328. package/src/typography/rules-tier1.test.ts +459 -0
  329. package/src/typography/rules-tier1.ts +925 -0
  330. package/src/typography/rules-tier2-locale.pbt.test.ts +190 -0
  331. package/src/typography/rules-tier2-locale.test.ts +286 -0
  332. package/src/typography/rules-tier2-locale.ts +399 -0
  333. package/src/typography/rules-tier2-structure.test.ts +330 -0
  334. package/src/typography/rules-tier2-structure.ts +378 -0
  335. package/src/typography/rules-tier3-advisory.test.ts +290 -0
  336. package/src/typography/rules-tier3-advisory.ts +239 -0
  337. package/src/typography/text-surface.test.ts +244 -0
  338. package/src/typography/text-surface.ts +448 -0
  339. package/src/index.ts +0 -14
  340. package/src/integration/port-barrel.ts +0 -105
  341. package/src/share/content/index.ts +0 -16
  342. package/src/share/content-discipline/index.ts +0 -14
  343. package/src/share/index.ts +0 -86
  344. package/src/share/legal/index.ts +0 -1
  345. package/src/share/redirects.ts +0 -54
  346. package/src/share/scripts/index.ts +0 -26
  347. package/src/share/semantic/jsonld/shared.ts +0 -31
  348. package/src/share/semantic/jsonld/types.ts +0 -18
  349. package/src/share/semantic/jsonld/website.ts +0 -27
  350. package/src/share/string-utils.ts +0 -19
  351. package/src/share/types/axiom-study.d.ts +0 -22
  352. package/src/share/types/hls-js-light.d.ts +0 -16
  353. package/src/share/types/qrcode-browser.d.ts +0 -18
  354. package/src/share/utility-registry.yaml +0 -36
  355. package/src/share/vitest.config.ts +0 -8
  356. package/src/surface/blueprint-schema.ts +0 -314
  357. package/src/surface/blueprint-types.ts +0 -256
  358. /package/src/{share/agent → agent}/api-catalog.ts +0 -0
  359. /package/src/{share/agent → agent}/capability.ts +0 -0
  360. /package/src/{share/agent → agent}/dns-aid.ts +0 -0
  361. /package/src/{share/agent → agent}/fleet-catalog.ts +0 -0
  362. /package/src/{share/agent → agent}/index.ts +0 -0
  363. /package/src/{share/agent → agent}/knowledge.ts +0 -0
  364. /package/src/{share/agent → agent}/mcp-card.ts +0 -0
  365. /package/src/{share/agent → agent}/omit-empty.ts +0 -0
  366. /package/src/{share/agent → agent}/openapi.ts +0 -0
  367. /package/src/{share/agent → agent}/proof.ts +0 -0
  368. /package/src/{share/agent → agent}/search.test.ts +0 -0
  369. /package/src/{share → attribution}/attribution-display.ts +0 -0
  370. /package/src/{share/scripts → client-scripts}/gsap-mountain-journey.ts +0 -0
  371. /package/src/{share/scripts → client-scripts}/gsap-parallax.ts +0 -0
  372. /package/src/{share/scripts → client-scripts}/gsap-reveal.ts +0 -0
  373. /package/src/{share/scripts → client-scripts}/gsap-stagger.ts +0 -0
  374. /package/src/{share/scripts → client-scripts}/live-photos.ts +0 -0
  375. /package/src/{share/scripts → client-scripts}/video-player.ts +0 -0
  376. /package/src/{share/content → content}/resolve-field-path.ts +0 -0
  377. /package/src/{share/content → content}/substitute-deep.ts +0 -0
  378. /package/src/{share → content}/tests/content-ref-index.test.ts +0 -0
  379. /package/src/{share/content-discipline → content-discipline}/types.ts +0 -0
  380. /package/src/{share → image-provider}/image-provider.ts +0 -0
  381. /package/src/{share/knowledge → knowledge}/claim.ts +0 -0
  382. /package/src/{share/knowledge → knowledge}/derivation.ts +0 -0
  383. /package/src/{share/knowledge → knowledge}/freshness.ts +0 -0
  384. /package/src/{share/knowledge → knowledge}/index.ts +0 -0
  385. /package/src/{share/knowledge → knowledge}/ledger.ts +0 -0
  386. /package/src/{share/knowledge → knowledge}/plan.ts +0 -0
  387. /package/src/{share/knowledge → knowledge}/source.ts +0 -0
  388. /package/src/{share/legal → legal}/translation-policy.ts +0 -0
  389. /package/src/{share/middleware → middleware}/language-redirect.ts +0 -0
  390. /package/src/{share/middleware → middleware}/tests/access-protection.test.ts +0 -0
  391. /package/src/{share → node}/fs/index.ts +0 -0
  392. /package/src/{share/tests/markdown-twin-provenance.test.ts → node/tests/markdown-twin-provenance-0613.test.ts} +0 -0
  393. /package/src/{share → offers}/offer-capacity.ts +0 -0
  394. /package/src/{share/onboarding-yaml/index.ts → onboarding/yaml.ts} +0 -0
  395. /package/src/{share → ontology}/tests/ontology-role-by-cosmic-name.test.ts +0 -0
  396. /package/src/{share/routes → routes}/tests/template-filter.test.ts +0 -0
  397. /package/src/{share/schemas → schemas}/claim-records.ts +0 -0
  398. /package/src/{share/schemas → schemas}/horizontal-align.ts +0 -0
  399. /package/src/{share/schemas → schemas}/icon-color.ts +0 -0
  400. /package/src/{share/schemas → schemas}/live-photo.ts +0 -0
  401. /package/src/{share/schemas → schemas}/material-credit.ts +0 -0
  402. /package/src/{share/schemas → schemas}/media.ts +0 -0
  403. /package/src/{share/schemas → schemas}/participant.ts +0 -0
  404. /package/src/{share/schemas → schemas}/print.ts +0 -0
  405. /package/src/{share/schemas → schemas}/section-background.ts +0 -0
  406. /package/src/{share/schemas → schemas}/section-body.ts +0 -0
  407. /package/src/{share/schemas → schemas}/section-cards.ts +0 -0
  408. /package/src/{share/schemas → schemas}/section-cta.ts +0 -0
  409. /package/src/{share/schemas → schemas}/section-header.ts +0 -0
  410. /package/src/{share/schemas → schemas}/section-image.ts +0 -0
  411. /package/src/{share/schemas → schemas}/section-motion.ts +0 -0
  412. /package/src/{share/schemas → schemas}/section-shell.ts +0 -0
  413. /package/src/{share/schemas → schemas}/section-stats.ts +0 -0
  414. /package/src/{share/schemas → schemas}/site-background.ts +0 -0
  415. /package/src/{share/semantic → semantic}/ai.ts +0 -0
  416. /package/src/{share/semantic → semantic}/block-extraction.ts +0 -0
  417. /package/src/{share/semantic → semantic}/breadcrumbs.ts +0 -0
  418. /package/src/{share/semantic → semantic}/build-page.ts +0 -0
  419. /package/src/{share/semantic → semantic}/feed.ts +0 -0
  420. /package/src/{share/semantic → semantic}/image-sitemap.ts +0 -0
  421. /package/src/{share/semantic → semantic}/jsonld/article.ts +0 -0
  422. /package/src/{share/semantic → semantic}/jsonld/collection-list.ts +0 -0
  423. /package/src/{share/semantic → semantic}/jsonld/video.ts +0 -0
  424. /package/src/{share/semantic → semantic}/llms-policy.ts +0 -0
  425. /package/src/{share/semantic → semantic}/markdown-hygiene.ts +0 -0
  426. /package/src/{share/semantic → semantic}/output-projection.ts +0 -0
  427. /package/src/{share/semantic → semantic}/page-markdown.ts +0 -0
  428. /package/src/{share/semantic → semantic}/price-marker-resolver.ts +0 -0
  429. /package/src/{share/semantic → semantic}/robots.ts +0 -0
  430. /package/src/{share/semantic → semantic}/update-stamp.ts +0 -0
  431. /package/src/{share/slug → slug}/heading-slugger.ts +0 -0
  432. /package/src/{share/slug → slug}/index.ts +0 -0
  433. /package/src/{share/slug → slug}/slug-id.ts +0 -0
  434. /package/src/{share/slug → slug}/strategies.ts +0 -0
  435. /package/src/{share/slug → slug}/tests/slug.test.ts +0 -0
  436. /package/src/{share → text}/tests/text-normalize.pbt.test.ts +0 -0
  437. /package/src/{share → text}/text-position.ts +0 -0
@@ -1,314 +0,0 @@
1
- /*
2
- <MODULE_CONTRACT>
3
- <purpose>
4
- [RFC-0193] Zod schema for the Blueprint contract (the declarative surface spec). Co-located with
5
- the Blueprint type in @warpgogol/werkstatt-shared/surface to avoid a package cycle (the engine owns its own contract).
6
- The Blueprint YAML data files live in packages/werkstatt-site/src/domain/ontology/blueprints/*.yaml; this schema validates
7
- them in blueprint.validate and during surface.generate expansion.
8
- </purpose>
9
- <non-goals>
10
- <item>Do not read files (callers supply parsed YAML objects).</item>
11
- <item>Do not cross-check datasets/constellations (blueprint.validate does that).</item>
12
- </non-goals>
13
- </MODULE_CONTRACT>
14
- <CHANGE_SUMMARY>
15
- <item>RFC-0193: initial schema.</item>
16
- <item>RFC-0496: add serviceSchema (BlueprintServiceConfig) to BlueprintLevel; add linkingParentSchema to linking.</item>
17
- <item>RFC-0497: add intersectionSchema (BlueprintIntersectionConfig) to BlueprintLevel.</item>
18
- <item>RFC-0500: add hubSchema (BlueprintHubConfig) to BlueprintLevel; add statusGateSchema (BlueprintStatusGate) to policy.</item>
19
- </CHANGE_SUMMARY>
20
- */
21
-
22
- import { z } from "zod";
23
- import type { Blueprint } from "./blueprint.ts";
24
-
25
- const localizedString = z.record(z.string(), z.string());
26
-
27
- const intRecord = z.record(z.string(), z.number().int());
28
-
29
- // RFC-0490: pillar-hub configuration for depth-0 hub pages.
30
- const pillarCtaSchema = z.object({
31
- label: localizedString,
32
- target: z.string().min(1),
33
- });
34
-
35
- const pillarHeroSchema = z.object({
36
- eyebrow: localizedString,
37
- heading: localizedString,
38
- lead: localizedString,
39
- primaryCta: pillarCtaSchema,
40
- secondaryCta: pillarCtaSchema,
41
- });
42
-
43
- const pillarAdaptationDimensionSchema = z.object({
44
- heading: localizedString,
45
- body: localizedString,
46
- });
47
-
48
- const pillarAdaptationSchema = z.object({
49
- heading: localizedString,
50
- dimensions: z.array(pillarAdaptationDimensionSchema).min(1),
51
- });
52
-
53
- const pillarProductPriceSchema = z.object({
54
- heading: localizedString,
55
- body: localizedString,
56
- priceRef: z.string().min(1).optional(),
57
- });
58
-
59
- const pillarFinalCtaSchema = z.object({
60
- heading: localizedString,
61
- body: localizedString,
62
- primaryCta: pillarCtaSchema,
63
- secondaryCta: pillarCtaSchema,
64
- });
65
-
66
- const pillarSchema = z.object({
67
- hero: pillarHeroSchema,
68
- adaptation: pillarAdaptationSchema,
69
- productPrice: pillarProductPriceSchema,
70
- finalCta: pillarFinalCtaSchema,
71
- catalogHeading: localizedString.optional(),
72
- });
73
-
74
- // RFC-0492: dossier configuration for depth-1 industry pages.
75
- const industryPublicationGateSchema = z.object({
76
- minServiceCategories: z.number().int().min(0),
77
- minCustomerJourneys: z.number().int().min(0),
78
- minTrustSignals: z.number().int().min(0),
79
- minArchitectureEntries: z.number().int().min(0),
80
- minModuleMappings: z.number().int().min(0),
81
- minUniqueFaq: z.number().int().min(0),
82
- });
83
-
84
- const dossierSchema = z.object({
85
- gate: industryPublicationGateSchema,
86
- claimRestrictions: z.array(z.string().min(1)),
87
- doorwayMaxFlaggedShare: z.number().min(0).max(1),
88
- duplicateMaxSimilarity: z.number().min(0).max(1),
89
- mode: z.enum(["warn", "fail"]),
90
- });
91
-
92
- // RFC-0496: service configuration for depth-1 service dossier pages.
93
- const servicePublicationGateSchema = z.object({
94
- minServiceVariants: z.number().int().min(0),
95
- minCustomerQuestions: z.number().int().min(0),
96
- minPriceModels: z.number().int().min(0),
97
- minFaq: z.number().int().min(0),
98
- minPageStructure: z.number().int().min(0),
99
- });
100
-
101
- const serviceSchema = z.object({
102
- gate: servicePublicationGateSchema,
103
- claimRestrictions: z.array(z.string().min(1)),
104
- mode: z.enum(["warn", "fail"]),
105
- });
106
-
107
- const intersectionGateSchema = z.object({
108
- minLocalServiceQuestions: z.number().int().min(0),
109
- minScenarios: z.number().int().min(0),
110
- minLocalEvidence: z.number().int().min(0),
111
- minUniqueContentBlocks: z.number().int().min(0),
112
- minUniqueFaq: z.number().int().min(0),
113
- minSources: z.number().int().min(0),
114
- });
115
-
116
- const intersectionSimilaritySchema = z.object({
117
- similarityToIndustryPage: z.number().min(0).max(1),
118
- similarityToCityPage: z.number().min(0).max(1),
119
- similarityToServicePage: z.number().min(0).max(1),
120
- similarityToOtherIntersections: z.number().min(0).max(1),
121
- });
122
-
123
- const intersectionSchema = z.object({
124
- gate: intersectionGateSchema,
125
- similarity: intersectionSimilaritySchema,
126
- substanceIndependenceThreshold: z.number().min(0).max(1),
127
- mode: z.enum(["warn", "fail"]),
128
- });
129
-
130
- // RFC-0500: hub configuration for depth-0 editorial knowledge hubs (ratgeber).
131
- const hubSchema = z.object({
132
- cardFields: z.array(z.string().min(1)).min(1),
133
- reservedSlugs: z.array(z.string().min(1)),
134
- });
135
-
136
- // RFC-0500: status gate — only records with allowed statuses are emitted as surface entries.
137
- const statusGateSchema = z.object({
138
- allowedStatuses: z.array(z.string().min(1)),
139
- excludedStatuses: z.array(z.string().min(1)),
140
- });
141
-
142
- // RFC-0496: cross-surface parent linking.
143
- const linkingParentSchema = z.object({
144
- surface: z.string().min(1),
145
- depth: z.number().int().min(0),
146
- joinField: z.string().min(1),
147
- });
148
-
149
- // RFC-0325: static article metadata for a level with no per-record binding (depth-0 hubs).
150
- const blueprintLevelArticleSchema = z.object({
151
- publishedAt: z.string().min(1),
152
- updatedAt: z.string().min(1).optional(),
153
- author: z.string().min(1).optional(),
154
- tags: z.array(z.string().min(1)).optional(),
155
- });
156
-
157
- const evidencePolicySchema = z.object({
158
- approvedNarrative: z.enum(["required", "optional"]).optional(),
159
- requiredRecordFields: z.array(z.string().min(1)).optional(),
160
- preferredEvidenceSources: z.array(z.string().min(1)).optional(),
161
- minTupleSpecificFacts: z.number().int().min(0).optional(),
162
- minWerkEvidence: z.number().int().min(0).optional(),
163
- existenceSource: z.enum(["records", "works"]).optional(),
164
- freshness: z.enum(["valid-and-current", "valid"]).optional(),
165
- duplicate: z
166
- .object({
167
- method: z.enum(["shingle", "simhash"]).optional(),
168
- maxSimilarityWithinCluster: z.number().min(0).max(1).optional(),
169
- })
170
- .optional(),
171
- leadImage: z.enum(["required", "warning", "optional"]).optional(),
172
- mode: z.enum(["error", "warning"]).optional(),
173
- });
174
-
175
- const demandPolicySchema = z.object({
176
- minVolume: z.number().min(0).optional(),
177
- allowIntents: z
178
- .array(z.enum(["informational", "commercial", "transactional", "navigational"]))
179
- .optional(),
180
- missing: z.enum(["noindex", "do-not-emit"]).optional(),
181
- staleAfterDays: z.number().int().min(0).optional(),
182
- });
183
-
184
- const depthRolePolicySchema = z.object({
185
- indexability: z.enum(["index", "navigation-noindex", "evidence-gated"]),
186
- canonicalTarget: z.union([z.literal("tradeHub"), z.number().int().min(0)]).optional(),
187
- follow: z.boolean().optional(),
188
- includeInSitemap: z.boolean().optional(),
189
- geo: z.enum(["full", "twin-only", "off"]).optional(),
190
- localEvidence: z
191
- .object({
192
- minVerifiedFacts: z.number().int().min(0).optional(),
193
- minCitySpecificQa: z.number().int().min(0).optional(),
194
- minUniqueTokenShare: z.number().min(0).max(1).optional(),
195
- maxBodySimilarityWithinBranch: z.number().min(0).max(1).optional(),
196
- })
197
- .optional(),
198
- });
199
-
200
- export const blueprintSchema = z.object({
201
- id: z.string().min(1),
202
- entitlement: z.string().min(1),
203
- dataset: z.object({ collection: z.string().min(1), status: z.string().optional() }),
204
- axes: z
205
- .array(
206
- z.object({
207
- id: z.string().min(1),
208
- universe: z.union([
209
- z.object({ collection: z.string().min(1), field: z.string().min(1) }),
210
- z.object({ provider: z.string().min(1) }),
211
- ]),
212
- match: z.object({ recordField: z.string().min(1) }),
213
- }),
214
- )
215
- .min(1),
216
- levels: z
217
- .array(
218
- z.object({
219
- depth: z.number().int().min(0),
220
- slug: localizedString,
221
- redirectToPageId: z.string().min(1).optional(),
222
- constellation: z.string().min(1),
223
- geo: z.enum(["full", "twin-only", "off"]).optional(),
224
- titleTemplate: localizedString.optional(),
225
- descriptionTemplate: localizedString.optional(),
226
- intro: localizedString.optional(),
227
- semanticType: z.string().min(1).optional(),
228
- article: blueprintLevelArticleSchema.optional(),
229
- pillar: pillarSchema.optional(),
230
- dossier: dossierSchema.optional(),
231
- service: serviceSchema.optional(),
232
- intersection: intersectionSchema.optional(),
233
- hub: hubSchema.optional(),
234
- }),
235
- )
236
- .min(1),
237
- policy: z.object({
238
- minRecordsPerDepth: intRecord,
239
- noindexBelowPerDepth: intRecord.optional(),
240
- redirectPolicy: z.enum(["nearest-ancestor", "root"]).optional(),
241
- trailingSlash: z.boolean().optional(),
242
- maxStubDepth: z.number().int().optional(),
243
- substanceMin: z.number().min(0).max(100).optional(),
244
- substanceMinPerDepth: intRecord.optional(),
245
- evidencePerDepth: z.record(z.string(), evidencePolicySchema).optional(),
246
- demandPerDepth: z.record(z.string(), demandPolicySchema).optional(),
247
- depthRoles: z.record(z.string(), depthRolePolicySchema).optional(),
248
- sitemapBudget: z.number().int().min(0).optional(),
249
- maxThinShare: z.number().min(0).max(1).optional(),
250
- regionalGateDepths: z.array(z.number().int().min(0)).optional(),
251
- bake: z.enum(["inline", "lazy"]).optional(),
252
- statusGate: statusGateSchema.optional(),
253
- }),
254
- linking: z
255
- .object({
256
- children: z.object({ limit: z.number().int() }).optional(),
257
- siblings: z.object({ limit: z.number().int() }).optional(),
258
- teasers: z
259
- .object({
260
- relevance: z.array(z.object({ sharedAxis: z.string(), weight: z.number() })).optional(),
261
- })
262
- .optional(),
263
- parent: linkingParentSchema.optional(),
264
- })
265
- .optional(),
266
- rotation: z.object({ variantsByTupleHash: z.boolean() }).optional(),
267
- projection: z
268
- .object({
269
- title: localizedString.optional(),
270
- description: z.union([localizedString, z.object({ ref: z.string() })]).optional(),
271
- })
272
- .optional(),
273
- freshness: z
274
- .object({
275
- slaDaysPerDepth: intRecord,
276
- field: z.string().min(1),
277
- mode: z.enum(["any", "all", "median"]).optional(),
278
- })
279
- .optional(),
280
- enrichedFields: z
281
- .array(
282
- z.object({
283
- field: z.string().min(1),
284
- promptId: z.string().min(1),
285
- scopeDepth: z.number().int(),
286
- maxTokens: z.number().int(),
287
- // RFC-0207: output shape + generation granularity (both default to the original behavior).
288
- kind: z.enum(["field", "narrative"]).optional(),
289
- scope: z.enum(["tuple", "record"]).optional(),
290
- axis: z.string().min(1).optional(),
291
- }),
292
- )
293
- .optional(),
294
- });
295
-
296
- export interface ParseBlueprintResult {
297
- ok: boolean;
298
- blueprint?: Blueprint;
299
- errors: string[];
300
- }
301
-
302
- /** Validate an unknown value (parsed YAML) into a typed Blueprint. */
303
- export function parseBlueprint(value: unknown): ParseBlueprintResult {
304
- const result = blueprintSchema.safeParse(value);
305
- if (result.success) {
306
- return { ok: true, blueprint: result.data as Blueprint, errors: [] };
307
- }
308
- return {
309
- ok: false,
310
- errors: result.error.issues.map(
311
- (issue) => `${issue.path.join(".") || "(root)"}: ${issue.message}`,
312
- ),
313
- };
314
- }
@@ -1,256 +0,0 @@
1
- /*
2
- <MODULE_CONTRACT>
3
- <purpose>
4
- Blueprint type definitions extracted from blueprint.ts. Pure type
5
- contracts for the declarative surface spec — no functions, no I/O.
6
- </purpose>
7
- <non-goals>
8
- <item>Do not define functions — those live in blueprint.ts.</item>
9
- </non-goals>
10
- </MODULE_CONTRACT>
11
- <CHANGE_SUMMARY>
12
- <item>Architecture review 2026-07-14: extract blueprint type definitions from blueprint.ts.</item>
13
- </CHANGE_SUMMARY>
14
- */
15
-
16
- /** A localized string map: lang → value. */
17
- export type LocalizedString = Record<string, string>;
18
-
19
- export interface BlueprintAxis {
20
- id: string;
21
- universe: { collection: string; field: string } | { provider: string };
22
- match: { recordField: string };
23
- }
24
-
25
- export type GeoDepth = "full" | "twin-only" | "off";
26
-
27
- export interface BlueprintLevelArticle {
28
- publishedAt: string;
29
- updatedAt?: string;
30
- author?: string;
31
- tags?: string[];
32
- }
33
-
34
- export interface BlueprintPillarHero {
35
- eyebrow: LocalizedString;
36
- heading: LocalizedString;
37
- lead: LocalizedString;
38
- primaryCta: { label: LocalizedString; target: string };
39
- secondaryCta: { label: LocalizedString; target: string };
40
- }
41
-
42
- export interface BlueprintPillarAdaptationDimension {
43
- heading: LocalizedString;
44
- body: LocalizedString;
45
- }
46
-
47
- export interface BlueprintPillarAdaptation {
48
- heading: LocalizedString;
49
- dimensions: BlueprintPillarAdaptationDimension[];
50
- }
51
-
52
- export interface BlueprintPillarProductPrice {
53
- heading: LocalizedString;
54
- body: LocalizedString;
55
- priceRef?: string;
56
- }
57
-
58
- export interface BlueprintPillarFinalCta {
59
- heading: LocalizedString;
60
- body: LocalizedString;
61
- primaryCta: { label: LocalizedString; target: string };
62
- secondaryCta: { label: LocalizedString; target: string };
63
- }
64
-
65
- export interface BlueprintPillar {
66
- hero: BlueprintPillarHero;
67
- adaptation: BlueprintPillarAdaptation;
68
- productPrice: BlueprintPillarProductPrice;
69
- finalCta: BlueprintPillarFinalCta;
70
- catalogHeading?: LocalizedString;
71
- }
72
-
73
- export interface ServicePublicationGate {
74
- minServiceVariants: number;
75
- minCustomerQuestions: number;
76
- minPriceModels: number;
77
- minFaq: number;
78
- minPageStructure: number;
79
- }
80
-
81
- export interface BlueprintServiceConfig {
82
- gate: ServicePublicationGate;
83
- claimRestrictions: string[];
84
- mode: "warn" | "fail";
85
- }
86
-
87
- export interface BlueprintLinkingParent {
88
- surface: string;
89
- depth: number;
90
- joinField: string;
91
- }
92
-
93
- export interface IndustryPublicationGate {
94
- minServiceCategories: number;
95
- minCustomerJourneys: number;
96
- minTrustSignals: number;
97
- minArchitectureEntries: number;
98
- minModuleMappings: number;
99
- minUniqueFaq: number;
100
- }
101
-
102
- export interface BlueprintDossier {
103
- gate: IndustryPublicationGate;
104
- claimRestrictions: string[];
105
- doorwayMaxFlaggedShare: number;
106
- duplicateMaxSimilarity: number;
107
- mode: "warn" | "fail";
108
- }
109
-
110
- export interface IntersectionGate {
111
- minLocalServiceQuestions: number;
112
- minScenarios: number;
113
- minLocalEvidence: number;
114
- minUniqueContentBlocks: number;
115
- minUniqueFaq: number;
116
- minSources: number;
117
- }
118
-
119
- export interface IntersectionSimilarity {
120
- similarityToIndustryPage: number;
121
- similarityToCityPage: number;
122
- similarityToServicePage: number;
123
- similarityToOtherIntersections: number;
124
- }
125
-
126
- export interface BlueprintIntersectionConfig {
127
- gate: IntersectionGate;
128
- similarity: IntersectionSimilarity;
129
- substanceIndependenceThreshold: number;
130
- mode: "warn" | "fail";
131
- }
132
-
133
- export interface BlueprintHubConfig {
134
- cardFields: string[];
135
- reservedSlugs: string[];
136
- }
137
-
138
- export interface BlueprintStatusGate {
139
- allowedStatuses: string[];
140
- excludedStatuses: string[];
141
- }
142
-
143
- export interface BlueprintLevel {
144
- depth: number;
145
- slug: LocalizedString;
146
- redirectToPageId?: string;
147
- constellation: string;
148
- geo?: GeoDepth;
149
- titleTemplate?: LocalizedString;
150
- descriptionTemplate?: LocalizedString;
151
- intro?: LocalizedString;
152
- semanticType?: string;
153
- article?: BlueprintLevelArticle;
154
- pillar?: BlueprintPillar;
155
- dossier?: BlueprintDossier;
156
- service?: BlueprintServiceConfig;
157
- intersection?: BlueprintIntersectionConfig;
158
- hub?: BlueprintHubConfig;
159
- }
160
-
161
- export interface BlueprintLinking {
162
- children?: { limit: number };
163
- siblings?: { limit: number };
164
- teasers?: { relevance?: Array<{ sharedAxis: string; weight: number }> };
165
- parent?: BlueprintLinkingParent;
166
- }
167
-
168
- export interface BlueprintProjection {
169
- title?: LocalizedString;
170
- description?: LocalizedString | { ref: string };
171
- }
172
-
173
- export interface EnrichedFieldSpec {
174
- field: string;
175
- promptId: string;
176
- maxTokens: number;
177
- scopeDepth: number;
178
- kind?: "field" | "narrative";
179
- scope?: "tuple" | "record";
180
- axis?: string;
181
- }
182
-
183
- export interface BlueprintDuplicatePolicy {
184
- method?: "shingle" | "simhash";
185
- maxSimilarityWithinCluster?: number;
186
- }
187
-
188
- export interface BlueprintEvidenceDepthPolicy {
189
- approvedNarrative?: "required" | "optional";
190
- requiredRecordFields?: readonly string[];
191
- preferredEvidenceSources?: readonly string[];
192
- minTupleSpecificFacts?: number;
193
- minWerkEvidence?: number;
194
- existenceSource?: "records" | "works";
195
- freshness?: "valid-and-current" | "valid";
196
- duplicate?: BlueprintDuplicatePolicy;
197
- leadImage?: "required" | "warning" | "optional";
198
- mode?: "error" | "warning";
199
- }
200
-
201
- export interface BlueprintDemandDepthPolicy {
202
- minVolume?: number;
203
- allowIntents?: readonly ("informational" | "commercial" | "transactional" | "navigational")[];
204
- missing?: "noindex" | "do-not-emit";
205
- staleAfterDays?: number;
206
- }
207
-
208
- export interface BlueprintDepthRolePolicy {
209
- indexability: "index" | "navigation-noindex" | "evidence-gated";
210
- canonicalTarget?: "tradeHub" | number;
211
- follow?: boolean;
212
- includeInSitemap?: boolean;
213
- geo?: GeoDepth;
214
- localEvidence?: {
215
- minVerifiedFacts?: number;
216
- minCitySpecificQa?: number;
217
- minUniqueTokenShare?: number;
218
- maxBodySimilarityWithinBranch?: number;
219
- };
220
- }
221
-
222
- export interface BlueprintPolicy {
223
- minRecordsPerDepth: Record<number, number>;
224
- noindexBelowPerDepth?: Record<number, number>;
225
- redirectPolicy?: "nearest-ancestor" | "root";
226
- trailingSlash?: boolean;
227
- maxStubDepth?: number;
228
- substanceMin?: number;
229
- substanceMinPerDepth?: Record<number, number>;
230
- evidencePerDepth?: Record<number, BlueprintEvidenceDepthPolicy>;
231
- demandPerDepth?: Record<number, BlueprintDemandDepthPolicy>;
232
- depthRoles?: Record<number, BlueprintDepthRolePolicy>;
233
- sitemapBudget?: number;
234
- maxThinShare?: number;
235
- regionalGateDepths?: readonly number[];
236
- bake?: "inline" | "lazy";
237
- statusGate?: BlueprintStatusGate;
238
- }
239
-
240
- export interface Blueprint {
241
- id: string;
242
- entitlement: string;
243
- dataset: { collection: string; status?: string };
244
- axes: BlueprintAxis[];
245
- levels: BlueprintLevel[];
246
- policy: BlueprintPolicy;
247
- linking?: BlueprintLinking;
248
- rotation?: { variantsByTupleHash: boolean };
249
- projection?: BlueprintProjection;
250
- freshness?: {
251
- slaDaysPerDepth: Record<number, number>;
252
- field: string;
253
- mode?: "any" | "all" | "median";
254
- };
255
- enrichedFields?: EnrichedFieldSpec[];
256
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes