@empire-builder-kit/nx 1.0.0-beta.9 → 1.0.0-rc.2

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 (824) hide show
  1. package/NOTICE +6 -0
  2. package/README.md +113 -3
  3. package/executors.json +30 -0
  4. package/package.json +84 -6
  5. package/src/api-contract/baseline-update.d.ts +82 -0
  6. package/src/api-contract/baseline-update.js +225 -0
  7. package/src/api-contract/baseline-update.js.map +1 -0
  8. package/src/api-contract/compatibility.d.ts +30 -0
  9. package/src/api-contract/compatibility.js +643 -0
  10. package/src/api-contract/compatibility.js.map +1 -0
  11. package/src/api-contract/contract-graph.d.ts +35 -0
  12. package/src/api-contract/contract-graph.js +141 -0
  13. package/src/api-contract/contract-graph.js.map +1 -0
  14. package/src/api-contract/evidence.d.ts +23 -0
  15. package/src/api-contract/evidence.js +87 -0
  16. package/src/api-contract/evidence.js.map +1 -0
  17. package/src/api-contract/index.d.ts +6 -0
  18. package/src/api-contract/index.js +10 -0
  19. package/src/api-contract/index.js.map +1 -0
  20. package/src/api-contract/model.d.ts +144 -0
  21. package/src/api-contract/model.fixtures.d.ts +2 -0
  22. package/src/api-contract/model.fixtures.js +81 -0
  23. package/src/api-contract/model.fixtures.js.map +1 -0
  24. package/src/api-contract/model.js +993 -0
  25. package/src/api-contract/model.js.map +1 -0
  26. package/src/api-contract/rollout.d.ts +32 -0
  27. package/src/api-contract/rollout.js +88 -0
  28. package/src/api-contract/rollout.js.map +1 -0
  29. package/src/authorization/compatibility.d.ts +62 -0
  30. package/src/authorization/compatibility.js +175 -0
  31. package/src/authorization/compatibility.js.map +1 -0
  32. package/src/authorization/index.d.ts +1 -0
  33. package/src/authorization/index.js +5 -0
  34. package/src/authorization/index.js.map +1 -0
  35. package/src/blueprints/execution.d.ts +25 -1
  36. package/src/blueprints/execution.js +246 -83
  37. package/src/blueprints/execution.js.map +1 -1
  38. package/src/blueprints/external-sandbox.d.ts +53 -0
  39. package/src/blueprints/external-sandbox.js +1182 -0
  40. package/src/blueprints/external-sandbox.js.map +1 -0
  41. package/src/blueprints/manifest.d.ts +42 -2
  42. package/src/blueprints/manifest.js +82 -27
  43. package/src/blueprints/manifest.js.map +1 -1
  44. package/src/blueprints/resolver.d.ts +14 -5
  45. package/src/blueprints/resolver.js +228 -68
  46. package/src/blueprints/resolver.js.map +1 -1
  47. package/src/cli/agent-command.d.ts +30 -0
  48. package/src/cli/agent-command.js +204 -0
  49. package/src/cli/agent-command.js.map +1 -0
  50. package/src/cli/agent-runtime.d.ts +25 -0
  51. package/src/cli/agent-runtime.js +488 -0
  52. package/src/cli/agent-runtime.js.map +1 -0
  53. package/src/cli/blueprint-authority.d.ts +9 -0
  54. package/src/cli/blueprint-authority.js +43 -0
  55. package/src/cli/blueprint-authority.js.map +1 -0
  56. package/src/cli/blueprint-command.d.ts +24 -0
  57. package/src/cli/blueprint-command.js +63 -0
  58. package/src/cli/blueprint-command.js.map +1 -0
  59. package/src/cli/bootstrap.d.ts +31 -0
  60. package/src/cli/bootstrap.js +165 -0
  61. package/src/cli/bootstrap.js.map +1 -0
  62. package/src/cli/dev-command.d.ts +92 -0
  63. package/src/cli/dev-command.js +561 -0
  64. package/src/cli/dev-command.js.map +1 -0
  65. package/src/cli/main.d.ts +131 -0
  66. package/src/cli/main.js +1199 -0
  67. package/src/cli/main.js.map +1 -0
  68. package/src/cli/output.d.ts +19 -0
  69. package/src/cli/output.js +51 -0
  70. package/src/cli/output.js.map +1 -0
  71. package/src/cli/personal-secret-runtime.d.ts +81 -0
  72. package/src/cli/personal-secret-runtime.js +567 -0
  73. package/src/cli/personal-secret-runtime.js.map +1 -0
  74. package/src/cli/secret-terminal.d.ts +12 -0
  75. package/src/cli/secret-terminal.js +128 -0
  76. package/src/cli/secret-terminal.js.map +1 -0
  77. package/src/container-images.d.ts +1 -0
  78. package/src/container-images.js +5 -0
  79. package/src/container-images.js.map +1 -0
  80. package/src/data-lifecycle/index.d.ts +3 -0
  81. package/src/data-lifecycle/index.js +7 -0
  82. package/src/data-lifecycle/index.js.map +1 -0
  83. package/src/data-lifecycle/model.d.ts +172 -0
  84. package/src/data-lifecycle/model.fixtures.d.ts +2 -0
  85. package/src/data-lifecycle/model.fixtures.js +244 -0
  86. package/src/data-lifecycle/model.fixtures.js.map +1 -0
  87. package/src/data-lifecycle/model.js +95 -0
  88. package/src/data-lifecycle/model.js.map +1 -0
  89. package/src/data-lifecycle/sensitive-artifacts.d.ts +28 -0
  90. package/src/data-lifecycle/sensitive-artifacts.js +146 -0
  91. package/src/data-lifecycle/sensitive-artifacts.js.map +1 -0
  92. package/src/data-lifecycle/validation.d.ts +32 -0
  93. package/src/data-lifecycle/validation.js +837 -0
  94. package/src/data-lifecycle/validation.js.map +1 -0
  95. package/src/database-retirement/contract.d.ts +68 -0
  96. package/src/database-retirement/contract.js +166 -0
  97. package/src/database-retirement/contract.js.map +1 -0
  98. package/src/database-retirement/index.d.ts +1 -0
  99. package/src/database-retirement/index.js +5 -0
  100. package/src/database-retirement/index.js.map +1 -0
  101. package/src/deterministic-order.d.ts +2 -0
  102. package/src/deterministic-order.js +7 -0
  103. package/src/deterministic-order.js.map +1 -0
  104. package/src/developer-agent/context.d.ts +27 -0
  105. package/src/developer-agent/context.js +497 -0
  106. package/src/developer-agent/context.js.map +1 -0
  107. package/src/developer-agent/generator-planning.d.ts +34 -0
  108. package/src/developer-agent/generator-planning.js +645 -0
  109. package/src/developer-agent/generator-planning.js.map +1 -0
  110. package/src/developer-agent/generator-preview.d.ts +8 -0
  111. package/src/developer-agent/generator-preview.js +650 -0
  112. package/src/developer-agent/generator-preview.js.map +1 -0
  113. package/src/developer-agent/git-inspection.d.ts +108 -0
  114. package/src/developer-agent/git-inspection.js +815 -0
  115. package/src/developer-agent/git-inspection.js.map +1 -0
  116. package/src/developer-agent/handoff.d.ts +43 -0
  117. package/src/developer-agent/handoff.js +698 -0
  118. package/src/developer-agent/handoff.js.map +1 -0
  119. package/src/developer-agent/index.d.ts +10 -0
  120. package/src/developer-agent/index.js +14 -0
  121. package/src/developer-agent/index.js.map +1 -0
  122. package/src/developer-agent/model.d.ts +481 -0
  123. package/src/developer-agent/model.js +143 -0
  124. package/src/developer-agent/model.js.map +1 -0
  125. package/src/developer-agent/operation-registry.d.ts +45 -0
  126. package/src/developer-agent/operation-registry.js +1255 -0
  127. package/src/developer-agent/operation-registry.js.map +1 -0
  128. package/src/developer-agent/ordering.d.ts +9 -0
  129. package/src/developer-agent/ordering.js +15 -0
  130. package/src/developer-agent/ordering.js.map +1 -0
  131. package/src/developer-agent/planning.d.ts +18 -0
  132. package/src/developer-agent/planning.js +447 -0
  133. package/src/developer-agent/planning.js.map +1 -0
  134. package/src/developer-agent/preview-changes.d.ts +26 -0
  135. package/src/developer-agent/preview-changes.js +203 -0
  136. package/src/developer-agent/preview-changes.js.map +1 -0
  137. package/src/developer-agent/preview-source.d.ts +2 -0
  138. package/src/developer-agent/preview-source.js +16 -0
  139. package/src/developer-agent/preview-source.js.map +1 -0
  140. package/src/developer-agent/validation.d.ts +18 -0
  141. package/src/developer-agent/validation.js +2617 -0
  142. package/src/developer-agent/validation.js.map +1 -0
  143. package/src/developer-agent/workspace-inspection.d.ts +20 -0
  144. package/src/developer-agent/workspace-inspection.js +1134 -0
  145. package/src/developer-agent/workspace-inspection.js.map +1 -0
  146. package/src/developer-agent/workspace-path.d.ts +6 -0
  147. package/src/developer-agent/workspace-path.js +22 -0
  148. package/src/developer-agent/workspace-path.js.map +1 -0
  149. package/src/executors/blueprint-trust/blueprint-trust.d.ts +29 -0
  150. package/src/executors/blueprint-trust/blueprint-trust.js +115 -0
  151. package/src/executors/blueprint-trust/blueprint-trust.js.map +1 -0
  152. package/src/executors/blueprint-trust/schema.json +27 -0
  153. package/src/executors/blueprint-verification/blueprint-verification.d.ts +13 -0
  154. package/src/executors/blueprint-verification/blueprint-verification.js +110 -0
  155. package/src/executors/blueprint-verification/blueprint-verification.js.map +1 -0
  156. package/src/executors/blueprint-verification/schema.json +44 -0
  157. package/src/executors/deployment-plan/deployment-plan.js +1 -0
  158. package/src/executors/deployment-plan/deployment-plan.js.map +1 -1
  159. package/src/executors/dev-doctor/dev-doctor.d.ts +19 -5
  160. package/src/executors/dev-doctor/dev-doctor.js +186 -32
  161. package/src/executors/dev-doctor/dev-doctor.js.map +1 -1
  162. package/src/executors/dev-doctor/schema.json +1 -6
  163. package/src/executors/dev-setup/dev-setup.d.ts +7 -1
  164. package/src/executors/dev-setup/dev-setup.js +14 -3
  165. package/src/executors/dev-setup/dev-setup.js.map +1 -1
  166. package/src/executors/developer-context/developer-context.d.ts +38 -0
  167. package/src/executors/developer-context/developer-context.js +78 -0
  168. package/src/executors/developer-context/developer-context.js.map +1 -0
  169. package/src/executors/developer-context/schema.json +87 -0
  170. package/src/executors/fleet/fleet.d.ts +12 -43
  171. package/src/executors/fleet/fleet.js +120 -500
  172. package/src/executors/fleet/fleet.js.map +1 -1
  173. package/src/executors/fleet/schema.json +64 -14
  174. package/src/executors/github-bootstrap/github-bootstrap.d.ts +1 -0
  175. package/src/executors/github-bootstrap/github-bootstrap.js +1 -0
  176. package/src/executors/github-bootstrap/github-bootstrap.js.map +1 -1
  177. package/src/executors/github-bootstrap/schema.json +5 -0
  178. package/src/executors/infrastructure-plan/infrastructure-plan.d.ts +144 -0
  179. package/src/executors/infrastructure-plan/infrastructure-plan.js +3320 -0
  180. package/src/executors/infrastructure-plan/infrastructure-plan.js.map +1 -0
  181. package/src/executors/infrastructure-plan/schema.json +78 -0
  182. package/src/executors/secret-guardrails/schema.json +6 -0
  183. package/src/executors/secret-guardrails/secret-guardrails.d.ts +3 -0
  184. package/src/executors/secret-guardrails/secret-guardrails.js +44 -0
  185. package/src/executors/secret-guardrails/secret-guardrails.js.map +1 -0
  186. package/src/executors/secret-metadata/schema.json +31 -0
  187. package/src/executors/secret-metadata/secret-metadata.d.ts +32 -0
  188. package/src/executors/secret-metadata/secret-metadata.js +131 -0
  189. package/src/executors/secret-metadata/secret-metadata.js.map +1 -0
  190. package/src/executors/sst-lifecycle/logging-preflight.d.ts +17 -0
  191. package/src/executors/sst-lifecycle/logging-preflight.js +196 -0
  192. package/src/executors/sst-lifecycle/logging-preflight.js.map +1 -0
  193. package/src/executors/sst-lifecycle/run-sst-command.d.ts +23 -3
  194. package/src/executors/sst-lifecycle/run-sst-command.js +113 -10
  195. package/src/executors/sst-lifecycle/run-sst-command.js.map +1 -1
  196. package/src/executors/sst-lifecycle/schema.json +9 -5
  197. package/src/executors/sst-lifecycle/secret-preflight.d.ts +25 -0
  198. package/src/executors/sst-lifecycle/secret-preflight.js +119 -0
  199. package/src/executors/sst-lifecycle/secret-preflight.js.map +1 -0
  200. package/src/foundation/discovery.d.ts +17 -1
  201. package/src/foundation/discovery.js +16 -1
  202. package/src/foundation/discovery.js.map +1 -1
  203. package/src/foundation/index.d.ts +3 -0
  204. package/src/foundation/index.js +3 -0
  205. package/src/foundation/index.js.map +1 -1
  206. package/src/foundation/local-database-contract.d.ts +1 -0
  207. package/src/foundation/local-database-contract.js +3 -0
  208. package/src/foundation/local-database-contract.js.map +1 -1
  209. package/src/foundation/logging-preflight.d.ts +30 -0
  210. package/src/foundation/logging-preflight.js +138 -0
  211. package/src/foundation/logging-preflight.js.map +1 -0
  212. package/src/foundation/logging.d.ts +70 -0
  213. package/src/foundation/logging.js +133 -0
  214. package/src/foundation/logging.js.map +1 -0
  215. package/src/foundation/preflight.d.ts +9 -0
  216. package/src/foundation/preflight.js +58 -2
  217. package/src/foundation/preflight.js.map +1 -1
  218. package/src/foundation/provision-database-bindings.d.ts +9 -1
  219. package/src/foundation/provision-database-bindings.js +25 -5
  220. package/src/foundation/provision-database-bindings.js.map +1 -1
  221. package/src/foundation/provision-logical-database.d.ts +10 -2
  222. package/src/foundation/provision-logical-database.js +68 -113
  223. package/src/foundation/provision-logical-database.js.map +1 -1
  224. package/src/foundation/router-origin-proof.d.ts +2 -0
  225. package/src/foundation/router-origin-proof.js +25 -0
  226. package/src/foundation/router-origin-proof.js.map +1 -0
  227. package/src/foundation/stages.d.ts +1 -0
  228. package/src/foundation/stages.js +9 -1
  229. package/src/foundation/stages.js.map +1 -1
  230. package/src/frontend-security/index.d.ts +1 -0
  231. package/src/frontend-security/index.js +5 -0
  232. package/src/frontend-security/index.js.map +1 -0
  233. package/src/frontend-security/security-headers.d.ts +50 -0
  234. package/src/frontend-security/security-headers.js +418 -0
  235. package/src/frontend-security/security-headers.js.map +1 -0
  236. package/src/generators/feature-registry.d.ts +13 -0
  237. package/src/generators/feature-registry.js +73 -0
  238. package/src/generators/feature-registry.js.map +1 -0
  239. package/src/generators/function/function.d.ts +1 -1
  240. package/src/generators/function/function.js +51 -6
  241. package/src/generators/function/function.js.map +1 -1
  242. package/src/generators/function/schema.d.ts +1 -0
  243. package/src/generators/function/schema.json +6 -1
  244. package/src/generators/logging-registry.d.ts +13 -0
  245. package/src/generators/logging-registry.js +62 -0
  246. package/src/generators/logging-registry.js.map +1 -0
  247. package/src/generators/post-generation-install.d.ts +67 -0
  248. package/src/generators/post-generation-install.js +3308 -0
  249. package/src/generators/post-generation-install.js.map +1 -0
  250. package/src/generators/preset/generator.js +3 -0
  251. package/src/generators/preset/generator.js.map +1 -1
  252. package/src/generators/preset/tool-versions.d.ts +18 -0
  253. package/src/generators/preset/tool-versions.js +22 -0
  254. package/src/generators/preset/tool-versions.js.map +1 -0
  255. package/src/generators/preset/workspace-files-developer-agent.d.ts +14 -0
  256. package/src/generators/preset/workspace-files-developer-agent.js +511 -0
  257. package/src/generators/preset/workspace-files-developer-agent.js.map +1 -0
  258. package/src/generators/preset/workspace-files-foundation-workload-roles.d.ts +6 -0
  259. package/src/generators/preset/workspace-files-foundation-workload-roles.js +406 -0
  260. package/src/generators/preset/workspace-files-foundation-workload-roles.js.map +1 -0
  261. package/src/generators/preset/workspace-files-performance-cost.d.ts +66 -0
  262. package/src/generators/preset/workspace-files-performance-cost.js +866 -0
  263. package/src/generators/preset/workspace-files-performance-cost.js.map +1 -0
  264. package/src/generators/preset/workspace-files-performance-load.d.ts +73 -0
  265. package/src/generators/preset/workspace-files-performance-load.js +801 -0
  266. package/src/generators/preset/workspace-files-performance-load.js.map +1 -0
  267. package/src/generators/preset/workspace-files-workload-role-baseline.d.ts +9 -0
  268. package/src/generators/preset/workspace-files-workload-role-baseline.js +1102 -0
  269. package/src/generators/preset/workspace-files-workload-role-baseline.js.map +1 -0
  270. package/src/generators/preset/workspace-files.d.ts +14 -1
  271. package/src/generators/preset/workspace-files.js +8189 -245
  272. package/src/generators/preset/workspace-files.js.map +1 -1
  273. package/src/generators/repository-policy/repository-policy.js +3 -47
  274. package/src/generators/repository-policy/repository-policy.js.map +1 -1
  275. package/src/generators/slice/built-in-plan-api-contract-files.d.ts +2 -0
  276. package/src/generators/slice/built-in-plan-api-contract-files.js +2656 -0
  277. package/src/generators/slice/built-in-plan-api-contract-files.js.map +1 -0
  278. package/src/generators/slice/built-in-plan-api-files.d.ts +2 -0
  279. package/src/generators/slice/built-in-plan-api-files.js +1186 -0
  280. package/src/generators/slice/built-in-plan-api-files.js.map +1 -0
  281. package/src/generators/slice/built-in-plan-async-work-files.d.ts +2 -0
  282. package/src/generators/slice/built-in-plan-async-work-files.js +7903 -0
  283. package/src/generators/slice/built-in-plan-async-work-files.js.map +1 -0
  284. package/src/generators/slice/built-in-plan-authorization-files.d.ts +2 -0
  285. package/src/generators/slice/built-in-plan-authorization-files.js +2314 -0
  286. package/src/generators/slice/built-in-plan-authorization-files.js.map +1 -0
  287. package/src/generators/slice/built-in-plan-authorization-infrastructure-files.d.ts +2 -0
  288. package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js +559 -0
  289. package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js.map +1 -0
  290. package/src/generators/slice/built-in-plan-data-deletion-files.d.ts +2 -0
  291. package/src/generators/slice/built-in-plan-data-deletion-files.js +1101 -0
  292. package/src/generators/slice/built-in-plan-data-deletion-files.js.map +1 -0
  293. package/src/generators/slice/built-in-plan-data-export-infrastructure-files.d.ts +2 -0
  294. package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js +249 -0
  295. package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js.map +1 -0
  296. package/src/generators/slice/built-in-plan-data-files.d.ts +2 -0
  297. package/src/generators/slice/built-in-plan-data-files.js +1530 -0
  298. package/src/generators/slice/built-in-plan-data-files.js.map +1 -0
  299. package/src/generators/slice/built-in-plan-data-lifecycle-files.d.ts +2 -0
  300. package/src/generators/slice/built-in-plan-data-lifecycle-files.js +750 -0
  301. package/src/generators/slice/built-in-plan-data-lifecycle-files.js.map +1 -0
  302. package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.d.ts +2 -0
  303. package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js +828 -0
  304. package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js.map +1 -0
  305. package/src/generators/slice/built-in-plan-data-retention-job-files.d.ts +2 -0
  306. package/src/generators/slice/built-in-plan-data-retention-job-files.js +2604 -0
  307. package/src/generators/slice/built-in-plan-data-retention-job-files.js.map +1 -0
  308. package/src/generators/slice/built-in-plan-data-retention-launcher-files.d.ts +2 -0
  309. package/src/generators/slice/built-in-plan-data-retention-launcher-files.js +144 -0
  310. package/src/generators/slice/built-in-plan-data-retention-launcher-files.js.map +1 -0
  311. package/src/generators/slice/built-in-plan-data-rights-files.d.ts +2 -0
  312. package/src/generators/slice/built-in-plan-data-rights-files.js +4628 -0
  313. package/src/generators/slice/built-in-plan-data-rights-files.js.map +1 -0
  314. package/src/generators/slice/built-in-plan-database-lifecycle-files.d.ts +2 -0
  315. package/src/generators/slice/built-in-plan-database-lifecycle-files.js +1901 -0
  316. package/src/generators/slice/built-in-plan-database-lifecycle-files.js.map +1 -0
  317. package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.d.ts +2 -0
  318. package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js +485 -0
  319. package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js.map +1 -0
  320. package/src/generators/slice/built-in-plan-foundation-files.d.ts +2 -0
  321. package/src/generators/slice/built-in-plan-foundation-files.js +184 -0
  322. package/src/generators/slice/built-in-plan-foundation-files.js.map +1 -0
  323. package/src/generators/slice/built-in-plan-frontend-files.d.ts +2 -0
  324. package/src/generators/slice/built-in-plan-frontend-files.js +2233 -0
  325. package/src/generators/slice/built-in-plan-frontend-files.js.map +1 -0
  326. package/src/generators/slice/built-in-plan-infrastructure-files.d.ts +2 -0
  327. package/src/generators/slice/built-in-plan-infrastructure-files.js +3038 -0
  328. package/src/generators/slice/built-in-plan-infrastructure-files.js.map +1 -0
  329. package/src/generators/slice/built-in-plan-infrastructure-safety-files.d.ts +2 -0
  330. package/src/generators/slice/built-in-plan-infrastructure-safety-files.js +312 -0
  331. package/src/generators/slice/built-in-plan-infrastructure-safety-files.js.map +1 -0
  332. package/src/generators/slice/built-in-plan-metadata-files.d.ts +3 -0
  333. package/src/generators/slice/built-in-plan-metadata-files.js +219 -0
  334. package/src/generators/slice/built-in-plan-metadata-files.js.map +1 -0
  335. package/src/generators/slice/built-in-plan-operations-files.d.ts +2 -0
  336. package/src/generators/slice/built-in-plan-operations-files.js +630 -0
  337. package/src/generators/slice/built-in-plan-operations-files.js.map +1 -0
  338. package/src/generators/slice/built-in-plan-performance-files.d.ts +3 -0
  339. package/src/generators/slice/built-in-plan-performance-files.js +3293 -0
  340. package/src/generators/slice/built-in-plan-performance-files.js.map +1 -0
  341. package/src/generators/slice/built-in-plan-project-files.d.ts +3 -0
  342. package/src/generators/slice/built-in-plan-project-files.js +979 -0
  343. package/src/generators/slice/built-in-plan-project-files.js.map +1 -0
  344. package/src/generators/slice/built-in-plan-release-files.d.ts +2 -0
  345. package/src/generators/slice/built-in-plan-release-files.js +6387 -0
  346. package/src/generators/slice/built-in-plan-release-files.js.map +1 -0
  347. package/src/generators/slice/built-in-plan-reliability-files.d.ts +2 -0
  348. package/src/generators/slice/built-in-plan-reliability-files.js +4499 -0
  349. package/src/generators/slice/built-in-plan-reliability-files.js.map +1 -0
  350. package/src/generators/slice/built-in-plan-secret-runtime-files.d.ts +2 -0
  351. package/src/generators/slice/built-in-plan-secret-runtime-files.js +1004 -0
  352. package/src/generators/slice/built-in-plan-secret-runtime-files.js.map +1 -0
  353. package/src/generators/slice/built-in-plan-shared.d.ts +53 -0
  354. package/src/generators/slice/built-in-plan-shared.js +113 -0
  355. package/src/generators/slice/built-in-plan-shared.js.map +1 -0
  356. package/src/generators/slice/built-in-plan-testing-files.d.ts +2 -0
  357. package/src/generators/slice/built-in-plan-testing-files.js +2356 -0
  358. package/src/generators/slice/built-in-plan-testing-files.js.map +1 -0
  359. package/src/generators/slice/built-in-plan-verification-files.d.ts +2 -0
  360. package/src/generators/slice/built-in-plan-verification-files.js +358 -0
  361. package/src/generators/slice/built-in-plan-verification-files.js.map +1 -0
  362. package/src/generators/slice/built-in-plan-web-files.d.ts +2 -0
  363. package/src/generators/slice/built-in-plan-web-files.js +430 -0
  364. package/src/generators/slice/built-in-plan-web-files.js.map +1 -0
  365. package/src/generators/slice/built-in-plan-workload-role-files.d.ts +2 -0
  366. package/src/generators/slice/built-in-plan-workload-role-files.js +2356 -0
  367. package/src/generators/slice/built-in-plan-workload-role-files.js.map +1 -0
  368. package/src/generators/slice/built-in-plan.d.ts +8 -0
  369. package/src/generators/slice/built-in-plan.js +264 -0
  370. package/src/generators/slice/built-in-plan.js.map +1 -0
  371. package/src/generators/slice/schema.json +1 -1
  372. package/src/generators/slice/slice.d.ts +1 -22
  373. package/src/generators/slice/slice.js +185 -1510
  374. package/src/generators/slice/slice.js.map +1 -1
  375. package/src/generators/upgrade/schema.d.ts +2 -0
  376. package/src/generators/upgrade/schema.json +11 -1
  377. package/src/generators/upgrade/upgrade.d.ts +51 -1
  378. package/src/generators/upgrade/upgrade.js +820 -82
  379. package/src/generators/upgrade/upgrade.js.map +1 -1
  380. package/src/generators/workload/frozen-container.d.ts +8 -0
  381. package/src/generators/workload/frozen-container.js +36 -0
  382. package/src/generators/workload/frozen-container.js.map +1 -0
  383. package/src/generators/workload/performance-registration.d.ts +32 -0
  384. package/src/generators/workload/performance-registration.js +226 -0
  385. package/src/generators/workload/performance-registration.js.map +1 -0
  386. package/src/generators/workload/reliability-registration.d.ts +16 -0
  387. package/src/generators/workload/reliability-registration.js +150 -0
  388. package/src/generators/workload/reliability-registration.js.map +1 -0
  389. package/src/generators/workload/schema.d.ts +1 -0
  390. package/src/generators/workload/schema.json +6 -1
  391. package/src/generators/workload/service-performance-files.d.ts +4 -0
  392. package/src/generators/workload/service-performance-files.js +1846 -0
  393. package/src/generators/workload/service-performance-files.js.map +1 -0
  394. package/src/generators/workload/workload.d.ts +3 -2
  395. package/src/generators/workload/workload.js +1083 -18
  396. package/src/generators/workload/workload.js.map +1 -1
  397. package/src/git-policy/action-pins.d.ts +10 -0
  398. package/src/git-policy/action-pins.js +10 -0
  399. package/src/git-policy/action-pins.js.map +1 -1
  400. package/src/git-policy/github-bootstrap.d.ts +14 -1
  401. package/src/git-policy/github-bootstrap.js +274 -46
  402. package/src/git-policy/github-bootstrap.js.map +1 -1
  403. package/src/index.d.ts +2 -0
  404. package/src/index.js +2 -0
  405. package/src/index.js.map +1 -1
  406. package/src/infrastructure-change/convergence.d.ts +13 -0
  407. package/src/infrastructure-change/convergence.js +85 -0
  408. package/src/infrastructure-change/convergence.js.map +1 -0
  409. package/src/infrastructure-change/drift.d.ts +13 -0
  410. package/src/infrastructure-change/drift.js +112 -0
  411. package/src/infrastructure-change/drift.js.map +1 -0
  412. package/src/infrastructure-change/index.d.ts +7 -0
  413. package/src/infrastructure-change/index.js +11 -0
  414. package/src/infrastructure-change/index.js.map +1 -0
  415. package/src/infrastructure-change/model.d.ts +253 -0
  416. package/src/infrastructure-change/model.js +28 -0
  417. package/src/infrastructure-change/model.js.map +1 -0
  418. package/src/infrastructure-change/normalize.d.ts +12 -0
  419. package/src/infrastructure-change/normalize.js +245 -0
  420. package/src/infrastructure-change/normalize.js.map +1 -0
  421. package/src/infrastructure-change/plan.d.ts +40 -0
  422. package/src/infrastructure-change/plan.js +361 -0
  423. package/src/infrastructure-change/plan.js.map +1 -0
  424. package/src/infrastructure-change/risk.d.ts +7 -0
  425. package/src/infrastructure-change/risk.js +269 -0
  426. package/src/infrastructure-change/risk.js.map +1 -0
  427. package/src/infrastructure-change/summary.d.ts +20 -0
  428. package/src/infrastructure-change/summary.js +130 -0
  429. package/src/infrastructure-change/summary.js.map +1 -0
  430. package/src/local-dev/context-discovery.d.ts +2 -0
  431. package/src/local-dev/context-discovery.js +59 -0
  432. package/src/local-dev/context-discovery.js.map +1 -0
  433. package/src/local-dev/contract-validation.d.ts +15 -0
  434. package/src/local-dev/contract-validation.js +84 -0
  435. package/src/local-dev/contract-validation.js.map +1 -0
  436. package/src/local-dev/contracts.d.ts +10 -1
  437. package/src/local-dev/contracts.js +57 -5
  438. package/src/local-dev/contracts.js.map +1 -1
  439. package/src/local-dev/control-contract.d.ts +67 -0
  440. package/src/local-dev/control-contract.js +180 -0
  441. package/src/local-dev/control-contract.js.map +1 -0
  442. package/src/local-dev/dev-command-core.d.ts +60 -0
  443. package/src/local-dev/dev-command-core.js +89 -0
  444. package/src/local-dev/dev-command-core.js.map +1 -0
  445. package/src/local-dev/effects.d.ts +16 -0
  446. package/src/local-dev/effects.js +63 -0
  447. package/src/local-dev/effects.js.map +1 -0
  448. package/src/local-dev/environment-inspector.d.ts +125 -0
  449. package/src/local-dev/environment-inspector.js +687 -0
  450. package/src/local-dev/environment-inspector.js.map +1 -0
  451. package/src/local-dev/environment-state.d.ts +113 -0
  452. package/src/local-dev/environment-state.js +463 -0
  453. package/src/local-dev/environment-state.js.map +1 -0
  454. package/src/local-dev/errors.d.ts +6 -0
  455. package/src/local-dev/errors.js +41 -0
  456. package/src/local-dev/errors.js.map +1 -0
  457. package/src/local-dev/fleet-client.d.ts +33 -0
  458. package/src/local-dev/fleet-client.js +156 -0
  459. package/src/local-dev/fleet-client.js.map +1 -0
  460. package/src/local-dev/fleet-configuration.d.ts +13 -0
  461. package/src/local-dev/fleet-configuration.js +71 -0
  462. package/src/local-dev/fleet-configuration.js.map +1 -0
  463. package/src/local-dev/fleet-inventory.d.ts +56 -0
  464. package/src/local-dev/fleet-inventory.js +469 -0
  465. package/src/local-dev/fleet-inventory.js.map +1 -0
  466. package/src/local-dev/fleet-ipc.d.ts +28 -0
  467. package/src/local-dev/fleet-ipc.js +267 -0
  468. package/src/local-dev/fleet-ipc.js.map +1 -0
  469. package/src/local-dev/fleet-launcher.d.ts +53 -0
  470. package/src/local-dev/fleet-launcher.js +379 -0
  471. package/src/local-dev/fleet-launcher.js.map +1 -0
  472. package/src/local-dev/fleet-lock.d.ts +41 -0
  473. package/src/local-dev/fleet-lock.js +135 -0
  474. package/src/local-dev/fleet-lock.js.map +1 -0
  475. package/src/local-dev/fleet-logs.d.ts +66 -0
  476. package/src/local-dev/fleet-logs.js +542 -0
  477. package/src/local-dev/fleet-logs.js.map +1 -0
  478. package/src/local-dev/fleet-process.d.ts +50 -0
  479. package/src/local-dev/fleet-process.js +289 -0
  480. package/src/local-dev/fleet-process.js.map +1 -0
  481. package/src/local-dev/fleet-runtime.d.ts +22 -0
  482. package/src/local-dev/fleet-runtime.js +368 -0
  483. package/src/local-dev/fleet-runtime.js.map +1 -0
  484. package/src/local-dev/fleet-session.d.ts +70 -0
  485. package/src/local-dev/fleet-session.js +301 -0
  486. package/src/local-dev/fleet-session.js.map +1 -0
  487. package/src/local-dev/fleet-slice-runner-daemon.d.ts +1 -0
  488. package/src/local-dev/fleet-slice-runner-daemon.js +21 -0
  489. package/src/local-dev/fleet-slice-runner-daemon.js.map +1 -0
  490. package/src/local-dev/fleet-startup.d.ts +22 -0
  491. package/src/local-dev/fleet-startup.js +114 -0
  492. package/src/local-dev/fleet-startup.js.map +1 -0
  493. package/src/local-dev/fleet-state.d.ts +62 -0
  494. package/src/local-dev/fleet-state.js +297 -0
  495. package/src/local-dev/fleet-state.js.map +1 -0
  496. package/src/local-dev/fleet-supervisor-daemon.d.ts +1 -0
  497. package/src/local-dev/fleet-supervisor-daemon.js +41 -0
  498. package/src/local-dev/fleet-supervisor-daemon.js.map +1 -0
  499. package/src/local-dev/fleet-supervisor.d.ts +52 -0
  500. package/src/local-dev/fleet-supervisor.js +384 -0
  501. package/src/local-dev/fleet-supervisor.js.map +1 -0
  502. package/src/local-dev/gateway.js +1 -1
  503. package/src/local-dev/gateway.js.map +1 -1
  504. package/src/local-dev/identity.js +4 -6
  505. package/src/local-dev/identity.js.map +1 -1
  506. package/src/local-dev/index.d.ts +1 -0
  507. package/src/local-dev/index.js +1 -0
  508. package/src/local-dev/index.js.map +1 -1
  509. package/src/local-dev/local-context.d.ts +62 -0
  510. package/src/local-dev/local-context.js +299 -0
  511. package/src/local-dev/local-context.js.map +1 -0
  512. package/src/local-dev/nx-workspace.d.ts +45 -0
  513. package/src/local-dev/nx-workspace.js +228 -0
  514. package/src/local-dev/nx-workspace.js.map +1 -0
  515. package/src/local-dev/personal-secret-ledger.d.ts +75 -0
  516. package/src/local-dev/personal-secret-ledger.js +391 -0
  517. package/src/local-dev/personal-secret-ledger.js.map +1 -0
  518. package/src/local-dev/personal-stage.d.ts +18 -0
  519. package/src/local-dev/personal-stage.js +129 -0
  520. package/src/local-dev/personal-stage.js.map +1 -0
  521. package/src/local-dev/private-state.d.ts +17 -0
  522. package/src/local-dev/private-state.js +254 -0
  523. package/src/local-dev/private-state.js.map +1 -0
  524. package/src/local-dev/process-identity.d.ts +9 -0
  525. package/src/local-dev/process-identity.js +79 -0
  526. package/src/local-dev/process-identity.js.map +1 -0
  527. package/src/local-dev/runtime-paths.d.ts +17 -0
  528. package/src/local-dev/runtime-paths.js +33 -0
  529. package/src/local-dev/runtime-paths.js.map +1 -0
  530. package/src/local-dev/secret-slice-claim.d.ts +17 -0
  531. package/src/local-dev/secret-slice-claim.js +75 -0
  532. package/src/local-dev/secret-slice-claim.js.map +1 -0
  533. package/src/local-dev/slice-claim.d.ts +36 -0
  534. package/src/local-dev/slice-claim.js +199 -0
  535. package/src/local-dev/slice-claim.js.map +1 -0
  536. package/src/local-dev/slice-runner.d.ts +121 -0
  537. package/src/local-dev/slice-runner.js +715 -0
  538. package/src/local-dev/slice-runner.js.map +1 -0
  539. package/src/local-dev/tls.js +51 -17
  540. package/src/local-dev/tls.js.map +1 -1
  541. package/src/ownership/composition.d.ts +5 -2
  542. package/src/ownership/composition.js +26 -3
  543. package/src/ownership/composition.js.map +1 -1
  544. package/src/ownership/hash.d.ts +1 -1
  545. package/src/ownership/hash.js +3 -1
  546. package/src/ownership/hash.js.map +1 -1
  547. package/src/ownership/record.d.ts +32 -1
  548. package/src/ownership/record.js +139 -2
  549. package/src/ownership/record.js.map +1 -1
  550. package/src/performance/cost-collection.d.ts +225 -0
  551. package/src/performance/cost-collection.js +825 -0
  552. package/src/performance/cost-collection.js.map +1 -0
  553. package/src/performance/cost-controls.d.ts +131 -0
  554. package/src/performance/cost-controls.js +336 -0
  555. package/src/performance/cost-controls.js.map +1 -0
  556. package/src/performance/evidence.d.ts +140 -0
  557. package/src/performance/evidence.js +599 -0
  558. package/src/performance/evidence.js.map +1 -0
  559. package/src/performance/index.d.ts +10 -0
  560. package/src/performance/index.js +14 -0
  561. package/src/performance/index.js.map +1 -0
  562. package/src/performance/load-safety.d.ts +84 -0
  563. package/src/performance/load-safety.js +346 -0
  564. package/src/performance/load-safety.js.map +1 -0
  565. package/src/performance/model.d.ts +129 -0
  566. package/src/performance/model.js +452 -0
  567. package/src/performance/model.js.map +1 -0
  568. package/src/performance/pr-artifact-budget.d.ts +42 -0
  569. package/src/performance/pr-artifact-budget.js +151 -0
  570. package/src/performance/pr-artifact-budget.js.map +1 -0
  571. package/src/performance/runner.d.ts +75 -0
  572. package/src/performance/runner.js +227 -0
  573. package/src/performance/runner.js.map +1 -0
  574. package/src/performance/scenario-endpoint.d.ts +1 -0
  575. package/src/performance/scenario-endpoint.js +5 -0
  576. package/src/performance/scenario-endpoint.js.map +1 -0
  577. package/src/performance/scenario.d.ts +193 -0
  578. package/src/performance/scenario.js +736 -0
  579. package/src/performance/scenario.js.map +1 -0
  580. package/src/performance/test-fixtures.d.ts +7 -0
  581. package/src/performance/test-fixtures.js +169 -0
  582. package/src/performance/test-fixtures.js.map +1 -0
  583. package/src/performance/unit-cost.d.ts +105 -0
  584. package/src/performance/unit-cost.js +364 -0
  585. package/src/performance/unit-cost.js.map +1 -0
  586. package/src/release/index.d.ts +4 -0
  587. package/src/release/index.js +8 -0
  588. package/src/release/index.js.map +1 -0
  589. package/src/release/lifecycle.d.ts +132 -0
  590. package/src/release/lifecycle.js +411 -0
  591. package/src/release/lifecycle.js.map +1 -0
  592. package/src/release/manifest.d.ts +148 -0
  593. package/src/release/manifest.js +503 -0
  594. package/src/release/manifest.js.map +1 -0
  595. package/src/release/rollout.d.ts +170 -0
  596. package/src/release/rollout.js +578 -0
  597. package/src/release/rollout.js.map +1 -0
  598. package/src/release/source-authority.d.ts +19 -0
  599. package/src/release/source-authority.js +195 -0
  600. package/src/release/source-authority.js.map +1 -0
  601. package/src/repository-policy/deployment-plan.d.ts +2 -1
  602. package/src/repository-policy/deployment-plan.js +2 -0
  603. package/src/repository-policy/deployment-plan.js.map +1 -1
  604. package/src/repository-policy/policy.d.ts +1 -1
  605. package/src/repository-policy/policy.js +29 -25
  606. package/src/repository-policy/policy.js.map +1 -1
  607. package/src/schemas/aggregate-count-evidence-v1.json +135 -0
  608. package/src/schemas/api-contract-baseline-v1.json +674 -0
  609. package/src/schemas/api-contract-compatibility-report-v1.json +126 -0
  610. package/src/schemas/aws-billing-actual-evidence-v1.json +407 -0
  611. package/src/schemas/blueprint-v1.json +18 -1
  612. package/src/schemas/data-lifecycle-policy-v1.json +517 -0
  613. package/src/schemas/generated-ownership-v2.json +22 -0
  614. package/src/schemas/performance-policy-v1.json +335 -0
  615. package/src/schemas/repository-policy-v1.json +1 -0
  616. package/src/schemas/testing-evidence-quarantine-v1.json +168 -0
  617. package/src/schemas/testing-evidence-result-v1.json +319 -0
  618. package/src/secrets/adapters.d.ts +49 -0
  619. package/src/secrets/adapters.js +184 -0
  620. package/src/secrets/adapters.js.map +1 -0
  621. package/src/secrets/aws-control-plane.d.ts +20 -0
  622. package/src/secrets/aws-control-plane.js +255 -0
  623. package/src/secrets/aws-control-plane.js.map +1 -0
  624. package/src/secrets/declaration-verification.d.ts +11 -0
  625. package/src/secrets/declaration-verification.js +68 -0
  626. package/src/secrets/declaration-verification.js.map +1 -0
  627. package/src/secrets/guardrails.d.ts +26 -0
  628. package/src/secrets/guardrails.js +328 -0
  629. package/src/secrets/guardrails.js.map +1 -0
  630. package/src/secrets/index.d.ts +12 -0
  631. package/src/secrets/index.js +16 -0
  632. package/src/secrets/index.js.map +1 -0
  633. package/src/secrets/metadata.d.ts +48 -0
  634. package/src/secrets/metadata.js +171 -0
  635. package/src/secrets/metadata.js.map +1 -0
  636. package/src/secrets/model.d.ts +49 -0
  637. package/src/secrets/model.js +125 -0
  638. package/src/secrets/model.js.map +1 -0
  639. package/src/secrets/operator.d.ts +101 -0
  640. package/src/secrets/operator.js +229 -0
  641. package/src/secrets/operator.js.map +1 -0
  642. package/src/secrets/permissions.d.ts +34 -0
  643. package/src/secrets/permissions.js +86 -0
  644. package/src/secrets/permissions.js.map +1 -0
  645. package/src/secrets/personal-command.d.ts +83 -0
  646. package/src/secrets/personal-command.js +197 -0
  647. package/src/secrets/personal-command.js.map +1 -0
  648. package/src/secrets/personal-ledger.d.ts +21 -0
  649. package/src/secrets/personal-ledger.js +135 -0
  650. package/src/secrets/personal-ledger.js.map +1 -0
  651. package/src/secrets/registry.d.ts +9 -0
  652. package/src/secrets/registry.js +86 -0
  653. package/src/secrets/registry.js.map +1 -0
  654. package/src/secrets/verification.d.ts +18 -0
  655. package/src/secrets/verification.js +139 -0
  656. package/src/secrets/verification.js.map +1 -0
  657. package/src/secrets/workload-access.d.ts +46 -0
  658. package/src/secrets/workload-access.js +163 -0
  659. package/src/secrets/workload-access.js.map +1 -0
  660. package/src/supply-chain/action-pins.d.ts +26 -0
  661. package/src/supply-chain/action-pins.js +208 -0
  662. package/src/supply-chain/action-pins.js.map +1 -0
  663. package/src/supply-chain/blueprint-trust-git.d.ts +130 -0
  664. package/src/supply-chain/blueprint-trust-git.js +1581 -0
  665. package/src/supply-chain/blueprint-trust-git.js.map +1 -0
  666. package/src/supply-chain/blueprint-trust-process.d.ts +4 -0
  667. package/src/supply-chain/blueprint-trust-process.js +88 -0
  668. package/src/supply-chain/blueprint-trust-process.js.map +1 -0
  669. package/src/supply-chain/blueprint-trust.d.ts +354 -0
  670. package/src/supply-chain/blueprint-trust.js +1558 -0
  671. package/src/supply-chain/blueprint-trust.js.map +1 -0
  672. package/src/supply-chain/blueprint-verification-authority.d.ts +62 -0
  673. package/src/supply-chain/blueprint-verification-authority.js +588 -0
  674. package/src/supply-chain/blueprint-verification-authority.js.map +1 -0
  675. package/src/supply-chain/blueprint-verification-execution.d.ts +68 -0
  676. package/src/supply-chain/blueprint-verification-execution.js +624 -0
  677. package/src/supply-chain/blueprint-verification-execution.js.map +1 -0
  678. package/src/supply-chain/build-output.d.ts +35 -0
  679. package/src/supply-chain/build-output.js +398 -0
  680. package/src/supply-chain/build-output.js.map +1 -0
  681. package/src/supply-chain/common.d.ts +21 -0
  682. package/src/supply-chain/common.js +107 -0
  683. package/src/supply-chain/common.js.map +1 -0
  684. package/src/supply-chain/container-artifact-contract.d.ts +23 -0
  685. package/src/supply-chain/container-artifact-contract.js +208 -0
  686. package/src/supply-chain/container-artifact-contract.js.map +1 -0
  687. package/src/supply-chain/container-release.d.ts +119 -0
  688. package/src/supply-chain/container-release.js +496 -0
  689. package/src/supply-chain/container-release.js.map +1 -0
  690. package/src/supply-chain/ecr-applicability.d.ts +19 -0
  691. package/src/supply-chain/ecr-applicability.js +103 -0
  692. package/src/supply-chain/ecr-applicability.js.map +1 -0
  693. package/src/supply-chain/ecr-scanning.d.ts +83 -0
  694. package/src/supply-chain/ecr-scanning.js +321 -0
  695. package/src/supply-chain/ecr-scanning.js.map +1 -0
  696. package/src/supply-chain/ecs-deployed-image.d.ts +85 -0
  697. package/src/supply-chain/ecs-deployed-image.js +300 -0
  698. package/src/supply-chain/ecs-deployed-image.js.map +1 -0
  699. package/src/supply-chain/errors.d.ts +6 -0
  700. package/src/supply-chain/errors.js +15 -0
  701. package/src/supply-chain/errors.js.map +1 -0
  702. package/src/supply-chain/generated-blueprint-trust-command.d.ts +4 -0
  703. package/src/supply-chain/generated-blueprint-trust-command.js +1362 -0
  704. package/src/supply-chain/generated-blueprint-trust-command.js.map +1 -0
  705. package/src/supply-chain/generated-command.d.ts +1 -0
  706. package/src/supply-chain/generated-command.js +687 -0
  707. package/src/supply-chain/generated-command.js.map +1 -0
  708. package/src/supply-chain/generated-container-release-command.d.ts +16 -0
  709. package/src/supply-chain/generated-container-release-command.js +2087 -0
  710. package/src/supply-chain/generated-container-release-command.js.map +1 -0
  711. package/src/supply-chain/generated-ecr-collector-command.d.ts +21 -0
  712. package/src/supply-chain/generated-ecr-collector-command.js +1338 -0
  713. package/src/supply-chain/generated-ecr-collector-command.js.map +1 -0
  714. package/src/supply-chain/generated-files.d.ts +13 -0
  715. package/src/supply-chain/generated-files.js +401 -0
  716. package/src/supply-chain/generated-files.js.map +1 -0
  717. package/src/supply-chain/generated-scanner-command.d.ts +1 -0
  718. package/src/supply-chain/generated-scanner-command.js +718 -0
  719. package/src/supply-chain/generated-scanner-command.js.map +1 -0
  720. package/src/supply-chain/index.d.ts +28 -0
  721. package/src/supply-chain/index.js +35 -0
  722. package/src/supply-chain/index.js.map +1 -0
  723. package/src/supply-chain/inventory.d.ts +79 -0
  724. package/src/supply-chain/inventory.js +717 -0
  725. package/src/supply-chain/inventory.js.map +1 -0
  726. package/src/supply-chain/license-expression.d.ts +7 -0
  727. package/src/supply-chain/license-expression.js +128 -0
  728. package/src/supply-chain/license-expression.js.map +1 -0
  729. package/src/supply-chain/pnpm-toolchain-authority.d.ts +31 -0
  730. package/src/supply-chain/pnpm-toolchain-authority.js +316 -0
  731. package/src/supply-chain/pnpm-toolchain-authority.js.map +1 -0
  732. package/src/supply-chain/policy.d.ts +105 -0
  733. package/src/supply-chain/policy.js +301 -0
  734. package/src/supply-chain/policy.js.map +1 -0
  735. package/src/supply-chain/publication.d.ts +48 -0
  736. package/src/supply-chain/publication.js +85 -0
  737. package/src/supply-chain/publication.js.map +1 -0
  738. package/src/supply-chain/sbom.d.ts +228 -0
  739. package/src/supply-chain/sbom.js +826 -0
  740. package/src/supply-chain/sbom.js.map +1 -0
  741. package/src/supply-chain/scanner.d.ts +77 -0
  742. package/src/supply-chain/scanner.js +502 -0
  743. package/src/supply-chain/scanner.js.map +1 -0
  744. package/src/supply-chain/vendored-source.d.ts +95 -0
  745. package/src/supply-chain/vendored-source.js +315 -0
  746. package/src/supply-chain/vendored-source.js.map +1 -0
  747. package/src/testing-evidence/fixture-scope.d.ts +52 -0
  748. package/src/testing-evidence/fixture-scope.js +140 -0
  749. package/src/testing-evidence/fixture-scope.js.map +1 -0
  750. package/src/testing-evidence/index.d.ts +5 -0
  751. package/src/testing-evidence/index.js +9 -0
  752. package/src/testing-evidence/index.js.map +1 -0
  753. package/src/testing-evidence/quarantine.d.ts +48 -0
  754. package/src/testing-evidence/quarantine.js +253 -0
  755. package/src/testing-evidence/quarantine.js.map +1 -0
  756. package/src/testing-evidence/result.d.ts +108 -0
  757. package/src/testing-evidence/result.js +571 -0
  758. package/src/testing-evidence/result.js.map +1 -0
  759. package/src/testing-evidence/runner-adapter.d.ts +51 -0
  760. package/src/testing-evidence/runner-adapter.js +288 -0
  761. package/src/testing-evidence/runner-adapter.js.map +1 -0
  762. package/src/testing-evidence/sensitive-artifacts.d.ts +13 -0
  763. package/src/testing-evidence/sensitive-artifacts.js +93 -0
  764. package/src/testing-evidence/sensitive-artifacts.js.map +1 -0
  765. package/src/work-markers/work-markers.js +4 -3
  766. package/src/work-markers/work-markers.js.map +1 -1
  767. package/src/workload-roles/account-baseline.d.ts +132 -0
  768. package/src/workload-roles/account-baseline.js +743 -0
  769. package/src/workload-roles/account-baseline.js.map +1 -0
  770. package/src/workload-roles/authority.d.ts +38 -0
  771. package/src/workload-roles/authority.js +156 -0
  772. package/src/workload-roles/authority.js.map +1 -0
  773. package/src/workload-roles/aws-adapter.d.ts +99 -0
  774. package/src/workload-roles/aws-adapter.js +416 -0
  775. package/src/workload-roles/aws-adapter.js.map +1 -0
  776. package/src/workload-roles/aws-internal-handler.d.ts +27 -0
  777. package/src/workload-roles/aws-internal-handler.js +58 -0
  778. package/src/workload-roles/aws-internal-handler.js.map +1 -0
  779. package/src/workload-roles/aws-s3-state.d.ts +52 -0
  780. package/src/workload-roles/aws-s3-state.js +164 -0
  781. package/src/workload-roles/aws-s3-state.js.map +1 -0
  782. package/src/workload-roles/aws-sdk-control-plane.d.ts +12 -0
  783. package/src/workload-roles/aws-sdk-control-plane.js +291 -0
  784. package/src/workload-roles/aws-sdk-control-plane.js.map +1 -0
  785. package/src/workload-roles/boundary.d.ts +33 -0
  786. package/src/workload-roles/boundary.js +130 -0
  787. package/src/workload-roles/boundary.js.map +1 -0
  788. package/src/workload-roles/convergence.d.ts +66 -0
  789. package/src/workload-roles/convergence.js +186 -0
  790. package/src/workload-roles/convergence.js.map +1 -0
  791. package/src/workload-roles/effective-policy.d.ts +51 -0
  792. package/src/workload-roles/effective-policy.js +183 -0
  793. package/src/workload-roles/effective-policy.js.map +1 -0
  794. package/src/workload-roles/handler.d.ts +43 -0
  795. package/src/workload-roles/handler.js +130 -0
  796. package/src/workload-roles/handler.js.map +1 -0
  797. package/src/workload-roles/history.d.ts +47 -0
  798. package/src/workload-roles/history.js +324 -0
  799. package/src/workload-roles/history.js.map +1 -0
  800. package/src/workload-roles/index.d.ts +17 -0
  801. package/src/workload-roles/index.js +21 -0
  802. package/src/workload-roles/index.js.map +1 -0
  803. package/src/workload-roles/injection.d.ts +119 -0
  804. package/src/workload-roles/injection.js +495 -0
  805. package/src/workload-roles/injection.js.map +1 -0
  806. package/src/workload-roles/manifest.d.ts +54 -0
  807. package/src/workload-roles/manifest.js +343 -0
  808. package/src/workload-roles/manifest.js.map +1 -0
  809. package/src/workload-roles/provisioner.d.ts +70 -0
  810. package/src/workload-roles/provisioner.js +231 -0
  811. package/src/workload-roles/provisioner.js.map +1 -0
  812. package/src/workload-roles/registration.d.ts +101 -0
  813. package/src/workload-roles/registration.js +457 -0
  814. package/src/workload-roles/registration.js.map +1 -0
  815. package/src/workload-roles/stage-boundary.d.ts +31 -0
  816. package/src/workload-roles/stage-boundary.js +208 -0
  817. package/src/workload-roles/stage-boundary.js.map +1 -0
  818. package/src/workload-roles/standard-slice.d.ts +54 -0
  819. package/src/workload-roles/standard-slice.js +252 -0
  820. package/src/workload-roles/standard-slice.js.map +1 -0
  821. package/migrations/standard-pre-v1-to-v1.md +0 -11
  822. package/src/foundation/aurora-logical-database.d.ts +0 -76
  823. package/src/foundation/aurora-logical-database.js +0 -419
  824. package/src/foundation/aurora-logical-database.js.map +0 -1
@@ -0,0 +1,993 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ApiContractModelError = exports.API_CONTRACT_JSON_TYPES = exports.API_CONTRACT_HTTP_METHODS = exports.API_CONTRACT_AUTHENTICATION_MODES = exports.API_CONTRACT_HTTP_HEADER_VALUE_PATTERN = exports.API_CONTRACT_HTTP_HEADER_VALUE_MAX_LENGTH = exports.API_CONTRACT_HTTP_HEADER_VALUE_FORMAT = exports.API_CONTRACT_RESPONSE_PROFILE = exports.API_CONTRACT_JSON_SCHEMA_DIALECT = exports.API_CONTRACT_BASELINE_KIND = exports.API_CONTRACT_BASELINE_SCHEMA_VERSION = void 0;
4
+ exports.normalizeApiContractBaseline = normalizeApiContractBaseline;
5
+ exports.createApiContractBaseline = createApiContractBaseline;
6
+ exports.canonicalApiContractBaselineJson = canonicalApiContractBaselineJson;
7
+ exports.digestApiContractBaseline = digestApiContractBaseline;
8
+ const node_crypto_1 = require("node:crypto");
9
+ exports.API_CONTRACT_BASELINE_SCHEMA_VERSION = 1;
10
+ exports.API_CONTRACT_BASELINE_KIND = 'api-contract-baseline';
11
+ exports.API_CONTRACT_JSON_SCHEMA_DIALECT = 'https://json-schema.org/draft/2020-12/schema';
12
+ exports.API_CONTRACT_RESPONSE_PROFILE = 'ebk-app-v1';
13
+ exports.API_CONTRACT_HTTP_HEADER_VALUE_FORMAT = 'ebk-http-header-value';
14
+ exports.API_CONTRACT_HTTP_HEADER_VALUE_MAX_LENGTH = 8 * 1024;
15
+ exports.API_CONTRACT_HTTP_HEADER_VALUE_PATTERN = '^[!-~](?:[ -~]*[!-~])?(?![\\s\\S])';
16
+ exports.API_CONTRACT_AUTHENTICATION_MODES = [
17
+ 'anonymous',
18
+ 'customer',
19
+ 'internal',
20
+ 'operator',
21
+ 'product-agent',
22
+ ];
23
+ exports.API_CONTRACT_HTTP_METHODS = [
24
+ 'DELETE',
25
+ 'GET',
26
+ 'PATCH',
27
+ 'POST',
28
+ 'PUT',
29
+ ];
30
+ exports.API_CONTRACT_JSON_TYPES = [
31
+ 'array',
32
+ 'boolean',
33
+ 'integer',
34
+ 'null',
35
+ 'number',
36
+ 'object',
37
+ 'string',
38
+ ];
39
+ class ApiContractModelError extends Error {
40
+ classification;
41
+ pointer;
42
+ constructor(classification, pointer, message) {
43
+ super(`${pointer}: ${message}`);
44
+ this.classification = classification;
45
+ this.pointer = pointer;
46
+ this.name = 'ApiContractModelError';
47
+ }
48
+ }
49
+ exports.ApiContractModelError = ApiContractModelError;
50
+ const EXACT_SEMANTIC_VERSION_PATTERN = /^(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)$/;
51
+ const SLICE_PATTERN = /^[a-z][a-z0-9-]{0,62}$/;
52
+ const OPERATION_ID_PATTERN = /^[a-z][a-z0-9-]*\.[a-z][a-z0-9.-]*$/;
53
+ const FEATURE_PATTERN = /^[a-z][a-z0-9-]{0,62}$/;
54
+ const ACTION_PATTERN = /^[a-z][a-z0-9-]{0,62}:[a-z][a-z0-9-]{0,62}$/;
55
+ const PROBLEM_CODE_PATTERN = /^[a-z][a-z0-9_]{2,63}$/;
56
+ const FRAMEWORK_PROBLEM_CODES = new Set([
57
+ 'internal_error',
58
+ 'invalid_request',
59
+ 'method_not_allowed',
60
+ ]);
61
+ const SCHEMA_PROPERTY_PATTERN = /^[A-Za-z_][A-Za-z0-9_.-]{0,127}$/;
62
+ const RESERVED_SCHEMA_PROPERTY_NAMES = new Set([
63
+ '__proto__',
64
+ 'constructor',
65
+ 'prototype',
66
+ ]);
67
+ const RESERVED_REQUEST_HEADERS = new Set([
68
+ 'authorization',
69
+ 'content-length',
70
+ 'content-type',
71
+ 'cookie',
72
+ 'host',
73
+ 'idempotency-key',
74
+ 'if-match',
75
+ 'proxy-authorization',
76
+ 'set-cookie',
77
+ 'traceparent',
78
+ 'tracestate',
79
+ 'x-api-key',
80
+ 'x-causation-id',
81
+ 'x-correlation-id',
82
+ 'x-request-id',
83
+ ]);
84
+ const MAXIMUM_PAGINATION_CURSOR_LENGTH = 4096;
85
+ const BOUNDED_TOKEN_PATTERN = /^[A-Za-z0-9][A-Za-z0-9._:/@-]{0,255}$/;
86
+ const ROUTE_PATTERN = /^\/(?:[A-Za-z0-9._~-]+|\{[a-z][A-Za-z0-9]*\})(?:\/(?:[A-Za-z0-9._~-]+|\{[a-z][A-Za-z0-9]*\}))*$/;
87
+ const HTTP_HEADER_STRING_SCHEMA_KEYS = new Set([
88
+ '$schema',
89
+ 'enum',
90
+ 'format',
91
+ 'maxLength',
92
+ 'minLength',
93
+ 'pattern',
94
+ 'type',
95
+ ]);
96
+ function isCanonicalHttpHeaderValue(value) {
97
+ if (value.length < 1 ||
98
+ value.length > exports.API_CONTRACT_HTTP_HEADER_VALUE_MAX_LENGTH) {
99
+ return false;
100
+ }
101
+ for (let index = 0; index < value.length; index += 1) {
102
+ const code = value.charCodeAt(index);
103
+ if (code < (index === 0 || index === value.length - 1 ? 0x21 : 0x20) ||
104
+ code > 0x7e) {
105
+ return false;
106
+ }
107
+ }
108
+ return true;
109
+ }
110
+ const ALLOWED_SCHEMA_KEYS = new Set([
111
+ '$schema',
112
+ 'additionalProperties',
113
+ 'const',
114
+ 'description',
115
+ 'enum',
116
+ 'format',
117
+ 'items',
118
+ 'maxItems',
119
+ 'maxLength',
120
+ 'maximum',
121
+ 'minItems',
122
+ 'minLength',
123
+ 'minimum',
124
+ 'oneOf',
125
+ 'properties',
126
+ 'required',
127
+ 'type',
128
+ ]);
129
+ const ALLOWED_ONE_OF_SIBLING_KEYS = new Set([
130
+ '$schema',
131
+ 'description',
132
+ 'oneOf',
133
+ ]);
134
+ function fail(pointer, message, classification = 'api-contract-baseline-invalid') {
135
+ throw new ApiContractModelError(classification, pointer, message);
136
+ }
137
+ function isRecord(value) {
138
+ if (value === null || typeof value !== 'object' || Array.isArray(value)) {
139
+ return false;
140
+ }
141
+ const prototype = Object.getPrototypeOf(value);
142
+ return prototype === Object.prototype || prototype === null;
143
+ }
144
+ function pointerToken(value) {
145
+ return value.replace(/~/g, '~0').replace(/\//g, '~1');
146
+ }
147
+ function ownKeyPointerToken(value) {
148
+ return pointerToken(typeof value === 'symbol' ? value.toString() : String(value));
149
+ }
150
+ function requireRecord(value, pointer) {
151
+ if (!isRecord(value)) {
152
+ fail(pointer, 'must be a plain or null-prototype object');
153
+ }
154
+ return value;
155
+ }
156
+ function rejectUnknown(value, allowed, pointer, optional = []) {
157
+ const allowedSet = new Set(allowed);
158
+ for (const key of Reflect.ownKeys(value)) {
159
+ if (typeof key !== 'string' || !allowedSet.has(key)) {
160
+ fail(`${pointer}/${ownKeyPointerToken(key)}`, 'is not a supported property');
161
+ }
162
+ const descriptor = Object.getOwnPropertyDescriptor(value, key);
163
+ if (!descriptor?.enumerable ||
164
+ !Object.prototype.hasOwnProperty.call(descriptor, 'value')) {
165
+ fail(`${pointer}/${ownKeyPointerToken(key)}`, 'must be an enumerable data property');
166
+ }
167
+ }
168
+ const optionalSet = new Set(optional);
169
+ for (const key of allowed) {
170
+ if (!Object.prototype.hasOwnProperty.call(value, key) && key in value) {
171
+ fail(`${pointer}/${pointerToken(key)}`, 'must not be inherited');
172
+ }
173
+ if (!optionalSet.has(key) &&
174
+ !Object.prototype.hasOwnProperty.call(value, key)) {
175
+ fail(`${pointer}/${pointerToken(key)}`, 'is required');
176
+ }
177
+ }
178
+ }
179
+ function requireString(value, pointer, options = {}) {
180
+ if (typeof value !== 'string' ||
181
+ value.length === 0 ||
182
+ value !== value.trim() ||
183
+ value.length > (options.maxLength ?? 256) ||
184
+ (options.pattern && !options.pattern.test(value))) {
185
+ fail(pointer, 'must be a bounded non-empty string in the required format');
186
+ }
187
+ return value;
188
+ }
189
+ function requireInteger(value, pointer, minimum, maximum) {
190
+ if (!Number.isSafeInteger(value) ||
191
+ value < minimum ||
192
+ value > maximum) {
193
+ fail(pointer, `must be an integer from ${minimum} through ${maximum}`);
194
+ }
195
+ return value;
196
+ }
197
+ function requireFiniteNumber(value, pointer) {
198
+ if (typeof value !== 'number' || !Number.isFinite(value)) {
199
+ fail(pointer, 'must be a finite number');
200
+ }
201
+ return value;
202
+ }
203
+ function requireUniqueStrings(value, pointer, pattern) {
204
+ if (!Array.isArray(value))
205
+ fail(pointer, 'must be an array');
206
+ const result = value.map((entry, index) => requireString(entry, `${pointer}/${index}`, { pattern }));
207
+ if (new Set(result).size !== result.length) {
208
+ fail(pointer, 'must not contain duplicate values');
209
+ }
210
+ return result.sort(compareStrings);
211
+ }
212
+ function compareStrings(left, right) {
213
+ return left < right ? -1 : left > right ? 1 : 0;
214
+ }
215
+ function containsAsciiControlOrSpace(value) {
216
+ for (const character of value) {
217
+ const codePoint = character.codePointAt(0);
218
+ if (codePoint !== undefined && (codePoint <= 0x20 || codePoint === 0x7f)) {
219
+ return true;
220
+ }
221
+ }
222
+ return false;
223
+ }
224
+ function safeObjectFromEntries(entries) {
225
+ return Object.assign(Object.create(null), Object.fromEntries(entries));
226
+ }
227
+ function compareJsonPrimitives(left, right) {
228
+ return compareStrings(JSON.stringify(left), JSON.stringify(right));
229
+ }
230
+ function normalizeSchemaType(value, pointer) {
231
+ if (typeof value === 'string') {
232
+ if (!exports.API_CONTRACT_JSON_TYPES.includes(value)) {
233
+ fail(pointer, 'contains an unsupported JSON Schema type');
234
+ }
235
+ return value;
236
+ }
237
+ if (!Array.isArray(value) || value.length < 2) {
238
+ fail(pointer, 'must be a supported type or a union of at least two types');
239
+ }
240
+ const result = value.map((entry, index) => {
241
+ if (typeof entry !== 'string' ||
242
+ !exports.API_CONTRACT_JSON_TYPES.includes(entry)) {
243
+ fail(`${pointer}/${index}`, 'contains an unsupported JSON Schema type');
244
+ }
245
+ return entry;
246
+ });
247
+ if (new Set(result).size !== result.length) {
248
+ fail(pointer, 'must not repeat a JSON Schema type');
249
+ }
250
+ return result.sort(compareStrings);
251
+ }
252
+ function normalizeSchema(value, pointer, options = {}) {
253
+ const input = requireRecord(value, pointer);
254
+ for (const key of Reflect.ownKeys(input)) {
255
+ if (typeof key !== 'string' ||
256
+ (!ALLOWED_SCHEMA_KEYS.has(key) &&
257
+ !(key === 'pattern' && options.allowCanonicalHeaderPattern))) {
258
+ fail(`${pointer}/${ownKeyPointerToken(key)}`, 'is outside the supported compatibility profile', 'api-contract-schema-unsupported');
259
+ }
260
+ }
261
+ if (input.oneOf !== undefined) {
262
+ for (const key of Reflect.ownKeys(input)) {
263
+ if (typeof key !== 'string' || !ALLOWED_ONE_OF_SIBLING_KEYS.has(key)) {
264
+ fail(`${pointer}/${ownKeyPointerToken(key)}`, 'cannot combine oneOf with sibling validation semantics in the supported profile', 'api-contract-schema-unsupported');
265
+ }
266
+ }
267
+ }
268
+ const type = input.type === undefined
269
+ ? undefined
270
+ : normalizeSchemaType(input.type, `${pointer}/type`);
271
+ const types = new Set(type === undefined ? [] : Array.isArray(type) ? type : [type]);
272
+ const result = {
273
+ ...(type === undefined ? {} : { type }),
274
+ };
275
+ if (input.$schema !== undefined) {
276
+ if (input.$schema !== exports.API_CONTRACT_JSON_SCHEMA_DIALECT) {
277
+ fail(`${pointer}/$schema`, `must equal ${exports.API_CONTRACT_JSON_SCHEMA_DIALECT}`);
278
+ }
279
+ result.$schema = exports.API_CONTRACT_JSON_SCHEMA_DIALECT;
280
+ }
281
+ if (input.additionalProperties !== undefined) {
282
+ if (typeof input.additionalProperties !== 'boolean' &&
283
+ !isRecord(input.additionalProperties)) {
284
+ fail(`${pointer}/additionalProperties`, 'must be a boolean or supported schema');
285
+ }
286
+ result.additionalProperties =
287
+ typeof input.additionalProperties === 'boolean'
288
+ ? input.additionalProperties
289
+ : normalizeSchema(input.additionalProperties, `${pointer}/additionalProperties`, options);
290
+ }
291
+ if (input.const !== undefined) {
292
+ if (input.const !== null &&
293
+ typeof input.const !== 'string' &&
294
+ typeof input.const !== 'boolean' &&
295
+ (typeof input.const !== 'number' || !Number.isFinite(input.const))) {
296
+ fail(`${pointer}/const`, 'must be a JSON primitive');
297
+ }
298
+ result.const = input.const;
299
+ }
300
+ if (input.description !== undefined) {
301
+ result.description = requireString(input.description, `${pointer}/description`, { maxLength: 1024 });
302
+ }
303
+ if (input.enum !== undefined) {
304
+ if (!Array.isArray(input.enum) || input.enum.length === 0) {
305
+ fail(`${pointer}/enum`, 'must be a non-empty array');
306
+ }
307
+ const values = input.enum.map((entry, index) => {
308
+ if (entry !== null &&
309
+ typeof entry !== 'string' &&
310
+ typeof entry !== 'boolean' &&
311
+ (typeof entry !== 'number' || !Number.isFinite(entry))) {
312
+ fail(`${pointer}/enum/${index}`, 'must be a JSON primitive');
313
+ }
314
+ return entry;
315
+ });
316
+ const serialized = values.map((entry) => JSON.stringify(entry));
317
+ if (new Set(serialized).size !== values.length) {
318
+ fail(`${pointer}/enum`, 'must not contain duplicate values');
319
+ }
320
+ result.enum = values.sort(compareJsonPrimitives);
321
+ }
322
+ if (input.format !== undefined) {
323
+ result.format = requireString(input.format, `${pointer}/format`, {
324
+ maxLength: 256,
325
+ });
326
+ }
327
+ if (input.pattern !== undefined) {
328
+ if (!options.allowCanonicalHeaderPattern ||
329
+ input.pattern !== exports.API_CONTRACT_HTTP_HEADER_VALUE_PATTERN) {
330
+ fail(`${pointer}/pattern`, 'is outside the supported compatibility profile', 'api-contract-schema-unsupported');
331
+ }
332
+ result.pattern = exports.API_CONTRACT_HTTP_HEADER_VALUE_PATTERN;
333
+ }
334
+ for (const member of [
335
+ 'maxItems',
336
+ 'maxLength',
337
+ 'minItems',
338
+ 'minLength',
339
+ ]) {
340
+ if (input[member] !== undefined) {
341
+ result[member] = requireInteger(input[member], `${pointer}/${member}`, 0, Number.MAX_SAFE_INTEGER);
342
+ }
343
+ }
344
+ for (const member of ['maximum', 'minimum']) {
345
+ if (input[member] !== undefined) {
346
+ result[member] = requireFiniteNumber(input[member], `${pointer}/${member}`);
347
+ }
348
+ }
349
+ if (result.minimum !== undefined &&
350
+ result.maximum !== undefined &&
351
+ result.minimum > result.maximum) {
352
+ fail(pointer, 'minimum must not exceed maximum');
353
+ }
354
+ if (result.minLength !== undefined &&
355
+ result.maxLength !== undefined &&
356
+ result.minLength > result.maxLength) {
357
+ fail(pointer, 'minLength must not exceed maxLength');
358
+ }
359
+ if (result.minItems !== undefined &&
360
+ result.maxItems !== undefined &&
361
+ result.minItems > result.maxItems) {
362
+ fail(pointer, 'minItems must not exceed maxItems');
363
+ }
364
+ if (input.items !== undefined) {
365
+ if (!types.has('array')) {
366
+ fail(`${pointer}/items`, 'requires the array type');
367
+ }
368
+ result.items = normalizeSchema(input.items, `${pointer}/items`, options);
369
+ }
370
+ if (input.oneOf !== undefined) {
371
+ if (!Array.isArray(input.oneOf) || input.oneOf.length < 2) {
372
+ fail(`${pointer}/oneOf`, 'must contain at least two schemas');
373
+ }
374
+ result.oneOf = input.oneOf
375
+ .map((entry, index) => normalizeSchema(entry, `${pointer}/oneOf/${index}`, options))
376
+ .sort((left, right) => compareStrings(JSON.stringify(left), JSON.stringify(right)));
377
+ }
378
+ if (input.properties !== undefined) {
379
+ if (!types.has('object')) {
380
+ fail(`${pointer}/properties`, 'requires the object type');
381
+ }
382
+ const properties = requireRecord(input.properties, `${pointer}/properties`);
383
+ const propertyNames = Reflect.ownKeys(properties).map((name) => {
384
+ if (typeof name !== 'string') {
385
+ fail(`${pointer}/properties/${ownKeyPointerToken(name)}`, 'must use a string property name');
386
+ }
387
+ return name;
388
+ });
389
+ result.properties = safeObjectFromEntries(propertyNames.sort(compareStrings).map((name) => {
390
+ requireString(name, `${pointer}/properties/${pointerToken(name)}`, {
391
+ pattern: SCHEMA_PROPERTY_PATTERN,
392
+ });
393
+ if (RESERVED_SCHEMA_PROPERTY_NAMES.has(name)) {
394
+ fail(`${pointer}/properties/${pointerToken(name)}`, 'uses a reserved object property name');
395
+ }
396
+ return [
397
+ name,
398
+ normalizeSchema(properties[name], `${pointer}/properties/${pointerToken(name)}`, options),
399
+ ];
400
+ }));
401
+ }
402
+ if (input.required !== undefined) {
403
+ if (!types.has('object')) {
404
+ fail(`${pointer}/required`, 'requires the object type');
405
+ }
406
+ const required = requireUniqueStrings(input.required, `${pointer}/required`, SCHEMA_PROPERTY_PATTERN);
407
+ const properties = new Set(Object.keys(result.properties ?? {}));
408
+ for (const member of required) {
409
+ if (!properties.has(member)) {
410
+ fail(`${pointer}/required`, `references undeclared property ${member}`);
411
+ }
412
+ }
413
+ result.required = required;
414
+ }
415
+ if (types.has('object') && result.additionalProperties === undefined) {
416
+ fail(`${pointer}/additionalProperties`, 'must explicitly declare object additional-property behavior');
417
+ }
418
+ if (result.const === undefined &&
419
+ result.oneOf === undefined &&
420
+ result.type === undefined) {
421
+ fail(pointer, 'must declare type, const, or oneOf in the supported profile');
422
+ }
423
+ return result;
424
+ }
425
+ function normalizeRequest(value, pointer) {
426
+ const input = requireRecord(value, pointer);
427
+ rejectUnknown(input, ['body', 'headers', 'maxBodyBytes', 'path', 'query'], pointer, ['body', 'headers', 'maxBodyBytes', 'path', 'query']);
428
+ const schemas = safeObjectFromEntries(['body', 'headers', 'path', 'query'].flatMap((member) => input[member] === undefined
429
+ ? []
430
+ : [
431
+ [
432
+ member,
433
+ normalizeSchema(input[member], `${pointer}/${member}`, {
434
+ allowCanonicalHeaderPattern: member === 'headers',
435
+ }),
436
+ ],
437
+ ]));
438
+ return {
439
+ ...schemas,
440
+ ...(input.maxBodyBytes === undefined
441
+ ? {}
442
+ : {
443
+ maxBodyBytes: requireInteger(input.maxBodyBytes, `${pointer}/maxBodyBytes`, 1, 256 * 1024),
444
+ }),
445
+ };
446
+ }
447
+ function validateTransportRequestSchema(schema, pointer, options) {
448
+ if (!schema)
449
+ return;
450
+ if (schema.type !== 'object' ||
451
+ schema.additionalProperties !== false ||
452
+ !schema.properties) {
453
+ fail(pointer, 'must be a closed object schema');
454
+ }
455
+ for (const [name, property] of Object.entries(schema.properties)) {
456
+ const scalar = ['boolean', 'integer', 'number', 'string'].includes(String(property.type));
457
+ const repeatedScalar = options.arrays &&
458
+ property.type === 'array' &&
459
+ property.items !== undefined &&
460
+ ['boolean', 'integer', 'number', 'string'].includes(String(property.items.type));
461
+ if (!scalar && !repeatedScalar) {
462
+ fail(`${pointer}/properties/${pointerToken(name)}`, `must use a transport scalar${options.arrays ? ' or an array of transport scalars' : ''}`);
463
+ }
464
+ if (property.type === 'string' &&
465
+ options.canonicalHeaderStrings &&
466
+ (property.format !== exports.API_CONTRACT_HTTP_HEADER_VALUE_FORMAT ||
467
+ property.pattern !== exports.API_CONTRACT_HTTP_HEADER_VALUE_PATTERN ||
468
+ Object.keys(property).some((key) => !HTTP_HEADER_STRING_SCHEMA_KEYS.has(key)) ||
469
+ property.enum?.some((value) => typeof value !== 'string' || !isCanonicalHttpHeaderValue(value)) ||
470
+ !Number.isSafeInteger(property.minLength) ||
471
+ property.minLength < 1 ||
472
+ !Number.isSafeInteger(property.maxLength) ||
473
+ property.maxLength >
474
+ exports.API_CONTRACT_HTTP_HEADER_VALUE_MAX_LENGTH)) {
475
+ fail(`${pointer}/properties/${pointerToken(name)}`, 'must use the canonical EBK HTTP-header string profile');
476
+ }
477
+ if (property.type === 'string' &&
478
+ options.nonEmptyStrings &&
479
+ !((Number.isSafeInteger(property.minLength) &&
480
+ property.minLength >= 1) ||
481
+ property.format === 'uuid' ||
482
+ (typeof property.const === 'string' && property.const.length > 0) ||
483
+ (Array.isArray(property.enum) &&
484
+ property.enum.length > 0 &&
485
+ property.enum.every((member) => typeof member === 'string' && member.length > 0)))) {
486
+ fail(`${pointer}/properties/${pointerToken(name)}`, 'must exclude an empty path string');
487
+ }
488
+ if (repeatedScalar &&
489
+ options.nonEmptyArrays &&
490
+ (!Number.isSafeInteger(property.minItems) ||
491
+ property.minItems < 1)) {
492
+ fail(`${pointer}/properties/${pointerToken(name)}/minItems`, 'must require at least one query-array item');
493
+ }
494
+ }
495
+ }
496
+ function schemaProperties(schema, pointer) {
497
+ if (!schema)
498
+ return undefined;
499
+ if (schema.type !== 'object' ||
500
+ schema.additionalProperties !== false ||
501
+ !schema.properties) {
502
+ fail(pointer, 'must be a closed object schema');
503
+ }
504
+ return schema.properties;
505
+ }
506
+ function sameStrings(left, right) {
507
+ return ([...left].sort(compareStrings).join('\u0000') ===
508
+ [...right].sort(compareStrings).join('\u0000'));
509
+ }
510
+ function validateCursorSchema(schema, pointer) {
511
+ if (schema?.type !== 'string' ||
512
+ !Number.isSafeInteger(schema.maxLength) ||
513
+ schema.maxLength < 1 ||
514
+ schema.maxLength > MAXIMUM_PAGINATION_CURSOR_LENGTH) {
515
+ fail(pointer, `must be a string schema with maxLength from 1 through ${MAXIMUM_PAGINATION_CURSOR_LENGTH}`);
516
+ }
517
+ }
518
+ function validatePaginationSchemas(pagination, request, response, pointer) {
519
+ const queryProperties = schemaProperties(request?.query, `${pointer}/request/query`);
520
+ if (!queryProperties) {
521
+ fail(`${pointer}/request/query`, 'is required for a paginated operation');
522
+ }
523
+ const cursorPointer = `${pointer}/request/query/properties/${pointerToken(pagination.cursorQueryParameter)}`;
524
+ validateCursorSchema(queryProperties[pagination.cursorQueryParameter], cursorPointer);
525
+ const cursorQuerySchema = queryProperties[pagination.cursorQueryParameter];
526
+ const limitPointer = `${pointer}/request/query/properties/${pointerToken(pagination.limitQueryParameter)}`;
527
+ const limitSchema = queryProperties[pagination.limitQueryParameter];
528
+ if (limitSchema?.type !== 'integer') {
529
+ fail(limitPointer, 'must be an integer schema');
530
+ }
531
+ if (limitSchema.minimum !== pagination.minimumLimit ||
532
+ limitSchema.maximum !== pagination.maximumLimit) {
533
+ fail(limitPointer, 'minimum and maximum must equal the pagination limit bounds');
534
+ }
535
+ const responseProperties = schemaProperties(response.body, `${pointer}/response/body`);
536
+ const responseCursorPointer = `${pointer}/response/body/properties/${pointerToken(pagination.cursorResponseField)}`;
537
+ const cursorResponseSchema = responseProperties?.[pagination.cursorResponseField];
538
+ validateCursorSchema(cursorResponseSchema, responseCursorPointer);
539
+ if (JSON.stringify(cursorQuerySchema) !== JSON.stringify(cursorResponseSchema)) {
540
+ fail(responseCursorPointer, 'must use the same bounded string schema as the request cursor');
541
+ }
542
+ const requestRequired = new Set(request?.query?.required ?? []);
543
+ if (requestRequired.has(pagination.cursorQueryParameter)) {
544
+ fail(cursorPointer, 'must be optional at the transport boundary');
545
+ }
546
+ if (requestRequired.has(pagination.limitQueryParameter)) {
547
+ fail(limitPointer, 'must be optional at the transport boundary');
548
+ }
549
+ if (new Set(response.body.required ?? []).has(pagination.cursorResponseField)) {
550
+ fail(responseCursorPointer, 'must be optional at the transport boundary');
551
+ }
552
+ }
553
+ function normalizeResponse(value, pointer) {
554
+ const input = requireRecord(value, pointer);
555
+ rejectUnknown(input, ['body', 'status'], pointer);
556
+ const status = requireInteger(input.status, `${pointer}/status`, 200, 299);
557
+ if (status === 204 || status === 205) {
558
+ fail(`${pointer}/status`, 'must declare a JSON-bearing success status other than 204 or 205');
559
+ }
560
+ return {
561
+ body: normalizeSchema(input.body, `${pointer}/body`),
562
+ status,
563
+ };
564
+ }
565
+ function normalizeProblems(value, pointer) {
566
+ if (!Array.isArray(value))
567
+ fail(pointer, 'must be an array');
568
+ const codes = new Set();
569
+ const types = new Set();
570
+ const problems = value.map((entry, index) => {
571
+ const itemPointer = `${pointer}/${index}`;
572
+ const input = requireRecord(entry, itemPointer);
573
+ rejectUnknown(input, ['code', 'details', 'message', 'retryable', 'status', 'type'], itemPointer, ['details']);
574
+ const code = requireString(input.code, `${itemPointer}/code`, {
575
+ pattern: PROBLEM_CODE_PATTERN,
576
+ });
577
+ if (FRAMEWORK_PROBLEM_CODES.has(code)) {
578
+ fail(`${itemPointer}/code`, 'is reserved by the framework');
579
+ }
580
+ const type = requireString(input.type, `${itemPointer}/type`);
581
+ if (containsAsciiControlOrSpace(type)) {
582
+ fail(`${itemPointer}/type`, 'must be an HTTPS problem type URL');
583
+ }
584
+ try {
585
+ const parsed = new URL(type);
586
+ if (parsed.protocol !== 'https:' ||
587
+ parsed.username !== '' ||
588
+ parsed.password !== '' ||
589
+ parsed.hash !== '') {
590
+ fail(`${itemPointer}/type`, 'must be an HTTPS problem type URL');
591
+ }
592
+ }
593
+ catch {
594
+ fail(`${itemPointer}/type`, 'must be an HTTPS problem type URL');
595
+ }
596
+ if (codes.has(code) || types.has(type)) {
597
+ fail(itemPointer, 'must not duplicate a problem code or type');
598
+ }
599
+ codes.add(code);
600
+ types.add(type);
601
+ if (typeof input.retryable !== 'boolean') {
602
+ fail(`${itemPointer}/retryable`, 'must be a boolean');
603
+ }
604
+ const details = input.details === undefined
605
+ ? undefined
606
+ : normalizeSchema(input.details, `${itemPointer}/details`);
607
+ if (details &&
608
+ (details.type !== 'object' || details.additionalProperties !== false)) {
609
+ fail(`${itemPointer}/details`, 'must be a closed object schema when declared');
610
+ }
611
+ return {
612
+ code,
613
+ ...(details === undefined ? {} : { details }),
614
+ message: requireString(input.message, `${itemPointer}/message`, {
615
+ maxLength: 256,
616
+ }),
617
+ retryable: input.retryable,
618
+ status: requireInteger(input.status, `${itemPointer}/status`, 400, 599),
619
+ type,
620
+ };
621
+ });
622
+ return problems.sort((left, right) => compareStrings(left.code, right.code));
623
+ }
624
+ function normalizeIdempotency(value, pointer) {
625
+ const input = requireRecord(value, pointer);
626
+ rejectUnknown(input, [
627
+ 'concurrentDuplicate',
628
+ 'keyHeader',
629
+ 'maxKeyLength',
630
+ 'mismatch',
631
+ 'replay',
632
+ 'required',
633
+ 'requestFingerprint',
634
+ 'retentionSeconds',
635
+ 'scope',
636
+ ], pointer);
637
+ for (const [member, expected] of [
638
+ ['keyHeader', 'idempotency-key'],
639
+ ['mismatch', 'conflict'],
640
+ ['replay', 'same-response'],
641
+ ['requestFingerprint', 'canonical-json'],
642
+ ['scope', 'principal-operation'],
643
+ ]) {
644
+ if (input[member] !== expected) {
645
+ fail(`${pointer}/${member}`, `must equal ${expected}`);
646
+ }
647
+ }
648
+ if (!['conflict', 'wait'].includes(input.concurrentDuplicate)) {
649
+ fail(`${pointer}/concurrentDuplicate`, 'must equal conflict or wait');
650
+ }
651
+ if (typeof input.required !== 'boolean') {
652
+ fail(`${pointer}/required`, 'must be a boolean');
653
+ }
654
+ return {
655
+ concurrentDuplicate: input.concurrentDuplicate,
656
+ keyHeader: 'idempotency-key',
657
+ maxKeyLength: requireInteger(input.maxKeyLength, `${pointer}/maxKeyLength`, 1, 512),
658
+ mismatch: 'conflict',
659
+ replay: 'same-response',
660
+ required: input.required,
661
+ requestFingerprint: 'canonical-json',
662
+ retentionSeconds: requireInteger(input.retentionSeconds, `${pointer}/retentionSeconds`, 1, Number.MAX_SAFE_INTEGER),
663
+ scope: 'principal-operation',
664
+ };
665
+ }
666
+ function normalizePagination(value, pointer) {
667
+ const input = requireRecord(value, pointer);
668
+ rejectUnknown(input, [
669
+ 'cursorQueryParameter',
670
+ 'cursorResponseField',
671
+ 'defaultLimit',
672
+ 'expirySeconds',
673
+ 'limitQueryParameter',
674
+ 'maximumLimit',
675
+ 'minimumLimit',
676
+ 'stability',
677
+ ], pointer, ['expirySeconds']);
678
+ if (!['eventual', 'snapshot'].includes(input.stability)) {
679
+ fail(`${pointer}/stability`, 'must equal eventual or snapshot');
680
+ }
681
+ const cursorQueryParameter = requireString(input.cursorQueryParameter, `${pointer}/cursorQueryParameter`, { pattern: BOUNDED_TOKEN_PATTERN });
682
+ const limitQueryParameter = requireString(input.limitQueryParameter, `${pointer}/limitQueryParameter`, { pattern: BOUNDED_TOKEN_PATTERN });
683
+ if (cursorQueryParameter === limitQueryParameter) {
684
+ fail(`${pointer}/limitQueryParameter`, 'must differ from cursorQueryParameter');
685
+ }
686
+ const minimumLimit = requireInteger(input.minimumLimit, `${pointer}/minimumLimit`, 1, Number.MAX_SAFE_INTEGER);
687
+ const defaultLimit = requireInteger(input.defaultLimit, `${pointer}/defaultLimit`, 1, Number.MAX_SAFE_INTEGER);
688
+ const maximumLimit = requireInteger(input.maximumLimit, `${pointer}/maximumLimit`, 1, Number.MAX_SAFE_INTEGER);
689
+ if (minimumLimit > defaultLimit || defaultLimit > maximumLimit) {
690
+ fail(pointer, 'minimumLimit, defaultLimit, and maximumLimit must be ordered');
691
+ }
692
+ return {
693
+ cursorQueryParameter,
694
+ cursorResponseField: requireString(input.cursorResponseField, `${pointer}/cursorResponseField`, { pattern: BOUNDED_TOKEN_PATTERN }),
695
+ defaultLimit,
696
+ ...(input.expirySeconds === undefined
697
+ ? {}
698
+ : {
699
+ expirySeconds: requireInteger(input.expirySeconds, `${pointer}/expirySeconds`, 1, Number.MAX_SAFE_INTEGER),
700
+ }),
701
+ limitQueryParameter,
702
+ maximumLimit,
703
+ minimumLimit,
704
+ stability: input.stability,
705
+ };
706
+ }
707
+ function normalizeConditionalWrite(value, pointer) {
708
+ const input = requireRecord(value, pointer);
709
+ rejectUnknown(input, ['kind', 'requestHeader', 'required', 'responseHeader'], pointer);
710
+ if (input.kind !== 'etag')
711
+ fail(`${pointer}/kind`, 'must equal etag');
712
+ if (input.requestHeader !== 'if-match') {
713
+ fail(`${pointer}/requestHeader`, 'must equal if-match');
714
+ }
715
+ if (input.responseHeader !== 'etag') {
716
+ fail(`${pointer}/responseHeader`, 'must equal etag');
717
+ }
718
+ if (typeof input.required !== 'boolean') {
719
+ fail(`${pointer}/required`, 'must be a boolean');
720
+ }
721
+ return {
722
+ kind: 'etag',
723
+ requestHeader: 'if-match',
724
+ required: input.required,
725
+ responseHeader: 'etag',
726
+ };
727
+ }
728
+ function normalizeLifecycle(value, pointer) {
729
+ const input = requireRecord(value, pointer);
730
+ if (input.status === 'active') {
731
+ rejectUnknown(input, ['status'], pointer);
732
+ return { status: 'active' };
733
+ }
734
+ if (input.status !== 'deprecated') {
735
+ fail(`${pointer}/status`, 'must equal active or deprecated');
736
+ }
737
+ rejectUnknown(input, ['deprecation', 'status'], pointer);
738
+ const deprecation = requireRecord(input.deprecation, `${pointer}/deprecation`);
739
+ rejectUnknown(deprecation, [
740
+ 'earliestRemovalDate',
741
+ 'earliestRemovalVersion',
742
+ 'evidence',
743
+ 'firstDeprecatedVersion',
744
+ 'knownConsumers',
745
+ 'migration',
746
+ 'owner',
747
+ 'replacement',
748
+ ], `${pointer}/deprecation`, ['earliestRemovalDate', 'earliestRemovalVersion']);
749
+ const earliestRemovalDate = deprecation.earliestRemovalDate === undefined
750
+ ? undefined
751
+ : requireString(deprecation.earliestRemovalDate, `${pointer}/deprecation/earliestRemovalDate`, { pattern: /^\d{4}-\d{2}-\d{2}$/ });
752
+ if (earliestRemovalDate !== undefined &&
753
+ (!Number.isFinite(Date.parse(earliestRemovalDate)) ||
754
+ new Date(Date.parse(earliestRemovalDate)).toISOString().slice(0, 10) !==
755
+ earliestRemovalDate)) {
756
+ fail(`${pointer}/deprecation/earliestRemovalDate`, 'must be a valid YYYY-MM-DD date');
757
+ }
758
+ const earliestRemovalVersion = deprecation.earliestRemovalVersion === undefined
759
+ ? undefined
760
+ : requireString(deprecation.earliestRemovalVersion, `${pointer}/deprecation/earliestRemovalVersion`, { pattern: EXACT_SEMANTIC_VERSION_PATTERN });
761
+ if (earliestRemovalDate === undefined &&
762
+ earliestRemovalVersion === undefined) {
763
+ fail(`${pointer}/deprecation`, 'must declare earliestRemovalDate or earliestRemovalVersion');
764
+ }
765
+ const token = (member) => requireString(deprecation[member], `${pointer}/deprecation/${member}`, {
766
+ pattern: BOUNDED_TOKEN_PATTERN,
767
+ });
768
+ return {
769
+ deprecation: {
770
+ ...(earliestRemovalDate === undefined ? {} : { earliestRemovalDate }),
771
+ ...(earliestRemovalVersion === undefined
772
+ ? {}
773
+ : { earliestRemovalVersion }),
774
+ evidence: token('evidence'),
775
+ firstDeprecatedVersion: requireString(deprecation.firstDeprecatedVersion, `${pointer}/deprecation/firstDeprecatedVersion`, { pattern: EXACT_SEMANTIC_VERSION_PATTERN }),
776
+ knownConsumers: requireUniqueStrings(deprecation.knownConsumers, `${pointer}/deprecation/knownConsumers`, BOUNDED_TOKEN_PATTERN),
777
+ migration: token('migration'),
778
+ owner: token('owner'),
779
+ replacement: token('replacement'),
780
+ },
781
+ status: 'deprecated',
782
+ };
783
+ }
784
+ function normalizeOperation(value, pointer, slice) {
785
+ const input = requireRecord(value, pointer);
786
+ rejectUnknown(input, [
787
+ 'authentication',
788
+ 'authorizationActions',
789
+ 'conditionalWrite',
790
+ 'contractVersion',
791
+ 'feature',
792
+ 'idempotency',
793
+ 'lifecycle',
794
+ 'method',
795
+ 'operationId',
796
+ 'pagination',
797
+ 'path',
798
+ 'problems',
799
+ 'request',
800
+ 'response',
801
+ 'responseProfile',
802
+ 'slice',
803
+ 'summary',
804
+ ], pointer, ['conditionalWrite', 'idempotency', 'pagination', 'request']);
805
+ if (!exports.API_CONTRACT_AUTHENTICATION_MODES.includes(input.authentication)) {
806
+ fail(`${pointer}/authentication`, `must equal one of ${exports.API_CONTRACT_AUTHENTICATION_MODES.join(', ')}`);
807
+ }
808
+ if (!exports.API_CONTRACT_HTTP_METHODS.includes(input.method)) {
809
+ fail(`${pointer}/method`, `must equal one of ${exports.API_CONTRACT_HTTP_METHODS.join(', ')}`);
810
+ }
811
+ const operationId = requireString(input.operationId, `${pointer}/operationId`, { pattern: OPERATION_ID_PATTERN });
812
+ if (!operationId.startsWith(`${slice}.`)) {
813
+ fail(`${pointer}/operationId`, 'must be scoped to the owning Slice');
814
+ }
815
+ const path = requireString(input.path, `${pointer}/path`, {
816
+ maxLength: 512,
817
+ });
818
+ if (!ROUTE_PATTERN.test(path)) {
819
+ fail(`${pointer}/path`, 'must be an absolute route template without query or fragment text');
820
+ }
821
+ if (path.split('/').some((segment) => segment === '.' || segment === '..')) {
822
+ fail(`${pointer}/path`, 'must not contain URL dot segments');
823
+ }
824
+ const contractVersion = requireString(input.contractVersion, `${pointer}/contractVersion`, { pattern: EXACT_SEMANTIC_VERSION_PATTERN });
825
+ if (input.responseProfile !== exports.API_CONTRACT_RESPONSE_PROFILE) {
826
+ fail(`${pointer}/responseProfile`, `must equal ${exports.API_CONTRACT_RESPONSE_PROFILE}`);
827
+ }
828
+ const operationSlice = requireString(input.slice, `${pointer}/slice`, {
829
+ pattern: SLICE_PATTERN,
830
+ });
831
+ if (operationSlice !== slice) {
832
+ fail(`${pointer}/slice`, 'must equal the containing baseline Slice');
833
+ }
834
+ const authorizationActions = requireUniqueStrings(input.authorizationActions, `${pointer}/authorizationActions`, ACTION_PATTERN);
835
+ if (authorizationActions.some((action) => !action.startsWith(`${slice}:`))) {
836
+ fail(`${pointer}/authorizationActions`, 'must contain only actions owned by the containing Slice');
837
+ }
838
+ if (input.authentication === 'anonymous' && authorizationActions.length > 0) {
839
+ fail(`${pointer}/authorizationActions`, 'must be empty for anonymous operations');
840
+ }
841
+ if (input.authentication !== 'anonymous' &&
842
+ authorizationActions.length === 0) {
843
+ fail(`${pointer}/authorizationActions`, 'must contain at least one Slice-owned action for protected operations');
844
+ }
845
+ if (input.idempotency !== undefined &&
846
+ !['POST', 'PATCH'].includes(input.method)) {
847
+ fail(`${pointer}/idempotency`, 'is valid only for POST or PATCH operations');
848
+ }
849
+ if (input.conditionalWrite !== undefined &&
850
+ !['DELETE', 'PATCH', 'PUT'].includes(input.method)) {
851
+ fail(`${pointer}/conditionalWrite`, 'is valid only for DELETE, PATCH, or PUT operations');
852
+ }
853
+ const request = input.request === undefined
854
+ ? undefined
855
+ : normalizeRequest(input.request, `${pointer}/request`);
856
+ validateTransportRequestSchema(request?.path, `${pointer}/request/path`, {
857
+ arrays: false,
858
+ nonEmptyStrings: true,
859
+ });
860
+ validateTransportRequestSchema(request?.query, `${pointer}/request/query`, {
861
+ arrays: true,
862
+ nonEmptyArrays: true,
863
+ });
864
+ validateTransportRequestSchema(request?.headers, `${pointer}/request/headers`, { arrays: false, canonicalHeaderStrings: true });
865
+ const routeParameters = [...path.matchAll(/\{([^}]+)\}/g)].map((match) => match[1] ?? '');
866
+ const pathProperties = Object.keys(request?.path?.properties ?? {});
867
+ if (!sameStrings(routeParameters, pathProperties) ||
868
+ !sameStrings(routeParameters, request?.path?.required ?? [])) {
869
+ fail(`${pointer}/request/path`, 'must declare every route template parameter as required');
870
+ }
871
+ for (const name of Object.keys(request?.headers?.properties ?? {})) {
872
+ if (name !== name.toLowerCase() ||
873
+ RESERVED_REQUEST_HEADERS.has(name.toLowerCase()) ||
874
+ name.toLowerCase().startsWith('x-amz-')) {
875
+ fail(`${pointer}/request/headers/properties/${pointerToken(name)}`, 'must be lowercase and must not replace a framework-owned header');
876
+ }
877
+ }
878
+ if (request?.maxBodyBytes !== undefined && request.body === undefined) {
879
+ fail(`${pointer}/request/maxBodyBytes`, 'is valid only when a request body schema exists');
880
+ }
881
+ if (input.method === 'GET' && request?.body !== undefined) {
882
+ fail(`${pointer}/request/body`, 'is not valid for GET operations');
883
+ }
884
+ const pagination = input.pagination === undefined
885
+ ? undefined
886
+ : normalizePagination(input.pagination, `${pointer}/pagination`);
887
+ const response = normalizeResponse(input.response, `${pointer}/response`);
888
+ if (pagination) {
889
+ validatePaginationSchemas(pagination, request, response, pointer);
890
+ }
891
+ return {
892
+ authentication: input.authentication,
893
+ authorizationActions,
894
+ ...(input.conditionalWrite === undefined
895
+ ? {}
896
+ : {
897
+ conditionalWrite: normalizeConditionalWrite(input.conditionalWrite, `${pointer}/conditionalWrite`),
898
+ }),
899
+ contractVersion,
900
+ feature: requireString(input.feature, `${pointer}/feature`, {
901
+ pattern: FEATURE_PATTERN,
902
+ }),
903
+ ...(input.idempotency === undefined
904
+ ? {}
905
+ : {
906
+ idempotency: normalizeIdempotency(input.idempotency, `${pointer}/idempotency`),
907
+ }),
908
+ lifecycle: normalizeLifecycle(input.lifecycle, `${pointer}/lifecycle`),
909
+ method: input.method,
910
+ operationId,
911
+ ...(pagination === undefined ? {} : { pagination }),
912
+ path,
913
+ problems: normalizeProblems(input.problems, `${pointer}/problems`),
914
+ ...(request === undefined ? {} : { request }),
915
+ response,
916
+ responseProfile: exports.API_CONTRACT_RESPONSE_PROFILE,
917
+ slice,
918
+ summary: requireString(input.summary, `${pointer}/summary`, {
919
+ maxLength: 256,
920
+ }),
921
+ };
922
+ }
923
+ function normalizeApiContractBaseline(value) {
924
+ const input = requireRecord(value, '');
925
+ rejectUnknown(input, ['kind', 'operations', 'schemaVersion', 'slice', 'title', 'version'], '');
926
+ if (input.kind !== exports.API_CONTRACT_BASELINE_KIND) {
927
+ fail('/kind', `must equal ${exports.API_CONTRACT_BASELINE_KIND}`);
928
+ }
929
+ if (input.schemaVersion !== exports.API_CONTRACT_BASELINE_SCHEMA_VERSION) {
930
+ fail('/schemaVersion', `must equal ${exports.API_CONTRACT_BASELINE_SCHEMA_VERSION}`);
931
+ }
932
+ const slice = requireString(input.slice, '/slice', {
933
+ pattern: SLICE_PATTERN,
934
+ });
935
+ const version = requireString(input.version, '/version', {
936
+ pattern: EXACT_SEMANTIC_VERSION_PATTERN,
937
+ });
938
+ const title = requireString(input.title, '/title');
939
+ if (!Array.isArray(input.operations) || input.operations.length === 0) {
940
+ fail('/operations', 'must contain at least one operation');
941
+ }
942
+ const operationIds = new Set();
943
+ const routes = new Set();
944
+ const operations = input.operations.map((operation, index) => {
945
+ const normalized = normalizeOperation(operation, `/operations/${index}`, slice);
946
+ if (normalized.contractVersion !== version) {
947
+ fail(`/operations/${index}/contractVersion`, 'must equal the containing baseline version');
948
+ }
949
+ const route = `${normalized.method}\0${normalized.path}`;
950
+ if (operationIds.has(normalized.operationId)) {
951
+ fail(`/operations/${index}/operationId`, 'must not be reused');
952
+ }
953
+ if (routes.has(route)) {
954
+ fail(`/operations/${index}/path`, 'must not duplicate a method and route template');
955
+ }
956
+ operationIds.add(normalized.operationId);
957
+ routes.add(route);
958
+ return normalized;
959
+ });
960
+ operations.sort((left, right) => compareStrings(left.operationId, right.operationId));
961
+ return {
962
+ kind: exports.API_CONTRACT_BASELINE_KIND,
963
+ operations,
964
+ schemaVersion: exports.API_CONTRACT_BASELINE_SCHEMA_VERSION,
965
+ slice,
966
+ title,
967
+ version,
968
+ };
969
+ }
970
+ /**
971
+ * Wraps a normalized runtime artifact in the persisted baseline envelope.
972
+ * This conversion is explicit so generating artifacts never silently updates
973
+ * the reviewed baseline.
974
+ */
975
+ function createApiContractBaseline(normalized) {
976
+ const input = requireRecord(normalized, '');
977
+ if (input.kind !== undefined) {
978
+ return normalizeApiContractBaseline(input);
979
+ }
980
+ return normalizeApiContractBaseline({
981
+ ...input,
982
+ kind: exports.API_CONTRACT_BASELINE_KIND,
983
+ });
984
+ }
985
+ function canonicalApiContractBaselineJson(value) {
986
+ return `${JSON.stringify(normalizeApiContractBaseline(value), null, 2)}\n`;
987
+ }
988
+ function digestApiContractBaseline(value) {
989
+ return (0, node_crypto_1.createHash)('sha256')
990
+ .update(canonicalApiContractBaselineJson(value), 'utf8')
991
+ .digest('hex');
992
+ }
993
+ //# sourceMappingURL=model.js.map