@lssm/lib.contracts-spec 17.3.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 (4858) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1727 -0
  3. package/dist/acp/acp.feature.d.ts +1 -0
  4. package/dist/acp/acp.feature.js +1 -0
  5. package/dist/acp/capabilities/acpTransport.capability.d.ts +11 -0
  6. package/dist/acp/capabilities/acpTransport.capability.js +4 -0
  7. package/dist/acp/capabilities/index.d.ts +1 -0
  8. package/dist/acp/capabilities/index.js +1 -0
  9. package/dist/acp/commands/acpFsAccess.command.d.ts +38 -0
  10. package/dist/acp/commands/acpFsAccess.command.js +4 -0
  11. package/dist/acp/commands/acpPromptTurn.command.d.ts +39 -0
  12. package/dist/acp/commands/acpPromptTurn.command.js +4 -0
  13. package/dist/acp/commands/acpSessionInit.command.d.ts +42 -0
  14. package/dist/acp/commands/acpSessionInit.command.js +4 -0
  15. package/dist/acp/commands/acpSessionResume.command.d.ts +26 -0
  16. package/dist/acp/commands/acpSessionResume.command.js +4 -0
  17. package/dist/acp/commands/acpSessionStop.command.d.ts +34 -0
  18. package/dist/acp/commands/acpSessionStop.command.js +4 -0
  19. package/dist/acp/commands/acpTerminalExec.command.d.ts +42 -0
  20. package/dist/acp/commands/acpTerminalExec.command.js +4 -0
  21. package/dist/acp/commands/acpToolCalls.command.d.ts +28 -0
  22. package/dist/acp/commands/acpToolCalls.command.js +4 -0
  23. package/dist/acp/commands/index.d.ts +7 -0
  24. package/dist/acp/commands/index.js +1 -0
  25. package/dist/acp/constants.d.ts +4 -0
  26. package/dist/acp/constants.js +1 -0
  27. package/dist/acp/contracts.d.ts +181 -0
  28. package/dist/acp/contracts.js +1 -0
  29. package/dist/acp/index.d.ts +5 -0
  30. package/dist/acp/index.js +1 -0
  31. package/dist/adaptive-shell/index.d.ts +2 -0
  32. package/dist/adaptive-shell/index.js +1 -0
  33. package/dist/adaptive-shell/types.d.ts +179 -0
  34. package/dist/adaptive-shell/types.js +0 -0
  35. package/dist/adaptive-shell/validation.d.ts +5 -0
  36. package/dist/adaptive-shell/validation.js +1 -0
  37. package/dist/adoption-catalog/index.d.ts +696 -0
  38. package/dist/adoption-catalog/index.js +1 -0
  39. package/dist/agent/agent.feature.d.ts +11 -0
  40. package/dist/agent/agent.feature.js +4 -0
  41. package/dist/agent/capabilities/agentExecution.capability.d.ts +1 -0
  42. package/dist/agent/capabilities/agentExecution.capability.js +1 -0
  43. package/dist/agent/capabilities/index.d.ts +1 -0
  44. package/dist/agent/capabilities/index.js +1 -0
  45. package/dist/agent/commands/agentApprovals.command.d.ts +42 -0
  46. package/dist/agent/commands/agentApprovals.command.js +4 -0
  47. package/dist/agent/commands/agentCancel.command.d.ts +38 -0
  48. package/dist/agent/commands/agentCancel.command.js +4 -0
  49. package/dist/agent/commands/agentRun.command.d.ts +69 -0
  50. package/dist/agent/commands/agentRun.command.js +4 -0
  51. package/dist/agent/commands/agentTaskOps.command.d.ts +94 -0
  52. package/dist/agent/commands/agentTaskOps.command.js +1 -0
  53. package/dist/agent/commands/graphCompose.command.d.ts +114 -0
  54. package/dist/agent/commands/graphCompose.command.js +1 -0
  55. package/dist/agent/commands/graphEdit.command.d.ts +75 -0
  56. package/dist/agent/commands/graphEdit.command.js +25 -0
  57. package/dist/agent/commands/graphOps.command.d.ts +198 -0
  58. package/dist/agent/commands/graphOps.command.js +31 -0
  59. package/dist/agent/commands/graphRefactor.command.d.ts +86 -0
  60. package/dist/agent/commands/graphRefactor.command.js +1 -0
  61. package/dist/agent/commands/graphSuggestEvolution.command.d.ts +90 -0
  62. package/dist/agent/commands/graphSuggestEvolution.command.js +35 -0
  63. package/dist/agent/commands/index.d.ts +9 -0
  64. package/dist/agent/commands/index.js +1 -0
  65. package/dist/agent/constants.d.ts +4 -0
  66. package/dist/agent/constants.js +1 -0
  67. package/dist/agent/contracts.d.ts +462 -0
  68. package/dist/agent/contracts.js +1 -0
  69. package/dist/agent/events/agentApprovalRequested.event.d.ts +47 -0
  70. package/dist/agent/events/agentApprovalRequested.event.js +4 -0
  71. package/dist/agent/events/agentRunCompleted.event.d.ts +55 -0
  72. package/dist/agent/events/agentRunCompleted.event.js +4 -0
  73. package/dist/agent/events/agentRunFailed.event.d.ts +71 -0
  74. package/dist/agent/events/agentRunFailed.event.js +4 -0
  75. package/dist/agent/events/agentRunStarted.event.d.ts +55 -0
  76. package/dist/agent/events/agentRunStarted.event.js +4 -0
  77. package/dist/agent/events/index.d.ts +4 -0
  78. package/dist/agent/events/index.js +1 -0
  79. package/dist/agent/forms/agentRun.form.d.ts +33 -0
  80. package/dist/agent/forms/agentRun.form.js +4 -0
  81. package/dist/agent/forms/index.d.ts +1 -0
  82. package/dist/agent/forms/index.js +1 -0
  83. package/dist/agent/graph-conversation.d.ts +157 -0
  84. package/dist/agent/graph-conversation.js +19 -0
  85. package/dist/agent/index.d.ts +16 -0
  86. package/dist/agent/index.js +1 -0
  87. package/dist/agent/presentations/agentRunAudit.presentation.d.ts +11 -0
  88. package/dist/agent/presentations/agentRunAudit.presentation.js +4 -0
  89. package/dist/agent/presentations/index.d.ts +1 -0
  90. package/dist/agent/presentations/index.js +1 -0
  91. package/dist/agent/protocol/application-signature.d.ts +43 -0
  92. package/dist/agent/protocol/application-signature.js +1 -0
  93. package/dist/agent/protocol/application.d.ts +114 -0
  94. package/dist/agent/protocol/application.js +4 -0
  95. package/dist/agent/protocol/automation/automation.test-fixture.d.ts +210 -0
  96. package/dist/agent/protocol/automation/automation.test-fixture.js +1 -0
  97. package/dist/agent/protocol/automation/contracts.d.ts +174 -0
  98. package/dist/agent/protocol/automation/contracts.js +4 -0
  99. package/dist/agent/protocol/automation/definition-validation.d.ts +9 -0
  100. package/dist/agent/protocol/automation/definition-validation.js +1 -0
  101. package/dist/agent/protocol/automation/digests.d.ts +11 -0
  102. package/dist/agent/protocol/automation/digests.js +1 -0
  103. package/dist/agent/protocol/automation/index.d.ts +4 -0
  104. package/dist/agent/protocol/automation/index.js +1 -0
  105. package/dist/agent/protocol/automation/lifecycle-validation.d.ts +27 -0
  106. package/dist/agent/protocol/automation/lifecycle-validation.js +1 -0
  107. package/dist/agent/protocol/automation/lifecycle.d.ts +362 -0
  108. package/dist/agent/protocol/automation/lifecycle.js +1 -0
  109. package/dist/agent/protocol/automation/run-validation.d.ts +17 -0
  110. package/dist/agent/protocol/automation/run-validation.js +1 -0
  111. package/dist/agent/protocol/automation/validation.d.ts +3 -0
  112. package/dist/agent/protocol/automation/validation.js +1 -0
  113. package/dist/agent/protocol/bindings.d.ts +25 -0
  114. package/dist/agent/protocol/bindings.js +1 -0
  115. package/dist/agent/protocol/budget.d.ts +48 -0
  116. package/dist/agent/protocol/budget.js +1 -0
  117. package/dist/agent/protocol/common.d.ts +128 -0
  118. package/dist/agent/protocol/common.js +1 -0
  119. package/dist/agent/protocol/delegation.d.ts +345 -0
  120. package/dist/agent/protocol/delegation.js +1 -0
  121. package/dist/agent/protocol/execution.d.ts +229 -0
  122. package/dist/agent/protocol/execution.js +1 -0
  123. package/dist/agent/protocol/graph-validation.d.ts +20 -0
  124. package/dist/agent/protocol/graph-validation.js +1 -0
  125. package/dist/agent/protocol/help.d.ts +200 -0
  126. package/dist/agent/protocol/help.js +1 -0
  127. package/dist/agent/protocol/index.d.ts +23 -0
  128. package/dist/agent/protocol/index.js +1 -0
  129. package/dist/agent/protocol/markdown-migration.d.ts +55 -0
  130. package/dist/agent/protocol/markdown-migration.js +1 -0
  131. package/dist/agent/protocol/memory-governance.d.ts +237 -0
  132. package/dist/agent/protocol/memory-governance.js +1 -0
  133. package/dist/agent/protocol/memory-validation.d.ts +19 -0
  134. package/dist/agent/protocol/memory-validation.js +1 -0
  135. package/dist/agent/protocol/memory.d.ts +139 -0
  136. package/dist/agent/protocol/memory.js +1 -0
  137. package/dist/agent/protocol/model-fallback-validation-v2.d.ts +15 -0
  138. package/dist/agent/protocol/model-fallback-validation-v2.js +1 -0
  139. package/dist/agent/protocol/model-fallback-validation.d.ts +12 -0
  140. package/dist/agent/protocol/model-fallback-validation.js +1 -0
  141. package/dist/agent/protocol/model-invocation-profile.d.ts +21 -0
  142. package/dist/agent/protocol/model-invocation-profile.js +1 -0
  143. package/dist/agent/protocol/model-route-contracts-v2.d.ts +180 -0
  144. package/dist/agent/protocol/model-route-contracts-v2.js +1 -0
  145. package/dist/agent/protocol/model-route-contracts.d.ts +104 -0
  146. package/dist/agent/protocol/model-route-contracts.js +1 -0
  147. package/dist/agent/protocol/model-routing-migration.d.ts +16 -0
  148. package/dist/agent/protocol/model-routing-migration.js +1 -0
  149. package/dist/agent/protocol/model-routing-v2.d.ts +309 -0
  150. package/dist/agent/protocol/model-routing-v2.js +1 -0
  151. package/dist/agent/protocol/model-routing-v2.test-fixtures.d.ts +590 -0
  152. package/dist/agent/protocol/model-routing-v2.test-fixtures.js +1 -0
  153. package/dist/agent/protocol/model-routing.d.ts +206 -0
  154. package/dist/agent/protocol/model-routing.js +1 -0
  155. package/dist/agent/protocol/model-routing.test-fixtures.d.ts +157 -0
  156. package/dist/agent/protocol/model-routing.test-fixtures.js +1 -0
  157. package/dist/agent/protocol/model-selection-validation-v2.d.ts +37 -0
  158. package/dist/agent/protocol/model-selection-validation-v2.js +1 -0
  159. package/dist/agent/protocol/model-selection-validation.d.ts +21 -0
  160. package/dist/agent/protocol/model-selection-validation.js +1 -0
  161. package/dist/agent/protocol/model-serving-validation-v2.d.ts +6 -0
  162. package/dist/agent/protocol/model-serving-validation-v2.js +1 -0
  163. package/dist/agent/protocol/planning.d.ts +159 -0
  164. package/dist/agent/protocol/planning.js +1 -0
  165. package/dist/agent/protocol/reflection.d.ts +73 -0
  166. package/dist/agent/protocol/reflection.js +1 -0
  167. package/dist/agent/protocol/task-result-validation.d.ts +6 -0
  168. package/dist/agent/protocol/task-result-validation.js +1 -0
  169. package/dist/agent/queries/agentArtifacts.query.d.ts +68 -0
  170. package/dist/agent/queries/agentArtifacts.query.js +4 -0
  171. package/dist/agent/queries/agentStatus.query.d.ts +76 -0
  172. package/dist/agent/queries/agentStatus.query.js +4 -0
  173. package/dist/agent/queries/index.d.ts +2 -0
  174. package/dist/agent/queries/index.js +1 -0
  175. package/dist/agent/registry.d.ts +41 -0
  176. package/dist/agent/registry.js +1 -0
  177. package/dist/agent/runner.d.ts +62 -0
  178. package/dist/agent/runner.js +1 -0
  179. package/dist/agent/spec.d.ts +264 -0
  180. package/dist/agent/spec.js +10 -0
  181. package/dist/agent/task-tree.d.ts +44 -0
  182. package/dist/agent/task-tree.js +22 -0
  183. package/dist/agent/views/agentRuns.dataView.d.ts +94 -0
  184. package/dist/agent/views/agentRuns.dataView.js +4 -0
  185. package/dist/agent/views/index.d.ts +1 -0
  186. package/dist/agent/views/index.js +1 -0
  187. package/dist/agent-platform/baseline-suites.d.ts +17 -0
  188. package/dist/agent-platform/baseline-suites.js +1 -0
  189. package/dist/agent-platform/digest.d.ts +1 -0
  190. package/dist/agent-platform/digest.js +1 -0
  191. package/dist/agent-platform/index.d.ts +5 -0
  192. package/dist/agent-platform/index.js +1 -0
  193. package/dist/agent-platform/types.d.ts +149 -0
  194. package/dist/agent-platform/types.js +1 -0
  195. package/dist/agent-platform/validation-v2.d.ts +40 -0
  196. package/dist/agent-platform/validation-v2.js +1 -0
  197. package/dist/agent-platform/validation.d.ts +86 -0
  198. package/dist/agent-platform/validation.js +1 -0
  199. package/dist/agent-step-observability/index.d.ts +2 -0
  200. package/dist/agent-step-observability/index.js +1 -0
  201. package/dist/agent-step-observability/types.d.ts +130 -0
  202. package/dist/agent-step-observability/types.js +0 -0
  203. package/dist/agent-step-observability/validation.d.ts +324 -0
  204. package/dist/agent-step-observability/validation.js +1 -0
  205. package/dist/agentic-interaction/constants.d.ts +4 -0
  206. package/dist/agentic-interaction/constants.js +1 -0
  207. package/dist/agentic-interaction/contracts.d.ts +156 -0
  208. package/dist/agentic-interaction/contracts.js +1 -0
  209. package/dist/agentic-interaction/index.d.ts +6 -0
  210. package/dist/agentic-interaction/index.js +1 -0
  211. package/dist/agentpacks/evidence-audit-validation.d.ts +185 -0
  212. package/dist/agentpacks/evidence-audit-validation.js +1 -0
  213. package/dist/agentpacks/evidence-canonicalization.d.ts +5 -0
  214. package/dist/agentpacks/evidence-canonicalization.js +2 -0
  215. package/dist/agentpacks/evidence-fixtures.d.ts +5 -0
  216. package/dist/agentpacks/evidence-fixtures.js +1 -0
  217. package/dist/agentpacks/evidence-schema-primitives.d.ts +56 -0
  218. package/dist/agentpacks/evidence-schema-primitives.js +1 -0
  219. package/dist/agentpacks/evidence-trace-validation.d.ts +444 -0
  220. package/dist/agentpacks/evidence-trace-validation.js +1 -0
  221. package/dist/agentpacks/evidence-types.d.ts +145 -0
  222. package/dist/agentpacks/evidence-types.js +0 -0
  223. package/dist/agentpacks/evidence-validation.d.ts +8 -0
  224. package/dist/agentpacks/evidence-validation.js +1 -0
  225. package/dist/agentpacks/index.d.ts +123 -0
  226. package/dist/agentpacks/index.js +1 -0
  227. package/dist/agentpacks/types.d.ts +160 -0
  228. package/dist/agentpacks/types.js +0 -0
  229. package/dist/agentpacks/validation.d.ts +1688 -0
  230. package/dist/agentpacks/validation.js +1 -0
  231. package/dist/ai-improvement/contracts-v2.d.ts +147 -0
  232. package/dist/ai-improvement/contracts-v2.js +1 -0
  233. package/dist/ai-improvement/evidence.d.ts +5 -0
  234. package/dist/ai-improvement/evidence.js +1 -0
  235. package/dist/ai-improvement/index.d.ts +6 -0
  236. package/dist/ai-improvement/index.js +1 -0
  237. package/dist/ai-improvement/policy.d.ts +33 -0
  238. package/dist/ai-improvement/policy.js +1 -0
  239. package/dist/ai-improvement/types.d.ts +60 -0
  240. package/dist/ai-improvement/types.js +0 -0
  241. package/dist/ai-improvement/validation-v2.d.ts +761 -0
  242. package/dist/ai-improvement/validation-v2.js +1 -0
  243. package/dist/ai-improvement/validation.d.ts +130 -0
  244. package/dist/ai-improvement/validation.js +1 -0
  245. package/dist/analytics/index.d.ts +6 -0
  246. package/dist/analytics/index.js +0 -0
  247. package/dist/analytics/semantic-spec.d.ts +60 -0
  248. package/dist/analytics/semantic-spec.js +0 -0
  249. package/dist/app-config/app-config.capability.d.ts +1 -0
  250. package/dist/app-config/app-config.capability.js +1 -0
  251. package/dist/app-config/app-config.contracts.d.ts +239 -0
  252. package/dist/app-config/app-config.contracts.js +1 -0
  253. package/dist/app-config/app-config.feature.d.ts +5 -0
  254. package/dist/app-config/app-config.feature.js +1 -0
  255. package/dist/app-config/branding.d.js +0 -0
  256. package/dist/app-config/branding.d.ts +184 -0
  257. package/dist/app-config/branding.js +0 -0
  258. package/dist/app-config/events.d.ts +115 -0
  259. package/dist/app-config/events.js +1 -0
  260. package/dist/app-config/index.d.ts +10 -0
  261. package/dist/app-config/index.js +1 -0
  262. package/dist/app-config/integrations.d.js +0 -0
  263. package/dist/app-config/integrations.d.ts +65 -0
  264. package/dist/app-config/integrations.js +0 -0
  265. package/dist/app-config/lifecycle-contracts.d.ts +265 -0
  266. package/dist/app-config/lifecycle-contracts.js +1 -0
  267. package/dist/app-config/lifecycle.d.js +0 -0
  268. package/dist/app-config/lifecycle.d.ts +23 -0
  269. package/dist/app-config/lifecycle.js +0 -0
  270. package/dist/app-config/runtime.d.js +0 -0
  271. package/dist/app-config/runtime.d.ts +124 -0
  272. package/dist/app-config/runtime.js +1 -0
  273. package/dist/app-config/spec.d.js +0 -0
  274. package/dist/app-config/spec.d.ts +220 -0
  275. package/dist/app-config/spec.js +162 -0
  276. package/dist/app-config/validation.d.ts +51 -0
  277. package/dist/app-config/validation.js +1 -0
  278. package/dist/app-submission-readiness/admin-rules.contracts.d.ts +145 -0
  279. package/dist/app-submission-readiness/admin-rules.contracts.js +1 -0
  280. package/dist/app-submission-readiness/assets.contracts.d.ts +89 -0
  281. package/dist/app-submission-readiness/assets.contracts.js +1 -0
  282. package/dist/app-submission-readiness/audit.contracts.d.ts +53 -0
  283. package/dist/app-submission-readiness/audit.contracts.js +1 -0
  284. package/dist/app-submission-readiness/constants.d.ts +24 -0
  285. package/dist/app-submission-readiness/constants.js +1 -0
  286. package/dist/app-submission-readiness/contracts.d.ts +20 -0
  287. package/dist/app-submission-readiness/contracts.js +1 -0
  288. package/dist/app-submission-readiness/events.d.ts +194 -0
  289. package/dist/app-submission-readiness/events.js +1 -0
  290. package/dist/app-submission-readiness/fixtures.d.ts +2 -0
  291. package/dist/app-submission-readiness/fixtures.js +1 -0
  292. package/dist/app-submission-readiness/index.d.ts +8 -0
  293. package/dist/app-submission-readiness/index.js +1 -0
  294. package/dist/app-submission-readiness/legal-links.contracts.d.ts +93 -0
  295. package/dist/app-submission-readiness/legal-links.contracts.js +1 -0
  296. package/dist/app-submission-readiness/manifests.contracts.d.ts +97 -0
  297. package/dist/app-submission-readiness/manifests.contracts.js +1 -0
  298. package/dist/app-submission-readiness/markdown-report.d.ts +7 -0
  299. package/dist/app-submission-readiness/markdown-report.js +3 -0
  300. package/dist/app-submission-readiness/privacy-disclosures.contracts.d.ts +101 -0
  301. package/dist/app-submission-readiness/privacy-disclosures.contracts.js +1 -0
  302. package/dist/app-submission-readiness/project.contracts.d.ts +137 -0
  303. package/dist/app-submission-readiness/project.contracts.js +1 -0
  304. package/dist/app-submission-readiness/provider-capabilities.d.ts +58 -0
  305. package/dist/app-submission-readiness/provider-capabilities.js +1 -0
  306. package/dist/app-submission-readiness/provider-capabilities.seeds.d.ts +25 -0
  307. package/dist/app-submission-readiness/provider-capabilities.seeds.js +1 -0
  308. package/dist/app-submission-readiness/registry.d.ts +1172 -0
  309. package/dist/app-submission-readiness/registry.js +1 -0
  310. package/dist/app-submission-readiness/rejection-response.contracts.d.ts +49 -0
  311. package/dist/app-submission-readiness/rejection-response.contracts.js +1 -0
  312. package/dist/app-submission-readiness/reports.contracts.d.ts +85 -0
  313. package/dist/app-submission-readiness/reports.contracts.js +1 -0
  314. package/dist/app-submission-readiness/reviewer-access.contracts.d.ts +93 -0
  315. package/dist/app-submission-readiness/reviewer-access.contracts.js +1 -0
  316. package/dist/app-submission-readiness/runtime.d.ts +9 -0
  317. package/dist/app-submission-readiness/runtime.js +1 -0
  318. package/dist/app-submission-readiness/sdk-inventory.contracts.d.ts +69 -0
  319. package/dist/app-submission-readiness/sdk-inventory.contracts.js +1 -0
  320. package/dist/app-submission-readiness/store-integrations.contracts.d.ts +85 -0
  321. package/dist/app-submission-readiness/store-integrations.contracts.js +1 -0
  322. package/dist/app-submission-readiness/types.d.ts +76 -0
  323. package/dist/app-submission-readiness/types.js +0 -0
  324. package/dist/capabilities/agent-workflow.d.js +0 -0
  325. package/dist/capabilities/agent-workflow.d.ts +52 -0
  326. package/dist/capabilities/agent-workflow.js +1 -0
  327. package/dist/capabilities/capabilities.d.js +0 -0
  328. package/dist/capabilities/capabilities.d.ts +109 -0
  329. package/dist/capabilities/capabilities.js +187 -0
  330. package/dist/capabilities/context.d.js +0 -0
  331. package/dist/capabilities/context.d.ts +110 -0
  332. package/dist/capabilities/context.js +1 -0
  333. package/dist/capabilities/guards.d.js +0 -0
  334. package/dist/capabilities/guards.d.ts +121 -0
  335. package/dist/capabilities/guards.js +1 -0
  336. package/dist/capabilities/index.d.js +1 -0
  337. package/dist/capabilities/index.d.ts +7 -0
  338. package/dist/capabilities/index.js +1 -0
  339. package/dist/capabilities/meeting-recorder.d.js +0 -0
  340. package/dist/capabilities/meeting-recorder.d.ts +5 -0
  341. package/dist/capabilities/meeting-recorder.js +1 -0
  342. package/dist/capabilities/openbanking.d.js +0 -0
  343. package/dist/capabilities/openbanking.d.ts +5 -0
  344. package/dist/capabilities/openbanking.js +1 -0
  345. package/dist/capabilities/validation.d.js +0 -0
  346. package/dist/capabilities/validation.d.ts +79 -0
  347. package/dist/capabilities/validation.js +1 -0
  348. package/dist/cli/command-pack.d.ts +37 -0
  349. package/dist/cli/command-pack.js +16 -0
  350. package/dist/cli/index.d.ts +1 -0
  351. package/dist/cli/index.js +1 -0
  352. package/dist/companyos/auth-production-topology.d.ts +24 -0
  353. package/dist/companyos/auth-production-topology.js +1 -0
  354. package/dist/companyos/booking-surfaces.d.ts +50 -0
  355. package/dist/companyos/booking-surfaces.js +1 -0
  356. package/dist/companyos/calendar-intelligence.d.ts +129 -0
  357. package/dist/companyos/calendar-intelligence.js +1 -0
  358. package/dist/companyos/calendar-microsoft-personal-discovery.d.ts +32 -0
  359. package/dist/companyos/calendar-microsoft-personal-discovery.js +1 -0
  360. package/dist/companyos/calendar-microsoft-personal-http.d.ts +32 -0
  361. package/dist/companyos/calendar-microsoft-personal-http.js +1 -0
  362. package/dist/companyos/calendar-microsoft-personal-selection.d.ts +38 -0
  363. package/dist/companyos/calendar-microsoft-personal-selection.js +1 -0
  364. package/dist/companyos/calendar-private-draft-preview.d.ts +144 -0
  365. package/dist/companyos/calendar-private-draft-preview.js +1 -0
  366. package/dist/companyos/commands/autonomousWorkOrderTransition.command.d.ts +63 -0
  367. package/dist/companyos/commands/autonomousWorkOrderTransition.command.js +1 -0
  368. package/dist/companyos/commands/builderReadinessEvaluate.command.d.ts +81 -0
  369. package/dist/companyos/commands/builderReadinessEvaluate.command.js +1 -0
  370. package/dist/companyos/commands/contextSetActive.command.d.ts +58 -0
  371. package/dist/companyos/commands/contextSetActive.command.js +1 -0
  372. package/dist/companyos/commands/decisionPacketAttest.command.d.ts +194 -0
  373. package/dist/companyos/commands/decisionPacketAttest.command.js +1 -0
  374. package/dist/companyos/commands/decisionPacketFounderApprove.command.d.ts +202 -0
  375. package/dist/companyos/commands/decisionPacketFounderApprove.command.js +1 -0
  376. package/dist/companyos/commands/index.d.ts +29 -0
  377. package/dist/companyos/commands/index.js +1 -0
  378. package/dist/companyos/commands/integrationConfigureByok.command.d.ts +32 -0
  379. package/dist/companyos/commands/integrationConfigureByok.command.js +1 -0
  380. package/dist/companyos/commands/integrationConfigureManaged.command.d.ts +32 -0
  381. package/dist/companyos/commands/integrationConfigureManaged.command.js +1 -0
  382. package/dist/companyos/commands/onboardingPreferencesComplete.command.d.ts +51 -0
  383. package/dist/companyos/commands/onboardingPreferencesComplete.command.js +8 -0
  384. package/dist/companyos/commands/organizationSetActive.command.d.ts +25 -0
  385. package/dist/companyos/commands/organizationSetActive.command.js +1 -0
  386. package/dist/companyos/commands/personaPreviewSet.command.d.ts +35 -0
  387. package/dist/companyos/commands/personaPreviewSet.command.js +7 -0
  388. package/dist/companyos/commands/personalBriefingCalendarsSelect.command.d.ts +32 -0
  389. package/dist/companyos/commands/personalBriefingCalendarsSelect.command.js +12 -0
  390. package/dist/companyos/commands/personalBriefingDeliveryRetry.command.d.ts +30 -0
  391. package/dist/companyos/commands/personalBriefingDeliveryRetry.command.js +8 -0
  392. package/dist/companyos/commands/personalBriefingGoogleOAuthComplete.command.d.ts +30 -0
  393. package/dist/companyos/commands/personalBriefingGoogleOAuthComplete.command.js +6 -0
  394. package/dist/companyos/commands/personalBriefingGoogleOAuthStart.command.d.ts +22 -0
  395. package/dist/companyos/commands/personalBriefingGoogleOAuthStart.command.js +6 -0
  396. package/dist/companyos/commands/personalBriefingMicrosoftDisconnect.command.d.ts +17 -0
  397. package/dist/companyos/commands/personalBriefingMicrosoftDisconnect.command.js +5 -0
  398. package/dist/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.d.ts +30 -0
  399. package/dist/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.js +9 -0
  400. package/dist/companyos/commands/personalBriefingMicrosoftOAuthStart.command.d.ts +17 -0
  401. package/dist/companyos/commands/personalBriefingMicrosoftOAuthStart.command.js +6 -0
  402. package/dist/companyos/commands/personalBriefingPreferencesUpdate.command.d.ts +60 -0
  403. package/dist/companyos/commands/personalBriefingPreferencesUpdate.command.js +11 -0
  404. package/dist/companyos/commands/personalBriefingPreviewSend.command.d.ts +46 -0
  405. package/dist/companyos/commands/personalBriefingPreviewSend.command.js +15 -0
  406. package/dist/companyos/commands/personalContextDisable.command.d.ts +37 -0
  407. package/dist/companyos/commands/personalContextDisable.command.js +1 -0
  408. package/dist/companyos/commands/personalContextEnsure.command.d.ts +45 -0
  409. package/dist/companyos/commands/personalContextEnsure.command.js +1 -0
  410. package/dist/companyos/commands/personalDailyOperationCreate.command.d.ts +24 -0
  411. package/dist/companyos/commands/personalDailyOperationCreate.command.js +1 -0
  412. package/dist/companyos/commands/personalDailyOperationTransition.command.d.ts +20 -0
  413. package/dist/companyos/commands/personalDailyOperationTransition.command.js +1 -0
  414. package/dist/companyos/commands/reviewCardDecide.command.d.ts +54 -0
  415. package/dist/companyos/commands/reviewCardDecide.command.js +1 -0
  416. package/dist/companyos/commands/shellPreferencesUpdate.command.d.ts +47 -0
  417. package/dist/companyos/commands/shellPreferencesUpdate.command.js +6 -0
  418. package/dist/companyos/commands/tenantOnboard.command.d.ts +32 -0
  419. package/dist/companyos/commands/tenantOnboard.command.js +1 -0
  420. package/dist/companyos/commands/tenantUpdate.command.d.ts +24 -0
  421. package/dist/companyos/commands/tenantUpdate.command.js +1 -0
  422. package/dist/companyos/commands/weeklyReportApprove.command.d.ts +54 -0
  423. package/dist/companyos/commands/weeklyReportApprove.command.js +1 -0
  424. package/dist/companyos/commands/workflowStart.command.d.ts +28 -0
  425. package/dist/companyos/commands/workflowStart.command.js +1 -0
  426. package/dist/companyos/company-intelligence/api-schemas.d.ts +232 -0
  427. package/dist/companyos/company-intelligence/api-schemas.js +1 -0
  428. package/dist/companyos/company-intelligence/api.d.ts +44 -0
  429. package/dist/companyos/company-intelligence/api.js +1 -0
  430. package/dist/companyos/company-intelligence/commands.d.ts +517 -0
  431. package/dist/companyos/company-intelligence/commands.js +1 -0
  432. package/dist/companyos/company-intelligence/events.d.ts +369 -0
  433. package/dist/companyos/company-intelligence/events.js +1 -0
  434. package/dist/companyos/company-intelligence/index.d.ts +8 -0
  435. package/dist/companyos/company-intelligence/index.js +1 -0
  436. package/dist/companyos/company-intelligence/models.d.ts +77 -0
  437. package/dist/companyos/company-intelligence/models.js +1 -0
  438. package/dist/companyos/company-intelligence/operations.d.ts +124 -0
  439. package/dist/companyos/company-intelligence/operations.js +1 -0
  440. package/dist/companyos/company-intelligence/queries.d.ts +183 -0
  441. package/dist/companyos/company-intelligence/queries.js +1 -0
  442. package/dist/companyos/company-intelligence/registry.d.ts +634 -0
  443. package/dist/companyos/company-intelligence/registry.js +1 -0
  444. package/dist/companyos/company-intelligence/surface.d.ts +45 -0
  445. package/dist/companyos/company-intelligence/surface.js +1 -0
  446. package/dist/companyos/company-metrics/commands.d.ts +1079 -0
  447. package/dist/companyos/company-metrics/commands.js +3 -0
  448. package/dist/companyos/company-metrics/events.d.ts +383 -0
  449. package/dist/companyos/company-metrics/events.js +3 -0
  450. package/dist/companyos/company-metrics/index.d.ts +5 -0
  451. package/dist/companyos/company-metrics/index.js +1 -0
  452. package/dist/companyos/company-metrics/queries.d.ts +367 -0
  453. package/dist/companyos/company-metrics/queries.js +3 -0
  454. package/dist/companyos/company-metrics/registry.d.ts +913 -0
  455. package/dist/companyos/company-metrics/registry.js +1 -0
  456. package/dist/companyos/company-metrics/shared.d.ts +72 -0
  457. package/dist/companyos/company-metrics/shared.js +1 -0
  458. package/dist/companyos/constants.d.ts +25 -0
  459. package/dist/companyos/constants.js +1 -0
  460. package/dist/companyos/index.d.ts +21 -0
  461. package/dist/companyos/index.js +1 -0
  462. package/dist/companyos/live-workspace-surfaces.d.ts +6 -0
  463. package/dist/companyos/live-workspace-surfaces.js +1 -0
  464. package/dist/companyos/organization-bootstrap.d.ts +103 -0
  465. package/dist/companyos/organization-bootstrap.js +1 -0
  466. package/dist/companyos/organization-seed-contract.d.ts +126 -0
  467. package/dist/companyos/organization-seed-contract.js +1 -0
  468. package/dist/companyos/organization-seed-manifest.d.ts +11 -0
  469. package/dist/companyos/organization-seed-manifest.js +1 -0
  470. package/dist/companyos/organization-seed-profile-manifest.d.ts +4 -0
  471. package/dist/companyos/organization-seed-profile-manifest.js +1 -0
  472. package/dist/companyos/organization-seed.d.ts +2 -0
  473. package/dist/companyos/organization-seed.js +1 -0
  474. package/dist/companyos/organization-self-service.d.ts +157 -0
  475. package/dist/companyos/organization-self-service.js +1 -0
  476. package/dist/companyos/production-semantics.d.ts +116 -0
  477. package/dist/companyos/production-semantics.js +1 -0
  478. package/dist/companyos/projections.d.ts +247 -0
  479. package/dist/companyos/projections.js +1 -0
  480. package/dist/companyos/public-composition.d.ts +742 -0
  481. package/dist/companyos/public-composition.js +1 -0
  482. package/dist/companyos/queries/approvalReasons.query.d.ts +25 -0
  483. package/dist/companyos/queries/approvalReasons.query.js +1 -0
  484. package/dist/companyos/queries/builderEvidenceReceiptGet.query.d.ts +75 -0
  485. package/dist/companyos/queries/builderEvidenceReceiptGet.query.js +1 -0
  486. package/dist/companyos/queries/builderReleaseCapsuleGet.query.d.ts +67 -0
  487. package/dist/companyos/queries/builderReleaseCapsuleGet.query.js +1 -0
  488. package/dist/companyos/queries/builderReplayPacketGet.query.d.ts +64 -0
  489. package/dist/companyos/queries/builderReplayPacketGet.query.js +1 -0
  490. package/dist/companyos/queries/contextList.query.d.ts +218 -0
  491. package/dist/companyos/queries/contextList.query.js +1 -0
  492. package/dist/companyos/queries/designPartnerReadinessGet.query.d.ts +154 -0
  493. package/dist/companyos/queries/designPartnerReadinessGet.query.js +1 -0
  494. package/dist/companyos/queries/evidenceGetReceipt.query.d.ts +63 -0
  495. package/dist/companyos/queries/evidenceGetReceipt.query.js +1 -0
  496. package/dist/companyos/queries/evidenceVerifyHash.query.d.ts +24 -0
  497. package/dist/companyos/queries/evidenceVerifyHash.query.js +1 -0
  498. package/dist/companyos/queries/graphQuery.query.d.ts +186 -0
  499. package/dist/companyos/queries/graphQuery.query.js +1 -0
  500. package/dist/companyos/queries/graphQueryByPolicy.query.d.ts +81 -0
  501. package/dist/companyos/queries/graphQueryByPolicy.query.js +1 -0
  502. package/dist/companyos/queries/healthApi.query.d.ts +23 -0
  503. package/dist/companyos/queries/healthApi.query.js +1 -0
  504. package/dist/companyos/queries/healthWebsocket.query.d.ts +23 -0
  505. package/dist/companyos/queries/healthWebsocket.query.js +1 -0
  506. package/dist/companyos/queries/healthWorker.query.d.ts +63 -0
  507. package/dist/companyos/queries/healthWorker.query.js +1 -0
  508. package/dist/companyos/queries/index.d.ts +29 -0
  509. package/dist/companyos/queries/index.js +1 -0
  510. package/dist/companyos/queries/integrationListProviders.query.d.ts +29 -0
  511. package/dist/companyos/queries/integrationListProviders.query.js +1 -0
  512. package/dist/companyos/queries/integrationStatus.query.d.ts +42 -0
  513. package/dist/companyos/queries/integrationStatus.query.js +1 -0
  514. package/dist/companyos/queries/organizationList.query.d.ts +64 -0
  515. package/dist/companyos/queries/organizationList.query.js +1 -0
  516. package/dist/companyos/queries/personalBriefingCalendarsList.query.d.ts +22 -0
  517. package/dist/companyos/queries/personalBriefingCalendarsList.query.js +6 -0
  518. package/dist/companyos/queries/personalBriefingStatus.query.d.ts +49 -0
  519. package/dist/companyos/queries/personalBriefingStatus.query.js +13 -0
  520. package/dist/companyos/queries/personalContextProvisioningStatus.query.d.ts +28 -0
  521. package/dist/companyos/queries/personalContextProvisioningStatus.query.js +1 -0
  522. package/dist/companyos/queries/personalDailyOperations.query.d.ts +17 -0
  523. package/dist/companyos/queries/personalDailyOperations.query.js +1 -0
  524. package/dist/companyos/queries/replayGetPacket.query.d.ts +56 -0
  525. package/dist/companyos/queries/replayGetPacket.query.js +1 -0
  526. package/dist/companyos/queries/replayListByTenant.query.d.ts +54 -0
  527. package/dist/companyos/queries/replayListByTenant.query.js +1 -0
  528. package/dist/companyos/queries/sessionAuthorityGet.query.d.ts +76 -0
  529. package/dist/companyos/queries/sessionAuthorityGet.query.js +1 -0
  530. package/dist/companyos/queries/shellPreferencesGet.query.d.ts +38 -0
  531. package/dist/companyos/queries/shellPreferencesGet.query.js +7 -0
  532. package/dist/companyos/queries/tenantGet.query.d.ts +79 -0
  533. package/dist/companyos/queries/tenantGet.query.js +1 -0
  534. package/dist/companyos/queries/tenantList.query.d.ts +58 -0
  535. package/dist/companyos/queries/tenantList.query.js +1 -0
  536. package/dist/companyos/queries/workflowGetStatus.query.d.ts +68 -0
  537. package/dist/companyos/queries/workflowGetStatus.query.js +1 -0
  538. package/dist/companyos/queries/workflowList.query.d.ts +56 -0
  539. package/dist/companyos/queries/workflowList.query.js +1 -0
  540. package/dist/companyos/queries/workspaceList.query.d.ts +69 -0
  541. package/dist/companyos/queries/workspaceList.query.js +1 -0
  542. package/dist/companyos/registry.d.ts +3614 -0
  543. package/dist/companyos/registry.js +1 -0
  544. package/dist/companyos/shell-preferences.d.ts +122 -0
  545. package/dist/companyos/shell-preferences.js +1 -0
  546. package/dist/content-analysis/constants.d.ts +10 -0
  547. package/dist/content-analysis/constants.js +1 -0
  548. package/dist/content-analysis/events.d.ts +307 -0
  549. package/dist/content-analysis/events.js +3 -0
  550. package/dist/content-analysis/index.d.ts +5 -0
  551. package/dist/content-analysis/index.js +1 -0
  552. package/dist/content-analysis/operations.d.ts +554 -0
  553. package/dist/content-analysis/operations.js +6 -0
  554. package/dist/content-analysis/registry.d.ts +9 -0
  555. package/dist/content-analysis/registry.js +1 -0
  556. package/dist/content-analysis/types.d.ts +90 -0
  557. package/dist/content-analysis/types.js +0 -0
  558. package/dist/content-generation/capabilities.d.ts +4 -0
  559. package/dist/content-generation/capabilities.js +1 -0
  560. package/dist/content-generation/content-generation.feature.d.ts +1 -0
  561. package/dist/content-generation/content-generation.feature.js +1 -0
  562. package/dist/content-generation/contracts.d.ts +1557 -0
  563. package/dist/content-generation/contracts.js +4 -0
  564. package/dist/content-generation/index.d.ts +5 -0
  565. package/dist/content-generation/index.js +1 -0
  566. package/dist/content-generation/media-status.d.ts +53 -0
  567. package/dist/content-generation/media-status.js +1 -0
  568. package/dist/content-generation/ports.d.ts +42 -0
  569. package/dist/content-generation/ports.js +0 -0
  570. package/dist/content-generation/rights-operations.d.ts +479 -0
  571. package/dist/content-generation/rights-operations.js +1 -0
  572. package/dist/content-generation/rights-withdrawal.d.ts +44 -0
  573. package/dist/content-generation/rights-withdrawal.js +1 -0
  574. package/dist/content-generation/rights.d.ts +79 -0
  575. package/dist/content-generation/rights.js +1 -0
  576. package/dist/content-generation/types.d.ts +84 -0
  577. package/dist/content-generation/types.js +1 -0
  578. package/dist/context/agent-context-validation.d.ts +38 -0
  579. package/dist/context/agent-context-validation.js +4 -0
  580. package/dist/context/agent-context.d.ts +310 -0
  581. package/dist/context/agent-context.js +1 -0
  582. package/dist/context/capabilities/contextSystem.capability.d.ts +11 -0
  583. package/dist/context/capabilities/contextSystem.capability.js +4 -0
  584. package/dist/context/capabilities/index.d.ts +1 -0
  585. package/dist/context/capabilities/index.js +1 -0
  586. package/dist/context/commands/contextPackSnapshot.command.d.ts +61 -0
  587. package/dist/context/commands/contextPackSnapshot.command.js +4 -0
  588. package/dist/context/commands/index.d.ts +1 -0
  589. package/dist/context/commands/index.js +1 -0
  590. package/dist/context/constants.d.ts +4 -0
  591. package/dist/context/constants.js +1 -0
  592. package/dist/context/context.feature.d.ts +1 -0
  593. package/dist/context/context.feature.js +1 -0
  594. package/dist/context/contracts.d.ts +369 -0
  595. package/dist/context/contracts.js +1 -0
  596. package/dist/context/events/contextSnapshotCreated.event.d.ts +63 -0
  597. package/dist/context/events/contextSnapshotCreated.event.js +4 -0
  598. package/dist/context/events/index.d.ts +1 -0
  599. package/dist/context/events/index.js +1 -0
  600. package/dist/context/forms/contextPackSearch.form.d.ts +29 -0
  601. package/dist/context/forms/contextPackSearch.form.js +4 -0
  602. package/dist/context/forms/index.d.ts +1 -0
  603. package/dist/context/forms/index.js +1 -0
  604. package/dist/context/index.d.ts +12 -0
  605. package/dist/context/index.js +1 -0
  606. package/dist/context/presentations/contextSnapshot.presentation.d.ts +11 -0
  607. package/dist/context/presentations/contextSnapshot.presentation.js +4 -0
  608. package/dist/context/presentations/index.d.ts +1 -0
  609. package/dist/context/presentations/index.js +1 -0
  610. package/dist/context/queries/contextPackDescribe.query.d.ts +87 -0
  611. package/dist/context/queries/contextPackDescribe.query.js +4 -0
  612. package/dist/context/queries/contextPackSearch.query.d.ts +90 -0
  613. package/dist/context/queries/contextPackSearch.query.js +4 -0
  614. package/dist/context/queries/index.d.ts +2 -0
  615. package/dist/context/queries/index.js +1 -0
  616. package/dist/context/views/contextSnapshots.dataView.d.ts +104 -0
  617. package/dist/context/views/contextSnapshots.dataView.js +4 -0
  618. package/dist/context/views/index.d.ts +1 -0
  619. package/dist/context/views/index.js +1 -0
  620. package/dist/contract-registry/index.d.ts +3 -0
  621. package/dist/contract-registry/index.js +1 -0
  622. package/dist/contract-registry/schemas.d.ts +135 -0
  623. package/dist/contract-registry/schemas.js +1 -0
  624. package/dist/contract-registry/types.d.ts +42 -0
  625. package/dist/contract-registry/types.js +0 -0
  626. package/dist/contracts-spec.feature.d.ts +1 -0
  627. package/dist/contracts-spec.feature.js +1 -0
  628. package/dist/control-plane/approval-kernel.d.ts +178 -0
  629. package/dist/control-plane/approval-kernel.js +1 -0
  630. package/dist/control-plane/capabilities/controlPlaneApproval.capability.d.ts +1 -0
  631. package/dist/control-plane/capabilities/controlPlaneApproval.capability.js +1 -0
  632. package/dist/control-plane/capabilities/controlPlaneAudit.capability.d.ts +1 -0
  633. package/dist/control-plane/capabilities/controlPlaneAudit.capability.js +1 -0
  634. package/dist/control-plane/capabilities/controlPlaneChannelRuntime.capability.d.ts +1 -0
  635. package/dist/control-plane/capabilities/controlPlaneChannelRuntime.capability.js +1 -0
  636. package/dist/control-plane/capabilities/controlPlaneCore.capability.d.ts +1 -0
  637. package/dist/control-plane/capabilities/controlPlaneCore.capability.js +1 -0
  638. package/dist/control-plane/capabilities/controlPlaneSkillRegistry.capability.d.ts +1 -0
  639. package/dist/control-plane/capabilities/controlPlaneSkillRegistry.capability.js +1 -0
  640. package/dist/control-plane/capabilities/index.d.ts +5 -0
  641. package/dist/control-plane/capabilities/index.js +1 -0
  642. package/dist/control-plane/commands/controlPlaneExecutionAbort.command.d.ts +28 -0
  643. package/dist/control-plane/commands/controlPlaneExecutionAbort.command.js +1 -0
  644. package/dist/control-plane/commands/controlPlaneExecutionApprove.command.d.ts +61 -0
  645. package/dist/control-plane/commands/controlPlaneExecutionApprove.command.js +1 -0
  646. package/dist/control-plane/commands/controlPlaneExecutionCancel.command.d.ts +28 -0
  647. package/dist/control-plane/commands/controlPlaneExecutionCancel.command.js +1 -0
  648. package/dist/control-plane/commands/controlPlaneExecutionEvidenceExport.command.d.ts +48 -0
  649. package/dist/control-plane/commands/controlPlaneExecutionEvidenceExport.command.js +1 -0
  650. package/dist/control-plane/commands/controlPlaneExecutionPause.command.d.ts +28 -0
  651. package/dist/control-plane/commands/controlPlaneExecutionPause.command.js +1 -0
  652. package/dist/control-plane/commands/controlPlaneExecutionReject.command.d.ts +61 -0
  653. package/dist/control-plane/commands/controlPlaneExecutionReject.command.js +1 -0
  654. package/dist/control-plane/commands/controlPlaneExecutionResume.command.d.ts +24 -0
  655. package/dist/control-plane/commands/controlPlaneExecutionResume.command.js +1 -0
  656. package/dist/control-plane/commands/controlPlaneExecutionRetry.command.d.ts +28 -0
  657. package/dist/control-plane/commands/controlPlaneExecutionRetry.command.js +1 -0
  658. package/dist/control-plane/commands/controlPlaneExecutionShutdown.command.d.ts +28 -0
  659. package/dist/control-plane/commands/controlPlaneExecutionShutdown.command.js +1 -0
  660. package/dist/control-plane/commands/controlPlaneExecutionStart.command.d.ts +28 -0
  661. package/dist/control-plane/commands/controlPlaneExecutionStart.command.js +1 -0
  662. package/dist/control-plane/commands/controlPlaneIntentSubmit.command.d.ts +47 -0
  663. package/dist/control-plane/commands/controlPlaneIntentSubmit.command.js +1 -0
  664. package/dist/control-plane/commands/controlPlanePlanCompile.command.d.ts +39 -0
  665. package/dist/control-plane/commands/controlPlanePlanCompile.command.js +1 -0
  666. package/dist/control-plane/commands/controlPlanePlanVerify.command.d.ts +33 -0
  667. package/dist/control-plane/commands/controlPlanePlanVerify.command.js +1 -0
  668. package/dist/control-plane/commands/controlPlaneSkillDisable.command.d.ts +36 -0
  669. package/dist/control-plane/commands/controlPlaneSkillDisable.command.js +1 -0
  670. package/dist/control-plane/commands/controlPlaneSkillInstall.command.d.ts +237 -0
  671. package/dist/control-plane/commands/controlPlaneSkillInstall.command.js +1 -0
  672. package/dist/control-plane/commands/index.d.ts +15 -0
  673. package/dist/control-plane/commands/index.js +1 -0
  674. package/dist/control-plane/connect-materialization.d.ts +101 -0
  675. package/dist/control-plane/connect-materialization.js +1 -0
  676. package/dist/control-plane/constants.d.ts +4 -0
  677. package/dist/control-plane/constants.js +1 -0
  678. package/dist/control-plane/contracts.d.ts +1661 -0
  679. package/dist/control-plane/contracts.js +1 -0
  680. package/dist/control-plane/control-plane.feature.d.ts +1 -0
  681. package/dist/control-plane/control-plane.feature.js +1 -0
  682. package/dist/control-plane/events/controlPlaneExecutionCompleted.event.d.ts +37 -0
  683. package/dist/control-plane/events/controlPlaneExecutionCompleted.event.js +1 -0
  684. package/dist/control-plane/events/controlPlaneExecutionFailed.event.d.ts +53 -0
  685. package/dist/control-plane/events/controlPlaneExecutionFailed.event.js +1 -0
  686. package/dist/control-plane/events/controlPlaneExecutionStepBlocked.event.d.ts +45 -0
  687. package/dist/control-plane/events/controlPlaneExecutionStepBlocked.event.js +1 -0
  688. package/dist/control-plane/events/controlPlaneExecutionStepCompleted.event.d.ts +37 -0
  689. package/dist/control-plane/events/controlPlaneExecutionStepCompleted.event.js +1 -0
  690. package/dist/control-plane/events/controlPlaneExecutionStepStarted.event.d.ts +37 -0
  691. package/dist/control-plane/events/controlPlaneExecutionStepStarted.event.js +1 -0
  692. package/dist/control-plane/events/controlPlaneIntentReceived.event.d.ts +45 -0
  693. package/dist/control-plane/events/controlPlaneIntentReceived.event.js +1 -0
  694. package/dist/control-plane/events/controlPlanePlanCompiled.event.d.ts +37 -0
  695. package/dist/control-plane/events/controlPlanePlanCompiled.event.js +1 -0
  696. package/dist/control-plane/events/controlPlanePlanRejected.event.d.ts +39 -0
  697. package/dist/control-plane/events/controlPlanePlanRejected.event.js +1 -0
  698. package/dist/control-plane/events/controlPlaneSkillInstalled.event.d.ts +61 -0
  699. package/dist/control-plane/events/controlPlaneSkillInstalled.event.js +1 -0
  700. package/dist/control-plane/events/controlPlaneSkillRejected.event.d.ts +81 -0
  701. package/dist/control-plane/events/controlPlaneSkillRejected.event.js +1 -0
  702. package/dist/control-plane/events/index.d.ts +10 -0
  703. package/dist/control-plane/events/index.js +1 -0
  704. package/dist/control-plane/hook-authority-digest.d.ts +5 -0
  705. package/dist/control-plane/hook-authority-digest.js +1 -0
  706. package/dist/control-plane/hook-authority-immutable.d.ts +2 -0
  707. package/dist/control-plane/hook-authority-immutable.js +1 -0
  708. package/dist/control-plane/hook-authority-records.d.ts +68 -0
  709. package/dist/control-plane/hook-authority-records.js +0 -0
  710. package/dist/control-plane/hook-authority-reference-adapter.d.ts +13 -0
  711. package/dist/control-plane/hook-authority-reference-adapter.js +1 -0
  712. package/dist/control-plane/hook-authority-reference-binding.d.ts +2 -0
  713. package/dist/control-plane/hook-authority-reference-binding.js +1 -0
  714. package/dist/control-plane/hook-authority-reference-capability.d.ts +8 -0
  715. package/dist/control-plane/hook-authority-reference-capability.js +1 -0
  716. package/dist/control-plane/hook-authority-reference-clock.d.ts +7 -0
  717. package/dist/control-plane/hook-authority-reference-clock.js +1 -0
  718. package/dist/control-plane/hook-authority-reference-helpers.d.ts +5 -0
  719. package/dist/control-plane/hook-authority-reference-helpers.js +1 -0
  720. package/dist/control-plane/hook-authority-reference-invoke.d.ts +2 -0
  721. package/dist/control-plane/hook-authority-reference-invoke.js +1 -0
  722. package/dist/control-plane/hook-authority-reference-leases.d.ts +6 -0
  723. package/dist/control-plane/hook-authority-reference-leases.js +1 -0
  724. package/dist/control-plane/hook-authority-reference-lock.d.ts +3 -0
  725. package/dist/control-plane/hook-authority-reference-lock.js +1 -0
  726. package/dist/control-plane/hook-authority-reference-result.d.ts +2 -0
  727. package/dist/control-plane/hook-authority-reference-result.js +1 -0
  728. package/dist/control-plane/hook-authority-reference-session.d.ts +5 -0
  729. package/dist/control-plane/hook-authority-reference-session.js +1 -0
  730. package/dist/control-plane/hook-authority-reference-state.d.ts +24 -0
  731. package/dist/control-plane/hook-authority-reference-state.js +1 -0
  732. package/dist/control-plane/hook-authority-reference-validation.d.ts +3 -0
  733. package/dist/control-plane/hook-authority-reference-validation.js +1 -0
  734. package/dist/control-plane/hook-authority-test-body.d.ts +7 -0
  735. package/dist/control-plane/hook-authority-test-body.js +1 -0
  736. package/dist/control-plane/hook-authority-test-fixtures.d.ts +5 -0
  737. package/dist/control-plane/hook-authority-test-fixtures.js +1 -0
  738. package/dist/control-plane/hook-authority-validation-events.d.ts +3 -0
  739. package/dist/control-plane/hook-authority-validation-events.js +1 -0
  740. package/dist/control-plane/hook-authority-validation-objects.d.ts +3 -0
  741. package/dist/control-plane/hook-authority-validation-objects.js +1 -0
  742. package/dist/control-plane/hook-authority-validation-paths.d.ts +2 -0
  743. package/dist/control-plane/hook-authority-validation-paths.js +1 -0
  744. package/dist/control-plane/hook-authority-validation-primitives.d.ts +8 -0
  745. package/dist/control-plane/hook-authority-validation-primitives.js +1 -0
  746. package/dist/control-plane/hook-authority-validation-request.d.ts +3 -0
  747. package/dist/control-plane/hook-authority-validation-request.js +1 -0
  748. package/dist/control-plane/hook-authority-validation.d.ts +6 -0
  749. package/dist/control-plane/hook-authority-validation.js +1 -0
  750. package/dist/control-plane/hook-authority.d.ts +180 -0
  751. package/dist/control-plane/hook-authority.js +1 -0
  752. package/dist/control-plane/index.d.ts +15 -0
  753. package/dist/control-plane/index.js +1 -0
  754. package/dist/control-plane/policies/controlPlaneMessaging.policy.d.ts +1 -0
  755. package/dist/control-plane/policies/controlPlaneMessaging.policy.js +1 -0
  756. package/dist/control-plane/policies/index.d.ts +1 -0
  757. package/dist/control-plane/policies/index.js +1 -0
  758. package/dist/control-plane/queries/controlPlaneExecutionGet.query.d.ts +82 -0
  759. package/dist/control-plane/queries/controlPlaneExecutionGet.query.js +1 -0
  760. package/dist/control-plane/queries/controlPlaneExecutionLane.models.d.ts +174 -0
  761. package/dist/control-plane/queries/controlPlaneExecutionLane.models.js +1 -0
  762. package/dist/control-plane/queries/controlPlaneExecutionLaneGet.query.d.ts +100 -0
  763. package/dist/control-plane/queries/controlPlaneExecutionLaneGet.query.js +1 -0
  764. package/dist/control-plane/queries/controlPlaneExecutionLaneList.query.d.ts +82 -0
  765. package/dist/control-plane/queries/controlPlaneExecutionLaneList.query.js +1 -0
  766. package/dist/control-plane/queries/controlPlaneExecutionList.query.d.ts +79 -0
  767. package/dist/control-plane/queries/controlPlaneExecutionList.query.js +1 -0
  768. package/dist/control-plane/queries/controlPlanePolicyExplain.query.d.ts +29 -0
  769. package/dist/control-plane/queries/controlPlanePolicyExplain.query.js +1 -0
  770. package/dist/control-plane/queries/controlPlaneSkillList.query.d.ts +54 -0
  771. package/dist/control-plane/queries/controlPlaneSkillList.query.js +1 -0
  772. package/dist/control-plane/queries/controlPlaneSkillVerify.query.d.ts +214 -0
  773. package/dist/control-plane/queries/controlPlaneSkillVerify.query.js +1 -0
  774. package/dist/control-plane/queries/controlPlaneTraceGet.query.d.ts +42 -0
  775. package/dist/control-plane/queries/controlPlaneTraceGet.query.js +1 -0
  776. package/dist/control-plane/queries/index.d.ts +9 -0
  777. package/dist/control-plane/queries/index.js +1 -0
  778. package/dist/control-plane/repository-authority-bootstrap.d.ts +42 -0
  779. package/dist/control-plane/repository-authority-bootstrap.js +1 -0
  780. package/dist/control-plane/skills/index.d.ts +5 -0
  781. package/dist/control-plane/skills/index.js +1 -0
  782. package/dist/control-plane/skills/schema.d.ts +174 -0
  783. package/dist/control-plane/skills/schema.js +1 -0
  784. package/dist/control-plane/skills/signer.d.ts +16 -0
  785. package/dist/control-plane/skills/signer.js +4 -0
  786. package/dist/control-plane/skills/types.d.ts +73 -0
  787. package/dist/control-plane/skills/types.js +0 -0
  788. package/dist/control-plane/skills/validator.d.ts +2 -0
  789. package/dist/control-plane/skills/validator.js +1 -0
  790. package/dist/control-plane/skills/verifier.d.ts +9 -0
  791. package/dist/control-plane/skills/verifier.js +1 -0
  792. package/dist/creative-intelligence/constants.d.ts +9 -0
  793. package/dist/creative-intelligence/constants.js +1 -0
  794. package/dist/creative-intelligence/events.d.ts +318 -0
  795. package/dist/creative-intelligence/events.js +3 -0
  796. package/dist/creative-intelligence/index.d.ts +5 -0
  797. package/dist/creative-intelligence/index.js +1 -0
  798. package/dist/creative-intelligence/operations.d.ts +756 -0
  799. package/dist/creative-intelligence/operations.js +6 -0
  800. package/dist/creative-intelligence/registry.d.ts +9 -0
  801. package/dist/creative-intelligence/registry.js +1 -0
  802. package/dist/creative-intelligence/types.d.ts +94 -0
  803. package/dist/creative-intelligence/types.js +0 -0
  804. package/dist/creator-operations/campaign.d.ts +94 -0
  805. package/dist/creator-operations/campaign.js +1 -0
  806. package/dist/creator-operations/common.d.ts +24 -0
  807. package/dist/creator-operations/common.js +1 -0
  808. package/dist/creator-operations/index.d.ts +7 -0
  809. package/dist/creator-operations/index.js +1 -0
  810. package/dist/creator-operations/operation-inputs.d.ts +147 -0
  811. package/dist/creator-operations/operation-inputs.js +1 -0
  812. package/dist/creator-operations/operations.d.ts +858 -0
  813. package/dist/creator-operations/operations.js +23 -0
  814. package/dist/creator-operations/ports.d.ts +67 -0
  815. package/dist/creator-operations/ports.js +0 -0
  816. package/dist/creator-operations/submission.d.ts +49 -0
  817. package/dist/creator-operations/submission.js +1 -0
  818. package/dist/creator-operations/training-course.d.ts +33 -0
  819. package/dist/creator-operations/training-course.js +1 -0
  820. package/dist/creator-operations/training-operations.d.ts +102 -0
  821. package/dist/creator-operations/training-operations.js +1 -0
  822. package/dist/creator-operations/training-progress-operation.d.ts +25 -0
  823. package/dist/creator-operations/training-progress-operation.js +1 -0
  824. package/dist/creator-operations/training-quiz-operation.d.ts +59 -0
  825. package/dist/creator-operations/training-quiz-operation.js +1 -0
  826. package/dist/creator-operations/training-quiz-read.d.ts +50 -0
  827. package/dist/creator-operations/training-quiz-read.js +1 -0
  828. package/dist/creator-operations/training-quiz-view.d.ts +18 -0
  829. package/dist/creator-operations/training-quiz-view.js +1 -0
  830. package/dist/creator-operations/training-quiz.d.ts +88 -0
  831. package/dist/creator-operations/training-quiz.js +1 -0
  832. package/dist/creator-operations/training.d.ts +158 -0
  833. package/dist/creator-operations/training.js +1 -0
  834. package/dist/creator-operations/wallet.d.ts +73 -0
  835. package/dist/creator-operations/wallet.js +1 -0
  836. package/dist/customer-support/ai-outcome-evaluation-events.d.ts +841 -0
  837. package/dist/customer-support/ai-outcome-evaluation-events.js +1 -0
  838. package/dist/customer-support/ai-outcome-evaluation-operations.d.ts +2360 -0
  839. package/dist/customer-support/ai-outcome-evaluation-operations.js +1 -0
  840. package/dist/customer-support/ai-outcome-evaluation-output-schemas.d.ts +628 -0
  841. package/dist/customer-support/ai-outcome-evaluation-output-schemas.js +1 -0
  842. package/dist/customer-support/ai-outcome-evaluation-projection-schemas.d.ts +288 -0
  843. package/dist/customer-support/ai-outcome-evaluation-projection-schemas.js +1 -0
  844. package/dist/customer-support/ai-outcome-evaluation-query-schemas.d.ts +528 -0
  845. package/dist/customer-support/ai-outcome-evaluation-query-schemas.js +1 -0
  846. package/dist/customer-support/ai-outcome-evaluation-schemas.d.ts +183 -0
  847. package/dist/customer-support/ai-outcome-evaluation-schemas.js +1 -0
  848. package/dist/customer-support/ai-outcome-evaluation.d.ts +173 -0
  849. package/dist/customer-support/ai-outcome-evaluation.js +1 -0
  850. package/dist/customer-support/ai-outcome-event-delivery-schemas.d.ts +45 -0
  851. package/dist/customer-support/ai-outcome-event-delivery-schemas.js +1 -0
  852. package/dist/customer-support/ai-outcome-event-delivery.d.ts +68 -0
  853. package/dist/customer-support/ai-outcome-event-delivery.js +0 -0
  854. package/dist/customer-support/ai-outcome-event-digest.d.ts +2 -0
  855. package/dist/customer-support/ai-outcome-event-digest.js +1 -0
  856. package/dist/customer-support/ai-outcome-learning-events.d.ts +331 -0
  857. package/dist/customer-support/ai-outcome-learning-events.js +1 -0
  858. package/dist/customer-support/ai-outcome-learning-operations.d.ts +623 -0
  859. package/dist/customer-support/ai-outcome-learning-operations.js +1 -0
  860. package/dist/customer-support/ai-outcome-learning-schema-support.d.ts +4 -0
  861. package/dist/customer-support/ai-outcome-learning-schema-support.js +1 -0
  862. package/dist/customer-support/ai-outcome-learning-schemas.d.ts +485 -0
  863. package/dist/customer-support/ai-outcome-learning-schemas.js +1 -0
  864. package/dist/customer-support/ai-outcome-learning.d.ts +115 -0
  865. package/dist/customer-support/ai-outcome-learning.js +1 -0
  866. package/dist/customer-support/attachment-safety-operations.d.ts +424 -0
  867. package/dist/customer-support/attachment-safety-operations.js +1 -0
  868. package/dist/customer-support/attachment-safety-schemas.d.ts +208 -0
  869. package/dist/customer-support/attachment-safety-schemas.js +1 -0
  870. package/dist/customer-support/attachment-safety.d.ts +87 -0
  871. package/dist/customer-support/attachment-safety.js +13 -0
  872. package/dist/customer-support/authos-session.d.ts +83 -0
  873. package/dist/customer-support/authos-session.js +10 -0
  874. package/dist/customer-support/billing-entitlement-events.d.ts +275 -0
  875. package/dist/customer-support/billing-entitlement-events.js +1 -0
  876. package/dist/customer-support/billing-entitlement-input-schemas.d.ts +61 -0
  877. package/dist/customer-support/billing-entitlement-input-schemas.js +1 -0
  878. package/dist/customer-support/billing-entitlement-operations.d.ts +731 -0
  879. package/dist/customer-support/billing-entitlement-operations.js +1 -0
  880. package/dist/customer-support/billing-entitlement-output-schemas.d.ts +410 -0
  881. package/dist/customer-support/billing-entitlement-output-schemas.js +1 -0
  882. package/dist/customer-support/billing-entitlement-schema-primitives.d.ts +21 -0
  883. package/dist/customer-support/billing-entitlement-schema-primitives.js +1 -0
  884. package/dist/customer-support/billing-entitlements.d.ts +108 -0
  885. package/dist/customer-support/billing-entitlements.js +1 -0
  886. package/dist/customer-support/capability-matrix-evidence.d.ts +9 -0
  887. package/dist/customer-support/capability-matrix-evidence.js +1 -0
  888. package/dist/customer-support/capability-matrix-registries.d.ts +21 -0
  889. package/dist/customer-support/capability-matrix-registries.js +1 -0
  890. package/dist/customer-support/capability-matrix-validation-evidence.d.ts +4 -0
  891. package/dist/customer-support/capability-matrix-validation-evidence.js +1 -0
  892. package/dist/customer-support/capability-matrix-validation-helpers.d.ts +5 -0
  893. package/dist/customer-support/capability-matrix-validation-helpers.js +1 -0
  894. package/dist/customer-support/capability-matrix-validation.d.ts +7 -0
  895. package/dist/customer-support/capability-matrix-validation.js +1 -0
  896. package/dist/customer-support/capability-matrix.d.ts +101 -0
  897. package/dist/customer-support/capability-matrix.js +3 -0
  898. package/dist/customer-support/case-assignments.d.ts +60 -0
  899. package/dist/customer-support/case-assignments.js +19 -0
  900. package/dist/customer-support/case-cursor.d.ts +17 -0
  901. package/dist/customer-support/case-cursor.js +8 -0
  902. package/dist/customer-support/case-lifecycle-event-schemas.d.ts +42 -0
  903. package/dist/customer-support/case-lifecycle-event-schemas.js +1 -0
  904. package/dist/customer-support/case-lifecycle.d.ts +268 -0
  905. package/dist/customer-support/case-lifecycle.js +8 -0
  906. package/dist/customer-support/case-presence.d.ts +221 -0
  907. package/dist/customer-support/case-presence.js +11 -0
  908. package/dist/customer-support/case-relations.d.ts +63 -0
  909. package/dist/customer-support/case-relations.js +14 -0
  910. package/dist/customer-support/company-action-events.d.ts +586 -0
  911. package/dist/customer-support/company-action-events.js +1 -0
  912. package/dist/customer-support/company-action-input-schemas.d.ts +113 -0
  913. package/dist/customer-support/company-action-input-schemas.js +1 -0
  914. package/dist/customer-support/company-action-operations.d.ts +1284 -0
  915. package/dist/customer-support/company-action-operations.js +1 -0
  916. package/dist/customer-support/company-action-output-schemas.d.ts +370 -0
  917. package/dist/customer-support/company-action-output-schemas.js +1 -0
  918. package/dist/customer-support/company-action-plans.d.ts +179 -0
  919. package/dist/customer-support/company-action-plans.js +1 -0
  920. package/dist/customer-support/company-action-schema-primitives.d.ts +20 -0
  921. package/dist/customer-support/company-action-schema-primitives.js +1 -0
  922. package/dist/customer-support/core.d.ts +143 -0
  923. package/dist/customer-support/core.js +1 -0
  924. package/dist/customer-support/crypto-lifecycle.d.ts +143 -0
  925. package/dist/customer-support/crypto-lifecycle.js +12 -0
  926. package/dist/customer-support/crypto-rotation-drill-events.d.ts +514 -0
  927. package/dist/customer-support/crypto-rotation-drill-events.js +1 -0
  928. package/dist/customer-support/crypto-rotation-drill-input-schemas.d.ts +125 -0
  929. package/dist/customer-support/crypto-rotation-drill-input-schemas.js +1 -0
  930. package/dist/customer-support/crypto-rotation-drill-operations.d.ts +997 -0
  931. package/dist/customer-support/crypto-rotation-drill-operations.js +1 -0
  932. package/dist/customer-support/crypto-rotation-drill-output-schemas.d.ts +392 -0
  933. package/dist/customer-support/crypto-rotation-drill-output-schemas.js +1 -0
  934. package/dist/customer-support/crypto-rotation-drill-schema-primitives.d.ts +21 -0
  935. package/dist/customer-support/crypto-rotation-drill-schema-primitives.js +1 -0
  936. package/dist/customer-support/crypto-rotation-drill.d.ts +142 -0
  937. package/dist/customer-support/crypto-rotation-drill.js +1 -0
  938. package/dist/customer-support/crypto-rotation-operations.d.ts +947 -0
  939. package/dist/customer-support/crypto-rotation-operations.js +1 -0
  940. package/dist/customer-support/crypto-rotation-schemas.d.ts +282 -0
  941. package/dist/customer-support/crypto-rotation-schemas.js +1 -0
  942. package/dist/customer-support/crypto-rotation.d.ts +141 -0
  943. package/dist/customer-support/crypto-rotation.js +10 -0
  944. package/dist/customer-support/csat-input-digest.d.ts +3 -0
  945. package/dist/customer-support/csat-input-digest.js +1 -0
  946. package/dist/customer-support/csat-invitation-job-schemas.d.ts +134 -0
  947. package/dist/customer-support/csat-invitation-job-schemas.js +1 -0
  948. package/dist/customer-support/csat-invitation-jobs.d.ts +83 -0
  949. package/dist/customer-support/csat-invitation-jobs.js +0 -0
  950. package/dist/customer-support/csat-operation-schemas.d.ts +264 -0
  951. package/dist/customer-support/csat-operation-schemas.js +1 -0
  952. package/dist/customer-support/csat-operations.d.ts +409 -0
  953. package/dist/customer-support/csat-operations.js +1 -0
  954. package/dist/customer-support/csat-schema-support.d.ts +1 -0
  955. package/dist/customer-support/csat-schema-support.js +1 -0
  956. package/dist/customer-support/csat-survey-events.d.ts +134 -0
  957. package/dist/customer-support/csat-survey-events.js +1 -0
  958. package/dist/customer-support/csat-survey-operations.d.ts +260 -0
  959. package/dist/customer-support/csat-survey-operations.js +1 -0
  960. package/dist/customer-support/csat-survey-schemas.d.ts +203 -0
  961. package/dist/customer-support/csat-survey-schemas.js +1 -0
  962. package/dist/customer-support/csat-surveys.d.ts +78 -0
  963. package/dist/customer-support/csat-surveys.js +15 -0
  964. package/dist/customer-support/csat.d.ts +80 -0
  965. package/dist/customer-support/csat.js +12 -0
  966. package/dist/customer-support/customer-session-consent-operations.d.ts +983 -0
  967. package/dist/customer-support/customer-session-consent-operations.js +1 -0
  968. package/dist/customer-support/customer-session-consent-output-schemas.d.ts +108 -0
  969. package/dist/customer-support/customer-session-consent-output-schemas.js +1 -0
  970. package/dist/customer-support/customer-session-consent-schemas.d.ts +172 -0
  971. package/dist/customer-support/customer-session-consent-schemas.js +1 -0
  972. package/dist/customer-support/customer-session-consent.d.ts +160 -0
  973. package/dist/customer-support/customer-session-consent.js +14 -0
  974. package/dist/customer-support/customer-session-schema-support.d.ts +30 -0
  975. package/dist/customer-support/customer-session-schema-support.js +1 -0
  976. package/dist/customer-support/customer-support.feature.d.ts +11 -0
  977. package/dist/customer-support/customer-support.feature.js +3 -0
  978. package/dist/customer-support/data-lifecycle-events.d.ts +409 -0
  979. package/dist/customer-support/data-lifecycle-events.js +1 -0
  980. package/dist/customer-support/data-lifecycle-input-schemas.d.ts +146 -0
  981. package/dist/customer-support/data-lifecycle-input-schemas.js +1 -0
  982. package/dist/customer-support/data-lifecycle-operations.d.ts +1028 -0
  983. package/dist/customer-support/data-lifecycle-operations.js +1 -0
  984. package/dist/customer-support/data-lifecycle-output-schemas.d.ts +429 -0
  985. package/dist/customer-support/data-lifecycle-output-schemas.js +1 -0
  986. package/dist/customer-support/data-lifecycle-ports.d.ts +115 -0
  987. package/dist/customer-support/data-lifecycle-ports.js +0 -0
  988. package/dist/customer-support/data-lifecycle-schema-primitives.d.ts +29 -0
  989. package/dist/customer-support/data-lifecycle-schema-primitives.js +1 -0
  990. package/dist/customer-support/data-lifecycle-schema-validation.d.ts +11 -0
  991. package/dist/customer-support/data-lifecycle-schema-validation.js +1 -0
  992. package/dist/customer-support/data-lifecycle.d.ts +98 -0
  993. package/dist/customer-support/data-lifecycle.js +5 -0
  994. package/dist/customer-support/errors.d.ts +18 -0
  995. package/dist/customer-support/errors.js +6 -0
  996. package/dist/customer-support/event-validation.d.ts +7 -0
  997. package/dist/customer-support/event-validation.js +1 -0
  998. package/dist/customer-support/events.d.ts +5436 -0
  999. package/dist/customer-support/events.js +1 -0
  1000. package/dist/customer-support/export-artifact-access-schemas.d.ts +223 -0
  1001. package/dist/customer-support/export-artifact-access-schemas.js +1 -0
  1002. package/dist/customer-support/export-artifact-access-validation.d.ts +14 -0
  1003. package/dist/customer-support/export-artifact-access-validation.js +1 -0
  1004. package/dist/customer-support/export-artifact-access.d.ts +93 -0
  1005. package/dist/customer-support/export-artifact-access.js +1 -0
  1006. package/dist/customer-support/export-artifact-event-schemas.d.ts +131 -0
  1007. package/dist/customer-support/export-artifact-event-schemas.js +1 -0
  1008. package/dist/customer-support/export-artifact-lifecycle-schemas.d.ts +152 -0
  1009. package/dist/customer-support/export-artifact-lifecycle-schemas.js +1 -0
  1010. package/dist/customer-support/export-artifact-lifecycle.d.ts +86 -0
  1011. package/dist/customer-support/export-artifact-lifecycle.js +1 -0
  1012. package/dist/customer-support/export-artifact-storage.d.ts +117 -0
  1013. package/dist/customer-support/export-artifact-storage.js +0 -0
  1014. package/dist/customer-support/export-events.d.ts +1251 -0
  1015. package/dist/customer-support/export-events.js +1 -0
  1016. package/dist/customer-support/export-input-schemas.d.ts +118 -0
  1017. package/dist/customer-support/export-input-schemas.js +1 -0
  1018. package/dist/customer-support/export-operations.d.ts +1471 -0
  1019. package/dist/customer-support/export-operations.js +1 -0
  1020. package/dist/customer-support/export-output-schemas.d.ts +284 -0
  1021. package/dist/customer-support/export-output-schemas.js +1 -0
  1022. package/dist/customer-support/export-schemas.d.ts +3 -0
  1023. package/dist/customer-support/export-schemas.js +1 -0
  1024. package/dist/customer-support/exports.d.ts +148 -0
  1025. package/dist/customer-support/exports.js +1 -0
  1026. package/dist/customer-support/identity-resolution-operations.d.ts +983 -0
  1027. package/dist/customer-support/identity-resolution-operations.js +1 -0
  1028. package/dist/customer-support/identity-resolution-output-schemas.d.ts +286 -0
  1029. package/dist/customer-support/identity-resolution-output-schemas.js +1 -0
  1030. package/dist/customer-support/identity-resolution-schemas.d.ts +107 -0
  1031. package/dist/customer-support/identity-resolution-schemas.js +1 -0
  1032. package/dist/customer-support/identity-resolution.d.ts +135 -0
  1033. package/dist/customer-support/identity-resolution.js +18 -0
  1034. package/dist/customer-support/index.d.ts +195 -0
  1035. package/dist/customer-support/index.js +1 -0
  1036. package/dist/customer-support/internal-note-operations.d.ts +1152 -0
  1037. package/dist/customer-support/internal-note-operations.js +1 -0
  1038. package/dist/customer-support/internal-note-schemas.d.ts +593 -0
  1039. package/dist/customer-support/internal-note-schemas.js +1 -0
  1040. package/dist/customer-support/internal-notes.d.ts +173 -0
  1041. package/dist/customer-support/internal-notes.js +27 -0
  1042. package/dist/customer-support/job-runtime.d.ts +86 -0
  1043. package/dist/customer-support/job-runtime.js +13 -0
  1044. package/dist/customer-support/knowledge-authority-citation-schema.d.ts +37 -0
  1045. package/dist/customer-support/knowledge-authority-citation-schema.js +1 -0
  1046. package/dist/customer-support/knowledge-authority-digest.d.ts +2 -0
  1047. package/dist/customer-support/knowledge-authority-digest.js +1 -0
  1048. package/dist/customer-support/knowledge-authority-operations.d.ts +332 -0
  1049. package/dist/customer-support/knowledge-authority-operations.js +1 -0
  1050. package/dist/customer-support/knowledge-authority-schema-primitives.d.ts +22 -0
  1051. package/dist/customer-support/knowledge-authority-schema-primitives.js +1 -0
  1052. package/dist/customer-support/knowledge-authority-schemas.d.ts +325 -0
  1053. package/dist/customer-support/knowledge-authority-schemas.js +1 -0
  1054. package/dist/customer-support/knowledge-authority.d.ts +84 -0
  1055. package/dist/customer-support/knowledge-authority.js +1 -0
  1056. package/dist/customer-support/live-chat-binding-activity-digest.d.ts +17 -0
  1057. package/dist/customer-support/live-chat-binding-activity-digest.js +1 -0
  1058. package/dist/customer-support/live-chat-continuity-events.d.ts +118 -0
  1059. package/dist/customer-support/live-chat-continuity-events.js +1 -0
  1060. package/dist/customer-support/live-chat-continuity-operations.d.ts +379 -0
  1061. package/dist/customer-support/live-chat-continuity-operations.js +1 -0
  1062. package/dist/customer-support/live-chat-continuity-schemas.d.ts +256 -0
  1063. package/dist/customer-support/live-chat-continuity-schemas.js +1 -0
  1064. package/dist/customer-support/live-chat-continuity.d.ts +83 -0
  1065. package/dist/customer-support/live-chat-continuity.js +9 -0
  1066. package/dist/customer-support/membership-capabilities.d.ts +13 -0
  1067. package/dist/customer-support/membership-capabilities.js +1 -0
  1068. package/dist/customer-support/membership-operation-schemas.d.ts +519 -0
  1069. package/dist/customer-support/membership-operation-schemas.js +1 -0
  1070. package/dist/customer-support/membership-operations.d.ts +1011 -0
  1071. package/dist/customer-support/membership-operations.js +1 -0
  1072. package/dist/customer-support/memberships.d.ts +134 -0
  1073. package/dist/customer-support/memberships.js +24 -0
  1074. package/dist/customer-support/metadata-operations.d.ts +811 -0
  1075. package/dist/customer-support/metadata-operations.js +1 -0
  1076. package/dist/customer-support/metadata-output-schemas.d.ts +414 -0
  1077. package/dist/customer-support/metadata-output-schemas.js +1 -0
  1078. package/dist/customer-support/metadata-schema-validation.d.ts +25 -0
  1079. package/dist/customer-support/metadata-schema-validation.js +1 -0
  1080. package/dist/customer-support/metadata-schemas.d.ts +209 -0
  1081. package/dist/customer-support/metadata-schemas.js +1 -0
  1082. package/dist/customer-support/metadata.d.ts +116 -0
  1083. package/dist/customer-support/metadata.js +12 -0
  1084. package/dist/customer-support/notification-operations.d.ts +980 -0
  1085. package/dist/customer-support/notification-operations.js +1 -0
  1086. package/dist/customer-support/notification-output-schemas.d.ts +350 -0
  1087. package/dist/customer-support/notification-output-schemas.js +1 -0
  1088. package/dist/customer-support/notification-schemas.d.ts +187 -0
  1089. package/dist/customer-support/notification-schemas.js +1 -0
  1090. package/dist/customer-support/notifications.d.ts +207 -0
  1091. package/dist/customer-support/notifications.js +17 -0
  1092. package/dist/customer-support/opa-handoff-operations.d.ts +580 -0
  1093. package/dist/customer-support/opa-handoff-operations.js +1 -0
  1094. package/dist/customer-support/opa-handoff-schemas.d.ts +250 -0
  1095. package/dist/customer-support/opa-handoff-schemas.js +1 -0
  1096. package/dist/customer-support/opa-handoffs.d.ts +85 -0
  1097. package/dist/customer-support/opa-handoffs.js +6 -0
  1098. package/dist/customer-support/operation-schemas.d.ts +563 -0
  1099. package/dist/customer-support/operation-schemas.js +1 -0
  1100. package/dist/customer-support/operations.d.ts +17887 -0
  1101. package/dist/customer-support/operations.js +9 -0
  1102. package/dist/customer-support/platform-authority-binding-registry.d.ts +7 -0
  1103. package/dist/customer-support/platform-authority-binding-registry.js +1 -0
  1104. package/dist/customer-support/platform-authority-bindings.d.ts +107 -0
  1105. package/dist/customer-support/platform-authority-bindings.js +1 -0
  1106. package/dist/customer-support/platform-authority-doc.d.ts +10 -0
  1107. package/dist/customer-support/platform-authority-doc.js +3 -0
  1108. package/dist/customer-support/platform-authority.d.ts +117 -0
  1109. package/dist/customer-support/platform-authority.js +1 -0
  1110. package/dist/customer-support/platform-ports.d.ts +202 -0
  1111. package/dist/customer-support/platform-ports.js +9 -0
  1112. package/dist/customer-support/policies.d.ts +38 -0
  1113. package/dist/customer-support/policies.js +0 -0
  1114. package/dist/customer-support/ports.d.ts +84 -0
  1115. package/dist/customer-support/ports.js +0 -0
  1116. package/dist/customer-support/provider.d.ts +49 -0
  1117. package/dist/customer-support/provider.js +0 -0
  1118. package/dist/customer-support/report-export-events.d.ts +218 -0
  1119. package/dist/customer-support/report-export-events.js +1 -0
  1120. package/dist/customer-support/report-export-operations.d.ts +571 -0
  1121. package/dist/customer-support/report-export-operations.js +1 -0
  1122. package/dist/customer-support/report-export-schemas.d.ts +294 -0
  1123. package/dist/customer-support/report-export-schemas.js +1 -0
  1124. package/dist/customer-support/report-export.d.ts +34 -0
  1125. package/dist/customer-support/report-export.js +0 -0
  1126. package/dist/customer-support/reporting-definition-schemas.d.ts +310 -0
  1127. package/dist/customer-support/reporting-definition-schemas.js +1 -0
  1128. package/dist/customer-support/reporting-definition-validation.d.ts +3 -0
  1129. package/dist/customer-support/reporting-definition-validation.js +1 -0
  1130. package/dist/customer-support/reporting-doc.d.ts +11 -0
  1131. package/dist/customer-support/reporting-doc.js +3 -0
  1132. package/dist/customer-support/reporting-event-schemas.d.ts +225 -0
  1133. package/dist/customer-support/reporting-event-schemas.js +1 -0
  1134. package/dist/customer-support/reporting-events.d.ts +781 -0
  1135. package/dist/customer-support/reporting-events.js +1 -0
  1136. package/dist/customer-support/reporting-metric-compatibility.d.ts +2 -0
  1137. package/dist/customer-support/reporting-metric-compatibility.js +1 -0
  1138. package/dist/customer-support/reporting-operations.d.ts +1593 -0
  1139. package/dist/customer-support/reporting-operations.js +1 -0
  1140. package/dist/customer-support/reporting-port.d.ts +17 -0
  1141. package/dist/customer-support/reporting-port.js +0 -0
  1142. package/dist/customer-support/reporting-query-schemas.d.ts +259 -0
  1143. package/dist/customer-support/reporting-query-schemas.js +1 -0
  1144. package/dist/customer-support/reporting-query-validation.d.ts +3 -0
  1145. package/dist/customer-support/reporting-query-validation.js +1 -0
  1146. package/dist/customer-support/reporting-record-schemas.d.ts +93 -0
  1147. package/dist/customer-support/reporting-record-schemas.js +1 -0
  1148. package/dist/customer-support/reporting-schema-primitives.d.ts +49 -0
  1149. package/dist/customer-support/reporting-schema-primitives.js +1 -0
  1150. package/dist/customer-support/reporting-schemas.d.ts +4 -0
  1151. package/dist/customer-support/reporting-schemas.js +1 -0
  1152. package/dist/customer-support/reporting.d.ts +148 -0
  1153. package/dist/customer-support/reporting.js +1 -0
  1154. package/dist/customer-support/routing-administration.d.ts +83 -0
  1155. package/dist/customer-support/routing-administration.js +12 -0
  1156. package/dist/customer-support/routing-operation-schemas.d.ts +379 -0
  1157. package/dist/customer-support/routing-operation-schemas.js +1 -0
  1158. package/dist/customer-support/routing-operations.d.ts +631 -0
  1159. package/dist/customer-support/routing-operations.js +1 -0
  1160. package/dist/customer-support/search-view-operations.d.ts +915 -0
  1161. package/dist/customer-support/search-view-operations.js +1 -0
  1162. package/dist/customer-support/search-view-output-schemas.d.ts +509 -0
  1163. package/dist/customer-support/search-view-output-schemas.js +1 -0
  1164. package/dist/customer-support/search-view-schemas.d.ts +192 -0
  1165. package/dist/customer-support/search-view-schemas.js +1 -0
  1166. package/dist/customer-support/search-views.d.ts +104 -0
  1167. package/dist/customer-support/search-views.js +19 -0
  1168. package/dist/customer-support/service-profile-operations.d.ts +675 -0
  1169. package/dist/customer-support/service-profile-operations.js +1 -0
  1170. package/dist/customer-support/service-profile-output-schemas.d.ts +126 -0
  1171. package/dist/customer-support/service-profile-output-schemas.js +1 -0
  1172. package/dist/customer-support/service-profile-party-schema.d.ts +17 -0
  1173. package/dist/customer-support/service-profile-party-schema.js +1 -0
  1174. package/dist/customer-support/service-profile-schemas.d.ts +124 -0
  1175. package/dist/customer-support/service-profile-schemas.js +1 -0
  1176. package/dist/customer-support/service-profile.d.ts +82 -0
  1177. package/dist/customer-support/service-profile.js +16 -0
  1178. package/dist/customer-support/signed-webhook-events.d.ts +621 -0
  1179. package/dist/customer-support/signed-webhook-events.js +1 -0
  1180. package/dist/customer-support/signed-webhook-input-schemas.d.ts +206 -0
  1181. package/dist/customer-support/signed-webhook-input-schemas.js +1 -0
  1182. package/dist/customer-support/signed-webhook-operations.d.ts +1745 -0
  1183. package/dist/customer-support/signed-webhook-operations.js +1 -0
  1184. package/dist/customer-support/signed-webhook-output-schemas.d.ts +613 -0
  1185. package/dist/customer-support/signed-webhook-output-schemas.js +1 -0
  1186. package/dist/customer-support/signed-webhook-ports.d.ts +112 -0
  1187. package/dist/customer-support/signed-webhook-ports.js +0 -0
  1188. package/dist/customer-support/signed-webhook-schema-primitives.d.ts +26 -0
  1189. package/dist/customer-support/signed-webhook-schema-primitives.js +1 -0
  1190. package/dist/customer-support/signed-webhook-schemas.d.ts +125 -0
  1191. package/dist/customer-support/signed-webhook-schemas.js +1 -0
  1192. package/dist/customer-support/signed-webhook-value-validation.d.ts +3 -0
  1193. package/dist/customer-support/signed-webhook-value-validation.js +1 -0
  1194. package/dist/customer-support/signed-webhook-wire-schema.d.ts +37 -0
  1195. package/dist/customer-support/signed-webhook-wire-schema.js +1 -0
  1196. package/dist/customer-support/signed-webhook-wire.d.ts +65 -0
  1197. package/dist/customer-support/signed-webhook-wire.js +1 -0
  1198. package/dist/customer-support/signed-webhooks.d.ts +116 -0
  1199. package/dist/customer-support/signed-webhooks.js +1 -0
  1200. package/dist/customer-support/skills-routing-operations.d.ts +554 -0
  1201. package/dist/customer-support/skills-routing-operations.js +1 -0
  1202. package/dist/customer-support/skills-routing-output-schemas.d.ts +229 -0
  1203. package/dist/customer-support/skills-routing-output-schemas.js +1 -0
  1204. package/dist/customer-support/skills-routing-schemas.d.ts +104 -0
  1205. package/dist/customer-support/skills-routing-schemas.js +1 -0
  1206. package/dist/customer-support/skills-routing.d.ts +104 -0
  1207. package/dist/customer-support/skills-routing.js +16 -0
  1208. package/dist/customer-support/sla-administration.d.ts +150 -0
  1209. package/dist/customer-support/sla-administration.js +15 -0
  1210. package/dist/customer-support/sla-operation-schemas.d.ts +304 -0
  1211. package/dist/customer-support/sla-operation-schemas.js +1 -0
  1212. package/dist/customer-support/sla-operations.d.ts +863 -0
  1213. package/dist/customer-support/sla-operations.js +1 -0
  1214. package/dist/customer-support/sla-policy-operation-schemas.d.ts +447 -0
  1215. package/dist/customer-support/sla-policy-operation-schemas.js +1 -0
  1216. package/dist/customer-support/sla-schema-validation.d.ts +11 -0
  1217. package/dist/customer-support/sla-schema-validation.js +1 -0
  1218. package/dist/customer-support/slo-incident-alert-input-schemas.d.ts +134 -0
  1219. package/dist/customer-support/slo-incident-alert-input-schemas.js +1 -0
  1220. package/dist/customer-support/slo-incident-alert.d.ts +26 -0
  1221. package/dist/customer-support/slo-incident-alert.js +0 -0
  1222. package/dist/customer-support/slo-incident-assessment-input-schemas.d.ts +239 -0
  1223. package/dist/customer-support/slo-incident-assessment-input-schemas.js +1 -0
  1224. package/dist/customer-support/slo-incident-assessment-output-schemas.d.ts +237 -0
  1225. package/dist/customer-support/slo-incident-assessment-output-schemas.js +1 -0
  1226. package/dist/customer-support/slo-incident-doc.d.ts +11 -0
  1227. package/dist/customer-support/slo-incident-doc.js +12 -0
  1228. package/dist/customer-support/slo-incident-event-delivery.d.ts +62 -0
  1229. package/dist/customer-support/slo-incident-event-delivery.js +0 -0
  1230. package/dist/customer-support/slo-incident-event-schemas.d.ts +677 -0
  1231. package/dist/customer-support/slo-incident-event-schemas.js +1 -0
  1232. package/dist/customer-support/slo-incident-event-types.d.ts +54 -0
  1233. package/dist/customer-support/slo-incident-event-types.js +0 -0
  1234. package/dist/customer-support/slo-incident-events.d.ts +1702 -0
  1235. package/dist/customer-support/slo-incident-events.js +1 -0
  1236. package/dist/customer-support/slo-incident-input-schemas.d.ts +126 -0
  1237. package/dist/customer-support/slo-incident-input-schemas.js +1 -0
  1238. package/dist/customer-support/slo-incident-operation-output-schemas.d.ts +961 -0
  1239. package/dist/customer-support/slo-incident-operation-output-schemas.js +1 -0
  1240. package/dist/customer-support/slo-incident-operations.d.ts +3331 -0
  1241. package/dist/customer-support/slo-incident-operations.js +1 -0
  1242. package/dist/customer-support/slo-incident-output-schemas.d.ts +170 -0
  1243. package/dist/customer-support/slo-incident-output-schemas.js +1 -0
  1244. package/dist/customer-support/slo-incident-ports.d.ts +49 -0
  1245. package/dist/customer-support/slo-incident-ports.js +0 -0
  1246. package/dist/customer-support/slo-incident-profile.d.ts +17 -0
  1247. package/dist/customer-support/slo-incident-profile.js +0 -0
  1248. package/dist/customer-support/slo-incident-results.d.ts +27 -0
  1249. package/dist/customer-support/slo-incident-results.js +0 -0
  1250. package/dist/customer-support/slo-incident-schema-support.d.ts +49 -0
  1251. package/dist/customer-support/slo-incident-schema-support.js +1 -0
  1252. package/dist/customer-support/slo-incident.d.ts +167 -0
  1253. package/dist/customer-support/slo-incident.js +1 -0
  1254. package/dist/customer-support/slo-qualification-authorization-schemas.d.ts +88 -0
  1255. package/dist/customer-support/slo-qualification-authorization-schemas.js +1 -0
  1256. package/dist/customer-support/slo-qualification-authorization.d.ts +46 -0
  1257. package/dist/customer-support/slo-qualification-authorization.js +0 -0
  1258. package/dist/customer-support/slo-qualification-plan.d.ts +61 -0
  1259. package/dist/customer-support/slo-qualification-plan.js +1 -0
  1260. package/dist/customer-support/workspace-administration.d.ts +59 -0
  1261. package/dist/customer-support/workspace-administration.js +12 -0
  1262. package/dist/customer-support/workspace-brand-locale-residency-events.d.ts +68 -0
  1263. package/dist/customer-support/workspace-brand-locale-residency-events.js +1 -0
  1264. package/dist/customer-support/workspace-brand-locale-residency-operations.d.ts +785 -0
  1265. package/dist/customer-support/workspace-brand-locale-residency-operations.js +1 -0
  1266. package/dist/customer-support/workspace-brand-locale-residency-schema-validation.d.ts +7 -0
  1267. package/dist/customer-support/workspace-brand-locale-residency-schema-validation.js +1 -0
  1268. package/dist/customer-support/workspace-brand-locale-residency-schemas.d.ts +510 -0
  1269. package/dist/customer-support/workspace-brand-locale-residency-schemas.js +1 -0
  1270. package/dist/customer-support/workspace-brand-locale-residency.d.ts +98 -0
  1271. package/dist/customer-support/workspace-brand-locale-residency.js +9 -0
  1272. package/dist/customer-support/workspace-migration-operations.d.ts +3026 -0
  1273. package/dist/customer-support/workspace-migration-operations.js +1 -0
  1274. package/dist/customer-support/workspace-migration-schemas.d.ts +618 -0
  1275. package/dist/customer-support/workspace-migration-schemas.js +1 -0
  1276. package/dist/customer-support/workspace-migration.d.ts +99 -0
  1277. package/dist/customer-support/workspace-migration.js +8 -0
  1278. package/dist/customer-support/workspace-onboarding-operations.d.ts +364 -0
  1279. package/dist/customer-support/workspace-onboarding-operations.js +1 -0
  1280. package/dist/customer-support/workspace-onboarding-schemas.d.ts +230 -0
  1281. package/dist/customer-support/workspace-onboarding-schemas.js +1 -0
  1282. package/dist/customer-support/workspace-onboarding.d.ts +66 -0
  1283. package/dist/customer-support/workspace-onboarding.js +14 -0
  1284. package/dist/customer-support/workspace-operation-schemas.d.ts +264 -0
  1285. package/dist/customer-support/workspace-operation-schemas.js +1 -0
  1286. package/dist/customer-support/workspace-operations.d.ts +425 -0
  1287. package/dist/customer-support/workspace-operations.js +1 -0
  1288. package/dist/data-views/annotation.d.js +0 -0
  1289. package/dist/data-views/annotation.d.ts +78 -0
  1290. package/dist/data-views/annotation.js +10 -0
  1291. package/dist/data-views/data-views.d.ts +3 -0
  1292. package/dist/data-views/data-views.js +1 -0
  1293. package/dist/data-views/edit-form-resolution.d.js +0 -0
  1294. package/dist/data-views/edit-form-resolution.d.ts +48 -0
  1295. package/dist/data-views/edit-form-resolution.js +1 -0
  1296. package/dist/data-views/filter-scope.d.js +0 -0
  1297. package/dist/data-views/filter-scope.d.ts +17 -0
  1298. package/dist/data-views/filter-scope.js +1 -0
  1299. package/dist/data-views/graph-export.d.js +0 -0
  1300. package/dist/data-views/graph-export.d.ts +80 -0
  1301. package/dist/data-views/graph-export.js +2 -0
  1302. package/dist/data-views/graph-filter-codec.d.js +0 -0
  1303. package/dist/data-views/graph-filter-codec.d.ts +21 -0
  1304. package/dist/data-views/graph-filter-codec.js +2 -0
  1305. package/dist/data-views/graph-filter-spec.d.js +0 -0
  1306. package/dist/data-views/graph-filter-spec.d.ts +53 -0
  1307. package/dist/data-views/graph-filter-spec.js +2 -0
  1308. package/dist/data-views/graph-spec.d.js +0 -0
  1309. package/dist/data-views/graph-spec.d.ts +125 -0
  1310. package/dist/data-views/graph-spec.js +80 -0
  1311. package/dist/data-views/graph-subscription.d.js +0 -0
  1312. package/dist/data-views/graph-subscription.d.ts +131 -0
  1313. package/dist/data-views/graph-subscription.js +3 -0
  1314. package/dist/data-views/i18n-constraint.d.js +1 -0
  1315. package/dist/data-views/i18n-constraint.d.ts +78 -0
  1316. package/dist/data-views/i18n-constraint.js +0 -0
  1317. package/dist/data-views/index.d.js +1 -0
  1318. package/dist/data-views/index.d.ts +25 -0
  1319. package/dist/data-views/index.js +1 -0
  1320. package/dist/data-views/layout-spec.d.js +0 -0
  1321. package/dist/data-views/layout-spec.d.ts +140 -0
  1322. package/dist/data-views/layout-spec.js +2 -0
  1323. package/dist/data-views/query-generator.d.ts +67 -0
  1324. package/dist/data-views/query-generator.js +1 -0
  1325. package/dist/data-views/registry.d.js +0 -0
  1326. package/dist/data-views/registry.d.ts +12 -0
  1327. package/dist/data-views/registry.js +1 -0
  1328. package/dist/data-views/report/contractVerificationTable.d.ts +89 -0
  1329. package/dist/data-views/report/contractVerificationTable.js +29 -0
  1330. package/dist/data-views/runtime.d.ts +25 -0
  1331. package/dist/data-views/runtime.js +1 -0
  1332. package/dist/data-views/saved-view.d.js +0 -0
  1333. package/dist/data-views/saved-view.d.ts +56 -0
  1334. package/dist/data-views/saved-view.js +1 -0
  1335. package/dist/data-views/spec.d.js +0 -0
  1336. package/dist/data-views/spec.d.ts +63 -0
  1337. package/dist/data-views/spec.js +23 -0
  1338. package/dist/data-views/story-slide.d.js +0 -0
  1339. package/dist/data-views/story-slide.d.ts +131 -0
  1340. package/dist/data-views/story-slide.js +2 -0
  1341. package/dist/data-views/types.d.js +0 -0
  1342. package/dist/data-views/types.d.ts +725 -0
  1343. package/dist/data-views/types.js +0 -0
  1344. package/dist/database/capabilities/databaseContext.capability.d.ts +11 -0
  1345. package/dist/database/capabilities/databaseContext.capability.js +4 -0
  1346. package/dist/database/capabilities/index.d.ts +1 -0
  1347. package/dist/database/capabilities/index.js +1 -0
  1348. package/dist/database/commands/databaseMutationExecute.command.d.ts +107 -0
  1349. package/dist/database/commands/databaseMutationExecute.command.js +4 -0
  1350. package/dist/database/commands/databaseMutationPlan.command.d.ts +134 -0
  1351. package/dist/database/commands/databaseMutationPlan.command.js +4 -0
  1352. package/dist/database/commands/index.d.ts +2 -0
  1353. package/dist/database/commands/index.js +1 -0
  1354. package/dist/database/constants.d.ts +4 -0
  1355. package/dist/database/constants.js +1 -0
  1356. package/dist/database/contracts.d.ts +561 -0
  1357. package/dist/database/contracts.js +1 -0
  1358. package/dist/database/database.feature.d.ts +1 -0
  1359. package/dist/database/database.feature.js +1 -0
  1360. package/dist/database/economic-evidence.d.ts +11 -0
  1361. package/dist/database/economic-evidence.js +1 -0
  1362. package/dist/database/index.d.ts +9 -0
  1363. package/dist/database/index.js +1 -0
  1364. package/dist/database/queries/databaseDictionaryGet.query.d.ts +60 -0
  1365. package/dist/database/queries/databaseDictionaryGet.query.js +4 -0
  1366. package/dist/database/queries/databaseMigrationsList.query.d.ts +72 -0
  1367. package/dist/database/queries/databaseMigrationsList.query.js +4 -0
  1368. package/dist/database/queries/databaseQueryReadonly.query.d.ts +67 -0
  1369. package/dist/database/queries/databaseQueryReadonly.query.js +4 -0
  1370. package/dist/database/queries/databaseRelationalQuery.query.d.ts +191 -0
  1371. package/dist/database/queries/databaseRelationalQuery.query.js +9 -0
  1372. package/dist/database/queries/databaseSchemaDescribe.query.d.ts +98 -0
  1373. package/dist/database/queries/databaseSchemaDescribe.query.js +4 -0
  1374. package/dist/database/queries/index.d.ts +5 -0
  1375. package/dist/database/queries/index.js +1 -0
  1376. package/dist/database/tables/capabilityEdges.table.d.ts +16 -0
  1377. package/dist/database/tables/capabilityEdges.table.js +1 -0
  1378. package/dist/database/tables/capabilityNodes.table.d.ts +16 -0
  1379. package/dist/database/tables/capabilityNodes.table.js +1 -0
  1380. package/dist/database/tables/databaseTables.d.ts +292 -0
  1381. package/dist/database/tables/databaseTables.js +1 -0
  1382. package/dist/database/tables/index.d.ts +6 -0
  1383. package/dist/database/tables/index.js +1 -0
  1384. package/dist/database/tables/organizationGrants.table.d.ts +10 -0
  1385. package/dist/database/tables/organizationGrants.table.js +1 -0
  1386. package/dist/database/tables/organizationTenantBindings.table.d.ts +16 -0
  1387. package/dist/database/tables/organizationTenantBindings.table.js +1 -0
  1388. package/dist/database/tables/workspaces.table.d.ts +23 -0
  1389. package/dist/database/tables/workspaces.table.js +1 -0
  1390. package/dist/database/views/databaseSchemas.dataView.d.ts +86 -0
  1391. package/dist/database/views/databaseSchemas.dataView.js +4 -0
  1392. package/dist/database/views/index.d.ts +1 -0
  1393. package/dist/database/views/index.js +1 -0
  1394. package/dist/decisioning/decisioning.feature.d.js +0 -0
  1395. package/dist/decisioning/decisioning.feature.d.ts +22 -0
  1396. package/dist/decisioning/decisioning.feature.js +5 -0
  1397. package/dist/decisioning/evaluation-events.d.js +1 -0
  1398. package/dist/decisioning/evaluation-events.d.ts +373 -0
  1399. package/dist/decisioning/evaluation-events.js +1 -0
  1400. package/dist/decisioning/evaluation-evidence-administration-operations.d.js +0 -0
  1401. package/dist/decisioning/evaluation-evidence-administration-operations.d.ts +291 -0
  1402. package/dist/decisioning/evaluation-evidence-administration-operations.js +1 -0
  1403. package/dist/decisioning/evaluation-evidence-administration-schemas.d.js +1 -0
  1404. package/dist/decisioning/evaluation-evidence-administration-schemas.d.ts +210 -0
  1405. package/dist/decisioning/evaluation-evidence-administration-schemas.js +1 -0
  1406. package/dist/decisioning/evaluation-evidence-administration.d.js +0 -0
  1407. package/dist/decisioning/evaluation-evidence-administration.d.ts +34 -0
  1408. package/dist/decisioning/evaluation-evidence-administration.js +0 -0
  1409. package/dist/decisioning/evaluation-evidence-output-schemas.d.js +1 -0
  1410. package/dist/decisioning/evaluation-evidence-output-schemas.d.ts +142 -0
  1411. package/dist/decisioning/evaluation-evidence-output-schemas.js +1 -0
  1412. package/dist/decisioning/evaluation-input-schemas.d.js +1 -0
  1413. package/dist/decisioning/evaluation-input-schemas.d.ts +89 -0
  1414. package/dist/decisioning/evaluation-input-schemas.js +1 -0
  1415. package/dist/decisioning/evaluation-output-primitives.d.js +1 -0
  1416. package/dist/decisioning/evaluation-output-primitives.d.ts +51 -0
  1417. package/dist/decisioning/evaluation-output-primitives.js +1 -0
  1418. package/dist/decisioning/evaluation-output-schemas.d.js +1 -0
  1419. package/dist/decisioning/evaluation-output-schemas.d.ts +133 -0
  1420. package/dist/decisioning/evaluation-output-schemas.js +1 -0
  1421. package/dist/decisioning/evaluation-schema-validation.d.js +0 -0
  1422. package/dist/decisioning/evaluation-schema-validation.d.ts +8 -0
  1423. package/dist/decisioning/evaluation-schema-validation.js +1 -0
  1424. package/dist/decisioning/evaluation-trace-output-schema.d.js +0 -0
  1425. package/dist/decisioning/evaluation-trace-output-schema.d.ts +9 -0
  1426. package/dist/decisioning/evaluation-trace-output-schema.js +1 -0
  1427. package/dist/decisioning/evaluation.d.js +0 -0
  1428. package/dist/decisioning/evaluation.d.ts +126 -0
  1429. package/dist/decisioning/evaluation.js +0 -0
  1430. package/dist/decisioning/index.d.js +1 -0
  1431. package/dist/decisioning/index.d.ts +16 -0
  1432. package/dist/decisioning/index.js +1 -0
  1433. package/dist/decisioning/lifecycle-events.d.js +0 -0
  1434. package/dist/decisioning/lifecycle-events.d.ts +108 -0
  1435. package/dist/decisioning/lifecycle-events.js +1 -0
  1436. package/dist/decisioning/lifecycle-input-schemas.d.js +1 -0
  1437. package/dist/decisioning/lifecycle-input-schemas.d.ts +73 -0
  1438. package/dist/decisioning/lifecycle-input-schemas.js +1 -0
  1439. package/dist/decisioning/lifecycle-operations.d.js +1 -0
  1440. package/dist/decisioning/lifecycle-operations.d.ts +882 -0
  1441. package/dist/decisioning/lifecycle-operations.js +7 -0
  1442. package/dist/decisioning/lifecycle-output-schemas.d.js +1 -0
  1443. package/dist/decisioning/lifecycle-output-schemas.d.ts +237 -0
  1444. package/dist/decisioning/lifecycle-output-schemas.js +1 -0
  1445. package/dist/decisioning/lifecycle.d.js +0 -0
  1446. package/dist/decisioning/lifecycle.d.ts +72 -0
  1447. package/dist/decisioning/lifecycle.js +1 -0
  1448. package/dist/decisioning/operation-metadata.d.js +0 -0
  1449. package/dist/decisioning/operation-metadata.d.ts +76 -0
  1450. package/dist/decisioning/operation-metadata.js +1 -0
  1451. package/dist/decisioning/operations.d.js +0 -0
  1452. package/dist/decisioning/operations.d.ts +3282 -0
  1453. package/dist/decisioning/operations.js +1 -0
  1454. package/dist/decisioning/predicate-evaluation.d.js +0 -0
  1455. package/dist/decisioning/predicate-evaluation.d.ts +6 -0
  1456. package/dist/decisioning/predicate-evaluation.js +1 -0
  1457. package/dist/decisioning/predicate.d.js +0 -0
  1458. package/dist/decisioning/predicate.d.ts +24 -0
  1459. package/dist/decisioning/predicate.js +1 -0
  1460. package/dist/decisioning/types.d.js +1 -0
  1461. package/dist/decisioning/types.d.ts +89 -0
  1462. package/dist/decisioning/types.js +0 -0
  1463. package/dist/decisioning/validation-diagnostics.d.js +0 -0
  1464. package/dist/decisioning/validation-diagnostics.d.ts +17 -0
  1465. package/dist/decisioning/validation-diagnostics.js +1 -0
  1466. package/dist/decisioning/validation-policy.d.js +0 -0
  1467. package/dist/decisioning/validation-policy.d.ts +14 -0
  1468. package/dist/decisioning/validation-policy.js +1 -0
  1469. package/dist/decisioning/validation-shape.d.js +0 -0
  1470. package/dist/decisioning/validation-shape.d.ts +4 -0
  1471. package/dist/decisioning/validation-shape.js +1 -0
  1472. package/dist/decisioning/validation.d.js +1 -0
  1473. package/dist/decisioning/validation.d.ts +5 -0
  1474. package/dist/decisioning/validation.js +1 -0
  1475. package/dist/delivery/authority.d.ts +301 -0
  1476. package/dist/delivery/authority.js +1 -0
  1477. package/dist/delivery/autonomy-context.d.ts +19 -0
  1478. package/dist/delivery/autonomy-context.js +1 -0
  1479. package/dist/delivery/chain.d.ts +396 -0
  1480. package/dist/delivery/chain.js +1 -0
  1481. package/dist/delivery/ci-budget.d.ts +197 -0
  1482. package/dist/delivery/ci-budget.js +1 -0
  1483. package/dist/delivery/contracts.d.ts +133 -0
  1484. package/dist/delivery/contracts.js +1 -0
  1485. package/dist/delivery/index.d.ts +9 -0
  1486. package/dist/delivery/index.js +1 -0
  1487. package/dist/delivery/manual-author-attestation.d.ts +67 -0
  1488. package/dist/delivery/manual-author-attestation.js +1 -0
  1489. package/dist/delivery/primitives.d.js +0 -0
  1490. package/dist/delivery/primitives.d.ts +68 -0
  1491. package/dist/delivery/primitives.js +1 -0
  1492. package/dist/delivery/project-profile.d.ts +173 -0
  1493. package/dist/delivery/project-profile.js +1 -0
  1494. package/dist/delivery/scoped-autonomy.d.ts +110 -0
  1495. package/dist/delivery/scoped-autonomy.js +1 -0
  1496. package/dist/design-packs/index.d.js +1 -0
  1497. package/dist/design-packs/index.d.ts +11 -0
  1498. package/dist/design-packs/index.js +1 -0
  1499. package/dist/design-packs/inheritance.d.js +0 -0
  1500. package/dist/design-packs/inheritance.d.ts +4 -0
  1501. package/dist/design-packs/inheritance.js +1 -0
  1502. package/dist/design-packs/legacy-theme.d.js +0 -0
  1503. package/dist/design-packs/legacy-theme.d.ts +12 -0
  1504. package/dist/design-packs/legacy-theme.js +1 -0
  1505. package/dist/design-packs/operations.d.js +1 -0
  1506. package/dist/design-packs/operations.d.ts +1883 -0
  1507. package/dist/design-packs/operations.js +3 -0
  1508. package/dist/design-packs/patch-validation.d.js +0 -0
  1509. package/dist/design-packs/patch-validation.d.ts +2 -0
  1510. package/dist/design-packs/patch-validation.js +1 -0
  1511. package/dist/design-packs/patch-value-validation.d.js +0 -0
  1512. package/dist/design-packs/patch-value-validation.d.ts +3 -0
  1513. package/dist/design-packs/patch-value-validation.js +1 -0
  1514. package/dist/design-packs/patches.d.js +1 -0
  1515. package/dist/design-packs/patches.d.ts +35 -0
  1516. package/dist/design-packs/patches.js +1 -0
  1517. package/dist/design-packs/policy.d.js +0 -0
  1518. package/dist/design-packs/policy.d.ts +37 -0
  1519. package/dist/design-packs/policy.js +0 -0
  1520. package/dist/design-packs/ports.d.js +0 -0
  1521. package/dist/design-packs/ports.d.ts +79 -0
  1522. package/dist/design-packs/ports.js +0 -0
  1523. package/dist/design-packs/records.d.js +0 -0
  1524. package/dist/design-packs/records.d.ts +73 -0
  1525. package/dist/design-packs/records.js +0 -0
  1526. package/dist/design-packs/registry.d.js +0 -0
  1527. package/dist/design-packs/registry.d.ts +9 -0
  1528. package/dist/design-packs/registry.js +1 -0
  1529. package/dist/design-packs/resolution-helpers.d.js +0 -0
  1530. package/dist/design-packs/resolution-helpers.d.ts +6 -0
  1531. package/dist/design-packs/resolution-helpers.js +1 -0
  1532. package/dist/design-packs/runtime.d.js +0 -0
  1533. package/dist/design-packs/runtime.d.ts +31 -0
  1534. package/dist/design-packs/runtime.js +1 -0
  1535. package/dist/design-packs/types.d.js +0 -0
  1536. package/dist/design-packs/types.d.ts +47 -0
  1537. package/dist/design-packs/types.js +1 -0
  1538. package/dist/design-packs/validation.d.js +0 -0
  1539. package/dist/design-packs/validation.d.ts +18 -0
  1540. package/dist/design-packs/validation.js +1 -0
  1541. package/dist/docs/capabilities/documentationSystem.capability.d.js +0 -0
  1542. package/dist/docs/capabilities/documentationSystem.capability.d.ts +1 -0
  1543. package/dist/docs/capabilities/documentationSystem.capability.js +1 -0
  1544. package/dist/docs/capabilities/index.d.js +1 -0
  1545. package/dist/docs/capabilities/index.d.ts +1 -0
  1546. package/dist/docs/capabilities/index.js +1 -0
  1547. package/dist/docs/commands/docsGenerate.command.d.js +0 -0
  1548. package/dist/docs/commands/docsGenerate.command.d.ts +97 -0
  1549. package/dist/docs/commands/docsGenerate.command.js +4 -0
  1550. package/dist/docs/commands/docsPublish.command.d.js +0 -0
  1551. package/dist/docs/commands/docsPublish.command.d.ts +66 -0
  1552. package/dist/docs/commands/docsPublish.command.js +4 -0
  1553. package/dist/docs/commands/index.d.js +1 -0
  1554. package/dist/docs/commands/index.d.ts +2 -0
  1555. package/dist/docs/commands/index.js +1 -0
  1556. package/dist/docs/constants.d.js +0 -0
  1557. package/dist/docs/constants.d.ts +4 -0
  1558. package/dist/docs/constants.js +1 -0
  1559. package/dist/docs/contracts.d.js +0 -0
  1560. package/dist/docs/contracts.d.ts +711 -0
  1561. package/dist/docs/contracts.js +1 -0
  1562. package/dist/docs/docblocks.manifest.generated.d.js +0 -0
  1563. package/dist/docs/docblocks.manifest.generated.d.ts +239 -0
  1564. package/dist/docs/docblocks.manifest.generated.js +3215 -0
  1565. package/dist/docs/docs.feature.d.js +0 -0
  1566. package/dist/docs/docs.feature.d.ts +14 -0
  1567. package/dist/docs/docs.feature.js +365 -0
  1568. package/dist/docs/events/docsGenerated.event.d.js +0 -0
  1569. package/dist/docs/events/docsGenerated.event.d.ts +55 -0
  1570. package/dist/docs/events/docsGenerated.event.js +1 -0
  1571. package/dist/docs/events/docsPublished.event.d.js +0 -0
  1572. package/dist/docs/events/docsPublished.event.d.ts +63 -0
  1573. package/dist/docs/events/docsPublished.event.js +1 -0
  1574. package/dist/docs/events/index.d.js +1 -0
  1575. package/dist/docs/events/index.d.ts +2 -0
  1576. package/dist/docs/events/index.js +1 -0
  1577. package/dist/docs/forms/docsSearch.form.d.js +0 -0
  1578. package/dist/docs/forms/docsSearch.form.d.ts +15 -0
  1579. package/dist/docs/forms/docsSearch.form.js +1 -0
  1580. package/dist/docs/forms/index.d.js +1 -0
  1581. package/dist/docs/forms/index.d.ts +1 -0
  1582. package/dist/docs/forms/index.js +1 -0
  1583. package/dist/docs/index.d.js +1 -0
  1584. package/dist/docs/index.d.ts +15 -0
  1585. package/dist/docs/index.js +1 -0
  1586. package/dist/docs/manifest-builder.d.ts +13 -0
  1587. package/dist/docs/manifest-builder.js +1 -0
  1588. package/dist/docs/manifest.d.js +0 -0
  1589. package/dist/docs/manifest.d.ts +18 -0
  1590. package/dist/docs/manifest.js +1 -0
  1591. package/dist/docs/presentations/docsLayout.presentation.d.js +0 -0
  1592. package/dist/docs/presentations/docsLayout.presentation.d.ts +1 -0
  1593. package/dist/docs/presentations/docsLayout.presentation.js +1 -0
  1594. package/dist/docs/presentations/docsReferencePage.presentation.d.js +0 -0
  1595. package/dist/docs/presentations/docsReferencePage.presentation.d.ts +1 -0
  1596. package/dist/docs/presentations/docsReferencePage.presentation.js +1 -0
  1597. package/dist/docs/presentations/index.d.js +1 -0
  1598. package/dist/docs/presentations/index.d.ts +2 -0
  1599. package/dist/docs/presentations/index.js +1 -0
  1600. package/dist/docs/presentations.d.js +0 -0
  1601. package/dist/docs/presentations.d.ts +27 -0
  1602. package/dist/docs/presentations.js +1 -0
  1603. package/dist/docs/queries/contractReference.query.d.js +0 -0
  1604. package/dist/docs/queries/contractReference.query.d.ts +220 -0
  1605. package/dist/docs/queries/contractReference.query.js +4 -0
  1606. package/dist/docs/queries/docsIndex.query.d.js +0 -0
  1607. package/dist/docs/queries/docsIndex.query.d.ts +275 -0
  1608. package/dist/docs/queries/docsIndex.query.js +4 -0
  1609. package/dist/docs/queries/index.d.js +1 -0
  1610. package/dist/docs/queries/index.d.ts +2 -0
  1611. package/dist/docs/queries/index.js +1 -0
  1612. package/dist/docs/registry.d.js +0 -0
  1613. package/dist/docs/registry.d.ts +20 -0
  1614. package/dist/docs/registry.js +1 -0
  1615. package/dist/docs/types.d.js +0 -0
  1616. package/dist/docs/types.d.ts +37 -0
  1617. package/dist/docs/types.js +0 -0
  1618. package/dist/docs/views/contractReference.dataView.d.js +0 -0
  1619. package/dist/docs/views/contractReference.dataView.d.ts +78 -0
  1620. package/dist/docs/views/contractReference.dataView.js +1 -0
  1621. package/dist/docs/views/docsIndex.dataView.d.js +0 -0
  1622. package/dist/docs/views/docsIndex.dataView.d.ts +119 -0
  1623. package/dist/docs/views/docsIndex.dataView.js +1 -0
  1624. package/dist/docs/views/exampleCatalog.dataView.d.js +0 -0
  1625. package/dist/docs/views/exampleCatalog.dataView.d.ts +97 -0
  1626. package/dist/docs/views/exampleCatalog.dataView.js +4 -0
  1627. package/dist/docs/views/index.d.js +1 -0
  1628. package/dist/docs/views/index.d.ts +3 -0
  1629. package/dist/docs/views/index.js +1 -0
  1630. package/dist/editions/companyos-scenario.d.ts +39 -0
  1631. package/dist/editions/companyos-scenario.js +1 -0
  1632. package/dist/editions/connect-gates.d.ts +30 -0
  1633. package/dist/editions/connect-gates.js +1 -0
  1634. package/dist/editions/delivery-audit.d.ts +25 -0
  1635. package/dist/editions/delivery-audit.js +1 -0
  1636. package/dist/editions/docs.d.ts +2 -0
  1637. package/dist/editions/docs.js +45 -0
  1638. package/dist/editions/editor/fixtures.d.ts +3 -0
  1639. package/dist/editions/editor/fixtures.js +1 -0
  1640. package/dist/editions/editor/index.d.ts +4 -0
  1641. package/dist/editions/editor/index.js +1 -0
  1642. package/dist/editions/editor/resolver.d.ts +2 -0
  1643. package/dist/editions/editor/resolver.js +1 -0
  1644. package/dist/editions/editor/schema.d.ts +246 -0
  1645. package/dist/editions/editor/schema.js +1 -0
  1646. package/dist/editions/editor/types.d.ts +100 -0
  1647. package/dist/editions/editor/types.js +0 -0
  1648. package/dist/editions/enterprise-guardrails.d.ts +25 -0
  1649. package/dist/editions/enterprise-guardrails.js +1 -0
  1650. package/dist/editions/evidence-boundary.d.ts +10 -0
  1651. package/dist/editions/evidence-boundary.js +1 -0
  1652. package/dist/editions/experiments.d.ts +57 -0
  1653. package/dist/editions/experiments.js +1 -0
  1654. package/dist/editions/fixtures.d.ts +3 -0
  1655. package/dist/editions/fixtures.js +1 -0
  1656. package/dist/editions/full-loop-gate.d.ts +6 -0
  1657. package/dist/editions/full-loop-gate.js +1 -0
  1658. package/dist/editions/harness-evidence.d.ts +41 -0
  1659. package/dist/editions/harness-evidence.js +1 -0
  1660. package/dist/editions/improvement-types.d.ts +52 -0
  1661. package/dist/editions/improvement-types.js +0 -0
  1662. package/dist/editions/improvement.d.ts +12 -0
  1663. package/dist/editions/improvement.js +1 -0
  1664. package/dist/editions/index.d.ts +23 -0
  1665. package/dist/editions/index.js +1 -0
  1666. package/dist/editions/intelligence-coach.d.ts +37 -0
  1667. package/dist/editions/intelligence-coach.js +1 -0
  1668. package/dist/editions/knowledge-provenance.d.ts +42 -0
  1669. package/dist/editions/knowledge-provenance.js +1 -0
  1670. package/dist/editions/ontology-boundary.d.ts +18 -0
  1671. package/dist/editions/ontology-boundary.js +1 -0
  1672. package/dist/editions/operation-specs.d.ts +206 -0
  1673. package/dist/editions/operation-specs.js +1 -0
  1674. package/dist/editions/rollback.d.ts +67 -0
  1675. package/dist/editions/rollback.js +1 -0
  1676. package/dist/editions/runtime-wiring.d.ts +18 -0
  1677. package/dist/editions/runtime-wiring.js +1 -0
  1678. package/dist/editions/schema.d.ts +216 -0
  1679. package/dist/editions/schema.js +1 -0
  1680. package/dist/editions/storage-file.d.ts +31 -0
  1681. package/dist/editions/storage-file.js +1 -0
  1682. package/dist/editions/storage-hybrid.d.ts +42 -0
  1683. package/dist/editions/storage-hybrid.js +1 -0
  1684. package/dist/editions/storage-parity.d.ts +16 -0
  1685. package/dist/editions/storage-parity.js +1 -0
  1686. package/dist/editions/storage.d.ts +49 -0
  1687. package/dist/editions/storage.js +1 -0
  1688. package/dist/editions/types.d.ts +109 -0
  1689. package/dist/editions/types.js +0 -0
  1690. package/dist/editions/validation.d.ts +5 -0
  1691. package/dist/editions/validation.js +1 -0
  1692. package/dist/entities/compatibility.d.ts +55 -0
  1693. package/dist/entities/compatibility.js +20 -0
  1694. package/dist/entities/defineContractEdge.d.js +0 -0
  1695. package/dist/entities/defineContractEdge.d.ts +49 -0
  1696. package/dist/entities/defineContractEdge.js +41 -0
  1697. package/dist/entities/defineContractEntity.d.js +0 -0
  1698. package/dist/entities/defineContractEntity.d.ts +97 -0
  1699. package/dist/entities/defineContractEntity.js +80 -0
  1700. package/dist/entities/index.d.ts +9 -0
  1701. package/dist/entities/index.js +1 -0
  1702. package/dist/entities/registry.d.js +0 -0
  1703. package/dist/entities/registry.d.ts +58 -0
  1704. package/dist/entities/registry.js +1 -0
  1705. package/dist/entities/types.d.js +0 -0
  1706. package/dist/entities/types.d.ts +109 -0
  1707. package/dist/entities/types.js +1 -0
  1708. package/dist/events.d.js +0 -0
  1709. package/dist/events.d.ts +142 -0
  1710. package/dist/events.js +1 -0
  1711. package/dist/examples/define.d.ts +5 -0
  1712. package/dist/examples/define.js +1 -0
  1713. package/dist/examples/index.d.ts +9 -0
  1714. package/dist/examples/index.js +141 -0
  1715. package/dist/examples/registry.d.ts +38 -0
  1716. package/dist/examples/registry.js +1 -0
  1717. package/dist/examples/schema.d.ts +278 -0
  1718. package/dist/examples/schema.js +1 -0
  1719. package/dist/examples/types.d.ts +162 -0
  1720. package/dist/examples/types.js +1 -0
  1721. package/dist/examples/validation.d.ts +61 -0
  1722. package/dist/examples/validation.js +1 -0
  1723. package/dist/experience-coverage/index.d.ts +3 -0
  1724. package/dist/experience-coverage/index.js +1 -0
  1725. package/dist/experience-coverage/scoring.d.ts +9 -0
  1726. package/dist/experience-coverage/scoring.js +1 -0
  1727. package/dist/experience-coverage/types.d.ts +94 -0
  1728. package/dist/experience-coverage/types.js +1 -0
  1729. package/dist/experience-coverage/validation.d.ts +8 -0
  1730. package/dist/experience-coverage/validation.js +1 -0
  1731. package/dist/experiments/evaluator.d.ts +33 -0
  1732. package/dist/experiments/evaluator.js +1 -0
  1733. package/dist/experiments/spec-resolver.d.js +0 -0
  1734. package/dist/experiments/spec-resolver.d.ts +12 -0
  1735. package/dist/experiments/spec-resolver.js +0 -0
  1736. package/dist/experiments/spec.d.js +0 -0
  1737. package/dist/experiments/spec.d.ts +81 -0
  1738. package/dist/experiments/spec.js +128 -0
  1739. package/dist/feature-hubs/federation.d.ts +44 -0
  1740. package/dist/feature-hubs/federation.js +1 -0
  1741. package/dist/feature-hubs/index.d.ts +6 -0
  1742. package/dist/feature-hubs/index.js +1 -0
  1743. package/dist/feature-hubs/policy.d.ts +30 -0
  1744. package/dist/feature-hubs/policy.js +0 -0
  1745. package/dist/feature-hubs/ports.d.ts +69 -0
  1746. package/dist/feature-hubs/ports.js +0 -0
  1747. package/dist/feature-hubs/registry.d.ts +28 -0
  1748. package/dist/feature-hubs/registry.js +0 -0
  1749. package/dist/feature-hubs/social-intent-ports.d.ts +30 -0
  1750. package/dist/feature-hubs/social-intent-ports.js +0 -0
  1751. package/dist/feature-hubs/social-media.d.ts +48 -0
  1752. package/dist/feature-hubs/social-media.js +0 -0
  1753. package/dist/feature-hubs/social-provider-v2.d.ts +53 -0
  1754. package/dist/feature-hubs/social-provider-v2.js +14 -0
  1755. package/dist/feature-hubs/social-scheduling-operations.d.ts +651 -0
  1756. package/dist/feature-hubs/social-scheduling-operations.js +17 -0
  1757. package/dist/feature-hubs/social-scheduling.d.ts +133 -0
  1758. package/dist/feature-hubs/social-scheduling.js +1 -0
  1759. package/dist/feature-hubs/types.d.ts +89 -0
  1760. package/dist/feature-hubs/types.js +1 -0
  1761. package/dist/features/index.d.js +1 -0
  1762. package/dist/features/index.d.ts +6 -0
  1763. package/dist/features/index.js +1 -0
  1764. package/dist/features/install.d.js +0 -0
  1765. package/dist/features/install.d.ts +38 -0
  1766. package/dist/features/install.js +1 -0
  1767. package/dist/features/registry.d.js +0 -0
  1768. package/dist/features/registry.d.ts +21 -0
  1769. package/dist/features/registry.js +1 -0
  1770. package/dist/features/types.d.js +0 -0
  1771. package/dist/features/types.d.ts +108 -0
  1772. package/dist/features/types.js +62 -0
  1773. package/dist/features/validate-bundle-requires.d.js +1 -0
  1774. package/dist/features/validate-bundle-requires.d.ts +29 -0
  1775. package/dist/features/validate-bundle-requires.js +1 -0
  1776. package/dist/features/validation.d.js +0 -0
  1777. package/dist/features/validation.d.ts +21 -0
  1778. package/dist/features/validation.js +1 -0
  1779. package/dist/forms/entity-bound-forms.d.js +0 -0
  1780. package/dist/forms/entity-bound-forms.d.ts +8 -0
  1781. package/dist/forms/entity-bound-forms.js +30 -0
  1782. package/dist/forms/entity-bound.d.ts +1 -0
  1783. package/dist/forms/entity-bound.js +1 -0
  1784. package/dist/forms/forms.d.js +1 -0
  1785. package/dist/forms/forms.d.ts +875 -0
  1786. package/dist/forms/forms.js +1 -0
  1787. package/dist/forms/index.d.js +1 -0
  1788. package/dist/forms/index.d.ts +21 -0
  1789. package/dist/forms/index.js +1 -0
  1790. package/dist/forms/marketing.forms.d.js +0 -0
  1791. package/dist/forms/marketing.forms.d.ts +71 -0
  1792. package/dist/forms/marketing.forms.js +1 -0
  1793. package/dist/forms/platform-ai-validation.d.js +0 -0
  1794. package/dist/forms/platform-ai-validation.d.ts +3 -0
  1795. package/dist/forms/platform-ai-validation.js +1 -0
  1796. package/dist/forms/platform-capability.d.js +0 -0
  1797. package/dist/forms/platform-capability.d.ts +3 -0
  1798. package/dist/forms/platform-capability.js +1 -0
  1799. package/dist/forms/platform-compiler.d.js +0 -0
  1800. package/dist/forms/platform-compiler.d.ts +4 -0
  1801. package/dist/forms/platform-compiler.js +1 -0
  1802. package/dist/forms/platform-decision-graph.d.js +0 -0
  1803. package/dist/forms/platform-decision-graph.d.ts +6 -0
  1804. package/dist/forms/platform-decision-graph.js +1 -0
  1805. package/dist/forms/platform-docs.d.js +0 -0
  1806. package/dist/forms/platform-docs.d.ts +18 -0
  1807. package/dist/forms/platform-docs.js +1 -0
  1808. package/dist/forms/platform-document-doc.d.js +0 -0
  1809. package/dist/forms/platform-document-doc.d.ts +8 -0
  1810. package/dist/forms/platform-document-doc.js +1 -0
  1811. package/dist/forms/platform-document.d.js +0 -0
  1812. package/dist/forms/platform-document.d.ts +187 -0
  1813. package/dist/forms/platform-document.js +1 -0
  1814. package/dist/forms/platform-ecosystem-operations.d.js +0 -0
  1815. package/dist/forms/platform-ecosystem-operations.d.ts +8 -0
  1816. package/dist/forms/platform-ecosystem-operations.js +1 -0
  1817. package/dist/forms/platform-features.d.js +0 -0
  1818. package/dist/forms/platform-features.d.ts +1 -0
  1819. package/dist/forms/platform-features.js +1 -0
  1820. package/dist/forms/platform-form-spec-serialization.d.js +0 -0
  1821. package/dist/forms/platform-form-spec-serialization.d.ts +4 -0
  1822. package/dist/forms/platform-form-spec-serialization.js +1 -0
  1823. package/dist/forms/platform-form-spec-validation.d.js +0 -0
  1824. package/dist/forms/platform-form-spec-validation.d.ts +6 -0
  1825. package/dist/forms/platform-form-spec-validation.js +1 -0
  1826. package/dist/forms/platform-locale-validation.d.js +0 -0
  1827. package/dist/forms/platform-locale-validation.d.ts +3 -0
  1828. package/dist/forms/platform-locale-validation.js +1 -0
  1829. package/dist/forms/platform-operation-catalog.d.js +0 -0
  1830. package/dist/forms/platform-operation-catalog.d.ts +1 -0
  1831. package/dist/forms/platform-operation-catalog.js +1 -0
  1832. package/dist/forms/platform-operation-errors.d.js +0 -0
  1833. package/dist/forms/platform-operation-errors.d.ts +146 -0
  1834. package/dist/forms/platform-operation-errors.js +1 -0
  1835. package/dist/forms/platform-operations.d.js +0 -0
  1836. package/dist/forms/platform-operations.d.ts +13 -0
  1837. package/dist/forms/platform-operations.js +1 -0
  1838. package/dist/forms/platform-product.d.js +0 -0
  1839. package/dist/forms/platform-product.d.ts +13 -0
  1840. package/dist/forms/platform-product.js +1 -0
  1841. package/dist/forms/platform-registry.d.js +0 -0
  1842. package/dist/forms/platform-registry.d.ts +4 -0
  1843. package/dist/forms/platform-registry.js +1 -0
  1844. package/dist/forms/platform-response-extension.d.js +0 -0
  1845. package/dist/forms/platform-response-extension.d.ts +14 -0
  1846. package/dist/forms/platform-response-extension.js +0 -0
  1847. package/dist/forms/platform-validation.d.js +0 -0
  1848. package/dist/forms/platform-validation.d.ts +11 -0
  1849. package/dist/forms/platform-validation.js +1 -0
  1850. package/dist/forms/richFieldsShowcase.form.d.js +0 -0
  1851. package/dist/forms/richFieldsShowcase.form.d.ts +39 -0
  1852. package/dist/forms/richFieldsShowcase.form.js +1 -0
  1853. package/dist/graph-artifacts/codebase.d.ts +240 -0
  1854. package/dist/graph-artifacts/codebase.js +1 -0
  1855. package/dist/graph-artifacts/common.d.ts +114 -0
  1856. package/dist/graph-artifacts/common.js +1 -0
  1857. package/dist/graph-artifacts/contracts.d.ts +299 -0
  1858. package/dist/graph-artifacts/contracts.js +1 -0
  1859. package/dist/graph-artifacts/drift.d.ts +97 -0
  1860. package/dist/graph-artifacts/drift.js +1 -0
  1861. package/dist/graph-artifacts/generation.d.ts +102 -0
  1862. package/dist/graph-artifacts/generation.js +1 -0
  1863. package/dist/graph-artifacts/index.d.ts +6 -0
  1864. package/dist/graph-artifacts/index.js +1 -0
  1865. package/dist/graph-artifacts/links.d.ts +218 -0
  1866. package/dist/graph-artifacts/links.js +1 -0
  1867. package/dist/harness/capabilities/harnessEvaluation.capability.d.ts +1 -0
  1868. package/dist/harness/capabilities/harnessEvaluation.capability.js +1 -0
  1869. package/dist/harness/capabilities/harnessEvidence.capability.d.ts +1 -0
  1870. package/dist/harness/capabilities/harnessEvidence.capability.js +1 -0
  1871. package/dist/harness/capabilities/harnessExecution.capability.d.ts +1 -0
  1872. package/dist/harness/capabilities/harnessExecution.capability.js +1 -0
  1873. package/dist/harness/capabilities/harnessTargeting.capability.d.ts +1 -0
  1874. package/dist/harness/capabilities/harnessTargeting.capability.js +1 -0
  1875. package/dist/harness/capabilities/index.d.ts +4 -0
  1876. package/dist/harness/capabilities/index.js +1 -0
  1877. package/dist/harness/commands/harnessEvaluationRun.command.d.ts +91 -0
  1878. package/dist/harness/commands/harnessEvaluationRun.command.js +1 -0
  1879. package/dist/harness/commands/harnessRunCancel.command.d.ts +24 -0
  1880. package/dist/harness/commands/harnessRunCancel.command.js +1 -0
  1881. package/dist/harness/commands/harnessRunStart.command.d.ts +168 -0
  1882. package/dist/harness/commands/harnessRunStart.command.js +1 -0
  1883. package/dist/harness/commands/index.d.ts +3 -0
  1884. package/dist/harness/commands/index.js +1 -0
  1885. package/dist/harness/constants.d.ts +4 -0
  1886. package/dist/harness/constants.js +1 -0
  1887. package/dist/harness/contracts.d.ts +1065 -0
  1888. package/dist/harness/contracts.js +1 -0
  1889. package/dist/harness/events/harnessEvaluationCompleted.event.d.ts +45 -0
  1890. package/dist/harness/events/harnessEvaluationCompleted.event.js +1 -0
  1891. package/dist/harness/events/harnessEvidenceCaptured.event.d.ts +37 -0
  1892. package/dist/harness/events/harnessEvidenceCaptured.event.js +1 -0
  1893. package/dist/harness/events/harnessRunCompleted.event.d.ts +37 -0
  1894. package/dist/harness/events/harnessRunCompleted.event.js +1 -0
  1895. package/dist/harness/events/harnessRunFailed.event.d.ts +37 -0
  1896. package/dist/harness/events/harnessRunFailed.event.js +1 -0
  1897. package/dist/harness/events/harnessRunStarted.event.d.ts +45 -0
  1898. package/dist/harness/events/harnessRunStarted.event.js +1 -0
  1899. package/dist/harness/events/harnessStepBlocked.event.d.ts +37 -0
  1900. package/dist/harness/events/harnessStepBlocked.event.js +1 -0
  1901. package/dist/harness/events/harnessStepCompleted.event.d.ts +37 -0
  1902. package/dist/harness/events/harnessStepCompleted.event.js +1 -0
  1903. package/dist/harness/events/harnessStepStarted.event.d.ts +45 -0
  1904. package/dist/harness/events/harnessStepStarted.event.js +1 -0
  1905. package/dist/harness/events/index.d.ts +8 -0
  1906. package/dist/harness/events/index.js +1 -0
  1907. package/dist/harness/harness.feature.d.ts +11 -0
  1908. package/dist/harness/harness.feature.js +1 -0
  1909. package/dist/harness/index.d.ts +11 -0
  1910. package/dist/harness/index.js +1 -0
  1911. package/dist/harness/models.d.ts +330 -0
  1912. package/dist/harness/models.js +1 -0
  1913. package/dist/harness/presentations/harnessRunAudit.presentation.d.ts +1 -0
  1914. package/dist/harness/presentations/harnessRunAudit.presentation.js +1 -0
  1915. package/dist/harness/presentations/index.d.ts +1 -0
  1916. package/dist/harness/presentations/index.js +1 -0
  1917. package/dist/harness/queries/harnessEvaluationGet.query.d.ts +72 -0
  1918. package/dist/harness/queries/harnessEvaluationGet.query.js +1 -0
  1919. package/dist/harness/queries/harnessEvidenceGet.query.d.ts +53 -0
  1920. package/dist/harness/queries/harnessEvidenceGet.query.js +1 -0
  1921. package/dist/harness/queries/harnessEvidenceList.query.d.ts +66 -0
  1922. package/dist/harness/queries/harnessEvidenceList.query.js +1 -0
  1923. package/dist/harness/queries/harnessRunGet.query.d.ts +137 -0
  1924. package/dist/harness/queries/harnessRunGet.query.js +1 -0
  1925. package/dist/harness/queries/harnessTargetResolve.query.d.ts +59 -0
  1926. package/dist/harness/queries/harnessTargetResolve.query.js +1 -0
  1927. package/dist/harness/queries/index.d.ts +5 -0
  1928. package/dist/harness/queries/index.js +1 -0
  1929. package/dist/harness/types.d.ts +210 -0
  1930. package/dist/harness/types.js +1 -0
  1931. package/dist/harness/views/harnessEvaluations.dataView.d.ts +74 -0
  1932. package/dist/harness/views/harnessEvaluations.dataView.js +1 -0
  1933. package/dist/harness/views/harnessEvidence.dataView.d.ts +74 -0
  1934. package/dist/harness/views/harnessEvidence.dataView.js +1 -0
  1935. package/dist/harness/views/harnessRuns.dataView.d.ts +74 -0
  1936. package/dist/harness/views/harnessRuns.dataView.js +1 -0
  1937. package/dist/harness/views/index.d.ts +3 -0
  1938. package/dist/harness/views/index.js +1 -0
  1939. package/dist/index.d.ts +76 -0
  1940. package/dist/index.js +1 -0
  1941. package/dist/install.d.js +1 -0
  1942. package/dist/install.d.ts +77 -0
  1943. package/dist/install.js +1 -0
  1944. package/dist/job-application/constants.d.ts +14 -0
  1945. package/dist/job-application/constants.js +1 -0
  1946. package/dist/job-application/events.d.ts +977 -0
  1947. package/dist/job-application/events.js +1 -0
  1948. package/dist/job-application/index.d.ts +7 -0
  1949. package/dist/job-application/index.js +1 -0
  1950. package/dist/job-application/operation-definitions.d.ts +2023 -0
  1951. package/dist/job-application/operation-definitions.js +1 -0
  1952. package/dist/job-application/operations.d.ts +1999 -0
  1953. package/dist/job-application/operations.js +1 -0
  1954. package/dist/job-application/registry.d.ts +10 -0
  1955. package/dist/job-application/registry.js +1 -0
  1956. package/dist/job-application/transport.d.ts +13 -0
  1957. package/dist/job-application/transport.js +1 -0
  1958. package/dist/job-application/types.d.ts +172 -0
  1959. package/dist/job-application/types.js +1 -0
  1960. package/dist/job-application/validation.d.ts +180 -0
  1961. package/dist/job-application/validation.js +1 -0
  1962. package/dist/jobs/define-job.d.ts +14 -0
  1963. package/dist/jobs/define-job.js +1 -0
  1964. package/dist/jobs/durable-queue-v2/admission-validation.d.ts +3 -0
  1965. package/dist/jobs/durable-queue-v2/admission-validation.js +1 -0
  1966. package/dist/jobs/durable-queue-v2/capability.d.ts +118 -0
  1967. package/dist/jobs/durable-queue-v2/capability.js +1 -0
  1968. package/dist/jobs/durable-queue-v2/digests.d.ts +15 -0
  1969. package/dist/jobs/durable-queue-v2/digests.js +1 -0
  1970. package/dist/jobs/durable-queue-v2/envelope.d.ts +113 -0
  1971. package/dist/jobs/durable-queue-v2/envelope.js +1 -0
  1972. package/dist/jobs/durable-queue-v2/index.d.ts +8 -0
  1973. package/dist/jobs/durable-queue-v2/index.js +1 -0
  1974. package/dist/jobs/durable-queue-v2/lifecycle.d.ts +160 -0
  1975. package/dist/jobs/durable-queue-v2/lifecycle.js +1 -0
  1976. package/dist/jobs/durable-queue-v2/primitives.d.ts +43 -0
  1977. package/dist/jobs/durable-queue-v2/primitives.js +1 -0
  1978. package/dist/jobs/durable-queue-v2/test-fixtures.d.ts +91 -0
  1979. package/dist/jobs/durable-queue-v2/test-fixtures.js +1 -0
  1980. package/dist/jobs/durable-queue-v2/validation.d.ts +13 -0
  1981. package/dist/jobs/durable-queue-v2/validation.js +1 -0
  1982. package/dist/jobs/durable-queue-v2/workload.d.ts +34 -0
  1983. package/dist/jobs/durable-queue-v2/workload.js +1 -0
  1984. package/dist/jobs/index.d.ts +4 -0
  1985. package/dist/jobs/index.js +1 -0
  1986. package/dist/jobs/queue.d.js +0 -0
  1987. package/dist/jobs/queue.d.ts +129 -0
  1988. package/dist/jobs/queue.js +1 -0
  1989. package/dist/jobs/spec.d.js +0 -0
  1990. package/dist/jobs/spec.d.ts +36 -0
  1991. package/dist/jobs/spec.js +1 -0
  1992. package/dist/jsonschema.d.ts +39 -0
  1993. package/dist/jsonschema.js +1 -0
  1994. package/dist/knowledge/binding.d.js +0 -0
  1995. package/dist/knowledge/binding.d.ts +28 -0
  1996. package/dist/knowledge/binding.js +0 -0
  1997. package/dist/knowledge/index.d.ts +6 -0
  1998. package/dist/knowledge/index.js +1 -0
  1999. package/dist/knowledge/knowledge.capability.d.ts +1 -0
  2000. package/dist/knowledge/knowledge.capability.js +1 -0
  2001. package/dist/knowledge/knowledge.feature.d.ts +5 -0
  2002. package/dist/knowledge/knowledge.feature.js +1 -0
  2003. package/dist/knowledge/operation-models.d.ts +338 -0
  2004. package/dist/knowledge/operation-models.js +1 -0
  2005. package/dist/knowledge/operations.d.ts +384 -0
  2006. package/dist/knowledge/operations.js +1 -0
  2007. package/dist/knowledge/registry.d.js +0 -0
  2008. package/dist/knowledge/registry.d.ts +6 -0
  2009. package/dist/knowledge/registry.js +1 -0
  2010. package/dist/knowledge/source.d.js +0 -0
  2011. package/dist/knowledge/source.d.ts +96 -0
  2012. package/dist/knowledge/source.js +1 -0
  2013. package/dist/knowledge/spaces/email-threads.d.ts +4 -0
  2014. package/dist/knowledge/spaces/email-threads.js +1 -0
  2015. package/dist/knowledge/spaces/financial-docs.d.ts +4 -0
  2016. package/dist/knowledge/spaces/financial-docs.js +1 -0
  2017. package/dist/knowledge/spaces/financial-overview.d.ts +4 -0
  2018. package/dist/knowledge/spaces/financial-overview.js +1 -0
  2019. package/dist/knowledge/spaces/index.d.ts +6 -0
  2020. package/dist/knowledge/spaces/index.js +1 -0
  2021. package/dist/knowledge/spaces/product-canon.d.ts +4 -0
  2022. package/dist/knowledge/spaces/product-canon.js +1 -0
  2023. package/dist/knowledge/spaces/support-faq.d.ts +4 -0
  2024. package/dist/knowledge/spaces/support-faq.js +1 -0
  2025. package/dist/knowledge/spaces/uploaded-docs.d.ts +4 -0
  2026. package/dist/knowledge/spaces/uploaded-docs.js +1 -0
  2027. package/dist/knowledge/spec.d.js +1 -0
  2028. package/dist/knowledge/spec.d.ts +74 -0
  2029. package/dist/knowledge/spec.js +172 -0
  2030. package/dist/llm/exporters.d.ts +75 -0
  2031. package/dist/llm/exporters.js +9 -0
  2032. package/dist/llm/index.d.ts +12 -0
  2033. package/dist/llm/index.js +1 -0
  2034. package/dist/llm/prompts.d.ts +53 -0
  2035. package/dist/llm/prompts.js +237 -0
  2036. package/dist/llm/types.d.ts +224 -0
  2037. package/dist/llm/types.js +0 -0
  2038. package/dist/markdown.d.ts +16 -0
  2039. package/dist/markdown.js +3 -0
  2040. package/dist/marketing/fixtures.d.ts +3 -0
  2041. package/dist/marketing/fixtures.js +1 -0
  2042. package/dist/marketing/forms.d.ts +32 -0
  2043. package/dist/marketing/forms.js +1 -0
  2044. package/dist/marketing/index.d.ts +4 -0
  2045. package/dist/marketing/index.js +1 -0
  2046. package/dist/marketing/types.d.ts +217 -0
  2047. package/dist/marketing/types.js +0 -0
  2048. package/dist/marketing/validation.d.ts +17 -0
  2049. package/dist/marketing/validation.js +3 -0
  2050. package/dist/migrations.d.ts +67 -0
  2051. package/dist/migrations.js +69 -0
  2052. package/dist/model-registry.d.ts +9 -0
  2053. package/dist/model-registry.js +1 -0
  2054. package/dist/navigation/index.d.ts +11 -0
  2055. package/dist/navigation/index.js +1 -0
  2056. package/dist/navigation/nav-graph.d.ts +79 -0
  2057. package/dist/navigation/nav-graph.js +69 -0
  2058. package/dist/navigation/nav-surface.d.ts +138 -0
  2059. package/dist/navigation/nav-surface.js +70 -0
  2060. package/dist/navigation/registry.d.ts +69 -0
  2061. package/dist/navigation/registry.js +1 -0
  2062. package/dist/node/acp/acp.feature.js +1 -0
  2063. package/dist/node/acp/capabilities/acpTransport.capability.js +4 -0
  2064. package/dist/node/acp/capabilities/index.js +1 -0
  2065. package/dist/node/acp/commands/acpFsAccess.command.js +4 -0
  2066. package/dist/node/acp/commands/acpPromptTurn.command.js +4 -0
  2067. package/dist/node/acp/commands/acpSessionInit.command.js +4 -0
  2068. package/dist/node/acp/commands/acpSessionResume.command.js +4 -0
  2069. package/dist/node/acp/commands/acpSessionStop.command.js +4 -0
  2070. package/dist/node/acp/commands/acpTerminalExec.command.js +4 -0
  2071. package/dist/node/acp/commands/acpToolCalls.command.js +4 -0
  2072. package/dist/node/acp/commands/index.js +1 -0
  2073. package/dist/node/acp/constants.js +1 -0
  2074. package/dist/node/acp/contracts.js +1 -0
  2075. package/dist/node/acp/index.js +1 -0
  2076. package/dist/node/adaptive-shell/index.js +1 -0
  2077. package/dist/node/adaptive-shell/types.js +0 -0
  2078. package/dist/node/adaptive-shell/validation.js +1 -0
  2079. package/dist/node/adoption-catalog/index.js +1 -0
  2080. package/dist/node/agent/agent.feature.js +4 -0
  2081. package/dist/node/agent/capabilities/agentExecution.capability.js +1 -0
  2082. package/dist/node/agent/capabilities/index.js +1 -0
  2083. package/dist/node/agent/commands/agentApprovals.command.js +4 -0
  2084. package/dist/node/agent/commands/agentCancel.command.js +4 -0
  2085. package/dist/node/agent/commands/agentRun.command.js +4 -0
  2086. package/dist/node/agent/commands/agentTaskOps.command.js +1 -0
  2087. package/dist/node/agent/commands/graphCompose.command.js +1 -0
  2088. package/dist/node/agent/commands/graphEdit.command.js +25 -0
  2089. package/dist/node/agent/commands/graphOps.command.js +31 -0
  2090. package/dist/node/agent/commands/graphRefactor.command.js +1 -0
  2091. package/dist/node/agent/commands/graphSuggestEvolution.command.js +35 -0
  2092. package/dist/node/agent/commands/index.js +1 -0
  2093. package/dist/node/agent/constants.js +1 -0
  2094. package/dist/node/agent/contracts.js +1 -0
  2095. package/dist/node/agent/events/agentApprovalRequested.event.js +4 -0
  2096. package/dist/node/agent/events/agentRunCompleted.event.js +4 -0
  2097. package/dist/node/agent/events/agentRunFailed.event.js +4 -0
  2098. package/dist/node/agent/events/agentRunStarted.event.js +4 -0
  2099. package/dist/node/agent/events/index.js +1 -0
  2100. package/dist/node/agent/forms/agentRun.form.js +4 -0
  2101. package/dist/node/agent/forms/index.js +1 -0
  2102. package/dist/node/agent/graph-conversation.js +19 -0
  2103. package/dist/node/agent/index.js +1 -0
  2104. package/dist/node/agent/presentations/agentRunAudit.presentation.js +4 -0
  2105. package/dist/node/agent/presentations/index.js +1 -0
  2106. package/dist/node/agent/protocol/application-signature.js +1 -0
  2107. package/dist/node/agent/protocol/application.js +4 -0
  2108. package/dist/node/agent/protocol/automation/automation.test-fixture.js +1 -0
  2109. package/dist/node/agent/protocol/automation/contracts.js +4 -0
  2110. package/dist/node/agent/protocol/automation/definition-validation.js +1 -0
  2111. package/dist/node/agent/protocol/automation/digests.js +1 -0
  2112. package/dist/node/agent/protocol/automation/index.js +1 -0
  2113. package/dist/node/agent/protocol/automation/lifecycle-validation.js +1 -0
  2114. package/dist/node/agent/protocol/automation/lifecycle.js +1 -0
  2115. package/dist/node/agent/protocol/automation/run-validation.js +1 -0
  2116. package/dist/node/agent/protocol/automation/validation.js +1 -0
  2117. package/dist/node/agent/protocol/bindings.js +1 -0
  2118. package/dist/node/agent/protocol/budget.js +1 -0
  2119. package/dist/node/agent/protocol/common.js +1 -0
  2120. package/dist/node/agent/protocol/delegation.js +1 -0
  2121. package/dist/node/agent/protocol/execution.js +1 -0
  2122. package/dist/node/agent/protocol/graph-validation.js +1 -0
  2123. package/dist/node/agent/protocol/help.js +1 -0
  2124. package/dist/node/agent/protocol/index.js +1 -0
  2125. package/dist/node/agent/protocol/markdown-migration.js +1 -0
  2126. package/dist/node/agent/protocol/memory-governance.js +1 -0
  2127. package/dist/node/agent/protocol/memory-validation.js +1 -0
  2128. package/dist/node/agent/protocol/memory.js +1 -0
  2129. package/dist/node/agent/protocol/model-fallback-validation-v2.js +1 -0
  2130. package/dist/node/agent/protocol/model-fallback-validation.js +1 -0
  2131. package/dist/node/agent/protocol/model-invocation-profile.js +1 -0
  2132. package/dist/node/agent/protocol/model-route-contracts-v2.js +1 -0
  2133. package/dist/node/agent/protocol/model-route-contracts.js +1 -0
  2134. package/dist/node/agent/protocol/model-routing-migration.js +1 -0
  2135. package/dist/node/agent/protocol/model-routing-v2.js +1 -0
  2136. package/dist/node/agent/protocol/model-routing-v2.test-fixtures.js +1 -0
  2137. package/dist/node/agent/protocol/model-routing.js +1 -0
  2138. package/dist/node/agent/protocol/model-routing.test-fixtures.js +1 -0
  2139. package/dist/node/agent/protocol/model-selection-validation-v2.js +1 -0
  2140. package/dist/node/agent/protocol/model-selection-validation.js +1 -0
  2141. package/dist/node/agent/protocol/model-serving-validation-v2.js +1 -0
  2142. package/dist/node/agent/protocol/planning.js +1 -0
  2143. package/dist/node/agent/protocol/reflection.js +1 -0
  2144. package/dist/node/agent/protocol/task-result-validation.js +1 -0
  2145. package/dist/node/agent/queries/agentArtifacts.query.js +4 -0
  2146. package/dist/node/agent/queries/agentStatus.query.js +4 -0
  2147. package/dist/node/agent/queries/index.js +1 -0
  2148. package/dist/node/agent/registry.js +1 -0
  2149. package/dist/node/agent/runner.js +1 -0
  2150. package/dist/node/agent/spec.js +10 -0
  2151. package/dist/node/agent/task-tree.js +22 -0
  2152. package/dist/node/agent/views/agentRuns.dataView.js +4 -0
  2153. package/dist/node/agent/views/index.js +1 -0
  2154. package/dist/node/agent-platform/baseline-suites.js +1 -0
  2155. package/dist/node/agent-platform/digest.js +1 -0
  2156. package/dist/node/agent-platform/index.js +1 -0
  2157. package/dist/node/agent-platform/types.js +1 -0
  2158. package/dist/node/agent-platform/validation-v2.js +1 -0
  2159. package/dist/node/agent-platform/validation.js +1 -0
  2160. package/dist/node/agent-step-observability/index.js +1 -0
  2161. package/dist/node/agent-step-observability/types.js +0 -0
  2162. package/dist/node/agent-step-observability/validation.js +1 -0
  2163. package/dist/node/agentic-interaction/constants.js +1 -0
  2164. package/dist/node/agentic-interaction/contracts.js +1 -0
  2165. package/dist/node/agentic-interaction/index.js +1 -0
  2166. package/dist/node/agentpacks/evidence-audit-validation.js +1 -0
  2167. package/dist/node/agentpacks/evidence-canonicalization.js +2 -0
  2168. package/dist/node/agentpacks/evidence-fixtures.js +1 -0
  2169. package/dist/node/agentpacks/evidence-schema-primitives.js +1 -0
  2170. package/dist/node/agentpacks/evidence-trace-validation.js +1 -0
  2171. package/dist/node/agentpacks/evidence-types.js +0 -0
  2172. package/dist/node/agentpacks/evidence-validation.js +1 -0
  2173. package/dist/node/agentpacks/index.js +1 -0
  2174. package/dist/node/agentpacks/types.js +0 -0
  2175. package/dist/node/agentpacks/validation.js +1 -0
  2176. package/dist/node/ai-improvement/contracts-v2.js +1 -0
  2177. package/dist/node/ai-improvement/evidence.js +1 -0
  2178. package/dist/node/ai-improvement/index.js +1 -0
  2179. package/dist/node/ai-improvement/policy.js +1 -0
  2180. package/dist/node/ai-improvement/types.js +0 -0
  2181. package/dist/node/ai-improvement/validation-v2.js +1 -0
  2182. package/dist/node/ai-improvement/validation.js +1 -0
  2183. package/dist/node/analytics/index.js +0 -0
  2184. package/dist/node/analytics/semantic-spec.js +0 -0
  2185. package/dist/node/app-config/app-config.capability.js +1 -0
  2186. package/dist/node/app-config/app-config.contracts.js +1 -0
  2187. package/dist/node/app-config/app-config.feature.js +1 -0
  2188. package/dist/node/app-config/branding.d.js +0 -0
  2189. package/dist/node/app-config/branding.js +0 -0
  2190. package/dist/node/app-config/events.js +1 -0
  2191. package/dist/node/app-config/index.js +1 -0
  2192. package/dist/node/app-config/integrations.d.js +0 -0
  2193. package/dist/node/app-config/integrations.js +0 -0
  2194. package/dist/node/app-config/lifecycle-contracts.js +1 -0
  2195. package/dist/node/app-config/lifecycle.d.js +0 -0
  2196. package/dist/node/app-config/lifecycle.js +0 -0
  2197. package/dist/node/app-config/runtime.d.js +0 -0
  2198. package/dist/node/app-config/runtime.js +1 -0
  2199. package/dist/node/app-config/spec.d.js +0 -0
  2200. package/dist/node/app-config/spec.js +162 -0
  2201. package/dist/node/app-config/validation.js +1 -0
  2202. package/dist/node/app-submission-readiness/admin-rules.contracts.js +1 -0
  2203. package/dist/node/app-submission-readiness/assets.contracts.js +1 -0
  2204. package/dist/node/app-submission-readiness/audit.contracts.js +1 -0
  2205. package/dist/node/app-submission-readiness/constants.js +1 -0
  2206. package/dist/node/app-submission-readiness/contracts.js +1 -0
  2207. package/dist/node/app-submission-readiness/events.js +1 -0
  2208. package/dist/node/app-submission-readiness/fixtures.js +1 -0
  2209. package/dist/node/app-submission-readiness/index.js +1 -0
  2210. package/dist/node/app-submission-readiness/legal-links.contracts.js +1 -0
  2211. package/dist/node/app-submission-readiness/manifests.contracts.js +1 -0
  2212. package/dist/node/app-submission-readiness/markdown-report.js +3 -0
  2213. package/dist/node/app-submission-readiness/privacy-disclosures.contracts.js +1 -0
  2214. package/dist/node/app-submission-readiness/project.contracts.js +1 -0
  2215. package/dist/node/app-submission-readiness/provider-capabilities.js +1 -0
  2216. package/dist/node/app-submission-readiness/provider-capabilities.seeds.js +1 -0
  2217. package/dist/node/app-submission-readiness/registry.js +1 -0
  2218. package/dist/node/app-submission-readiness/rejection-response.contracts.js +1 -0
  2219. package/dist/node/app-submission-readiness/reports.contracts.js +1 -0
  2220. package/dist/node/app-submission-readiness/reviewer-access.contracts.js +1 -0
  2221. package/dist/node/app-submission-readiness/runtime.js +1 -0
  2222. package/dist/node/app-submission-readiness/sdk-inventory.contracts.js +1 -0
  2223. package/dist/node/app-submission-readiness/store-integrations.contracts.js +1 -0
  2224. package/dist/node/app-submission-readiness/types.js +0 -0
  2225. package/dist/node/capabilities/agent-workflow.d.js +0 -0
  2226. package/dist/node/capabilities/agent-workflow.js +1 -0
  2227. package/dist/node/capabilities/capabilities.d.js +0 -0
  2228. package/dist/node/capabilities/capabilities.js +187 -0
  2229. package/dist/node/capabilities/context.d.js +0 -0
  2230. package/dist/node/capabilities/context.js +1 -0
  2231. package/dist/node/capabilities/guards.d.js +0 -0
  2232. package/dist/node/capabilities/guards.js +1 -0
  2233. package/dist/node/capabilities/index.d.js +1 -0
  2234. package/dist/node/capabilities/index.js +1 -0
  2235. package/dist/node/capabilities/meeting-recorder.d.js +0 -0
  2236. package/dist/node/capabilities/meeting-recorder.js +1 -0
  2237. package/dist/node/capabilities/openbanking.d.js +0 -0
  2238. package/dist/node/capabilities/openbanking.js +1 -0
  2239. package/dist/node/capabilities/validation.d.js +0 -0
  2240. package/dist/node/capabilities/validation.js +1 -0
  2241. package/dist/node/cli/command-pack.js +16 -0
  2242. package/dist/node/cli/index.js +1 -0
  2243. package/dist/node/companyos/auth-production-topology.js +1 -0
  2244. package/dist/node/companyos/booking-surfaces.js +1 -0
  2245. package/dist/node/companyos/calendar-intelligence.js +1 -0
  2246. package/dist/node/companyos/calendar-microsoft-personal-discovery.js +1 -0
  2247. package/dist/node/companyos/calendar-microsoft-personal-http.js +1 -0
  2248. package/dist/node/companyos/calendar-microsoft-personal-selection.js +1 -0
  2249. package/dist/node/companyos/calendar-private-draft-preview.js +1 -0
  2250. package/dist/node/companyos/commands/autonomousWorkOrderTransition.command.js +1 -0
  2251. package/dist/node/companyos/commands/builderReadinessEvaluate.command.js +1 -0
  2252. package/dist/node/companyos/commands/contextSetActive.command.js +1 -0
  2253. package/dist/node/companyos/commands/decisionPacketAttest.command.js +1 -0
  2254. package/dist/node/companyos/commands/decisionPacketFounderApprove.command.js +1 -0
  2255. package/dist/node/companyos/commands/index.js +1 -0
  2256. package/dist/node/companyos/commands/integrationConfigureByok.command.js +1 -0
  2257. package/dist/node/companyos/commands/integrationConfigureManaged.command.js +1 -0
  2258. package/dist/node/companyos/commands/onboardingPreferencesComplete.command.js +8 -0
  2259. package/dist/node/companyos/commands/organizationSetActive.command.js +1 -0
  2260. package/dist/node/companyos/commands/personaPreviewSet.command.js +7 -0
  2261. package/dist/node/companyos/commands/personalBriefingCalendarsSelect.command.js +12 -0
  2262. package/dist/node/companyos/commands/personalBriefingDeliveryRetry.command.js +8 -0
  2263. package/dist/node/companyos/commands/personalBriefingGoogleOAuthComplete.command.js +6 -0
  2264. package/dist/node/companyos/commands/personalBriefingGoogleOAuthStart.command.js +6 -0
  2265. package/dist/node/companyos/commands/personalBriefingMicrosoftDisconnect.command.js +5 -0
  2266. package/dist/node/companyos/commands/personalBriefingMicrosoftOAuthComplete.command.js +9 -0
  2267. package/dist/node/companyos/commands/personalBriefingMicrosoftOAuthStart.command.js +6 -0
  2268. package/dist/node/companyos/commands/personalBriefingPreferencesUpdate.command.js +11 -0
  2269. package/dist/node/companyos/commands/personalBriefingPreviewSend.command.js +15 -0
  2270. package/dist/node/companyos/commands/personalContextDisable.command.js +1 -0
  2271. package/dist/node/companyos/commands/personalContextEnsure.command.js +1 -0
  2272. package/dist/node/companyos/commands/personalDailyOperationCreate.command.js +1 -0
  2273. package/dist/node/companyos/commands/personalDailyOperationTransition.command.js +1 -0
  2274. package/dist/node/companyos/commands/reviewCardDecide.command.js +1 -0
  2275. package/dist/node/companyos/commands/shellPreferencesUpdate.command.js +6 -0
  2276. package/dist/node/companyos/commands/tenantOnboard.command.js +1 -0
  2277. package/dist/node/companyos/commands/tenantUpdate.command.js +1 -0
  2278. package/dist/node/companyos/commands/weeklyReportApprove.command.js +1 -0
  2279. package/dist/node/companyos/commands/workflowStart.command.js +1 -0
  2280. package/dist/node/companyos/company-intelligence/api-schemas.js +1 -0
  2281. package/dist/node/companyos/company-intelligence/api.js +1 -0
  2282. package/dist/node/companyos/company-intelligence/commands.js +1 -0
  2283. package/dist/node/companyos/company-intelligence/events.js +1 -0
  2284. package/dist/node/companyos/company-intelligence/index.js +1 -0
  2285. package/dist/node/companyos/company-intelligence/models.js +1 -0
  2286. package/dist/node/companyos/company-intelligence/operations.js +1 -0
  2287. package/dist/node/companyos/company-intelligence/queries.js +1 -0
  2288. package/dist/node/companyos/company-intelligence/registry.js +1 -0
  2289. package/dist/node/companyos/company-intelligence/surface.js +1 -0
  2290. package/dist/node/companyos/company-metrics/commands.js +3 -0
  2291. package/dist/node/companyos/company-metrics/events.js +3 -0
  2292. package/dist/node/companyos/company-metrics/index.js +1 -0
  2293. package/dist/node/companyos/company-metrics/queries.js +3 -0
  2294. package/dist/node/companyos/company-metrics/registry.js +1 -0
  2295. package/dist/node/companyos/company-metrics/shared.js +1 -0
  2296. package/dist/node/companyos/constants.js +1 -0
  2297. package/dist/node/companyos/index.js +1 -0
  2298. package/dist/node/companyos/live-workspace-surfaces.js +1 -0
  2299. package/dist/node/companyos/organization-bootstrap.js +1 -0
  2300. package/dist/node/companyos/organization-seed-contract.js +1 -0
  2301. package/dist/node/companyos/organization-seed-manifest.js +1 -0
  2302. package/dist/node/companyos/organization-seed-profile-manifest.js +1 -0
  2303. package/dist/node/companyos/organization-seed.js +1 -0
  2304. package/dist/node/companyos/organization-self-service.js +1 -0
  2305. package/dist/node/companyos/production-semantics.js +1 -0
  2306. package/dist/node/companyos/projections.js +1 -0
  2307. package/dist/node/companyos/public-composition.js +1 -0
  2308. package/dist/node/companyos/queries/approvalReasons.query.js +1 -0
  2309. package/dist/node/companyos/queries/builderEvidenceReceiptGet.query.js +1 -0
  2310. package/dist/node/companyos/queries/builderReleaseCapsuleGet.query.js +1 -0
  2311. package/dist/node/companyos/queries/builderReplayPacketGet.query.js +1 -0
  2312. package/dist/node/companyos/queries/contextList.query.js +1 -0
  2313. package/dist/node/companyos/queries/designPartnerReadinessGet.query.js +1 -0
  2314. package/dist/node/companyos/queries/evidenceGetReceipt.query.js +1 -0
  2315. package/dist/node/companyos/queries/evidenceVerifyHash.query.js +1 -0
  2316. package/dist/node/companyos/queries/graphQuery.query.js +1 -0
  2317. package/dist/node/companyos/queries/graphQueryByPolicy.query.js +1 -0
  2318. package/dist/node/companyos/queries/healthApi.query.js +1 -0
  2319. package/dist/node/companyos/queries/healthWebsocket.query.js +1 -0
  2320. package/dist/node/companyos/queries/healthWorker.query.js +1 -0
  2321. package/dist/node/companyos/queries/index.js +1 -0
  2322. package/dist/node/companyos/queries/integrationListProviders.query.js +1 -0
  2323. package/dist/node/companyos/queries/integrationStatus.query.js +1 -0
  2324. package/dist/node/companyos/queries/organizationList.query.js +1 -0
  2325. package/dist/node/companyos/queries/personalBriefingCalendarsList.query.js +6 -0
  2326. package/dist/node/companyos/queries/personalBriefingStatus.query.js +13 -0
  2327. package/dist/node/companyos/queries/personalContextProvisioningStatus.query.js +1 -0
  2328. package/dist/node/companyos/queries/personalDailyOperations.query.js +1 -0
  2329. package/dist/node/companyos/queries/replayGetPacket.query.js +1 -0
  2330. package/dist/node/companyos/queries/replayListByTenant.query.js +1 -0
  2331. package/dist/node/companyos/queries/sessionAuthorityGet.query.js +1 -0
  2332. package/dist/node/companyos/queries/shellPreferencesGet.query.js +7 -0
  2333. package/dist/node/companyos/queries/tenantGet.query.js +1 -0
  2334. package/dist/node/companyos/queries/tenantList.query.js +1 -0
  2335. package/dist/node/companyos/queries/workflowGetStatus.query.js +1 -0
  2336. package/dist/node/companyos/queries/workflowList.query.js +1 -0
  2337. package/dist/node/companyos/queries/workspaceList.query.js +1 -0
  2338. package/dist/node/companyos/registry.js +1 -0
  2339. package/dist/node/companyos/shell-preferences.js +1 -0
  2340. package/dist/node/content-analysis/constants.js +1 -0
  2341. package/dist/node/content-analysis/events.js +3 -0
  2342. package/dist/node/content-analysis/index.js +1 -0
  2343. package/dist/node/content-analysis/operations.js +6 -0
  2344. package/dist/node/content-analysis/registry.js +1 -0
  2345. package/dist/node/content-analysis/types.js +0 -0
  2346. package/dist/node/content-generation/capabilities.js +1 -0
  2347. package/dist/node/content-generation/content-generation.feature.js +1 -0
  2348. package/dist/node/content-generation/contracts.js +4 -0
  2349. package/dist/node/content-generation/index.js +1 -0
  2350. package/dist/node/content-generation/media-status.js +1 -0
  2351. package/dist/node/content-generation/ports.js +0 -0
  2352. package/dist/node/content-generation/rights-operations.js +1 -0
  2353. package/dist/node/content-generation/rights-withdrawal.js +1 -0
  2354. package/dist/node/content-generation/rights.js +1 -0
  2355. package/dist/node/content-generation/types.js +1 -0
  2356. package/dist/node/context/agent-context-validation.js +4 -0
  2357. package/dist/node/context/agent-context.js +1 -0
  2358. package/dist/node/context/capabilities/contextSystem.capability.js +4 -0
  2359. package/dist/node/context/capabilities/index.js +1 -0
  2360. package/dist/node/context/commands/contextPackSnapshot.command.js +4 -0
  2361. package/dist/node/context/commands/index.js +1 -0
  2362. package/dist/node/context/constants.js +1 -0
  2363. package/dist/node/context/context.feature.js +1 -0
  2364. package/dist/node/context/contracts.js +1 -0
  2365. package/dist/node/context/events/contextSnapshotCreated.event.js +4 -0
  2366. package/dist/node/context/events/index.js +1 -0
  2367. package/dist/node/context/forms/contextPackSearch.form.js +4 -0
  2368. package/dist/node/context/forms/index.js +1 -0
  2369. package/dist/node/context/index.js +1 -0
  2370. package/dist/node/context/presentations/contextSnapshot.presentation.js +4 -0
  2371. package/dist/node/context/presentations/index.js +1 -0
  2372. package/dist/node/context/queries/contextPackDescribe.query.js +4 -0
  2373. package/dist/node/context/queries/contextPackSearch.query.js +4 -0
  2374. package/dist/node/context/queries/index.js +1 -0
  2375. package/dist/node/context/views/contextSnapshots.dataView.js +4 -0
  2376. package/dist/node/context/views/index.js +1 -0
  2377. package/dist/node/contract-registry/index.js +1 -0
  2378. package/dist/node/contract-registry/schemas.js +1 -0
  2379. package/dist/node/contract-registry/types.js +0 -0
  2380. package/dist/node/contracts-spec.feature.js +1 -0
  2381. package/dist/node/control-plane/approval-kernel.js +1 -0
  2382. package/dist/node/control-plane/capabilities/controlPlaneApproval.capability.js +1 -0
  2383. package/dist/node/control-plane/capabilities/controlPlaneAudit.capability.js +1 -0
  2384. package/dist/node/control-plane/capabilities/controlPlaneChannelRuntime.capability.js +1 -0
  2385. package/dist/node/control-plane/capabilities/controlPlaneCore.capability.js +1 -0
  2386. package/dist/node/control-plane/capabilities/controlPlaneSkillRegistry.capability.js +1 -0
  2387. package/dist/node/control-plane/capabilities/index.js +1 -0
  2388. package/dist/node/control-plane/commands/controlPlaneExecutionAbort.command.js +1 -0
  2389. package/dist/node/control-plane/commands/controlPlaneExecutionApprove.command.js +1 -0
  2390. package/dist/node/control-plane/commands/controlPlaneExecutionCancel.command.js +1 -0
  2391. package/dist/node/control-plane/commands/controlPlaneExecutionEvidenceExport.command.js +1 -0
  2392. package/dist/node/control-plane/commands/controlPlaneExecutionPause.command.js +1 -0
  2393. package/dist/node/control-plane/commands/controlPlaneExecutionReject.command.js +1 -0
  2394. package/dist/node/control-plane/commands/controlPlaneExecutionResume.command.js +1 -0
  2395. package/dist/node/control-plane/commands/controlPlaneExecutionRetry.command.js +1 -0
  2396. package/dist/node/control-plane/commands/controlPlaneExecutionShutdown.command.js +1 -0
  2397. package/dist/node/control-plane/commands/controlPlaneExecutionStart.command.js +1 -0
  2398. package/dist/node/control-plane/commands/controlPlaneIntentSubmit.command.js +1 -0
  2399. package/dist/node/control-plane/commands/controlPlanePlanCompile.command.js +1 -0
  2400. package/dist/node/control-plane/commands/controlPlanePlanVerify.command.js +1 -0
  2401. package/dist/node/control-plane/commands/controlPlaneSkillDisable.command.js +1 -0
  2402. package/dist/node/control-plane/commands/controlPlaneSkillInstall.command.js +1 -0
  2403. package/dist/node/control-plane/commands/index.js +1 -0
  2404. package/dist/node/control-plane/connect-materialization.js +1 -0
  2405. package/dist/node/control-plane/constants.js +1 -0
  2406. package/dist/node/control-plane/contracts.js +1 -0
  2407. package/dist/node/control-plane/control-plane.feature.js +1 -0
  2408. package/dist/node/control-plane/events/controlPlaneExecutionCompleted.event.js +1 -0
  2409. package/dist/node/control-plane/events/controlPlaneExecutionFailed.event.js +1 -0
  2410. package/dist/node/control-plane/events/controlPlaneExecutionStepBlocked.event.js +1 -0
  2411. package/dist/node/control-plane/events/controlPlaneExecutionStepCompleted.event.js +1 -0
  2412. package/dist/node/control-plane/events/controlPlaneExecutionStepStarted.event.js +1 -0
  2413. package/dist/node/control-plane/events/controlPlaneIntentReceived.event.js +1 -0
  2414. package/dist/node/control-plane/events/controlPlanePlanCompiled.event.js +1 -0
  2415. package/dist/node/control-plane/events/controlPlanePlanRejected.event.js +1 -0
  2416. package/dist/node/control-plane/events/controlPlaneSkillInstalled.event.js +1 -0
  2417. package/dist/node/control-plane/events/controlPlaneSkillRejected.event.js +1 -0
  2418. package/dist/node/control-plane/events/index.js +1 -0
  2419. package/dist/node/control-plane/hook-authority-digest.js +1 -0
  2420. package/dist/node/control-plane/hook-authority-immutable.js +1 -0
  2421. package/dist/node/control-plane/hook-authority-records.js +0 -0
  2422. package/dist/node/control-plane/hook-authority-reference-adapter.js +1 -0
  2423. package/dist/node/control-plane/hook-authority-reference-binding.js +1 -0
  2424. package/dist/node/control-plane/hook-authority-reference-capability.js +1 -0
  2425. package/dist/node/control-plane/hook-authority-reference-clock.js +1 -0
  2426. package/dist/node/control-plane/hook-authority-reference-helpers.js +1 -0
  2427. package/dist/node/control-plane/hook-authority-reference-invoke.js +1 -0
  2428. package/dist/node/control-plane/hook-authority-reference-leases.js +1 -0
  2429. package/dist/node/control-plane/hook-authority-reference-lock.js +1 -0
  2430. package/dist/node/control-plane/hook-authority-reference-result.js +1 -0
  2431. package/dist/node/control-plane/hook-authority-reference-session.js +1 -0
  2432. package/dist/node/control-plane/hook-authority-reference-state.js +1 -0
  2433. package/dist/node/control-plane/hook-authority-reference-validation.js +1 -0
  2434. package/dist/node/control-plane/hook-authority-test-body.js +1 -0
  2435. package/dist/node/control-plane/hook-authority-test-fixtures.js +1 -0
  2436. package/dist/node/control-plane/hook-authority-validation-events.js +1 -0
  2437. package/dist/node/control-plane/hook-authority-validation-objects.js +1 -0
  2438. package/dist/node/control-plane/hook-authority-validation-paths.js +1 -0
  2439. package/dist/node/control-plane/hook-authority-validation-primitives.js +1 -0
  2440. package/dist/node/control-plane/hook-authority-validation-request.js +1 -0
  2441. package/dist/node/control-plane/hook-authority-validation.js +1 -0
  2442. package/dist/node/control-plane/hook-authority.js +1 -0
  2443. package/dist/node/control-plane/index.js +1 -0
  2444. package/dist/node/control-plane/policies/controlPlaneMessaging.policy.js +1 -0
  2445. package/dist/node/control-plane/policies/index.js +1 -0
  2446. package/dist/node/control-plane/queries/controlPlaneExecutionGet.query.js +1 -0
  2447. package/dist/node/control-plane/queries/controlPlaneExecutionLane.models.js +1 -0
  2448. package/dist/node/control-plane/queries/controlPlaneExecutionLaneGet.query.js +1 -0
  2449. package/dist/node/control-plane/queries/controlPlaneExecutionLaneList.query.js +1 -0
  2450. package/dist/node/control-plane/queries/controlPlaneExecutionList.query.js +1 -0
  2451. package/dist/node/control-plane/queries/controlPlanePolicyExplain.query.js +1 -0
  2452. package/dist/node/control-plane/queries/controlPlaneSkillList.query.js +1 -0
  2453. package/dist/node/control-plane/queries/controlPlaneSkillVerify.query.js +1 -0
  2454. package/dist/node/control-plane/queries/controlPlaneTraceGet.query.js +1 -0
  2455. package/dist/node/control-plane/queries/index.js +1 -0
  2456. package/dist/node/control-plane/repository-authority-bootstrap.js +1 -0
  2457. package/dist/node/control-plane/skills/index.js +1 -0
  2458. package/dist/node/control-plane/skills/schema.js +1 -0
  2459. package/dist/node/control-plane/skills/signer.js +4 -0
  2460. package/dist/node/control-plane/skills/types.js +0 -0
  2461. package/dist/node/control-plane/skills/validator.js +1 -0
  2462. package/dist/node/control-plane/skills/verifier.js +1 -0
  2463. package/dist/node/creative-intelligence/constants.js +1 -0
  2464. package/dist/node/creative-intelligence/events.js +3 -0
  2465. package/dist/node/creative-intelligence/index.js +1 -0
  2466. package/dist/node/creative-intelligence/operations.js +6 -0
  2467. package/dist/node/creative-intelligence/registry.js +1 -0
  2468. package/dist/node/creative-intelligence/types.js +0 -0
  2469. package/dist/node/creator-operations/campaign.js +1 -0
  2470. package/dist/node/creator-operations/common.js +1 -0
  2471. package/dist/node/creator-operations/index.js +1 -0
  2472. package/dist/node/creator-operations/operation-inputs.js +1 -0
  2473. package/dist/node/creator-operations/operations.js +23 -0
  2474. package/dist/node/creator-operations/ports.js +0 -0
  2475. package/dist/node/creator-operations/submission.js +1 -0
  2476. package/dist/node/creator-operations/training-course.js +1 -0
  2477. package/dist/node/creator-operations/training-operations.js +1 -0
  2478. package/dist/node/creator-operations/training-progress-operation.js +1 -0
  2479. package/dist/node/creator-operations/training-quiz-operation.js +1 -0
  2480. package/dist/node/creator-operations/training-quiz-read.js +1 -0
  2481. package/dist/node/creator-operations/training-quiz-view.js +1 -0
  2482. package/dist/node/creator-operations/training-quiz.js +1 -0
  2483. package/dist/node/creator-operations/training.js +1 -0
  2484. package/dist/node/creator-operations/wallet.js +1 -0
  2485. package/dist/node/customer-support/ai-outcome-evaluation-events.js +1 -0
  2486. package/dist/node/customer-support/ai-outcome-evaluation-operations.js +1 -0
  2487. package/dist/node/customer-support/ai-outcome-evaluation-output-schemas.js +1 -0
  2488. package/dist/node/customer-support/ai-outcome-evaluation-projection-schemas.js +1 -0
  2489. package/dist/node/customer-support/ai-outcome-evaluation-query-schemas.js +1 -0
  2490. package/dist/node/customer-support/ai-outcome-evaluation-schemas.js +1 -0
  2491. package/dist/node/customer-support/ai-outcome-evaluation.js +1 -0
  2492. package/dist/node/customer-support/ai-outcome-event-delivery-schemas.js +1 -0
  2493. package/dist/node/customer-support/ai-outcome-event-delivery.js +0 -0
  2494. package/dist/node/customer-support/ai-outcome-event-digest.js +1 -0
  2495. package/dist/node/customer-support/ai-outcome-learning-events.js +1 -0
  2496. package/dist/node/customer-support/ai-outcome-learning-operations.js +1 -0
  2497. package/dist/node/customer-support/ai-outcome-learning-schema-support.js +1 -0
  2498. package/dist/node/customer-support/ai-outcome-learning-schemas.js +1 -0
  2499. package/dist/node/customer-support/ai-outcome-learning.js +1 -0
  2500. package/dist/node/customer-support/attachment-safety-operations.js +1 -0
  2501. package/dist/node/customer-support/attachment-safety-schemas.js +1 -0
  2502. package/dist/node/customer-support/attachment-safety.js +13 -0
  2503. package/dist/node/customer-support/authos-session.js +10 -0
  2504. package/dist/node/customer-support/billing-entitlement-events.js +1 -0
  2505. package/dist/node/customer-support/billing-entitlement-input-schemas.js +1 -0
  2506. package/dist/node/customer-support/billing-entitlement-operations.js +1 -0
  2507. package/dist/node/customer-support/billing-entitlement-output-schemas.js +1 -0
  2508. package/dist/node/customer-support/billing-entitlement-schema-primitives.js +1 -0
  2509. package/dist/node/customer-support/billing-entitlements.js +1 -0
  2510. package/dist/node/customer-support/capability-matrix-evidence.js +1 -0
  2511. package/dist/node/customer-support/capability-matrix-registries.js +1 -0
  2512. package/dist/node/customer-support/capability-matrix-validation-evidence.js +1 -0
  2513. package/dist/node/customer-support/capability-matrix-validation-helpers.js +1 -0
  2514. package/dist/node/customer-support/capability-matrix-validation.js +1 -0
  2515. package/dist/node/customer-support/capability-matrix.js +3 -0
  2516. package/dist/node/customer-support/case-assignments.js +19 -0
  2517. package/dist/node/customer-support/case-cursor.js +8 -0
  2518. package/dist/node/customer-support/case-lifecycle-event-schemas.js +1 -0
  2519. package/dist/node/customer-support/case-lifecycle.js +8 -0
  2520. package/dist/node/customer-support/case-presence.js +11 -0
  2521. package/dist/node/customer-support/case-relations.js +14 -0
  2522. package/dist/node/customer-support/company-action-events.js +1 -0
  2523. package/dist/node/customer-support/company-action-input-schemas.js +1 -0
  2524. package/dist/node/customer-support/company-action-operations.js +1 -0
  2525. package/dist/node/customer-support/company-action-output-schemas.js +1 -0
  2526. package/dist/node/customer-support/company-action-plans.js +1 -0
  2527. package/dist/node/customer-support/company-action-schema-primitives.js +1 -0
  2528. package/dist/node/customer-support/core.js +1 -0
  2529. package/dist/node/customer-support/crypto-lifecycle.js +12 -0
  2530. package/dist/node/customer-support/crypto-rotation-drill-events.js +1 -0
  2531. package/dist/node/customer-support/crypto-rotation-drill-input-schemas.js +1 -0
  2532. package/dist/node/customer-support/crypto-rotation-drill-operations.js +1 -0
  2533. package/dist/node/customer-support/crypto-rotation-drill-output-schemas.js +1 -0
  2534. package/dist/node/customer-support/crypto-rotation-drill-schema-primitives.js +1 -0
  2535. package/dist/node/customer-support/crypto-rotation-drill.js +1 -0
  2536. package/dist/node/customer-support/crypto-rotation-operations.js +1 -0
  2537. package/dist/node/customer-support/crypto-rotation-schemas.js +1 -0
  2538. package/dist/node/customer-support/crypto-rotation.js +10 -0
  2539. package/dist/node/customer-support/csat-input-digest.js +1 -0
  2540. package/dist/node/customer-support/csat-invitation-job-schemas.js +1 -0
  2541. package/dist/node/customer-support/csat-invitation-jobs.js +0 -0
  2542. package/dist/node/customer-support/csat-operation-schemas.js +1 -0
  2543. package/dist/node/customer-support/csat-operations.js +1 -0
  2544. package/dist/node/customer-support/csat-schema-support.js +1 -0
  2545. package/dist/node/customer-support/csat-survey-events.js +1 -0
  2546. package/dist/node/customer-support/csat-survey-operations.js +1 -0
  2547. package/dist/node/customer-support/csat-survey-schemas.js +1 -0
  2548. package/dist/node/customer-support/csat-surveys.js +15 -0
  2549. package/dist/node/customer-support/csat.js +12 -0
  2550. package/dist/node/customer-support/customer-session-consent-operations.js +1 -0
  2551. package/dist/node/customer-support/customer-session-consent-output-schemas.js +1 -0
  2552. package/dist/node/customer-support/customer-session-consent-schemas.js +1 -0
  2553. package/dist/node/customer-support/customer-session-consent.js +14 -0
  2554. package/dist/node/customer-support/customer-session-schema-support.js +1 -0
  2555. package/dist/node/customer-support/customer-support.feature.js +3 -0
  2556. package/dist/node/customer-support/data-lifecycle-events.js +1 -0
  2557. package/dist/node/customer-support/data-lifecycle-input-schemas.js +1 -0
  2558. package/dist/node/customer-support/data-lifecycle-operations.js +1 -0
  2559. package/dist/node/customer-support/data-lifecycle-output-schemas.js +1 -0
  2560. package/dist/node/customer-support/data-lifecycle-ports.js +0 -0
  2561. package/dist/node/customer-support/data-lifecycle-schema-primitives.js +1 -0
  2562. package/dist/node/customer-support/data-lifecycle-schema-validation.js +1 -0
  2563. package/dist/node/customer-support/data-lifecycle.js +5 -0
  2564. package/dist/node/customer-support/errors.js +6 -0
  2565. package/dist/node/customer-support/event-validation.js +1 -0
  2566. package/dist/node/customer-support/events.js +1 -0
  2567. package/dist/node/customer-support/export-artifact-access-schemas.js +1 -0
  2568. package/dist/node/customer-support/export-artifact-access-validation.js +1 -0
  2569. package/dist/node/customer-support/export-artifact-access.js +1 -0
  2570. package/dist/node/customer-support/export-artifact-event-schemas.js +1 -0
  2571. package/dist/node/customer-support/export-artifact-lifecycle-schemas.js +1 -0
  2572. package/dist/node/customer-support/export-artifact-lifecycle.js +1 -0
  2573. package/dist/node/customer-support/export-artifact-storage.js +0 -0
  2574. package/dist/node/customer-support/export-events.js +1 -0
  2575. package/dist/node/customer-support/export-input-schemas.js +1 -0
  2576. package/dist/node/customer-support/export-operations.js +1 -0
  2577. package/dist/node/customer-support/export-output-schemas.js +1 -0
  2578. package/dist/node/customer-support/export-schemas.js +1 -0
  2579. package/dist/node/customer-support/exports.js +1 -0
  2580. package/dist/node/customer-support/identity-resolution-operations.js +1 -0
  2581. package/dist/node/customer-support/identity-resolution-output-schemas.js +1 -0
  2582. package/dist/node/customer-support/identity-resolution-schemas.js +1 -0
  2583. package/dist/node/customer-support/identity-resolution.js +18 -0
  2584. package/dist/node/customer-support/index.js +1 -0
  2585. package/dist/node/customer-support/internal-note-operations.js +1 -0
  2586. package/dist/node/customer-support/internal-note-schemas.js +1 -0
  2587. package/dist/node/customer-support/internal-notes.js +27 -0
  2588. package/dist/node/customer-support/job-runtime.js +13 -0
  2589. package/dist/node/customer-support/knowledge-authority-citation-schema.js +1 -0
  2590. package/dist/node/customer-support/knowledge-authority-digest.js +1 -0
  2591. package/dist/node/customer-support/knowledge-authority-operations.js +1 -0
  2592. package/dist/node/customer-support/knowledge-authority-schema-primitives.js +1 -0
  2593. package/dist/node/customer-support/knowledge-authority-schemas.js +1 -0
  2594. package/dist/node/customer-support/knowledge-authority.js +1 -0
  2595. package/dist/node/customer-support/live-chat-binding-activity-digest.js +1 -0
  2596. package/dist/node/customer-support/live-chat-continuity-events.js +1 -0
  2597. package/dist/node/customer-support/live-chat-continuity-operations.js +1 -0
  2598. package/dist/node/customer-support/live-chat-continuity-schemas.js +1 -0
  2599. package/dist/node/customer-support/live-chat-continuity.js +9 -0
  2600. package/dist/node/customer-support/membership-capabilities.js +1 -0
  2601. package/dist/node/customer-support/membership-operation-schemas.js +1 -0
  2602. package/dist/node/customer-support/membership-operations.js +1 -0
  2603. package/dist/node/customer-support/memberships.js +24 -0
  2604. package/dist/node/customer-support/metadata-operations.js +1 -0
  2605. package/dist/node/customer-support/metadata-output-schemas.js +1 -0
  2606. package/dist/node/customer-support/metadata-schema-validation.js +1 -0
  2607. package/dist/node/customer-support/metadata-schemas.js +1 -0
  2608. package/dist/node/customer-support/metadata.js +12 -0
  2609. package/dist/node/customer-support/notification-operations.js +1 -0
  2610. package/dist/node/customer-support/notification-output-schemas.js +1 -0
  2611. package/dist/node/customer-support/notification-schemas.js +1 -0
  2612. package/dist/node/customer-support/notifications.js +17 -0
  2613. package/dist/node/customer-support/opa-handoff-operations.js +1 -0
  2614. package/dist/node/customer-support/opa-handoff-schemas.js +1 -0
  2615. package/dist/node/customer-support/opa-handoffs.js +6 -0
  2616. package/dist/node/customer-support/operation-schemas.js +1 -0
  2617. package/dist/node/customer-support/operations.js +9 -0
  2618. package/dist/node/customer-support/platform-authority-binding-registry.js +1 -0
  2619. package/dist/node/customer-support/platform-authority-bindings.js +1 -0
  2620. package/dist/node/customer-support/platform-authority-doc.js +3 -0
  2621. package/dist/node/customer-support/platform-authority.js +1 -0
  2622. package/dist/node/customer-support/platform-ports.js +9 -0
  2623. package/dist/node/customer-support/policies.js +0 -0
  2624. package/dist/node/customer-support/ports.js +0 -0
  2625. package/dist/node/customer-support/provider.js +0 -0
  2626. package/dist/node/customer-support/report-export-events.js +1 -0
  2627. package/dist/node/customer-support/report-export-operations.js +1 -0
  2628. package/dist/node/customer-support/report-export-schemas.js +1 -0
  2629. package/dist/node/customer-support/report-export.js +0 -0
  2630. package/dist/node/customer-support/reporting-definition-schemas.js +1 -0
  2631. package/dist/node/customer-support/reporting-definition-validation.js +1 -0
  2632. package/dist/node/customer-support/reporting-doc.js +3 -0
  2633. package/dist/node/customer-support/reporting-event-schemas.js +1 -0
  2634. package/dist/node/customer-support/reporting-events.js +1 -0
  2635. package/dist/node/customer-support/reporting-metric-compatibility.js +1 -0
  2636. package/dist/node/customer-support/reporting-operations.js +1 -0
  2637. package/dist/node/customer-support/reporting-port.js +0 -0
  2638. package/dist/node/customer-support/reporting-query-schemas.js +1 -0
  2639. package/dist/node/customer-support/reporting-query-validation.js +1 -0
  2640. package/dist/node/customer-support/reporting-record-schemas.js +1 -0
  2641. package/dist/node/customer-support/reporting-schema-primitives.js +1 -0
  2642. package/dist/node/customer-support/reporting-schemas.js +1 -0
  2643. package/dist/node/customer-support/reporting.js +1 -0
  2644. package/dist/node/customer-support/routing-administration.js +12 -0
  2645. package/dist/node/customer-support/routing-operation-schemas.js +1 -0
  2646. package/dist/node/customer-support/routing-operations.js +1 -0
  2647. package/dist/node/customer-support/search-view-operations.js +1 -0
  2648. package/dist/node/customer-support/search-view-output-schemas.js +1 -0
  2649. package/dist/node/customer-support/search-view-schemas.js +1 -0
  2650. package/dist/node/customer-support/search-views.js +19 -0
  2651. package/dist/node/customer-support/service-profile-operations.js +1 -0
  2652. package/dist/node/customer-support/service-profile-output-schemas.js +1 -0
  2653. package/dist/node/customer-support/service-profile-party-schema.js +1 -0
  2654. package/dist/node/customer-support/service-profile-schemas.js +1 -0
  2655. package/dist/node/customer-support/service-profile.js +16 -0
  2656. package/dist/node/customer-support/signed-webhook-events.js +1 -0
  2657. package/dist/node/customer-support/signed-webhook-input-schemas.js +1 -0
  2658. package/dist/node/customer-support/signed-webhook-operations.js +1 -0
  2659. package/dist/node/customer-support/signed-webhook-output-schemas.js +1 -0
  2660. package/dist/node/customer-support/signed-webhook-ports.js +0 -0
  2661. package/dist/node/customer-support/signed-webhook-schema-primitives.js +1 -0
  2662. package/dist/node/customer-support/signed-webhook-schemas.js +1 -0
  2663. package/dist/node/customer-support/signed-webhook-value-validation.js +1 -0
  2664. package/dist/node/customer-support/signed-webhook-wire-schema.js +1 -0
  2665. package/dist/node/customer-support/signed-webhook-wire.js +1 -0
  2666. package/dist/node/customer-support/signed-webhooks.js +1 -0
  2667. package/dist/node/customer-support/skills-routing-operations.js +1 -0
  2668. package/dist/node/customer-support/skills-routing-output-schemas.js +1 -0
  2669. package/dist/node/customer-support/skills-routing-schemas.js +1 -0
  2670. package/dist/node/customer-support/skills-routing.js +16 -0
  2671. package/dist/node/customer-support/sla-administration.js +15 -0
  2672. package/dist/node/customer-support/sla-operation-schemas.js +1 -0
  2673. package/dist/node/customer-support/sla-operations.js +1 -0
  2674. package/dist/node/customer-support/sla-policy-operation-schemas.js +1 -0
  2675. package/dist/node/customer-support/sla-schema-validation.js +1 -0
  2676. package/dist/node/customer-support/slo-incident-alert-input-schemas.js +1 -0
  2677. package/dist/node/customer-support/slo-incident-alert.js +0 -0
  2678. package/dist/node/customer-support/slo-incident-assessment-input-schemas.js +1 -0
  2679. package/dist/node/customer-support/slo-incident-assessment-output-schemas.js +1 -0
  2680. package/dist/node/customer-support/slo-incident-doc.js +12 -0
  2681. package/dist/node/customer-support/slo-incident-event-delivery.js +0 -0
  2682. package/dist/node/customer-support/slo-incident-event-schemas.js +1 -0
  2683. package/dist/node/customer-support/slo-incident-event-types.js +0 -0
  2684. package/dist/node/customer-support/slo-incident-events.js +1 -0
  2685. package/dist/node/customer-support/slo-incident-input-schemas.js +1 -0
  2686. package/dist/node/customer-support/slo-incident-operation-output-schemas.js +1 -0
  2687. package/dist/node/customer-support/slo-incident-operations.js +1 -0
  2688. package/dist/node/customer-support/slo-incident-output-schemas.js +1 -0
  2689. package/dist/node/customer-support/slo-incident-ports.js +0 -0
  2690. package/dist/node/customer-support/slo-incident-profile.js +0 -0
  2691. package/dist/node/customer-support/slo-incident-results.js +0 -0
  2692. package/dist/node/customer-support/slo-incident-schema-support.js +1 -0
  2693. package/dist/node/customer-support/slo-incident.js +1 -0
  2694. package/dist/node/customer-support/slo-qualification-authorization-schemas.js +1 -0
  2695. package/dist/node/customer-support/slo-qualification-authorization.js +0 -0
  2696. package/dist/node/customer-support/slo-qualification-plan.js +1 -0
  2697. package/dist/node/customer-support/workspace-administration.js +12 -0
  2698. package/dist/node/customer-support/workspace-brand-locale-residency-events.js +1 -0
  2699. package/dist/node/customer-support/workspace-brand-locale-residency-operations.js +1 -0
  2700. package/dist/node/customer-support/workspace-brand-locale-residency-schema-validation.js +1 -0
  2701. package/dist/node/customer-support/workspace-brand-locale-residency-schemas.js +1 -0
  2702. package/dist/node/customer-support/workspace-brand-locale-residency.js +9 -0
  2703. package/dist/node/customer-support/workspace-migration-operations.js +1 -0
  2704. package/dist/node/customer-support/workspace-migration-schemas.js +1 -0
  2705. package/dist/node/customer-support/workspace-migration.js +8 -0
  2706. package/dist/node/customer-support/workspace-onboarding-operations.js +1 -0
  2707. package/dist/node/customer-support/workspace-onboarding-schemas.js +1 -0
  2708. package/dist/node/customer-support/workspace-onboarding.js +14 -0
  2709. package/dist/node/customer-support/workspace-operation-schemas.js +1 -0
  2710. package/dist/node/customer-support/workspace-operations.js +1 -0
  2711. package/dist/node/data-views/annotation.d.js +0 -0
  2712. package/dist/node/data-views/annotation.js +28 -0
  2713. package/dist/node/data-views/data-views.js +1 -0
  2714. package/dist/node/data-views/edit-form-resolution.d.js +0 -0
  2715. package/dist/node/data-views/edit-form-resolution.js +1 -0
  2716. package/dist/node/data-views/filter-scope.d.js +0 -0
  2717. package/dist/node/data-views/filter-scope.js +1 -0
  2718. package/dist/node/data-views/graph-export.d.js +0 -0
  2719. package/dist/node/data-views/graph-export.js +2 -0
  2720. package/dist/node/data-views/graph-filter-codec.d.js +0 -0
  2721. package/dist/node/data-views/graph-filter-codec.js +2 -0
  2722. package/dist/node/data-views/graph-filter-spec.d.js +0 -0
  2723. package/dist/node/data-views/graph-filter-spec.js +2 -0
  2724. package/dist/node/data-views/graph-spec.d.js +0 -0
  2725. package/dist/node/data-views/graph-spec.js +80 -0
  2726. package/dist/node/data-views/graph-subscription.d.js +0 -0
  2727. package/dist/node/data-views/graph-subscription.js +3 -0
  2728. package/dist/node/data-views/i18n-constraint.d.js +1 -0
  2729. package/dist/node/data-views/i18n-constraint.js +0 -0
  2730. package/dist/node/data-views/index.d.js +1 -0
  2731. package/dist/node/data-views/index.js +1 -0
  2732. package/dist/node/data-views/layout-spec.d.js +0 -0
  2733. package/dist/node/data-views/layout-spec.js +2 -0
  2734. package/dist/node/data-views/query-generator.js +1 -0
  2735. package/dist/node/data-views/registry.d.js +0 -0
  2736. package/dist/node/data-views/registry.js +1 -0
  2737. package/dist/node/data-views/report/contractVerificationTable.js +29 -0
  2738. package/dist/node/data-views/runtime.js +1 -0
  2739. package/dist/node/data-views/saved-view.d.js +0 -0
  2740. package/dist/node/data-views/saved-view.js +19 -0
  2741. package/dist/node/data-views/spec.d.js +0 -0
  2742. package/dist/node/data-views/spec.js +23 -0
  2743. package/dist/node/data-views/story-slide.d.js +0 -0
  2744. package/dist/node/data-views/story-slide.js +2 -0
  2745. package/dist/node/data-views/types.d.js +0 -0
  2746. package/dist/node/data-views/types.js +0 -0
  2747. package/dist/node/database/capabilities/databaseContext.capability.js +4 -0
  2748. package/dist/node/database/capabilities/index.js +1 -0
  2749. package/dist/node/database/commands/databaseMutationExecute.command.js +4 -0
  2750. package/dist/node/database/commands/databaseMutationPlan.command.js +4 -0
  2751. package/dist/node/database/commands/index.js +1 -0
  2752. package/dist/node/database/constants.js +1 -0
  2753. package/dist/node/database/contracts.js +1 -0
  2754. package/dist/node/database/database.feature.js +1 -0
  2755. package/dist/node/database/economic-evidence.js +1 -0
  2756. package/dist/node/database/index.js +1 -0
  2757. package/dist/node/database/queries/databaseDictionaryGet.query.js +4 -0
  2758. package/dist/node/database/queries/databaseMigrationsList.query.js +4 -0
  2759. package/dist/node/database/queries/databaseQueryReadonly.query.js +4 -0
  2760. package/dist/node/database/queries/databaseRelationalQuery.query.js +9 -0
  2761. package/dist/node/database/queries/databaseSchemaDescribe.query.js +4 -0
  2762. package/dist/node/database/queries/index.js +1 -0
  2763. package/dist/node/database/tables/capabilityEdges.table.js +1 -0
  2764. package/dist/node/database/tables/capabilityNodes.table.js +1 -0
  2765. package/dist/node/database/tables/databaseTables.js +1 -0
  2766. package/dist/node/database/tables/index.js +1 -0
  2767. package/dist/node/database/tables/organizationGrants.table.js +1 -0
  2768. package/dist/node/database/tables/organizationTenantBindings.table.js +1 -0
  2769. package/dist/node/database/tables/workspaces.table.js +1 -0
  2770. package/dist/node/database/views/databaseSchemas.dataView.js +4 -0
  2771. package/dist/node/database/views/index.js +1 -0
  2772. package/dist/node/decisioning/decisioning.feature.d.js +0 -0
  2773. package/dist/node/decisioning/decisioning.feature.js +5 -0
  2774. package/dist/node/decisioning/evaluation-events.d.js +1 -0
  2775. package/dist/node/decisioning/evaluation-events.js +1 -0
  2776. package/dist/node/decisioning/evaluation-evidence-administration-operations.d.js +0 -0
  2777. package/dist/node/decisioning/evaluation-evidence-administration-operations.js +1 -0
  2778. package/dist/node/decisioning/evaluation-evidence-administration-schemas.d.js +1 -0
  2779. package/dist/node/decisioning/evaluation-evidence-administration-schemas.js +1 -0
  2780. package/dist/node/decisioning/evaluation-evidence-administration.d.js +0 -0
  2781. package/dist/node/decisioning/evaluation-evidence-administration.js +0 -0
  2782. package/dist/node/decisioning/evaluation-evidence-output-schemas.d.js +1 -0
  2783. package/dist/node/decisioning/evaluation-evidence-output-schemas.js +1 -0
  2784. package/dist/node/decisioning/evaluation-input-schemas.d.js +1 -0
  2785. package/dist/node/decisioning/evaluation-input-schemas.js +1 -0
  2786. package/dist/node/decisioning/evaluation-output-primitives.d.js +1 -0
  2787. package/dist/node/decisioning/evaluation-output-primitives.js +1 -0
  2788. package/dist/node/decisioning/evaluation-output-schemas.d.js +1 -0
  2789. package/dist/node/decisioning/evaluation-output-schemas.js +1 -0
  2790. package/dist/node/decisioning/evaluation-schema-validation.d.js +0 -0
  2791. package/dist/node/decisioning/evaluation-schema-validation.js +1 -0
  2792. package/dist/node/decisioning/evaluation-trace-output-schema.d.js +0 -0
  2793. package/dist/node/decisioning/evaluation-trace-output-schema.js +1 -0
  2794. package/dist/node/decisioning/evaluation.d.js +0 -0
  2795. package/dist/node/decisioning/evaluation.js +0 -0
  2796. package/dist/node/decisioning/index.d.js +1 -0
  2797. package/dist/node/decisioning/index.js +1 -0
  2798. package/dist/node/decisioning/lifecycle-events.d.js +0 -0
  2799. package/dist/node/decisioning/lifecycle-events.js +1 -0
  2800. package/dist/node/decisioning/lifecycle-input-schemas.d.js +1 -0
  2801. package/dist/node/decisioning/lifecycle-input-schemas.js +1 -0
  2802. package/dist/node/decisioning/lifecycle-operations.d.js +1 -0
  2803. package/dist/node/decisioning/lifecycle-operations.js +7 -0
  2804. package/dist/node/decisioning/lifecycle-output-schemas.d.js +1 -0
  2805. package/dist/node/decisioning/lifecycle-output-schemas.js +1 -0
  2806. package/dist/node/decisioning/lifecycle.d.js +0 -0
  2807. package/dist/node/decisioning/lifecycle.js +1 -0
  2808. package/dist/node/decisioning/operation-metadata.d.js +0 -0
  2809. package/dist/node/decisioning/operation-metadata.js +1 -0
  2810. package/dist/node/decisioning/operations.d.js +0 -0
  2811. package/dist/node/decisioning/operations.js +1 -0
  2812. package/dist/node/decisioning/predicate-evaluation.d.js +0 -0
  2813. package/dist/node/decisioning/predicate-evaluation.js +1 -0
  2814. package/dist/node/decisioning/predicate.d.js +0 -0
  2815. package/dist/node/decisioning/predicate.js +1 -0
  2816. package/dist/node/decisioning/types.d.js +1 -0
  2817. package/dist/node/decisioning/types.js +0 -0
  2818. package/dist/node/decisioning/validation-diagnostics.d.js +0 -0
  2819. package/dist/node/decisioning/validation-diagnostics.js +1 -0
  2820. package/dist/node/decisioning/validation-policy.d.js +0 -0
  2821. package/dist/node/decisioning/validation-policy.js +1 -0
  2822. package/dist/node/decisioning/validation-shape.d.js +0 -0
  2823. package/dist/node/decisioning/validation-shape.js +1 -0
  2824. package/dist/node/decisioning/validation.d.js +1 -0
  2825. package/dist/node/decisioning/validation.js +1 -0
  2826. package/dist/node/delivery/authority.js +1 -0
  2827. package/dist/node/delivery/autonomy-context.js +1 -0
  2828. package/dist/node/delivery/chain.js +1 -0
  2829. package/dist/node/delivery/ci-budget.js +1 -0
  2830. package/dist/node/delivery/contracts.js +1 -0
  2831. package/dist/node/delivery/index.js +1 -0
  2832. package/dist/node/delivery/manual-author-attestation.js +1 -0
  2833. package/dist/node/delivery/primitives.d.js +0 -0
  2834. package/dist/node/delivery/primitives.js +1 -0
  2835. package/dist/node/delivery/project-profile.js +1 -0
  2836. package/dist/node/delivery/scoped-autonomy.js +1 -0
  2837. package/dist/node/design-packs/index.d.js +1 -0
  2838. package/dist/node/design-packs/index.js +1 -0
  2839. package/dist/node/design-packs/inheritance.d.js +0 -0
  2840. package/dist/node/design-packs/inheritance.js +1 -0
  2841. package/dist/node/design-packs/legacy-theme.d.js +0 -0
  2842. package/dist/node/design-packs/legacy-theme.js +1 -0
  2843. package/dist/node/design-packs/operations.d.js +1 -0
  2844. package/dist/node/design-packs/operations.js +3 -0
  2845. package/dist/node/design-packs/patch-validation.d.js +0 -0
  2846. package/dist/node/design-packs/patch-validation.js +1 -0
  2847. package/dist/node/design-packs/patch-value-validation.d.js +0 -0
  2848. package/dist/node/design-packs/patch-value-validation.js +1 -0
  2849. package/dist/node/design-packs/patches.d.js +1 -0
  2850. package/dist/node/design-packs/patches.js +1 -0
  2851. package/dist/node/design-packs/policy.d.js +0 -0
  2852. package/dist/node/design-packs/policy.js +0 -0
  2853. package/dist/node/design-packs/ports.d.js +0 -0
  2854. package/dist/node/design-packs/ports.js +0 -0
  2855. package/dist/node/design-packs/records.d.js +0 -0
  2856. package/dist/node/design-packs/records.js +0 -0
  2857. package/dist/node/design-packs/registry.d.js +0 -0
  2858. package/dist/node/design-packs/registry.js +1 -0
  2859. package/dist/node/design-packs/resolution-helpers.d.js +0 -0
  2860. package/dist/node/design-packs/resolution-helpers.js +1 -0
  2861. package/dist/node/design-packs/runtime.d.js +0 -0
  2862. package/dist/node/design-packs/runtime.js +1 -0
  2863. package/dist/node/design-packs/types.d.js +0 -0
  2864. package/dist/node/design-packs/types.js +1 -0
  2865. package/dist/node/design-packs/validation.d.js +0 -0
  2866. package/dist/node/design-packs/validation.js +1 -0
  2867. package/dist/node/docs/capabilities/documentationSystem.capability.d.js +0 -0
  2868. package/dist/node/docs/capabilities/documentationSystem.capability.js +1 -0
  2869. package/dist/node/docs/capabilities/index.d.js +1 -0
  2870. package/dist/node/docs/capabilities/index.js +1 -0
  2871. package/dist/node/docs/commands/docsGenerate.command.d.js +0 -0
  2872. package/dist/node/docs/commands/docsGenerate.command.js +4 -0
  2873. package/dist/node/docs/commands/docsPublish.command.d.js +0 -0
  2874. package/dist/node/docs/commands/docsPublish.command.js +4 -0
  2875. package/dist/node/docs/commands/index.d.js +1 -0
  2876. package/dist/node/docs/commands/index.js +1 -0
  2877. package/dist/node/docs/constants.d.js +0 -0
  2878. package/dist/node/docs/constants.js +1 -0
  2879. package/dist/node/docs/contracts.d.js +0 -0
  2880. package/dist/node/docs/contracts.js +1 -0
  2881. package/dist/node/docs/docblocks.manifest.generated.d.js +0 -0
  2882. package/dist/node/docs/docblocks.manifest.generated.js +3215 -0
  2883. package/dist/node/docs/docs.feature.d.js +0 -0
  2884. package/dist/node/docs/docs.feature.js +365 -0
  2885. package/dist/node/docs/events/docsGenerated.event.d.js +0 -0
  2886. package/dist/node/docs/events/docsGenerated.event.js +1 -0
  2887. package/dist/node/docs/events/docsPublished.event.d.js +0 -0
  2888. package/dist/node/docs/events/docsPublished.event.js +1 -0
  2889. package/dist/node/docs/events/index.d.js +1 -0
  2890. package/dist/node/docs/events/index.js +1 -0
  2891. package/dist/node/docs/forms/docsSearch.form.d.js +0 -0
  2892. package/dist/node/docs/forms/docsSearch.form.js +1 -0
  2893. package/dist/node/docs/forms/index.d.js +1 -0
  2894. package/dist/node/docs/forms/index.js +1 -0
  2895. package/dist/node/docs/index.d.js +1 -0
  2896. package/dist/node/docs/index.js +1 -0
  2897. package/dist/node/docs/manifest-builder.js +1 -0
  2898. package/dist/node/docs/manifest.d.js +0 -0
  2899. package/dist/node/docs/manifest.js +1 -0
  2900. package/dist/node/docs/presentations/docsLayout.presentation.d.js +0 -0
  2901. package/dist/node/docs/presentations/docsLayout.presentation.js +1 -0
  2902. package/dist/node/docs/presentations/docsReferencePage.presentation.d.js +0 -0
  2903. package/dist/node/docs/presentations/docsReferencePage.presentation.js +1 -0
  2904. package/dist/node/docs/presentations/index.d.js +1 -0
  2905. package/dist/node/docs/presentations/index.js +1 -0
  2906. package/dist/node/docs/presentations.d.js +0 -0
  2907. package/dist/node/docs/presentations.js +1 -0
  2908. package/dist/node/docs/queries/contractReference.query.d.js +0 -0
  2909. package/dist/node/docs/queries/contractReference.query.js +4 -0
  2910. package/dist/node/docs/queries/docsIndex.query.d.js +0 -0
  2911. package/dist/node/docs/queries/docsIndex.query.js +4 -0
  2912. package/dist/node/docs/queries/index.d.js +1 -0
  2913. package/dist/node/docs/queries/index.js +1 -0
  2914. package/dist/node/docs/registry.d.js +0 -0
  2915. package/dist/node/docs/registry.js +1 -0
  2916. package/dist/node/docs/types.d.js +0 -0
  2917. package/dist/node/docs/types.js +0 -0
  2918. package/dist/node/docs/views/contractReference.dataView.d.js +0 -0
  2919. package/dist/node/docs/views/contractReference.dataView.js +1 -0
  2920. package/dist/node/docs/views/docsIndex.dataView.d.js +0 -0
  2921. package/dist/node/docs/views/docsIndex.dataView.js +1 -0
  2922. package/dist/node/docs/views/exampleCatalog.dataView.d.js +0 -0
  2923. package/dist/node/docs/views/exampleCatalog.dataView.js +4 -0
  2924. package/dist/node/docs/views/index.d.js +1 -0
  2925. package/dist/node/docs/views/index.js +1 -0
  2926. package/dist/node/editions/companyos-scenario.js +1 -0
  2927. package/dist/node/editions/connect-gates.js +1 -0
  2928. package/dist/node/editions/delivery-audit.js +1 -0
  2929. package/dist/node/editions/docs.js +45 -0
  2930. package/dist/node/editions/editor/fixtures.js +1 -0
  2931. package/dist/node/editions/editor/index.js +1 -0
  2932. package/dist/node/editions/editor/resolver.js +1 -0
  2933. package/dist/node/editions/editor/schema.js +1 -0
  2934. package/dist/node/editions/editor/types.js +0 -0
  2935. package/dist/node/editions/enterprise-guardrails.js +1 -0
  2936. package/dist/node/editions/evidence-boundary.js +1 -0
  2937. package/dist/node/editions/experiments.js +1 -0
  2938. package/dist/node/editions/fixtures.js +1 -0
  2939. package/dist/node/editions/full-loop-gate.js +1 -0
  2940. package/dist/node/editions/harness-evidence.js +1 -0
  2941. package/dist/node/editions/improvement-types.js +0 -0
  2942. package/dist/node/editions/improvement.js +1 -0
  2943. package/dist/node/editions/index.js +1 -0
  2944. package/dist/node/editions/intelligence-coach.js +1 -0
  2945. package/dist/node/editions/knowledge-provenance.js +1 -0
  2946. package/dist/node/editions/ontology-boundary.js +1 -0
  2947. package/dist/node/editions/operation-specs.js +1 -0
  2948. package/dist/node/editions/rollback.js +1 -0
  2949. package/dist/node/editions/runtime-wiring.js +1 -0
  2950. package/dist/node/editions/schema.js +1 -0
  2951. package/dist/node/editions/storage-file.js +1 -0
  2952. package/dist/node/editions/storage-hybrid.js +1 -0
  2953. package/dist/node/editions/storage-parity.js +1 -0
  2954. package/dist/node/editions/storage.js +1 -0
  2955. package/dist/node/editions/types.js +0 -0
  2956. package/dist/node/editions/validation.js +1 -0
  2957. package/dist/node/entities/compatibility.js +20 -0
  2958. package/dist/node/entities/defineContractEdge.d.js +0 -0
  2959. package/dist/node/entities/defineContractEdge.js +41 -0
  2960. package/dist/node/entities/defineContractEntity.d.js +0 -0
  2961. package/dist/node/entities/defineContractEntity.js +80 -0
  2962. package/dist/node/entities/index.js +1 -0
  2963. package/dist/node/entities/registry.d.js +0 -0
  2964. package/dist/node/entities/registry.js +1 -0
  2965. package/dist/node/entities/types.d.js +0 -0
  2966. package/dist/node/entities/types.js +1 -0
  2967. package/dist/node/events.d.js +0 -0
  2968. package/dist/node/events.js +1 -0
  2969. package/dist/node/examples/define.js +1 -0
  2970. package/dist/node/examples/index.js +141 -0
  2971. package/dist/node/examples/registry.js +1 -0
  2972. package/dist/node/examples/schema.js +1 -0
  2973. package/dist/node/examples/types.js +1 -0
  2974. package/dist/node/examples/validation.js +1 -0
  2975. package/dist/node/experience-coverage/index.js +1 -0
  2976. package/dist/node/experience-coverage/scoring.js +1 -0
  2977. package/dist/node/experience-coverage/types.js +1 -0
  2978. package/dist/node/experience-coverage/validation.js +1 -0
  2979. package/dist/node/experiments/evaluator.js +1 -0
  2980. package/dist/node/experiments/spec-resolver.d.js +0 -0
  2981. package/dist/node/experiments/spec-resolver.js +0 -0
  2982. package/dist/node/experiments/spec.d.js +0 -0
  2983. package/dist/node/experiments/spec.js +128 -0
  2984. package/dist/node/feature-hubs/federation.js +1 -0
  2985. package/dist/node/feature-hubs/index.js +1 -0
  2986. package/dist/node/feature-hubs/policy.js +0 -0
  2987. package/dist/node/feature-hubs/ports.js +0 -0
  2988. package/dist/node/feature-hubs/registry.js +0 -0
  2989. package/dist/node/feature-hubs/social-intent-ports.js +0 -0
  2990. package/dist/node/feature-hubs/social-media.js +0 -0
  2991. package/dist/node/feature-hubs/social-provider-v2.js +14 -0
  2992. package/dist/node/feature-hubs/social-scheduling-operations.js +17 -0
  2993. package/dist/node/feature-hubs/social-scheduling.js +1 -0
  2994. package/dist/node/feature-hubs/types.js +1 -0
  2995. package/dist/node/features/index.d.js +1 -0
  2996. package/dist/node/features/index.js +1 -0
  2997. package/dist/node/features/install.d.js +0 -0
  2998. package/dist/node/features/install.js +1 -0
  2999. package/dist/node/features/registry.d.js +0 -0
  3000. package/dist/node/features/registry.js +1 -0
  3001. package/dist/node/features/types.d.js +0 -0
  3002. package/dist/node/features/types.js +62 -0
  3003. package/dist/node/features/validate-bundle-requires.d.js +1 -0
  3004. package/dist/node/features/validate-bundle-requires.js +1 -0
  3005. package/dist/node/features/validation.d.js +0 -0
  3006. package/dist/node/features/validation.js +1 -0
  3007. package/dist/node/forms/entity-bound-forms.d.js +0 -0
  3008. package/dist/node/forms/entity-bound-forms.js +30 -0
  3009. package/dist/node/forms/entity-bound.js +1 -0
  3010. package/dist/node/forms/forms.d.js +1 -0
  3011. package/dist/node/forms/forms.js +1 -0
  3012. package/dist/node/forms/index.d.js +1 -0
  3013. package/dist/node/forms/index.js +1 -0
  3014. package/dist/node/forms/marketing.forms.d.js +0 -0
  3015. package/dist/node/forms/marketing.forms.js +1 -0
  3016. package/dist/node/forms/platform-ai-validation.d.js +0 -0
  3017. package/dist/node/forms/platform-ai-validation.js +1 -0
  3018. package/dist/node/forms/platform-capability.d.js +0 -0
  3019. package/dist/node/forms/platform-capability.js +1 -0
  3020. package/dist/node/forms/platform-compiler.d.js +0 -0
  3021. package/dist/node/forms/platform-compiler.js +1 -0
  3022. package/dist/node/forms/platform-decision-graph.d.js +0 -0
  3023. package/dist/node/forms/platform-decision-graph.js +1 -0
  3024. package/dist/node/forms/platform-docs.d.js +0 -0
  3025. package/dist/node/forms/platform-docs.js +1 -0
  3026. package/dist/node/forms/platform-document-doc.d.js +0 -0
  3027. package/dist/node/forms/platform-document-doc.js +1 -0
  3028. package/dist/node/forms/platform-document.d.js +0 -0
  3029. package/dist/node/forms/platform-document.js +1 -0
  3030. package/dist/node/forms/platform-ecosystem-operations.d.js +0 -0
  3031. package/dist/node/forms/platform-ecosystem-operations.js +1 -0
  3032. package/dist/node/forms/platform-features.d.js +0 -0
  3033. package/dist/node/forms/platform-features.js +1 -0
  3034. package/dist/node/forms/platform-form-spec-serialization.d.js +0 -0
  3035. package/dist/node/forms/platform-form-spec-serialization.js +1 -0
  3036. package/dist/node/forms/platform-form-spec-validation.d.js +0 -0
  3037. package/dist/node/forms/platform-form-spec-validation.js +1 -0
  3038. package/dist/node/forms/platform-locale-validation.d.js +0 -0
  3039. package/dist/node/forms/platform-locale-validation.js +1 -0
  3040. package/dist/node/forms/platform-operation-catalog.d.js +0 -0
  3041. package/dist/node/forms/platform-operation-catalog.js +1 -0
  3042. package/dist/node/forms/platform-operation-errors.d.js +0 -0
  3043. package/dist/node/forms/platform-operation-errors.js +1 -0
  3044. package/dist/node/forms/platform-operations.d.js +0 -0
  3045. package/dist/node/forms/platform-operations.js +1 -0
  3046. package/dist/node/forms/platform-product.d.js +0 -0
  3047. package/dist/node/forms/platform-product.js +1 -0
  3048. package/dist/node/forms/platform-registry.d.js +0 -0
  3049. package/dist/node/forms/platform-registry.js +1 -0
  3050. package/dist/node/forms/platform-response-extension.d.js +0 -0
  3051. package/dist/node/forms/platform-response-extension.js +0 -0
  3052. package/dist/node/forms/platform-validation.d.js +0 -0
  3053. package/dist/node/forms/platform-validation.js +1 -0
  3054. package/dist/node/forms/richFieldsShowcase.form.d.js +0 -0
  3055. package/dist/node/forms/richFieldsShowcase.form.js +1 -0
  3056. package/dist/node/graph-artifacts/codebase.js +1 -0
  3057. package/dist/node/graph-artifacts/common.js +1 -0
  3058. package/dist/node/graph-artifacts/contracts.js +1 -0
  3059. package/dist/node/graph-artifacts/drift.js +1 -0
  3060. package/dist/node/graph-artifacts/generation.js +1 -0
  3061. package/dist/node/graph-artifacts/index.js +1 -0
  3062. package/dist/node/graph-artifacts/links.js +1 -0
  3063. package/dist/node/harness/capabilities/harnessEvaluation.capability.js +1 -0
  3064. package/dist/node/harness/capabilities/harnessEvidence.capability.js +1 -0
  3065. package/dist/node/harness/capabilities/harnessExecution.capability.js +1 -0
  3066. package/dist/node/harness/capabilities/harnessTargeting.capability.js +1 -0
  3067. package/dist/node/harness/capabilities/index.js +1 -0
  3068. package/dist/node/harness/commands/harnessEvaluationRun.command.js +1 -0
  3069. package/dist/node/harness/commands/harnessRunCancel.command.js +1 -0
  3070. package/dist/node/harness/commands/harnessRunStart.command.js +1 -0
  3071. package/dist/node/harness/commands/index.js +1 -0
  3072. package/dist/node/harness/constants.js +1 -0
  3073. package/dist/node/harness/contracts.js +1 -0
  3074. package/dist/node/harness/events/harnessEvaluationCompleted.event.js +1 -0
  3075. package/dist/node/harness/events/harnessEvidenceCaptured.event.js +1 -0
  3076. package/dist/node/harness/events/harnessRunCompleted.event.js +1 -0
  3077. package/dist/node/harness/events/harnessRunFailed.event.js +1 -0
  3078. package/dist/node/harness/events/harnessRunStarted.event.js +1 -0
  3079. package/dist/node/harness/events/harnessStepBlocked.event.js +1 -0
  3080. package/dist/node/harness/events/harnessStepCompleted.event.js +1 -0
  3081. package/dist/node/harness/events/harnessStepStarted.event.js +1 -0
  3082. package/dist/node/harness/events/index.js +1 -0
  3083. package/dist/node/harness/harness.feature.js +1 -0
  3084. package/dist/node/harness/index.js +1 -0
  3085. package/dist/node/harness/models.js +1 -0
  3086. package/dist/node/harness/presentations/harnessRunAudit.presentation.js +1 -0
  3087. package/dist/node/harness/presentations/index.js +1 -0
  3088. package/dist/node/harness/queries/harnessEvaluationGet.query.js +1 -0
  3089. package/dist/node/harness/queries/harnessEvidenceGet.query.js +1 -0
  3090. package/dist/node/harness/queries/harnessEvidenceList.query.js +1 -0
  3091. package/dist/node/harness/queries/harnessRunGet.query.js +1 -0
  3092. package/dist/node/harness/queries/harnessTargetResolve.query.js +1 -0
  3093. package/dist/node/harness/queries/index.js +1 -0
  3094. package/dist/node/harness/types.js +1 -0
  3095. package/dist/node/harness/views/harnessEvaluations.dataView.js +1 -0
  3096. package/dist/node/harness/views/harnessEvidence.dataView.js +1 -0
  3097. package/dist/node/harness/views/harnessRuns.dataView.js +1 -0
  3098. package/dist/node/harness/views/index.js +1 -0
  3099. package/dist/node/index.js +1 -0
  3100. package/dist/node/install.d.js +1 -0
  3101. package/dist/node/install.js +1 -0
  3102. package/dist/node/job-application/constants.js +1 -0
  3103. package/dist/node/job-application/events.js +1 -0
  3104. package/dist/node/job-application/index.js +1 -0
  3105. package/dist/node/job-application/operation-definitions.js +1 -0
  3106. package/dist/node/job-application/operations.js +1 -0
  3107. package/dist/node/job-application/registry.js +1 -0
  3108. package/dist/node/job-application/transport.js +1 -0
  3109. package/dist/node/job-application/types.js +1 -0
  3110. package/dist/node/job-application/validation.js +1 -0
  3111. package/dist/node/jobs/define-job.js +1 -0
  3112. package/dist/node/jobs/durable-queue-v2/admission-validation.js +1 -0
  3113. package/dist/node/jobs/durable-queue-v2/capability.js +1 -0
  3114. package/dist/node/jobs/durable-queue-v2/digests.js +1 -0
  3115. package/dist/node/jobs/durable-queue-v2/envelope.js +1 -0
  3116. package/dist/node/jobs/durable-queue-v2/index.js +1 -0
  3117. package/dist/node/jobs/durable-queue-v2/lifecycle.js +1 -0
  3118. package/dist/node/jobs/durable-queue-v2/primitives.js +1 -0
  3119. package/dist/node/jobs/durable-queue-v2/test-fixtures.js +1 -0
  3120. package/dist/node/jobs/durable-queue-v2/validation.js +1 -0
  3121. package/dist/node/jobs/durable-queue-v2/workload.js +1 -0
  3122. package/dist/node/jobs/index.js +1 -0
  3123. package/dist/node/jobs/queue.d.js +0 -0
  3124. package/dist/node/jobs/queue.js +1 -0
  3125. package/dist/node/jobs/spec.d.js +0 -0
  3126. package/dist/node/jobs/spec.js +1 -0
  3127. package/dist/node/jsonschema.js +1 -0
  3128. package/dist/node/knowledge/binding.d.js +0 -0
  3129. package/dist/node/knowledge/binding.js +0 -0
  3130. package/dist/node/knowledge/index.js +1 -0
  3131. package/dist/node/knowledge/knowledge.capability.js +1 -0
  3132. package/dist/node/knowledge/knowledge.feature.js +1 -0
  3133. package/dist/node/knowledge/operation-models.js +1 -0
  3134. package/dist/node/knowledge/operations.js +1 -0
  3135. package/dist/node/knowledge/registry.d.js +0 -0
  3136. package/dist/node/knowledge/registry.js +1 -0
  3137. package/dist/node/knowledge/source.d.js +0 -0
  3138. package/dist/node/knowledge/source.js +1 -0
  3139. package/dist/node/knowledge/spaces/email-threads.js +1 -0
  3140. package/dist/node/knowledge/spaces/financial-docs.js +1 -0
  3141. package/dist/node/knowledge/spaces/financial-overview.js +1 -0
  3142. package/dist/node/knowledge/spaces/index.js +1 -0
  3143. package/dist/node/knowledge/spaces/product-canon.js +1 -0
  3144. package/dist/node/knowledge/spaces/support-faq.js +1 -0
  3145. package/dist/node/knowledge/spaces/uploaded-docs.js +1 -0
  3146. package/dist/node/knowledge/spec.d.js +1 -0
  3147. package/dist/node/knowledge/spec.js +172 -0
  3148. package/dist/node/llm/exporters.js +9 -0
  3149. package/dist/node/llm/index.js +1 -0
  3150. package/dist/node/llm/prompts.js +237 -0
  3151. package/dist/node/llm/types.js +0 -0
  3152. package/dist/node/markdown.js +3 -0
  3153. package/dist/node/marketing/fixtures.js +1 -0
  3154. package/dist/node/marketing/forms.js +1 -0
  3155. package/dist/node/marketing/index.js +1 -0
  3156. package/dist/node/marketing/types.js +0 -0
  3157. package/dist/node/marketing/validation.js +3 -0
  3158. package/dist/node/migrations.js +69 -0
  3159. package/dist/node/model-registry.js +1 -0
  3160. package/dist/node/navigation/index.js +1 -0
  3161. package/dist/node/navigation/nav-graph.js +69 -0
  3162. package/dist/node/navigation/nav-surface.js +70 -0
  3163. package/dist/node/navigation/registry.js +1 -0
  3164. package/dist/node/notifications/contracts.js +1 -0
  3165. package/dist/node/notifications/index.js +1 -0
  3166. package/dist/node/notifications/notifications.capability.js +1 -0
  3167. package/dist/node/notifications/notifications.feature.js +1 -0
  3168. package/dist/node/observability/database-signals.js +1 -0
  3169. package/dist/node/observability/evidence-record.js +1 -0
  3170. package/dist/node/observability/index.js +1 -0
  3171. package/dist/node/observability/signal-spec.js +1 -0
  3172. package/dist/node/onboarding-base.js +1 -0
  3173. package/dist/node/ontology/autonomous-work-order.fixture.js +1 -0
  3174. package/dist/node/ontology/companyos.js +1 -0
  3175. package/dist/node/ontology/defineOntologyEdge.js +1 -0
  3176. package/dist/node/ontology/defineOntologyNode.js +1 -0
  3177. package/dist/node/ontology/evidence.js +1 -0
  3178. package/dist/node/ontology/graph.js +1 -0
  3179. package/dist/node/ontology/index.js +1 -0
  3180. package/dist/node/ontology/kinds.js +1 -0
  3181. package/dist/node/ontology/ref.js +1 -0
  3182. package/dist/node/ontology/registry.js +1 -0
  3183. package/dist/node/ontology/safety.js +1 -0
  3184. package/dist/node/ontology/types.js +0 -0
  3185. package/dist/node/openapi.js +38 -0
  3186. package/dist/node/operations/agent/archive.command.d.js +0 -0
  3187. package/dist/node/operations/agent/archive.command.js +1 -0
  3188. package/dist/node/operations/agent/assign-tool.command.d.js +0 -0
  3189. package/dist/node/operations/agent/assign-tool.command.js +1 -0
  3190. package/dist/node/operations/agent/clone.command.d.js +0 -0
  3191. package/dist/node/operations/agent/clone.command.js +1 -0
  3192. package/dist/node/operations/agent/create.command.d.js +0 -0
  3193. package/dist/node/operations/agent/create.command.js +1 -0
  3194. package/dist/node/operations/agent/fleet-health.query.d.js +0 -0
  3195. package/dist/node/operations/agent/fleet-health.query.js +1 -0
  3196. package/dist/node/operations/agent/get.query.d.js +0 -0
  3197. package/dist/node/operations/agent/get.query.js +1 -0
  3198. package/dist/node/operations/agent/import-memory.command.js +1 -0
  3199. package/dist/node/operations/agent/list.query.d.js +0 -0
  3200. package/dist/node/operations/agent/list.query.js +1 -0
  3201. package/dist/node/operations/agent/pause.command.d.js +0 -0
  3202. package/dist/node/operations/agent/pause.command.js +1 -0
  3203. package/dist/node/operations/agent/set-autonomy.command.d.js +0 -0
  3204. package/dist/node/operations/agent/set-autonomy.command.js +1 -0
  3205. package/dist/node/operations/agent/set-risk-tier.command.d.js +0 -0
  3206. package/dist/node/operations/agent/set-risk-tier.command.js +1 -0
  3207. package/dist/node/operations/agent/shared-schemas.d.js +0 -0
  3208. package/dist/node/operations/agent/shared-schemas.js +1 -0
  3209. package/dist/node/operations/agent/start.command.d.js +0 -0
  3210. package/dist/node/operations/agent/start.command.js +1 -0
  3211. package/dist/node/operations/agent/stop.command.d.js +0 -0
  3212. package/dist/node/operations/agent/stop.command.js +1 -0
  3213. package/dist/node/operations/agent/update.command.d.js +0 -0
  3214. package/dist/node/operations/agent/update.command.js +1 -0
  3215. package/dist/node/operations/approval.d.js +0 -0
  3216. package/dist/node/operations/approval.js +1 -0
  3217. package/dist/node/operations/audit/event.export.command.d.js +0 -0
  3218. package/dist/node/operations/audit/event.export.command.js +1 -0
  3219. package/dist/node/operations/audit/event.get.query.d.js +0 -0
  3220. package/dist/node/operations/audit/event.get.query.js +1 -0
  3221. package/dist/node/operations/audit/event.list.query.d.js +0 -0
  3222. package/dist/node/operations/audit/event.list.query.js +1 -0
  3223. package/dist/node/operations/audit/evidence.attach.command.d.js +0 -0
  3224. package/dist/node/operations/audit/evidence.attach.command.js +1 -0
  3225. package/dist/node/operations/audit/pipeline.health.query.d.js +0 -0
  3226. package/dist/node/operations/audit/pipeline.health.query.js +1 -0
  3227. package/dist/node/operations/audit/shared-schemas.d.js +0 -0
  3228. package/dist/node/operations/audit/shared-schemas.js +1 -0
  3229. package/dist/node/operations/ceremony-authority.d.js +0 -0
  3230. package/dist/node/operations/ceremony-authority.js +1 -0
  3231. package/dist/node/operations/coach/agent-suggest-tool.command.d.js +0 -0
  3232. package/dist/node/operations/coach/agent-suggest-tool.command.js +1 -0
  3233. package/dist/node/operations/coach/governance-suggest-constraint.command.d.js +0 -0
  3234. package/dist/node/operations/coach/governance-suggest-constraint.command.js +1 -0
  3235. package/dist/node/operations/coach/review-summarize.command.d.js +0 -0
  3236. package/dist/node/operations/coach/review-summarize.command.js +1 -0
  3237. package/dist/node/operations/coach/shared-schemas.d.js +0 -0
  3238. package/dist/node/operations/coach/shared-schemas.js +1 -0
  3239. package/dist/node/operations/coach/workflow-suggest-step.command.d.js +0 -0
  3240. package/dist/node/operations/coach/workflow-suggest-step.command.js +1 -0
  3241. package/dist/node/operations/economic-evidence.d.js +0 -0
  3242. package/dist/node/operations/economic-evidence.js +1 -0
  3243. package/dist/node/operations/fleet/health-snapshot.query.d.js +0 -0
  3244. package/dist/node/operations/fleet/health-snapshot.query.js +1 -0
  3245. package/dist/node/operations/fleet/metrics-summary.query.d.js +0 -0
  3246. package/dist/node/operations/fleet/metrics-summary.query.js +1 -0
  3247. package/dist/node/operations/fleet/roi-snapshot.query.d.js +0 -0
  3248. package/dist/node/operations/fleet/roi-snapshot.query.js +1 -0
  3249. package/dist/node/operations/fleet/shared-schemas.d.js +0 -0
  3250. package/dist/node/operations/fleet/shared-schemas.js +1 -0
  3251. package/dist/node/operations/governance/constraint.add.command.d.js +1 -0
  3252. package/dist/node/operations/governance/constraint.add.command.js +1 -0
  3253. package/dist/node/operations/governance/constraint.remove.command.d.js +0 -0
  3254. package/dist/node/operations/governance/constraint.remove.command.js +1 -0
  3255. package/dist/node/operations/governance/notification.dispatch.command.d.js +0 -0
  3256. package/dist/node/operations/governance/notification.dispatch.command.js +1 -0
  3257. package/dist/node/operations/governance/policy.get.query.d.js +0 -0
  3258. package/dist/node/operations/governance/policy.get.query.js +1 -0
  3259. package/dist/node/operations/governance/policy.health.query.d.js +0 -0
  3260. package/dist/node/operations/governance/policy.health.query.js +1 -0
  3261. package/dist/node/operations/governance/policy.list.query.d.js +1 -0
  3262. package/dist/node/operations/governance/policy.list.query.js +1 -0
  3263. package/dist/node/operations/governance/policy.simulate.query.d.js +0 -0
  3264. package/dist/node/operations/governance/policy.simulate.query.js +1 -0
  3265. package/dist/node/operations/governance/policy.update.command.d.js +1 -0
  3266. package/dist/node/operations/governance/policy.update.command.js +1 -0
  3267. package/dist/node/operations/governance/shared-schemas.d.js +0 -0
  3268. package/dist/node/operations/governance/shared-schemas.js +1 -0
  3269. package/dist/node/operations/index.d.js +1 -0
  3270. package/dist/node/operations/index.js +1 -0
  3271. package/dist/node/operations/integrations/audit.list_for_integration.command.d.js +1 -0
  3272. package/dist/node/operations/integrations/audit.list_for_integration.command.js +1 -0
  3273. package/dist/node/operations/integrations/config.get.command.d.js +0 -0
  3274. package/dist/node/operations/integrations/config.get.command.js +1 -0
  3275. package/dist/node/operations/integrations/config.update.command.d.js +0 -0
  3276. package/dist/node/operations/integrations/config.update.command.js +1 -0
  3277. package/dist/node/operations/integrations/connections.list.command.d.js +1 -0
  3278. package/dist/node/operations/integrations/connections.list.command.js +1 -0
  3279. package/dist/node/operations/integrations/credentials.list.command.d.js +1 -0
  3280. package/dist/node/operations/integrations/credentials.list.command.js +1 -0
  3281. package/dist/node/operations/integrations/credentials.request_rotation.command.d.js +0 -0
  3282. package/dist/node/operations/integrations/credentials.request_rotation.command.js +1 -0
  3283. package/dist/node/operations/integrations/credentials.revoke.command.d.js +0 -0
  3284. package/dist/node/operations/integrations/credentials.revoke.command.js +1 -0
  3285. package/dist/node/operations/integrations/credentials.rotate.command.d.js +0 -0
  3286. package/dist/node/operations/integrations/credentials.rotate.command.js +1 -0
  3287. package/dist/node/operations/integrations/index.js +1 -0
  3288. package/dist/node/operations/integrations/integrations.connect.command.d.js +0 -0
  3289. package/dist/node/operations/integrations/integrations.connect.command.js +1 -0
  3290. package/dist/node/operations/integrations/integrations.disconnect.command.d.js +0 -0
  3291. package/dist/node/operations/integrations/integrations.disconnect.command.js +1 -0
  3292. package/dist/node/operations/integrations/integrations.get.command.d.js +0 -0
  3293. package/dist/node/operations/integrations/integrations.get.command.js +1 -0
  3294. package/dist/node/operations/integrations/integrations.list.command.d.js +1 -0
  3295. package/dist/node/operations/integrations/integrations.list.command.js +1 -0
  3296. package/dist/node/operations/integrations/registry.d.js +0 -0
  3297. package/dist/node/operations/integrations/registry.js +1 -0
  3298. package/dist/node/operations/integrations/secrets.link.command.d.js +0 -0
  3299. package/dist/node/operations/integrations/secrets.link.command.js +1 -0
  3300. package/dist/node/operations/integrations/secrets.list.command.d.js +1 -0
  3301. package/dist/node/operations/integrations/secrets.list.command.js +1 -0
  3302. package/dist/node/operations/integrations/secrets.reveal_once_audit_only.command.d.js +0 -0
  3303. package/dist/node/operations/integrations/secrets.reveal_once_audit_only.command.js +1 -0
  3304. package/dist/node/operations/integrations/secrets.unlink.command.d.js +0 -0
  3305. package/dist/node/operations/integrations/secrets.unlink.command.js +1 -0
  3306. package/dist/node/operations/integrations/shared-schemas.d.js +0 -0
  3307. package/dist/node/operations/integrations/shared-schemas.js +1 -0
  3308. package/dist/node/operations/integrations/syncs.list.command.d.js +1 -0
  3309. package/dist/node/operations/integrations/syncs.list.command.js +1 -0
  3310. package/dist/node/operations/integrations/syncs.pause.command.d.js +0 -0
  3311. package/dist/node/operations/integrations/syncs.pause.command.js +1 -0
  3312. package/dist/node/operations/integrations/syncs.resume.command.d.js +0 -0
  3313. package/dist/node/operations/integrations/syncs.resume.command.js +1 -0
  3314. package/dist/node/operations/integrations/syncs.run_now.command.d.js +0 -0
  3315. package/dist/node/operations/integrations/syncs.run_now.command.js +1 -0
  3316. package/dist/node/operations/integrations/syncs.update_schedule.command.d.js +0 -0
  3317. package/dist/node/operations/integrations/syncs.update_schedule.command.js +1 -0
  3318. package/dist/node/operations/marketing.d.js +1 -0
  3319. package/dist/node/operations/marketing.handlers.d.js +0 -0
  3320. package/dist/node/operations/marketing.handlers.js +1 -0
  3321. package/dist/node/operations/marketing.js +14 -0
  3322. package/dist/node/operations/operation.d.js +0 -0
  3323. package/dist/node/operations/operation.js +1 -0
  3324. package/dist/node/operations/reference-detail.js +1 -0
  3325. package/dist/node/operations/reference-resolve.js +3 -0
  3326. package/dist/node/operations/registry.agent.d.js +0 -0
  3327. package/dist/node/operations/registry.agent.js +1 -0
  3328. package/dist/node/operations/registry.audit.d.js +0 -0
  3329. package/dist/node/operations/registry.audit.js +1 -0
  3330. package/dist/node/operations/registry.coach.d.js +0 -0
  3331. package/dist/node/operations/registry.coach.js +1 -0
  3332. package/dist/node/operations/registry.d.js +1 -0
  3333. package/dist/node/operations/registry.domains.d.js +0 -0
  3334. package/dist/node/operations/registry.domains.js +1 -0
  3335. package/dist/node/operations/registry.fleet.d.js +0 -0
  3336. package/dist/node/operations/registry.fleet.js +1 -0
  3337. package/dist/node/operations/registry.governance.d.js +0 -0
  3338. package/dist/node/operations/registry.governance.js +1 -0
  3339. package/dist/node/operations/registry.js +1 -0
  3340. package/dist/node/operations/registry.review.d.js +0 -0
  3341. package/dist/node/operations/registry.review.js +1 -0
  3342. package/dist/node/operations/registry.workflow.d.js +0 -0
  3343. package/dist/node/operations/registry.workflow.js +1 -0
  3344. package/dist/node/operations/report/getContractVerificationStatus.js +1 -0
  3345. package/dist/node/operations/report/index.js +1 -0
  3346. package/dist/node/operations/review/commands/index.js +1 -0
  3347. package/dist/node/operations/review/commands/reviewApprove.command.d.js +0 -0
  3348. package/dist/node/operations/review/commands/reviewApprove.command.js +1 -0
  3349. package/dist/node/operations/review/commands/reviewAssign.command.d.js +0 -0
  3350. package/dist/node/operations/review/commands/reviewAssign.command.js +12 -0
  3351. package/dist/node/operations/review/commands/reviewComment.command.d.js +0 -0
  3352. package/dist/node/operations/review/commands/reviewComment.command.js +1 -0
  3353. package/dist/node/operations/review/commands/reviewEscalate.command.d.js +0 -0
  3354. package/dist/node/operations/review/commands/reviewEscalate.command.js +1 -0
  3355. package/dist/node/operations/review/commands/reviewReject.command.d.js +0 -0
  3356. package/dist/node/operations/review/commands/reviewReject.command.js +1 -0
  3357. package/dist/node/operations/review/commands/reviewRequestChanges.command.d.js +0 -0
  3358. package/dist/node/operations/review/commands/reviewRequestChanges.command.js +1 -0
  3359. package/dist/node/operations/review/constants.d.js +0 -0
  3360. package/dist/node/operations/review/constants.js +1 -0
  3361. package/dist/node/operations/review/index.js +1 -0
  3362. package/dist/node/operations/review/queries/index.js +1 -0
  3363. package/dist/node/operations/review/queries/reviewGet.query.d.js +0 -0
  3364. package/dist/node/operations/review/queries/reviewGet.query.js +9 -0
  3365. package/dist/node/operations/review/queries/reviewList.query.d.js +0 -0
  3366. package/dist/node/operations/review/queries/reviewList.query.js +1 -0
  3367. package/dist/node/operations/review/queries/reviewQueueHealth.query.d.js +0 -0
  3368. package/dist/node/operations/review/queries/reviewQueueHealth.query.js +1 -0
  3369. package/dist/node/operations/review/shared-schemas.d.js +0 -0
  3370. package/dist/node/operations/review/shared-schemas.js +1 -0
  3371. package/dist/node/operations/workflow/commands/workflowActivate.command.d.js +0 -0
  3372. package/dist/node/operations/workflow/commands/workflowActivate.command.js +1 -0
  3373. package/dist/node/operations/workflow/commands/workflowCreate.command.d.js +0 -0
  3374. package/dist/node/operations/workflow/commands/workflowCreate.command.js +1 -0
  3375. package/dist/node/operations/workflow/commands/workflowDeactivate.command.d.js +0 -0
  3376. package/dist/node/operations/workflow/commands/workflowDeactivate.command.js +1 -0
  3377. package/dist/node/operations/workflow/commands/workflowRunCancel.command.d.js +0 -0
  3378. package/dist/node/operations/workflow/commands/workflowRunCancel.command.js +1 -0
  3379. package/dist/node/operations/workflow/commands/workflowRunDispatch.command.d.js +0 -0
  3380. package/dist/node/operations/workflow/commands/workflowRunDispatch.command.js +1 -0
  3381. package/dist/node/operations/workflow/commands/workflowRunPause.command.d.js +0 -0
  3382. package/dist/node/operations/workflow/commands/workflowRunPause.command.js +1 -0
  3383. package/dist/node/operations/workflow/commands/workflowRunResume.command.d.js +0 -0
  3384. package/dist/node/operations/workflow/commands/workflowRunResume.command.js +1 -0
  3385. package/dist/node/operations/workflow/commands/workflowRunRetry.command.d.js +0 -0
  3386. package/dist/node/operations/workflow/commands/workflowRunRetry.command.js +1 -0
  3387. package/dist/node/operations/workflow/commands/workflowStepAdvance.command.d.js +0 -0
  3388. package/dist/node/operations/workflow/commands/workflowStepAdvance.command.js +1 -0
  3389. package/dist/node/operations/workflow/commands/workflowStepSkip.command.d.js +0 -0
  3390. package/dist/node/operations/workflow/commands/workflowStepSkip.command.js +1 -0
  3391. package/dist/node/operations/workflow/commands/workflowUpdate.command.d.js +0 -0
  3392. package/dist/node/operations/workflow/commands/workflowUpdate.command.js +1 -0
  3393. package/dist/node/operations/workflow/constants.d.js +0 -0
  3394. package/dist/node/operations/workflow/constants.js +1 -0
  3395. package/dist/node/operations/workflow/index.d.js +1 -0
  3396. package/dist/node/operations/workflow/index.js +1 -0
  3397. package/dist/node/operations/workflow/queries/workflowGet.query.d.js +0 -0
  3398. package/dist/node/operations/workflow/queries/workflowGet.query.js +1 -0
  3399. package/dist/node/operations/workflow/queries/workflowList.query.d.js +0 -0
  3400. package/dist/node/operations/workflow/queries/workflowList.query.js +1 -0
  3401. package/dist/node/operations/workflow/queries/workflowRunnerHealth.query.d.js +0 -0
  3402. package/dist/node/operations/workflow/queries/workflowRunnerHealth.query.js +1 -0
  3403. package/dist/node/osint/capability-matrix-validation.js +2 -0
  3404. package/dist/node/osint/capability-matrix.js +3 -0
  3405. package/dist/node/osint/constants.js +1 -0
  3406. package/dist/node/osint/entities.js +0 -0
  3407. package/dist/node/osint/events.js +1 -0
  3408. package/dist/node/osint/exports.js +0 -0
  3409. package/dist/node/osint/fingerprint.js +1 -0
  3410. package/dist/node/osint/index.js +1 -0
  3411. package/dist/node/osint/job-reconciliation-contracts.js +1 -0
  3412. package/dist/node/osint/job-sources.js +18 -0
  3413. package/dist/node/osint/lifecycle-contracts.js +8 -0
  3414. package/dist/node/osint/lifecycle-worker-contracts.js +1 -0
  3415. package/dist/node/osint/operational-contracts.js +10 -0
  3416. package/dist/node/osint/operational-operations.js +1 -0
  3417. package/dist/node/osint/operational-schema-fields.js +1 -0
  3418. package/dist/node/osint/operations-continuation.js +1 -0
  3419. package/dist/node/osint/operations.js +1 -0
  3420. package/dist/node/osint/programs.js +0 -0
  3421. package/dist/node/osint/registry.js +1 -0
  3422. package/dist/node/osint/rights-contracts.js +8 -0
  3423. package/dist/node/osint/rights-operations.js +1 -0
  3424. package/dist/node/osint/source-state-operations.js +1 -0
  3425. package/dist/node/osint/transport.js +1 -0
  3426. package/dist/node/osint/types.js +0 -0
  3427. package/dist/node/outcome-claims/factory.js +1 -0
  3428. package/dist/node/outcome-claims/index.js +1 -0
  3429. package/dist/node/outcome-claims/types.js +0 -0
  3430. package/dist/node/outcome-claims/validation.js +1 -0
  3431. package/dist/node/ownership.d.js +0 -0
  3432. package/dist/node/ownership.js +1 -0
  3433. package/dist/node/policy/context.js +1 -0
  3434. package/dist/node/policy/engine.js +1 -0
  3435. package/dist/node/policy/guards.js +1 -0
  3436. package/dist/node/policy/index.js +1 -0
  3437. package/dist/node/policy/opa-adapter.js +1 -0
  3438. package/dist/node/policy/registry.d.js +0 -0
  3439. package/dist/node/policy/registry.js +1 -0
  3440. package/dist/node/policy/requirements.d.js +0 -0
  3441. package/dist/node/policy/requirements.js +1 -0
  3442. package/dist/node/policy/spec.d.js +0 -0
  3443. package/dist/node/policy/spec.js +150 -0
  3444. package/dist/node/policy/validation.js +1 -0
  3445. package/dist/node/presentations/index.d.js +1 -0
  3446. package/dist/node/presentations/index.js +1 -0
  3447. package/dist/node/presentations/presentations.d.js +0 -0
  3448. package/dist/node/presentations/presentations.js +83 -0
  3449. package/dist/node/presentations/registry.d.js +0 -0
  3450. package/dist/node/presentations/registry.js +1 -0
  3451. package/dist/node/presentations/shim-blocknotejs.d.js +0 -0
  3452. package/dist/node/presentations/shim-blocknotejs.js +0 -0
  3453. package/dist/node/product-intent/contract-patch-intent.js +1 -0
  3454. package/dist/node/product-intent/contract-spec-patch.js +1 -0
  3455. package/dist/node/product-intent/evidence.js +1 -0
  3456. package/dist/node/product-intent/findings.js +1 -0
  3457. package/dist/node/product-intent/impact-report.js +1 -0
  3458. package/dist/node/product-intent/index.js +1 -0
  3459. package/dist/node/product-intent/insights.js +1 -0
  3460. package/dist/node/product-intent/opportunity-brief.js +1 -0
  3461. package/dist/node/product-intent/problems.js +1 -0
  3462. package/dist/node/product-intent/registry.js +1 -0
  3463. package/dist/node/product-intent/runtime.js +1 -0
  3464. package/dist/node/product-intent/spec.js +1 -0
  3465. package/dist/node/product-intent/task-pack.js +1 -0
  3466. package/dist/node/product-intent/tickets.js +1 -0
  3467. package/dist/node/product-intent/types.js +1 -0
  3468. package/dist/node/product-intent/ui-wireframe.js +1 -0
  3469. package/dist/node/prompt.js +1 -0
  3470. package/dist/node/promptRegistry.js +1 -0
  3471. package/dist/node/provider-ranking/capabilities/index.js +1 -0
  3472. package/dist/node/provider-ranking/capabilities/providerRanking.capability.js +1 -0
  3473. package/dist/node/provider-ranking/commands/benchmarkIngest.command.js +4 -0
  3474. package/dist/node/provider-ranking/commands/benchmarkRunCustom.command.js +4 -0
  3475. package/dist/node/provider-ranking/commands/index.js +1 -0
  3476. package/dist/node/provider-ranking/commands/rankingRefresh.command.js +4 -0
  3477. package/dist/node/provider-ranking/constants.js +1 -0
  3478. package/dist/node/provider-ranking/contracts.js +1 -0
  3479. package/dist/node/provider-ranking/events/benchmarkCustomCompleted.event.js +4 -0
  3480. package/dist/node/provider-ranking/events/benchmarkIngested.event.js +4 -0
  3481. package/dist/node/provider-ranking/events/index.js +1 -0
  3482. package/dist/node/provider-ranking/events/rankingUpdated.event.js +4 -0
  3483. package/dist/node/provider-ranking/forms/benchmarkIngest.form.js +4 -0
  3484. package/dist/node/provider-ranking/forms/benchmarkRunCustom.form.js +4 -0
  3485. package/dist/node/provider-ranking/forms/index.js +1 -0
  3486. package/dist/node/provider-ranking/index.js +1 -0
  3487. package/dist/node/provider-ranking/presentations/index.js +1 -0
  3488. package/dist/node/provider-ranking/presentations/modelComparison.presentation.js +4 -0
  3489. package/dist/node/provider-ranking/provider-ranking.feature.js +4 -0
  3490. package/dist/node/provider-ranking/queries/benchmarkResultsList.query.js +4 -0
  3491. package/dist/node/provider-ranking/queries/index.js +1 -0
  3492. package/dist/node/provider-ranking/queries/modelProfileGet.query.js +4 -0
  3493. package/dist/node/provider-ranking/queries/providerRankingGet.query.js +4 -0
  3494. package/dist/node/provider-ranking/views/benchmarkResults.dataView.js +4 -0
  3495. package/dist/node/provider-ranking/views/index.js +1 -0
  3496. package/dist/node/provider-ranking/views/providerRankings.dataView.js +4 -0
  3497. package/dist/node/pwa/capabilities/index.js +1 -0
  3498. package/dist/node/pwa/capabilities/pwaUpdateManagement.capability.js +1 -0
  3499. package/dist/node/pwa/constants.js +1 -0
  3500. package/dist/node/pwa/contracts.js +1 -0
  3501. package/dist/node/pwa/events/index.js +1 -0
  3502. package/dist/node/pwa/events/pwaUpdateApplied.event.js +1 -0
  3503. package/dist/node/pwa/events/pwaUpdateDeferred.event.js +1 -0
  3504. package/dist/node/pwa/events/pwaUpdatePrompted.event.js +1 -0
  3505. package/dist/node/pwa/index.js +1 -0
  3506. package/dist/node/pwa/pwa.feature.js +1 -0
  3507. package/dist/node/pwa/queries/index.js +1 -0
  3508. package/dist/node/pwa/queries/pwaUpdateCheck.query.js +1 -0
  3509. package/dist/node/pwa/registry.js +1 -0
  3510. package/dist/node/pwa/types.js +6 -0
  3511. package/dist/node/quality/environment.js +1 -0
  3512. package/dist/node/quality/index.js +1 -0
  3513. package/dist/node/quality/plan.js +1 -0
  3514. package/dist/node/quality/primitives.js +1 -0
  3515. package/dist/node/quality/profile.js +1 -0
  3516. package/dist/node/quality/receipt.js +1 -0
  3517. package/dist/node/query/cache-status.d.js +0 -0
  3518. package/dist/node/query/cache-status.js +1 -0
  3519. package/dist/node/query/conflict-policy.d.js +0 -0
  3520. package/dist/node/query/conflict-policy.js +1 -0
  3521. package/dist/node/query/consistency.d.js +0 -0
  3522. package/dist/node/query/consistency.js +1 -0
  3523. package/dist/node/query/envelope.d.js +0 -0
  3524. package/dist/node/query/envelope.js +0 -0
  3525. package/dist/node/query/index.d.js +1 -0
  3526. package/dist/node/query/index.js +1 -0
  3527. package/dist/node/query/invalidation.d.js +0 -0
  3528. package/dist/node/query/invalidation.js +1 -0
  3529. package/dist/node/query/key.d.js +0 -0
  3530. package/dist/node/query/key.js +1 -0
  3531. package/dist/node/query/normalize.d.js +0 -0
  3532. package/dist/node/query/normalize.js +1 -0
  3533. package/dist/node/query/query-state.d.js +0 -0
  3534. package/dist/node/query/query-state.js +1 -0
  3535. package/dist/node/query/version-token.d.js +0 -0
  3536. package/dist/node/query/version-token.js +1 -0
  3537. package/dist/node/regenerator/adapters.js +0 -0
  3538. package/dist/node/regenerator/executor.js +1 -0
  3539. package/dist/node/regenerator/index.js +1 -0
  3540. package/dist/node/regenerator/service.js +1 -0
  3541. package/dist/node/regenerator/sinks.js +1 -0
  3542. package/dist/node/regenerator/types.js +0 -0
  3543. package/dist/node/regenerator/utils.js +1 -0
  3544. package/dist/node/registry-utils.d.js +0 -0
  3545. package/dist/node/registry-utils.js +1 -0
  3546. package/dist/node/registry.d.js +0 -0
  3547. package/dist/node/registry.js +1 -0
  3548. package/dist/node/release/index.js +1 -0
  3549. package/dist/node/resources.d.js +0 -0
  3550. package/dist/node/resources.js +1 -0
  3551. package/dist/node/results/builders.d.js +0 -0
  3552. package/dist/node/results/builders.js +1 -0
  3553. package/dist/node/results/error.d.js +0 -0
  3554. package/dist/node/results/error.js +1 -0
  3555. package/dist/node/results/factories.d.js +0 -0
  3556. package/dist/node/results/factories.js +1 -0
  3557. package/dist/node/results/guards.d.js +0 -0
  3558. package/dist/node/results/guards.js +1 -0
  3559. package/dist/node/results/index.d.js +1 -0
  3560. package/dist/node/results/index.js +1 -0
  3561. package/dist/node/results/normalize.d.js +0 -0
  3562. package/dist/node/results/normalize.js +1 -0
  3563. package/dist/node/results/problem.d.js +0 -0
  3564. package/dist/node/results/problem.js +1 -0
  3565. package/dist/node/results/result-specs.d.js +0 -0
  3566. package/dist/node/results/result-specs.js +0 -0
  3567. package/dist/node/results/standard-specs.d.js +0 -0
  3568. package/dist/node/results/standard-specs.js +1 -0
  3569. package/dist/node/results/status.d.js +0 -0
  3570. package/dist/node/results/status.js +1 -0
  3571. package/dist/node/results/types.d.js +0 -0
  3572. package/dist/node/results/types.js +0 -0
  3573. package/dist/node/results/value-utils.d.js +0 -0
  3574. package/dist/node/results/value-utils.js +1 -0
  3575. package/dist/node/rich-content/builders.js +3 -0
  3576. package/dist/node/rich-content/index.js +1 -0
  3577. package/dist/node/rich-content/preferences.js +0 -0
  3578. package/dist/node/rich-content/redaction.js +1 -0
  3579. package/dist/node/rich-content/types.js +0 -0
  3580. package/dist/node/rich-reference/__fixtures__/cross-adapter-fixture.js +1 -0
  3581. package/dist/node/rich-reference/agent-export.d.js +0 -0
  3582. package/dist/node/rich-reference/agent-export.js +1 -0
  3583. package/dist/node/rich-reference/canonical-serializer.d.js +0 -0
  3584. package/dist/node/rich-reference/canonical-serializer.js +1 -0
  3585. package/dist/node/rich-reference/contracts.js +1 -0
  3586. package/dist/node/rich-reference/define-kind.d.js +0 -0
  3587. package/dist/node/rich-reference/define-kind.js +1 -0
  3588. package/dist/node/rich-reference/denial-token-shape.d.js +0 -0
  3589. package/dist/node/rich-reference/denial-token-shape.js +1 -0
  3590. package/dist/node/rich-reference/denial-token.d.js +0 -0
  3591. package/dist/node/rich-reference/denial-token.js +1 -0
  3592. package/dist/node/rich-reference/detector.d.js +0 -0
  3593. package/dist/node/rich-reference/detector.js +1 -0
  3594. package/dist/node/rich-reference/handler.d.js +0 -0
  3595. package/dist/node/rich-reference/handler.js +0 -0
  3596. package/dist/node/rich-reference/index.d.js +1 -0
  3597. package/dist/node/rich-reference/index.js +19 -0
  3598. package/dist/node/rich-reference/kinds/code-symbol.d.js +1 -0
  3599. package/dist/node/rich-reference/kinds/code-symbol.js +1 -0
  3600. package/dist/node/rich-reference/kinds/database-record.d.js +1 -0
  3601. package/dist/node/rich-reference/kinds/database-record.js +1 -0
  3602. package/dist/node/rich-reference/kinds/entity.d.js +1 -0
  3603. package/dist/node/rich-reference/kinds/entity.js +27 -0
  3604. package/dist/node/rich-reference/kinds/file.d.js +1 -0
  3605. package/dist/node/rich-reference/kinds/file.js +1 -0
  3606. package/dist/node/rich-reference/kinds/index.d.js +1 -0
  3607. package/dist/node/rich-reference/kinds/index.js +1 -0
  3608. package/dist/node/rich-reference/kinds/link.d.js +1 -0
  3609. package/dist/node/rich-reference/kinds/link.js +1 -0
  3610. package/dist/node/rich-reference/kinds/media.d.js +1 -0
  3611. package/dist/node/rich-reference/kinds/media.js +1 -0
  3612. package/dist/node/rich-reference/kinds/object.d.js +1 -0
  3613. package/dist/node/rich-reference/kinds/object.js +1 -0
  3614. package/dist/node/rich-reference/markdown-envelope.d.js +0 -0
  3615. package/dist/node/rich-reference/markdown-envelope.js +1 -0
  3616. package/dist/node/rich-reference/ports/audit-sink.d.js +0 -0
  3617. package/dist/node/rich-reference/ports/audit-sink.js +0 -0
  3618. package/dist/node/rich-reference/ports/coarse-preferences-provider.d.js +0 -0
  3619. package/dist/node/rich-reference/ports/coarse-preferences-provider.js +0 -0
  3620. package/dist/node/rich-reference/ports/durable-audit-sink.d.js +0 -0
  3621. package/dist/node/rich-reference/ports/durable-audit-sink.js +0 -0
  3622. package/dist/node/rich-reference/ports/index.d.js +0 -0
  3623. package/dist/node/rich-reference/ports/index.js +0 -0
  3624. package/dist/node/rich-reference/ports/kind-policy-provider.d.js +0 -0
  3625. package/dist/node/rich-reference/ports/kind-policy-provider.js +0 -0
  3626. package/dist/node/rich-reference/ports/subject-provider.d.js +0 -0
  3627. package/dist/node/rich-reference/ports/subject-provider.js +0 -0
  3628. package/dist/node/rich-reference/redaction.d.js +0 -0
  3629. package/dist/node/rich-reference/redaction.js +1 -0
  3630. package/dist/node/rich-reference/registry.d.js +0 -0
  3631. package/dist/node/rich-reference/registry.js +1 -0
  3632. package/dist/node/rich-reference/runtime/dev-invariants.js +1 -0
  3633. package/dist/node/rich-reference/runtime/dispatch.js +1 -0
  3634. package/dist/node/rich-reference/runtime/index.js +1 -0
  3635. package/dist/node/rich-reference/runtime/redaction-enforcer.js +1 -0
  3636. package/dist/node/rich-reference/runtime/runtime.js +1 -0
  3637. package/dist/node/rich-reference/types.d.js +0 -0
  3638. package/dist/node/rich-reference/types.js +1 -0
  3639. package/dist/node/runtime-adapters.d.js +0 -0
  3640. package/dist/node/runtime-adapters.js +1 -0
  3641. package/dist/node/schema-to-markdown.js +10 -0
  3642. package/dist/node/self-improving-system/constants.js +1 -0
  3643. package/dist/node/self-improving-system/events.js +1 -0
  3644. package/dist/node/self-improving-system/index.js +1 -0
  3645. package/dist/node/self-improving-system/operation-definitions.js +1 -0
  3646. package/dist/node/self-improving-system/operations.js +1 -0
  3647. package/dist/node/self-improving-system/registry.js +1 -0
  3648. package/dist/node/self-improving-system/transport.js +1 -0
  3649. package/dist/node/self-improving-system/types.js +1 -0
  3650. package/dist/node/self-improving-system/validation.js +1 -0
  3651. package/dist/node/serialization/index.js +1 -0
  3652. package/dist/node/serialization/serializers.js +1 -0
  3653. package/dist/node/serialization/types.js +0 -0
  3654. package/dist/node/shared/attach-context.d.js +0 -0
  3655. package/dist/node/shared/attach-context.js +1 -0
  3656. package/dist/node/shared/audit.d.js +0 -0
  3657. package/dist/node/shared/audit.js +1 -0
  3658. package/dist/node/shared/idempotency-shape.d.js +0 -0
  3659. package/dist/node/shared/idempotency-shape.js +1 -0
  3660. package/dist/node/shared/idempotency.js +1 -0
  3661. package/dist/node/shared/index.d.js +1 -0
  3662. package/dist/node/shared/index.js +1 -0
  3663. package/dist/node/shared/window.d.js +0 -0
  3664. package/dist/node/shared/window.js +1 -0
  3665. package/dist/node/shared-entities/index.js +1 -0
  3666. package/dist/node/shared-entities/person.js +12 -0
  3667. package/dist/node/shared-entities/project.js +4 -0
  3668. package/dist/node/shared-entities/resource.js +4 -0
  3669. package/dist/node/shared-entities/task-validators.js +1 -0
  3670. package/dist/node/shared-entities/task.d.js +0 -0
  3671. package/dist/node/shared-entities/task.js +1 -0
  3672. package/dist/node/shared-entities/team.js +12 -0
  3673. package/dist/node/sop/generation-sources.js +5 -0
  3674. package/dist/node/sop/index.js +1 -0
  3675. package/dist/node/sop/operations.js +1 -0
  3676. package/dist/node/sop/sop.feature.js +3 -0
  3677. package/dist/node/sop/types.js +0 -0
  3678. package/dist/node/sop/validation.js +1 -0
  3679. package/dist/node/structured-data/derive.d.js +0 -0
  3680. package/dist/node/structured-data/derive.js +1 -0
  3681. package/dist/node/structured-data/index.d.js +1 -0
  3682. package/dist/node/structured-data/index.js +1 -0
  3683. package/dist/node/structured-data/kinds.d.js +0 -0
  3684. package/dist/node/structured-data/kinds.js +1 -0
  3685. package/dist/node/structured-data/schema-guards.js +0 -0
  3686. package/dist/node/structured-data/validate.d.js +0 -0
  3687. package/dist/node/structured-data/validate.js +1 -0
  3688. package/dist/node/telemetry/anomaly.d.js +0 -0
  3689. package/dist/node/telemetry/anomaly.js +1 -0
  3690. package/dist/node/telemetry/delivery-v2.d.js +0 -0
  3691. package/dist/node/telemetry/delivery-v2.js +1 -0
  3692. package/dist/node/telemetry/index.d.js +1 -0
  3693. package/dist/node/telemetry/index.js +1 -0
  3694. package/dist/node/telemetry/spec.d.js +0 -0
  3695. package/dist/node/telemetry/spec.js +1 -0
  3696. package/dist/node/telemetry/tracker.d.js +0 -0
  3697. package/dist/node/telemetry/tracker.js +1 -0
  3698. package/dist/node/telemetry/v2-primitives.d.js +0 -0
  3699. package/dist/node/telemetry/v2-primitives.js +1 -0
  3700. package/dist/node/telemetry/v2-validation.d.js +0 -0
  3701. package/dist/node/telemetry/v2-validation.js +1 -0
  3702. package/dist/node/telemetry/v2.d.js +1 -0
  3703. package/dist/node/telemetry/v2.js +1 -0
  3704. package/dist/node/tests/index.js +1 -0
  3705. package/dist/node/tests/runner.js +1 -0
  3706. package/dist/node/tests/spec.d.js +0 -0
  3707. package/dist/node/tests/spec.js +1 -0
  3708. package/dist/node/themes.d.js +1 -0
  3709. package/dist/node/themes.js +1 -0
  3710. package/dist/node/themes.platform-validation.d.js +0 -0
  3711. package/dist/node/themes.platform-validation.js +1 -0
  3712. package/dist/node/themes.validation.d.js +0 -0
  3713. package/dist/node/themes.validation.js +1 -0
  3714. package/dist/node/translations/catalog.d.js +0 -0
  3715. package/dist/node/translations/catalog.js +0 -0
  3716. package/dist/node/translations/diagnostics.d.js +0 -0
  3717. package/dist/node/translations/diagnostics.js +1 -0
  3718. package/dist/node/translations/i18n-factory-snapshot.d.js +0 -0
  3719. package/dist/node/translations/i18n-factory-snapshot.js +20 -0
  3720. package/dist/node/translations/i18n-factory.d.js +0 -0
  3721. package/dist/node/translations/i18n-factory.js +1 -0
  3722. package/dist/node/translations/index.d.js +1 -0
  3723. package/dist/node/translations/index.js +1 -0
  3724. package/dist/node/translations/locale.d.js +0 -0
  3725. package/dist/node/translations/locale.js +1 -0
  3726. package/dist/node/translations/registry.d.js +0 -0
  3727. package/dist/node/translations/registry.js +1 -0
  3728. package/dist/node/translations/spec.d.js +0 -0
  3729. package/dist/node/translations/spec.js +1 -0
  3730. package/dist/node/translations/tenant.d.js +0 -0
  3731. package/dist/node/translations/tenant.js +0 -0
  3732. package/dist/node/translations/validation.d.js +0 -0
  3733. package/dist/node/translations/validation.js +1 -0
  3734. package/dist/node/types.d.js +0 -0
  3735. package/dist/node/types.js +1 -0
  3736. package/dist/node/utils/safe-json.js +1 -0
  3737. package/dist/node/versioning/index.d.js +1 -0
  3738. package/dist/node/versioning/index.js +1 -0
  3739. package/dist/node/versioning/refs.d.js +0 -0
  3740. package/dist/node/versioning/refs.js +1 -0
  3741. package/dist/node/versioning/release-types.d.js +0 -0
  3742. package/dist/node/versioning/release-types.js +0 -0
  3743. package/dist/node/versioning/release-utils.d.js +0 -0
  3744. package/dist/node/versioning/release-utils.js +1 -0
  3745. package/dist/node/versioning/schema.d.js +0 -0
  3746. package/dist/node/versioning/schema.js +1 -0
  3747. package/dist/node/versioning/types.d.js +0 -0
  3748. package/dist/node/versioning/types.js +1 -0
  3749. package/dist/node/versioning/utils.d.js +0 -0
  3750. package/dist/node/versioning/utils.js +1 -0
  3751. package/dist/node/visual-scenarios/index.js +1 -0
  3752. package/dist/node/visual-scenarios/platform.js +1 -0
  3753. package/dist/node/visual-scenarios/registry.d.js +0 -0
  3754. package/dist/node/visual-scenarios/registry.js +1 -0
  3755. package/dist/node/visual-scenarios/spec.d.js +0 -0
  3756. package/dist/node/visual-scenarios/spec.js +1 -0
  3757. package/dist/node/visual-scenarios/validation-authoring.js +1 -0
  3758. package/dist/node/visual-scenarios/validation.js +1 -0
  3759. package/dist/node/visualizations/index.js +1 -0
  3760. package/dist/node/visualizations/registry.d.js +0 -0
  3761. package/dist/node/visualizations/registry.js +1 -0
  3762. package/dist/node/visualizations/spec.d.js +0 -0
  3763. package/dist/node/visualizations/spec.js +1 -0
  3764. package/dist/node/visualizations/types.d.js +0 -0
  3765. package/dist/node/visualizations/types.js +1 -0
  3766. package/dist/node/workflow/adapters/db-adapter.js +1 -0
  3767. package/dist/node/workflow/adapters/file-adapter.js +1 -0
  3768. package/dist/node/workflow/adapters/index.js +1 -0
  3769. package/dist/node/workflow/adapters/memory-store.js +1 -0
  3770. package/dist/node/workflow/context.js +1 -0
  3771. package/dist/node/workflow/dag-utils.js +1 -0
  3772. package/dist/node/workflow/expression.js +1 -0
  3773. package/dist/node/workflow/index.js +1 -0
  3774. package/dist/node/workflow/runner.js +1 -0
  3775. package/dist/node/workflow/sla-monitor.js +1 -0
  3776. package/dist/node/workflow/spec.d.js +0 -0
  3777. package/dist/node/workflow/spec.js +1 -0
  3778. package/dist/node/workflow/state.js +0 -0
  3779. package/dist/node/workflow/validation-workflow-devkit.js +1 -0
  3780. package/dist/node/workflow/validation.js +1 -0
  3781. package/dist/node/workflow/workflow-devkit.d.js +0 -0
  3782. package/dist/node/workflow/workflow-devkit.js +0 -0
  3783. package/dist/node/workflow/workflow-sdk.js +1 -0
  3784. package/dist/node/workspace-config/contractsrc-schema.js +1 -0
  3785. package/dist/node/workspace-config/contractsrc-types.js +0 -0
  3786. package/dist/node/workspace-config/environment-validation-alias.js +1 -0
  3787. package/dist/node/workspace-config/environment-validation.js +1 -0
  3788. package/dist/node/workspace-config/environment.js +1 -0
  3789. package/dist/node/workspace-config/index.js +1 -0
  3790. package/dist/node/workspace-config/lssm-os-config.fixture.js +1 -0
  3791. package/dist/node/workspace-config/lssm-os-constraints.js +1 -0
  3792. package/dist/node/workspace-config/lssm-os-extension-schema.js +1 -0
  3793. package/dist/node/workspace-config/lssm-os-inheritance.js +1 -0
  3794. package/dist/node/workspace-config/lssm-os-policy-merge.js +1 -0
  3795. package/dist/node/workspace-config/lssm-os-provider-merge.js +1 -0
  3796. package/dist/node/workspace-config/lssm-os-schema.js +1 -0
  3797. package/dist/node/workspace-config/lssm-os-secrets.js +1 -0
  3798. package/dist/node/workspace-config/lssm-os-types.js +1 -0
  3799. package/dist/notifications/contracts.d.ts +1012 -0
  3800. package/dist/notifications/contracts.js +1 -0
  3801. package/dist/notifications/index.d.ts +3 -0
  3802. package/dist/notifications/index.js +1 -0
  3803. package/dist/notifications/notifications.capability.d.ts +1 -0
  3804. package/dist/notifications/notifications.capability.js +1 -0
  3805. package/dist/notifications/notifications.feature.d.ts +1 -0
  3806. package/dist/notifications/notifications.feature.js +1 -0
  3807. package/dist/observability/database-signals.d.ts +31 -0
  3808. package/dist/observability/database-signals.js +1 -0
  3809. package/dist/observability/evidence-record.d.ts +201 -0
  3810. package/dist/observability/evidence-record.js +1 -0
  3811. package/dist/observability/index.d.ts +11 -0
  3812. package/dist/observability/index.js +1 -0
  3813. package/dist/observability/signal-spec.d.ts +113 -0
  3814. package/dist/observability/signal-spec.js +1 -0
  3815. package/dist/onboarding-base.d.ts +135 -0
  3816. package/dist/onboarding-base.js +1 -0
  3817. package/dist/ontology/autonomous-work-order.fixture.d.ts +352 -0
  3818. package/dist/ontology/autonomous-work-order.fixture.js +1 -0
  3819. package/dist/ontology/companyos.d.ts +146 -0
  3820. package/dist/ontology/companyos.js +1 -0
  3821. package/dist/ontology/defineOntologyEdge.d.ts +2 -0
  3822. package/dist/ontology/defineOntologyEdge.js +1 -0
  3823. package/dist/ontology/defineOntologyNode.d.ts +2 -0
  3824. package/dist/ontology/defineOntologyNode.js +1 -0
  3825. package/dist/ontology/evidence.d.ts +10 -0
  3826. package/dist/ontology/evidence.js +1 -0
  3827. package/dist/ontology/graph.d.ts +19 -0
  3828. package/dist/ontology/graph.js +1 -0
  3829. package/dist/ontology/index.d.ts +10 -0
  3830. package/dist/ontology/index.js +1 -0
  3831. package/dist/ontology/kinds.d.ts +17 -0
  3832. package/dist/ontology/kinds.js +1 -0
  3833. package/dist/ontology/ref.d.ts +6 -0
  3834. package/dist/ontology/ref.js +1 -0
  3835. package/dist/ontology/registry.d.ts +14 -0
  3836. package/dist/ontology/registry.js +1 -0
  3837. package/dist/ontology/safety.d.ts +3 -0
  3838. package/dist/ontology/safety.js +1 -0
  3839. package/dist/ontology/types.d.ts +67 -0
  3840. package/dist/ontology/types.js +0 -0
  3841. package/dist/openapi.d.ts +34 -0
  3842. package/dist/openapi.js +38 -0
  3843. package/dist/operations/agent/archive.command.d.js +0 -0
  3844. package/dist/operations/agent/archive.command.d.ts +141 -0
  3845. package/dist/operations/agent/archive.command.js +1 -0
  3846. package/dist/operations/agent/assign-tool.command.d.js +0 -0
  3847. package/dist/operations/agent/assign-tool.command.d.ts +187 -0
  3848. package/dist/operations/agent/assign-tool.command.js +1 -0
  3849. package/dist/operations/agent/clone.command.d.js +0 -0
  3850. package/dist/operations/agent/clone.command.d.ts +149 -0
  3851. package/dist/operations/agent/clone.command.js +1 -0
  3852. package/dist/operations/agent/create.command.d.js +0 -0
  3853. package/dist/operations/agent/create.command.d.ts +159 -0
  3854. package/dist/operations/agent/create.command.js +1 -0
  3855. package/dist/operations/agent/fleet-health.query.d.js +0 -0
  3856. package/dist/operations/agent/fleet-health.query.d.ts +71 -0
  3857. package/dist/operations/agent/fleet-health.query.js +1 -0
  3858. package/dist/operations/agent/get.query.d.js +0 -0
  3859. package/dist/operations/agent/get.query.d.ts +190 -0
  3860. package/dist/operations/agent/get.query.js +1 -0
  3861. package/dist/operations/agent/import-memory.command.d.ts +140 -0
  3862. package/dist/operations/agent/import-memory.command.js +1 -0
  3863. package/dist/operations/agent/list.query.d.js +0 -0
  3864. package/dist/operations/agent/list.query.d.ts +162 -0
  3865. package/dist/operations/agent/list.query.js +1 -0
  3866. package/dist/operations/agent/pause.command.d.js +0 -0
  3867. package/dist/operations/agent/pause.command.d.ts +149 -0
  3868. package/dist/operations/agent/pause.command.js +1 -0
  3869. package/dist/operations/agent/set-autonomy.command.d.js +0 -0
  3870. package/dist/operations/agent/set-autonomy.command.d.ts +156 -0
  3871. package/dist/operations/agent/set-autonomy.command.js +1 -0
  3872. package/dist/operations/agent/set-risk-tier.command.d.js +0 -0
  3873. package/dist/operations/agent/set-risk-tier.command.d.ts +152 -0
  3874. package/dist/operations/agent/set-risk-tier.command.js +1 -0
  3875. package/dist/operations/agent/shared-schemas.d.js +0 -0
  3876. package/dist/operations/agent/shared-schemas.d.ts +396 -0
  3877. package/dist/operations/agent/shared-schemas.js +1 -0
  3878. package/dist/operations/agent/start.command.d.js +0 -0
  3879. package/dist/operations/agent/start.command.d.ts +147 -0
  3880. package/dist/operations/agent/start.command.js +1 -0
  3881. package/dist/operations/agent/stop.command.d.js +0 -0
  3882. package/dist/operations/agent/stop.command.d.ts +155 -0
  3883. package/dist/operations/agent/stop.command.js +1 -0
  3884. package/dist/operations/agent/update.command.d.js +0 -0
  3885. package/dist/operations/agent/update.command.d.ts +155 -0
  3886. package/dist/operations/agent/update.command.js +1 -0
  3887. package/dist/operations/approval.d.js +0 -0
  3888. package/dist/operations/approval.d.ts +153 -0
  3889. package/dist/operations/approval.js +1 -0
  3890. package/dist/operations/audit/event.export.command.d.js +0 -0
  3891. package/dist/operations/audit/event.export.command.d.ts +71 -0
  3892. package/dist/operations/audit/event.export.command.js +1 -0
  3893. package/dist/operations/audit/event.get.query.d.js +0 -0
  3894. package/dist/operations/audit/event.get.query.d.ts +83 -0
  3895. package/dist/operations/audit/event.get.query.js +1 -0
  3896. package/dist/operations/audit/event.list.query.d.js +0 -0
  3897. package/dist/operations/audit/event.list.query.d.ts +90 -0
  3898. package/dist/operations/audit/event.list.query.js +1 -0
  3899. package/dist/operations/audit/evidence.attach.command.d.js +0 -0
  3900. package/dist/operations/audit/evidence.attach.command.d.ts +110 -0
  3901. package/dist/operations/audit/evidence.attach.command.js +1 -0
  3902. package/dist/operations/audit/pipeline.health.query.d.js +0 -0
  3903. package/dist/operations/audit/pipeline.health.query.d.ts +66 -0
  3904. package/dist/operations/audit/pipeline.health.query.js +1 -0
  3905. package/dist/operations/audit/shared-schemas.d.js +0 -0
  3906. package/dist/operations/audit/shared-schemas.d.ts +102 -0
  3907. package/dist/operations/audit/shared-schemas.js +1 -0
  3908. package/dist/operations/ceremony-authority.d.js +0 -0
  3909. package/dist/operations/ceremony-authority.d.ts +50 -0
  3910. package/dist/operations/ceremony-authority.js +1 -0
  3911. package/dist/operations/coach/agent-suggest-tool.command.d.js +0 -0
  3912. package/dist/operations/coach/agent-suggest-tool.command.d.ts +55 -0
  3913. package/dist/operations/coach/agent-suggest-tool.command.js +1 -0
  3914. package/dist/operations/coach/governance-suggest-constraint.command.d.js +0 -0
  3915. package/dist/operations/coach/governance-suggest-constraint.command.d.ts +61 -0
  3916. package/dist/operations/coach/governance-suggest-constraint.command.js +1 -0
  3917. package/dist/operations/coach/review-summarize.command.d.js +0 -0
  3918. package/dist/operations/coach/review-summarize.command.d.ts +66 -0
  3919. package/dist/operations/coach/review-summarize.command.js +1 -0
  3920. package/dist/operations/coach/shared-schemas.d.js +0 -0
  3921. package/dist/operations/coach/shared-schemas.d.ts +124 -0
  3922. package/dist/operations/coach/shared-schemas.js +1 -0
  3923. package/dist/operations/coach/workflow-suggest-step.command.d.js +0 -0
  3924. package/dist/operations/coach/workflow-suggest-step.command.d.ts +63 -0
  3925. package/dist/operations/coach/workflow-suggest-step.command.js +1 -0
  3926. package/dist/operations/economic-evidence.d.js +0 -0
  3927. package/dist/operations/economic-evidence.d.ts +6 -0
  3928. package/dist/operations/economic-evidence.js +1 -0
  3929. package/dist/operations/fleet/health-snapshot.query.d.js +0 -0
  3930. package/dist/operations/fleet/health-snapshot.query.d.ts +189 -0
  3931. package/dist/operations/fleet/health-snapshot.query.js +1 -0
  3932. package/dist/operations/fleet/metrics-summary.query.d.js +0 -0
  3933. package/dist/operations/fleet/metrics-summary.query.d.ts +224 -0
  3934. package/dist/operations/fleet/metrics-summary.query.js +1 -0
  3935. package/dist/operations/fleet/roi-snapshot.query.d.js +0 -0
  3936. package/dist/operations/fleet/roi-snapshot.query.d.ts +171 -0
  3937. package/dist/operations/fleet/roi-snapshot.query.js +1 -0
  3938. package/dist/operations/fleet/shared-schemas.d.js +0 -0
  3939. package/dist/operations/fleet/shared-schemas.d.ts +161 -0
  3940. package/dist/operations/fleet/shared-schemas.js +1 -0
  3941. package/dist/operations/governance/constraint.add.command.d.js +1 -0
  3942. package/dist/operations/governance/constraint.add.command.d.ts +102 -0
  3943. package/dist/operations/governance/constraint.add.command.js +1 -0
  3944. package/dist/operations/governance/constraint.remove.command.d.js +0 -0
  3945. package/dist/operations/governance/constraint.remove.command.d.ts +57 -0
  3946. package/dist/operations/governance/constraint.remove.command.js +1 -0
  3947. package/dist/operations/governance/notification.dispatch.command.d.js +0 -0
  3948. package/dist/operations/governance/notification.dispatch.command.d.ts +53 -0
  3949. package/dist/operations/governance/notification.dispatch.command.js +1 -0
  3950. package/dist/operations/governance/policy.get.query.d.js +0 -0
  3951. package/dist/operations/governance/policy.get.query.d.ts +68 -0
  3952. package/dist/operations/governance/policy.get.query.js +1 -0
  3953. package/dist/operations/governance/policy.health.query.d.js +0 -0
  3954. package/dist/operations/governance/policy.health.query.d.ts +61 -0
  3955. package/dist/operations/governance/policy.health.query.js +1 -0
  3956. package/dist/operations/governance/policy.list.query.d.js +1 -0
  3957. package/dist/operations/governance/policy.list.query.d.ts +64 -0
  3958. package/dist/operations/governance/policy.list.query.js +1 -0
  3959. package/dist/operations/governance/policy.simulate.query.d.js +0 -0
  3960. package/dist/operations/governance/policy.simulate.query.d.ts +80 -0
  3961. package/dist/operations/governance/policy.simulate.query.js +1 -0
  3962. package/dist/operations/governance/policy.update.command.d.js +1 -0
  3963. package/dist/operations/governance/policy.update.command.d.ts +115 -0
  3964. package/dist/operations/governance/policy.update.command.js +1 -0
  3965. package/dist/operations/governance/shared-schemas.d.js +0 -0
  3966. package/dist/operations/governance/shared-schemas.d.ts +136 -0
  3967. package/dist/operations/governance/shared-schemas.js +1 -0
  3968. package/dist/operations/index.d.js +1 -0
  3969. package/dist/operations/index.d.ts +14 -0
  3970. package/dist/operations/index.js +1 -0
  3971. package/dist/operations/integrations/audit.list_for_integration.command.d.js +1 -0
  3972. package/dist/operations/integrations/audit.list_for_integration.command.d.ts +37 -0
  3973. package/dist/operations/integrations/audit.list_for_integration.command.js +1 -0
  3974. package/dist/operations/integrations/config.get.command.d.js +0 -0
  3975. package/dist/operations/integrations/config.get.command.d.ts +33 -0
  3976. package/dist/operations/integrations/config.get.command.js +1 -0
  3977. package/dist/operations/integrations/config.update.command.d.js +0 -0
  3978. package/dist/operations/integrations/config.update.command.d.ts +42 -0
  3979. package/dist/operations/integrations/config.update.command.js +1 -0
  3980. package/dist/operations/integrations/connections.list.command.d.js +1 -0
  3981. package/dist/operations/integrations/connections.list.command.d.ts +29 -0
  3982. package/dist/operations/integrations/connections.list.command.js +1 -0
  3983. package/dist/operations/integrations/credentials.list.command.d.js +1 -0
  3984. package/dist/operations/integrations/credentials.list.command.d.ts +33 -0
  3985. package/dist/operations/integrations/credentials.list.command.js +1 -0
  3986. package/dist/operations/integrations/credentials.request_rotation.command.d.js +0 -0
  3987. package/dist/operations/integrations/credentials.request_rotation.command.d.ts +38 -0
  3988. package/dist/operations/integrations/credentials.request_rotation.command.js +1 -0
  3989. package/dist/operations/integrations/credentials.revoke.command.d.js +0 -0
  3990. package/dist/operations/integrations/credentials.revoke.command.d.ts +38 -0
  3991. package/dist/operations/integrations/credentials.revoke.command.js +1 -0
  3992. package/dist/operations/integrations/credentials.rotate.command.d.js +0 -0
  3993. package/dist/operations/integrations/credentials.rotate.command.d.ts +46 -0
  3994. package/dist/operations/integrations/credentials.rotate.command.js +1 -0
  3995. package/dist/operations/integrations/index.d.ts +27 -0
  3996. package/dist/operations/integrations/index.js +1 -0
  3997. package/dist/operations/integrations/integrations.connect.command.d.js +0 -0
  3998. package/dist/operations/integrations/integrations.connect.command.d.ts +38 -0
  3999. package/dist/operations/integrations/integrations.connect.command.js +1 -0
  4000. package/dist/operations/integrations/integrations.disconnect.command.d.js +0 -0
  4001. package/dist/operations/integrations/integrations.disconnect.command.d.ts +38 -0
  4002. package/dist/operations/integrations/integrations.disconnect.command.js +1 -0
  4003. package/dist/operations/integrations/integrations.get.command.d.js +0 -0
  4004. package/dist/operations/integrations/integrations.get.command.d.ts +49 -0
  4005. package/dist/operations/integrations/integrations.get.command.js +1 -0
  4006. package/dist/operations/integrations/integrations.list.command.d.js +1 -0
  4007. package/dist/operations/integrations/integrations.list.command.d.ts +29 -0
  4008. package/dist/operations/integrations/integrations.list.command.js +1 -0
  4009. package/dist/operations/integrations/registry.d.js +0 -0
  4010. package/dist/operations/integrations/registry.d.ts +21 -0
  4011. package/dist/operations/integrations/registry.js +1 -0
  4012. package/dist/operations/integrations/secrets.link.command.d.js +0 -0
  4013. package/dist/operations/integrations/secrets.link.command.d.ts +38 -0
  4014. package/dist/operations/integrations/secrets.link.command.js +1 -0
  4015. package/dist/operations/integrations/secrets.list.command.d.js +1 -0
  4016. package/dist/operations/integrations/secrets.list.command.d.ts +33 -0
  4017. package/dist/operations/integrations/secrets.list.command.js +1 -0
  4018. package/dist/operations/integrations/secrets.reveal_once_audit_only.command.d.js +0 -0
  4019. package/dist/operations/integrations/secrets.reveal_once_audit_only.command.d.ts +42 -0
  4020. package/dist/operations/integrations/secrets.reveal_once_audit_only.command.js +1 -0
  4021. package/dist/operations/integrations/secrets.unlink.command.d.js +0 -0
  4022. package/dist/operations/integrations/secrets.unlink.command.d.ts +38 -0
  4023. package/dist/operations/integrations/secrets.unlink.command.js +1 -0
  4024. package/dist/operations/integrations/shared-schemas.d.js +0 -0
  4025. package/dist/operations/integrations/shared-schemas.d.ts +259 -0
  4026. package/dist/operations/integrations/shared-schemas.js +1 -0
  4027. package/dist/operations/integrations/syncs.list.command.d.js +1 -0
  4028. package/dist/operations/integrations/syncs.list.command.d.ts +29 -0
  4029. package/dist/operations/integrations/syncs.list.command.js +1 -0
  4030. package/dist/operations/integrations/syncs.pause.command.d.js +0 -0
  4031. package/dist/operations/integrations/syncs.pause.command.d.ts +34 -0
  4032. package/dist/operations/integrations/syncs.pause.command.js +1 -0
  4033. package/dist/operations/integrations/syncs.resume.command.d.js +0 -0
  4034. package/dist/operations/integrations/syncs.resume.command.d.ts +34 -0
  4035. package/dist/operations/integrations/syncs.resume.command.js +1 -0
  4036. package/dist/operations/integrations/syncs.run_now.command.d.js +0 -0
  4037. package/dist/operations/integrations/syncs.run_now.command.d.ts +34 -0
  4038. package/dist/operations/integrations/syncs.run_now.command.js +1 -0
  4039. package/dist/operations/integrations/syncs.update_schedule.command.d.js +0 -0
  4040. package/dist/operations/integrations/syncs.update_schedule.command.d.ts +38 -0
  4041. package/dist/operations/integrations/syncs.update_schedule.command.js +1 -0
  4042. package/dist/operations/marketing.d.js +1 -0
  4043. package/dist/operations/marketing.d.ts +496 -0
  4044. package/dist/operations/marketing.handlers.d.js +0 -0
  4045. package/dist/operations/marketing.handlers.d.ts +24 -0
  4046. package/dist/operations/marketing.handlers.js +1 -0
  4047. package/dist/operations/marketing.js +14 -0
  4048. package/dist/operations/operation.d.js +0 -0
  4049. package/dist/operations/operation.d.ts +236 -0
  4050. package/dist/operations/operation.js +1 -0
  4051. package/dist/operations/reference-detail.d.ts +157 -0
  4052. package/dist/operations/reference-detail.js +1 -0
  4053. package/dist/operations/reference-resolve.d.ts +214 -0
  4054. package/dist/operations/reference-resolve.js +3 -0
  4055. package/dist/operations/registry.agent.d.js +0 -0
  4056. package/dist/operations/registry.agent.d.ts +22 -0
  4057. package/dist/operations/registry.agent.js +1 -0
  4058. package/dist/operations/registry.audit.d.js +0 -0
  4059. package/dist/operations/registry.audit.d.ts +23 -0
  4060. package/dist/operations/registry.audit.js +1 -0
  4061. package/dist/operations/registry.coach.d.js +0 -0
  4062. package/dist/operations/registry.coach.d.ts +31 -0
  4063. package/dist/operations/registry.coach.js +1 -0
  4064. package/dist/operations/registry.d.js +1 -0
  4065. package/dist/operations/registry.d.ts +77 -0
  4066. package/dist/operations/registry.domains.d.js +0 -0
  4067. package/dist/operations/registry.domains.d.ts +44 -0
  4068. package/dist/operations/registry.domains.js +1 -0
  4069. package/dist/operations/registry.fleet.d.js +0 -0
  4070. package/dist/operations/registry.fleet.d.ts +21 -0
  4071. package/dist/operations/registry.fleet.js +1 -0
  4072. package/dist/operations/registry.governance.d.js +0 -0
  4073. package/dist/operations/registry.governance.d.ts +20 -0
  4074. package/dist/operations/registry.governance.js +1 -0
  4075. package/dist/operations/registry.js +1 -0
  4076. package/dist/operations/registry.review.d.js +0 -0
  4077. package/dist/operations/registry.review.d.ts +18 -0
  4078. package/dist/operations/registry.review.js +1 -0
  4079. package/dist/operations/registry.workflow.d.js +0 -0
  4080. package/dist/operations/registry.workflow.d.ts +20 -0
  4081. package/dist/operations/registry.workflow.js +1 -0
  4082. package/dist/operations/report/getContractVerificationStatus.d.ts +68 -0
  4083. package/dist/operations/report/getContractVerificationStatus.js +1 -0
  4084. package/dist/operations/report/index.d.ts +10 -0
  4085. package/dist/operations/report/index.js +1 -0
  4086. package/dist/operations/review/commands/index.d.ts +6 -0
  4087. package/dist/operations/review/commands/index.js +1 -0
  4088. package/dist/operations/review/commands/reviewApprove.command.d.js +0 -0
  4089. package/dist/operations/review/commands/reviewApprove.command.d.ts +55 -0
  4090. package/dist/operations/review/commands/reviewApprove.command.js +1 -0
  4091. package/dist/operations/review/commands/reviewAssign.command.d.js +0 -0
  4092. package/dist/operations/review/commands/reviewAssign.command.d.ts +50 -0
  4093. package/dist/operations/review/commands/reviewAssign.command.js +12 -0
  4094. package/dist/operations/review/commands/reviewComment.command.d.js +0 -0
  4095. package/dist/operations/review/commands/reviewComment.command.d.ts +60 -0
  4096. package/dist/operations/review/commands/reviewComment.command.js +1 -0
  4097. package/dist/operations/review/commands/reviewEscalate.command.d.js +0 -0
  4098. package/dist/operations/review/commands/reviewEscalate.command.d.ts +62 -0
  4099. package/dist/operations/review/commands/reviewEscalate.command.js +1 -0
  4100. package/dist/operations/review/commands/reviewReject.command.d.js +0 -0
  4101. package/dist/operations/review/commands/reviewReject.command.d.ts +50 -0
  4102. package/dist/operations/review/commands/reviewReject.command.js +1 -0
  4103. package/dist/operations/review/commands/reviewRequestChanges.command.d.js +0 -0
  4104. package/dist/operations/review/commands/reviewRequestChanges.command.d.ts +64 -0
  4105. package/dist/operations/review/commands/reviewRequestChanges.command.js +1 -0
  4106. package/dist/operations/review/constants.d.js +0 -0
  4107. package/dist/operations/review/constants.d.ts +14 -0
  4108. package/dist/operations/review/constants.js +1 -0
  4109. package/dist/operations/review/index.d.ts +2 -0
  4110. package/dist/operations/review/index.js +1 -0
  4111. package/dist/operations/review/queries/index.d.ts +3 -0
  4112. package/dist/operations/review/queries/index.js +1 -0
  4113. package/dist/operations/review/queries/reviewGet.query.d.js +0 -0
  4114. package/dist/operations/review/queries/reviewGet.query.d.ts +127 -0
  4115. package/dist/operations/review/queries/reviewGet.query.js +9 -0
  4116. package/dist/operations/review/queries/reviewList.query.d.js +0 -0
  4117. package/dist/operations/review/queries/reviewList.query.d.ts +110 -0
  4118. package/dist/operations/review/queries/reviewList.query.js +1 -0
  4119. package/dist/operations/review/queries/reviewQueueHealth.query.d.js +0 -0
  4120. package/dist/operations/review/queries/reviewQueueHealth.query.d.ts +55 -0
  4121. package/dist/operations/review/queries/reviewQueueHealth.query.js +1 -0
  4122. package/dist/operations/review/shared-schemas.d.js +0 -0
  4123. package/dist/operations/review/shared-schemas.d.ts +180 -0
  4124. package/dist/operations/review/shared-schemas.js +1 -0
  4125. package/dist/operations/workflow/commands/workflowActivate.command.d.js +0 -0
  4126. package/dist/operations/workflow/commands/workflowActivate.command.d.ts +40 -0
  4127. package/dist/operations/workflow/commands/workflowActivate.command.js +1 -0
  4128. package/dist/operations/workflow/commands/workflowCreate.command.d.js +0 -0
  4129. package/dist/operations/workflow/commands/workflowCreate.command.d.ts +55 -0
  4130. package/dist/operations/workflow/commands/workflowCreate.command.js +1 -0
  4131. package/dist/operations/workflow/commands/workflowDeactivate.command.d.js +0 -0
  4132. package/dist/operations/workflow/commands/workflowDeactivate.command.d.ts +49 -0
  4133. package/dist/operations/workflow/commands/workflowDeactivate.command.js +1 -0
  4134. package/dist/operations/workflow/commands/workflowRunCancel.command.d.js +0 -0
  4135. package/dist/operations/workflow/commands/workflowRunCancel.command.d.ts +41 -0
  4136. package/dist/operations/workflow/commands/workflowRunCancel.command.js +1 -0
  4137. package/dist/operations/workflow/commands/workflowRunDispatch.command.d.js +0 -0
  4138. package/dist/operations/workflow/commands/workflowRunDispatch.command.d.ts +53 -0
  4139. package/dist/operations/workflow/commands/workflowRunDispatch.command.js +1 -0
  4140. package/dist/operations/workflow/commands/workflowRunPause.command.d.js +0 -0
  4141. package/dist/operations/workflow/commands/workflowRunPause.command.d.ts +37 -0
  4142. package/dist/operations/workflow/commands/workflowRunPause.command.js +1 -0
  4143. package/dist/operations/workflow/commands/workflowRunResume.command.d.js +0 -0
  4144. package/dist/operations/workflow/commands/workflowRunResume.command.d.ts +37 -0
  4145. package/dist/operations/workflow/commands/workflowRunResume.command.js +1 -0
  4146. package/dist/operations/workflow/commands/workflowRunRetry.command.d.js +0 -0
  4147. package/dist/operations/workflow/commands/workflowRunRetry.command.d.ts +40 -0
  4148. package/dist/operations/workflow/commands/workflowRunRetry.command.js +1 -0
  4149. package/dist/operations/workflow/commands/workflowStepAdvance.command.d.js +0 -0
  4150. package/dist/operations/workflow/commands/workflowStepAdvance.command.d.ts +49 -0
  4151. package/dist/operations/workflow/commands/workflowStepAdvance.command.js +1 -0
  4152. package/dist/operations/workflow/commands/workflowStepSkip.command.d.js +0 -0
  4153. package/dist/operations/workflow/commands/workflowStepSkip.command.d.ts +49 -0
  4154. package/dist/operations/workflow/commands/workflowStepSkip.command.js +1 -0
  4155. package/dist/operations/workflow/commands/workflowUpdate.command.d.js +0 -0
  4156. package/dist/operations/workflow/commands/workflowUpdate.command.d.ts +44 -0
  4157. package/dist/operations/workflow/commands/workflowUpdate.command.js +1 -0
  4158. package/dist/operations/workflow/constants.d.js +0 -0
  4159. package/dist/operations/workflow/constants.d.ts +38 -0
  4160. package/dist/operations/workflow/constants.js +1 -0
  4161. package/dist/operations/workflow/index.d.js +1 -0
  4162. package/dist/operations/workflow/index.d.ts +31 -0
  4163. package/dist/operations/workflow/index.js +1 -0
  4164. package/dist/operations/workflow/queries/workflowGet.query.d.js +0 -0
  4165. package/dist/operations/workflow/queries/workflowGet.query.d.ts +29 -0
  4166. package/dist/operations/workflow/queries/workflowGet.query.js +1 -0
  4167. package/dist/operations/workflow/queries/workflowList.query.d.js +0 -0
  4168. package/dist/operations/workflow/queries/workflowList.query.d.ts +42 -0
  4169. package/dist/operations/workflow/queries/workflowList.query.js +1 -0
  4170. package/dist/operations/workflow/queries/workflowRunnerHealth.query.d.js +0 -0
  4171. package/dist/operations/workflow/queries/workflowRunnerHealth.query.d.ts +24 -0
  4172. package/dist/operations/workflow/queries/workflowRunnerHealth.query.js +1 -0
  4173. package/dist/osint/capability-matrix-validation.d.ts +3 -0
  4174. package/dist/osint/capability-matrix-validation.js +2 -0
  4175. package/dist/osint/capability-matrix.d.ts +84 -0
  4176. package/dist/osint/capability-matrix.js +3 -0
  4177. package/dist/osint/constants.d.ts +14 -0
  4178. package/dist/osint/constants.js +1 -0
  4179. package/dist/osint/entities.d.ts +60 -0
  4180. package/dist/osint/entities.js +0 -0
  4181. package/dist/osint/events.d.ts +605 -0
  4182. package/dist/osint/events.js +1 -0
  4183. package/dist/osint/exports.d.ts +14 -0
  4184. package/dist/osint/exports.js +0 -0
  4185. package/dist/osint/fingerprint.d.ts +13 -0
  4186. package/dist/osint/fingerprint.js +1 -0
  4187. package/dist/osint/index.d.ts +22 -0
  4188. package/dist/osint/index.js +1 -0
  4189. package/dist/osint/job-reconciliation-contracts.d.ts +372 -0
  4190. package/dist/osint/job-reconciliation-contracts.js +1 -0
  4191. package/dist/osint/job-sources.d.ts +176 -0
  4192. package/dist/osint/job-sources.js +18 -0
  4193. package/dist/osint/lifecycle-contracts.d.ts +552 -0
  4194. package/dist/osint/lifecycle-contracts.js +8 -0
  4195. package/dist/osint/lifecycle-worker-contracts.d.ts +386 -0
  4196. package/dist/osint/lifecycle-worker-contracts.js +1 -0
  4197. package/dist/osint/operational-contracts.d.ts +641 -0
  4198. package/dist/osint/operational-contracts.js +10 -0
  4199. package/dist/osint/operational-operations.d.ts +1965 -0
  4200. package/dist/osint/operational-operations.js +1 -0
  4201. package/dist/osint/operational-schema-fields.d.ts +148 -0
  4202. package/dist/osint/operational-schema-fields.js +1 -0
  4203. package/dist/osint/operations-continuation.d.ts +1611 -0
  4204. package/dist/osint/operations-continuation.js +1 -0
  4205. package/dist/osint/operations.d.ts +2436 -0
  4206. package/dist/osint/operations.js +1 -0
  4207. package/dist/osint/programs.d.ts +54 -0
  4208. package/dist/osint/programs.js +0 -0
  4209. package/dist/osint/registry.d.ts +3510 -0
  4210. package/dist/osint/registry.js +1 -0
  4211. package/dist/osint/rights-contracts.d.ts +253 -0
  4212. package/dist/osint/rights-contracts.js +8 -0
  4213. package/dist/osint/rights-operations.d.ts +175 -0
  4214. package/dist/osint/rights-operations.js +1 -0
  4215. package/dist/osint/source-state-operations.d.ts +386 -0
  4216. package/dist/osint/source-state-operations.js +1 -0
  4217. package/dist/osint/transport.d.ts +76 -0
  4218. package/dist/osint/transport.js +1 -0
  4219. package/dist/osint/types.d.ts +184 -0
  4220. package/dist/osint/types.js +0 -0
  4221. package/dist/outcome-claims/factory.d.ts +9 -0
  4222. package/dist/outcome-claims/factory.js +1 -0
  4223. package/dist/outcome-claims/index.d.ts +3 -0
  4224. package/dist/outcome-claims/index.js +1 -0
  4225. package/dist/outcome-claims/types.d.ts +86 -0
  4226. package/dist/outcome-claims/types.js +0 -0
  4227. package/dist/outcome-claims/validation.d.ts +685 -0
  4228. package/dist/outcome-claims/validation.js +1 -0
  4229. package/dist/ownership.d.js +0 -0
  4230. package/dist/ownership.d.ts +209 -0
  4231. package/dist/ownership.js +1 -0
  4232. package/dist/policy/context.d.ts +234 -0
  4233. package/dist/policy/context.js +1 -0
  4234. package/dist/policy/engine.d.ts +36 -0
  4235. package/dist/policy/engine.js +1 -0
  4236. package/dist/policy/guards.d.ts +150 -0
  4237. package/dist/policy/guards.js +1 -0
  4238. package/dist/policy/index.d.ts +13 -0
  4239. package/dist/policy/index.js +1 -0
  4240. package/dist/policy/opa-adapter.d.ts +41 -0
  4241. package/dist/policy/opa-adapter.js +1 -0
  4242. package/dist/policy/registry.d.js +0 -0
  4243. package/dist/policy/registry.d.ts +5 -0
  4244. package/dist/policy/registry.js +1 -0
  4245. package/dist/policy/requirements.d.js +0 -0
  4246. package/dist/policy/requirements.d.ts +64 -0
  4247. package/dist/policy/requirements.js +1 -0
  4248. package/dist/policy/spec.d.js +0 -0
  4249. package/dist/policy/spec.d.ts +127 -0
  4250. package/dist/policy/spec.js +150 -0
  4251. package/dist/policy/validation.d.ts +84 -0
  4252. package/dist/policy/validation.js +1 -0
  4253. package/dist/presentations/index.d.js +1 -0
  4254. package/dist/presentations/index.d.ts +2 -0
  4255. package/dist/presentations/index.js +1 -0
  4256. package/dist/presentations/presentations.d.js +0 -0
  4257. package/dist/presentations/presentations.d.ts +54 -0
  4258. package/dist/presentations/presentations.js +83 -0
  4259. package/dist/presentations/registry.d.js +0 -0
  4260. package/dist/presentations/registry.d.ts +6 -0
  4261. package/dist/presentations/registry.js +1 -0
  4262. package/dist/presentations/shim-blocknotejs.d.js +0 -0
  4263. package/dist/presentations/shim-blocknotejs.d.ts +28 -0
  4264. package/dist/presentations/shim-blocknotejs.js +0 -0
  4265. package/dist/product-intent/contract-patch-intent.d.ts +100 -0
  4266. package/dist/product-intent/contract-patch-intent.js +1 -0
  4267. package/dist/product-intent/contract-spec-patch.d.ts +86 -0
  4268. package/dist/product-intent/contract-spec-patch.js +1 -0
  4269. package/dist/product-intent/evidence.d.ts +14 -0
  4270. package/dist/product-intent/evidence.js +1 -0
  4271. package/dist/product-intent/findings.d.ts +57 -0
  4272. package/dist/product-intent/findings.js +1 -0
  4273. package/dist/product-intent/impact-report.d.ts +57 -0
  4274. package/dist/product-intent/impact-report.js +1 -0
  4275. package/dist/product-intent/index.d.ts +13 -0
  4276. package/dist/product-intent/index.js +1 -0
  4277. package/dist/product-intent/insights.d.ts +62 -0
  4278. package/dist/product-intent/insights.js +1 -0
  4279. package/dist/product-intent/opportunity-brief.d.ts +192 -0
  4280. package/dist/product-intent/opportunity-brief.js +1 -0
  4281. package/dist/product-intent/problems.d.ts +59 -0
  4282. package/dist/product-intent/problems.js +1 -0
  4283. package/dist/product-intent/registry.d.ts +28 -0
  4284. package/dist/product-intent/registry.js +1 -0
  4285. package/dist/product-intent/runtime.d.ts +92 -0
  4286. package/dist/product-intent/runtime.js +1 -0
  4287. package/dist/product-intent/spec.d.ts +664 -0
  4288. package/dist/product-intent/spec.js +1 -0
  4289. package/dist/product-intent/task-pack.d.ts +98 -0
  4290. package/dist/product-intent/task-pack.js +1 -0
  4291. package/dist/product-intent/tickets.d.ts +67 -0
  4292. package/dist/product-intent/tickets.js +1 -0
  4293. package/dist/product-intent/types.d.ts +11 -0
  4294. package/dist/product-intent/types.js +1 -0
  4295. package/dist/product-intent/ui-wireframe.d.ts +100 -0
  4296. package/dist/product-intent/ui-wireframe.js +1 -0
  4297. package/dist/prompt.d.ts +49 -0
  4298. package/dist/prompt.js +1 -0
  4299. package/dist/promptRegistry.d.ts +11 -0
  4300. package/dist/promptRegistry.js +1 -0
  4301. package/dist/provider-ranking/capabilities/index.d.ts +1 -0
  4302. package/dist/provider-ranking/capabilities/index.js +1 -0
  4303. package/dist/provider-ranking/capabilities/providerRanking.capability.d.ts +1 -0
  4304. package/dist/provider-ranking/capabilities/providerRanking.capability.js +1 -0
  4305. package/dist/provider-ranking/commands/benchmarkIngest.command.d.ts +62 -0
  4306. package/dist/provider-ranking/commands/benchmarkIngest.command.js +4 -0
  4307. package/dist/provider-ranking/commands/benchmarkRunCustom.command.d.ts +61 -0
  4308. package/dist/provider-ranking/commands/benchmarkRunCustom.command.js +4 -0
  4309. package/dist/provider-ranking/commands/index.d.ts +3 -0
  4310. package/dist/provider-ranking/commands/index.js +1 -0
  4311. package/dist/provider-ranking/commands/rankingRefresh.command.d.ts +42 -0
  4312. package/dist/provider-ranking/commands/rankingRefresh.command.js +4 -0
  4313. package/dist/provider-ranking/constants.d.ts +4 -0
  4314. package/dist/provider-ranking/constants.js +1 -0
  4315. package/dist/provider-ranking/contracts.d.ts +624 -0
  4316. package/dist/provider-ranking/contracts.js +1 -0
  4317. package/dist/provider-ranking/events/benchmarkCustomCompleted.event.d.ts +71 -0
  4318. package/dist/provider-ranking/events/benchmarkCustomCompleted.event.js +4 -0
  4319. package/dist/provider-ranking/events/benchmarkIngested.event.d.ts +47 -0
  4320. package/dist/provider-ranking/events/benchmarkIngested.event.js +4 -0
  4321. package/dist/provider-ranking/events/index.d.ts +3 -0
  4322. package/dist/provider-ranking/events/index.js +1 -0
  4323. package/dist/provider-ranking/events/rankingUpdated.event.d.ts +39 -0
  4324. package/dist/provider-ranking/events/rankingUpdated.event.js +4 -0
  4325. package/dist/provider-ranking/forms/benchmarkIngest.form.d.ts +29 -0
  4326. package/dist/provider-ranking/forms/benchmarkIngest.form.js +4 -0
  4327. package/dist/provider-ranking/forms/benchmarkRunCustom.form.d.ts +29 -0
  4328. package/dist/provider-ranking/forms/benchmarkRunCustom.form.js +4 -0
  4329. package/dist/provider-ranking/forms/index.d.ts +2 -0
  4330. package/dist/provider-ranking/forms/index.js +1 -0
  4331. package/dist/provider-ranking/index.d.ts +10 -0
  4332. package/dist/provider-ranking/index.js +1 -0
  4333. package/dist/provider-ranking/presentations/index.d.ts +1 -0
  4334. package/dist/provider-ranking/presentations/index.js +1 -0
  4335. package/dist/provider-ranking/presentations/modelComparison.presentation.d.ts +11 -0
  4336. package/dist/provider-ranking/presentations/modelComparison.presentation.js +4 -0
  4337. package/dist/provider-ranking/provider-ranking.feature.d.ts +11 -0
  4338. package/dist/provider-ranking/provider-ranking.feature.js +4 -0
  4339. package/dist/provider-ranking/queries/benchmarkResultsList.query.d.ts +84 -0
  4340. package/dist/provider-ranking/queries/benchmarkResultsList.query.js +4 -0
  4341. package/dist/provider-ranking/queries/index.d.ts +3 -0
  4342. package/dist/provider-ranking/queries/index.js +1 -0
  4343. package/dist/provider-ranking/queries/modelProfileGet.query.d.ts +67 -0
  4344. package/dist/provider-ranking/queries/modelProfileGet.query.js +4 -0
  4345. package/dist/provider-ranking/queries/providerRankingGet.query.d.ts +72 -0
  4346. package/dist/provider-ranking/queries/providerRankingGet.query.js +4 -0
  4347. package/dist/provider-ranking/views/benchmarkResults.dataView.d.ts +108 -0
  4348. package/dist/provider-ranking/views/benchmarkResults.dataView.js +4 -0
  4349. package/dist/provider-ranking/views/index.d.ts +2 -0
  4350. package/dist/provider-ranking/views/index.js +1 -0
  4351. package/dist/provider-ranking/views/providerRankings.dataView.d.ts +90 -0
  4352. package/dist/provider-ranking/views/providerRankings.dataView.js +4 -0
  4353. package/dist/pwa/capabilities/index.d.ts +1 -0
  4354. package/dist/pwa/capabilities/index.js +1 -0
  4355. package/dist/pwa/capabilities/pwaUpdateManagement.capability.d.ts +1 -0
  4356. package/dist/pwa/capabilities/pwaUpdateManagement.capability.js +1 -0
  4357. package/dist/pwa/constants.d.ts +4 -0
  4358. package/dist/pwa/constants.js +1 -0
  4359. package/dist/pwa/contracts.d.ts +180 -0
  4360. package/dist/pwa/contracts.js +1 -0
  4361. package/dist/pwa/events/index.d.ts +3 -0
  4362. package/dist/pwa/events/index.js +1 -0
  4363. package/dist/pwa/events/pwaUpdateApplied.event.d.ts +45 -0
  4364. package/dist/pwa/events/pwaUpdateApplied.event.js +1 -0
  4365. package/dist/pwa/events/pwaUpdateDeferred.event.d.ts +22 -0
  4366. package/dist/pwa/events/pwaUpdateDeferred.event.js +1 -0
  4367. package/dist/pwa/events/pwaUpdatePrompted.event.d.ts +22 -0
  4368. package/dist/pwa/events/pwaUpdatePrompted.event.js +1 -0
  4369. package/dist/pwa/index.d.ts +8 -0
  4370. package/dist/pwa/index.js +1 -0
  4371. package/dist/pwa/pwa.feature.d.ts +1 -0
  4372. package/dist/pwa/pwa.feature.js +1 -0
  4373. package/dist/pwa/queries/index.d.ts +1 -0
  4374. package/dist/pwa/queries/index.js +1 -0
  4375. package/dist/pwa/queries/pwaUpdateCheck.query.d.ts +244 -0
  4376. package/dist/pwa/queries/pwaUpdateCheck.query.js +1 -0
  4377. package/dist/pwa/registry.d.ts +7 -0
  4378. package/dist/pwa/registry.js +1 -0
  4379. package/dist/pwa/types.d.ts +52 -0
  4380. package/dist/pwa/types.js +6 -0
  4381. package/dist/quality/environment.d.ts +51 -0
  4382. package/dist/quality/environment.js +1 -0
  4383. package/dist/quality/index.d.ts +5 -0
  4384. package/dist/quality/index.js +1 -0
  4385. package/dist/quality/plan.d.ts +185 -0
  4386. package/dist/quality/plan.js +1 -0
  4387. package/dist/quality/primitives.d.ts +143 -0
  4388. package/dist/quality/primitives.js +1 -0
  4389. package/dist/quality/profile.d.ts +155 -0
  4390. package/dist/quality/profile.js +1 -0
  4391. package/dist/quality/receipt.d.ts +237 -0
  4392. package/dist/quality/receipt.js +1 -0
  4393. package/dist/query/cache-status.d.js +0 -0
  4394. package/dist/query/cache-status.d.ts +15 -0
  4395. package/dist/query/cache-status.js +1 -0
  4396. package/dist/query/conflict-policy.d.js +0 -0
  4397. package/dist/query/conflict-policy.d.ts +27 -0
  4398. package/dist/query/conflict-policy.js +1 -0
  4399. package/dist/query/consistency.d.js +0 -0
  4400. package/dist/query/consistency.d.ts +12 -0
  4401. package/dist/query/consistency.js +1 -0
  4402. package/dist/query/envelope.d.js +0 -0
  4403. package/dist/query/envelope.d.ts +96 -0
  4404. package/dist/query/envelope.js +0 -0
  4405. package/dist/query/index.d.js +1 -0
  4406. package/dist/query/index.d.ts +17 -0
  4407. package/dist/query/index.js +1 -0
  4408. package/dist/query/invalidation.d.js +0 -0
  4409. package/dist/query/invalidation.d.ts +19 -0
  4410. package/dist/query/invalidation.js +1 -0
  4411. package/dist/query/key.d.js +0 -0
  4412. package/dist/query/key.d.ts +10 -0
  4413. package/dist/query/key.js +1 -0
  4414. package/dist/query/normalize.d.js +0 -0
  4415. package/dist/query/normalize.d.ts +49 -0
  4416. package/dist/query/normalize.js +1 -0
  4417. package/dist/query/query-state.d.js +0 -0
  4418. package/dist/query/query-state.d.ts +63 -0
  4419. package/dist/query/query-state.js +1 -0
  4420. package/dist/query/version-token.d.js +0 -0
  4421. package/dist/query/version-token.d.ts +20 -0
  4422. package/dist/query/version-token.js +1 -0
  4423. package/dist/regenerator/adapters.d.ts +15 -0
  4424. package/dist/regenerator/adapters.js +0 -0
  4425. package/dist/regenerator/executor.d.ts +66 -0
  4426. package/dist/regenerator/executor.js +1 -0
  4427. package/dist/regenerator/index.d.ts +6 -0
  4428. package/dist/regenerator/index.js +1 -0
  4429. package/dist/regenerator/service.d.ts +31 -0
  4430. package/dist/regenerator/service.js +1 -0
  4431. package/dist/regenerator/sinks.d.ts +23 -0
  4432. package/dist/regenerator/sinks.js +1 -0
  4433. package/dist/regenerator/types.d.ts +103 -0
  4434. package/dist/regenerator/types.js +0 -0
  4435. package/dist/regenerator/utils.d.ts +6 -0
  4436. package/dist/regenerator/utils.js +1 -0
  4437. package/dist/registry-utils.d.js +0 -0
  4438. package/dist/registry-utils.d.ts +105 -0
  4439. package/dist/registry-utils.js +1 -0
  4440. package/dist/registry.d.js +0 -0
  4441. package/dist/registry.d.ts +27 -0
  4442. package/dist/registry.js +1 -0
  4443. package/dist/release/index.d.ts +1 -0
  4444. package/dist/release/index.js +1 -0
  4445. package/dist/resources.d.js +0 -0
  4446. package/dist/resources.d.ts +60 -0
  4447. package/dist/resources.js +1 -0
  4448. package/dist/results/builders.d.js +0 -0
  4449. package/dist/results/builders.d.ts +51 -0
  4450. package/dist/results/builders.js +1 -0
  4451. package/dist/results/error.d.js +0 -0
  4452. package/dist/results/error.d.ts +8 -0
  4453. package/dist/results/error.js +1 -0
  4454. package/dist/results/factories.d.js +0 -0
  4455. package/dist/results/factories.d.ts +23 -0
  4456. package/dist/results/factories.js +1 -0
  4457. package/dist/results/guards.d.js +0 -0
  4458. package/dist/results/guards.d.ts +7 -0
  4459. package/dist/results/guards.js +1 -0
  4460. package/dist/results/index.d.js +1 -0
  4461. package/dist/results/index.d.ts +15 -0
  4462. package/dist/results/index.js +1 -0
  4463. package/dist/results/normalize.d.js +0 -0
  4464. package/dist/results/normalize.d.ts +9 -0
  4465. package/dist/results/normalize.js +1 -0
  4466. package/dist/results/problem.d.js +0 -0
  4467. package/dist/results/problem.d.ts +2 -0
  4468. package/dist/results/problem.js +1 -0
  4469. package/dist/results/result-specs.d.js +0 -0
  4470. package/dist/results/result-specs.d.ts +73 -0
  4471. package/dist/results/result-specs.js +0 -0
  4472. package/dist/results/standard-specs.d.js +0 -0
  4473. package/dist/results/standard-specs.d.ts +90 -0
  4474. package/dist/results/standard-specs.js +1 -0
  4475. package/dist/results/status.d.js +0 -0
  4476. package/dist/results/status.d.ts +3 -0
  4477. package/dist/results/status.js +1 -0
  4478. package/dist/results/types.d.js +0 -0
  4479. package/dist/results/types.d.ts +99 -0
  4480. package/dist/results/types.js +0 -0
  4481. package/dist/results/value-utils.d.js +0 -0
  4482. package/dist/results/value-utils.d.ts +5 -0
  4483. package/dist/results/value-utils.js +1 -0
  4484. package/dist/rich-content/builders.d.ts +19 -0
  4485. package/dist/rich-content/builders.js +3 -0
  4486. package/dist/rich-content/index.d.ts +4 -0
  4487. package/dist/rich-content/index.js +1 -0
  4488. package/dist/rich-content/preferences.d.ts +7 -0
  4489. package/dist/rich-content/preferences.js +0 -0
  4490. package/dist/rich-content/redaction.d.ts +5 -0
  4491. package/dist/rich-content/redaction.js +1 -0
  4492. package/dist/rich-content/types.d.ts +69 -0
  4493. package/dist/rich-content/types.js +0 -0
  4494. package/dist/rich-reference/__fixtures__/cross-adapter-fixture.d.ts +26 -0
  4495. package/dist/rich-reference/__fixtures__/cross-adapter-fixture.js +1 -0
  4496. package/dist/rich-reference/agent-export.d.js +0 -0
  4497. package/dist/rich-reference/agent-export.d.ts +59 -0
  4498. package/dist/rich-reference/agent-export.js +1 -0
  4499. package/dist/rich-reference/canonical-serializer.d.js +0 -0
  4500. package/dist/rich-reference/canonical-serializer.d.ts +29 -0
  4501. package/dist/rich-reference/canonical-serializer.js +1 -0
  4502. package/dist/rich-reference/contracts.d.ts +4 -0
  4503. package/dist/rich-reference/contracts.js +1 -0
  4504. package/dist/rich-reference/define-kind.d.js +0 -0
  4505. package/dist/rich-reference/define-kind.d.ts +46 -0
  4506. package/dist/rich-reference/define-kind.js +1 -0
  4507. package/dist/rich-reference/denial-token-shape.d.js +0 -0
  4508. package/dist/rich-reference/denial-token-shape.d.ts +16 -0
  4509. package/dist/rich-reference/denial-token-shape.js +1 -0
  4510. package/dist/rich-reference/denial-token.d.js +0 -0
  4511. package/dist/rich-reference/denial-token.d.ts +11 -0
  4512. package/dist/rich-reference/denial-token.js +1 -0
  4513. package/dist/rich-reference/detector.d.js +0 -0
  4514. package/dist/rich-reference/detector.d.ts +19 -0
  4515. package/dist/rich-reference/detector.js +1 -0
  4516. package/dist/rich-reference/handler.d.js +0 -0
  4517. package/dist/rich-reference/handler.d.ts +49 -0
  4518. package/dist/rich-reference/handler.js +0 -0
  4519. package/dist/rich-reference/index.d.js +1 -0
  4520. package/dist/rich-reference/index.d.ts +38 -0
  4521. package/dist/rich-reference/index.js +19 -0
  4522. package/dist/rich-reference/kinds/code-symbol.d.js +1 -0
  4523. package/dist/rich-reference/kinds/code-symbol.d.ts +39 -0
  4524. package/dist/rich-reference/kinds/code-symbol.js +1 -0
  4525. package/dist/rich-reference/kinds/database-record.d.js +1 -0
  4526. package/dist/rich-reference/kinds/database-record.d.ts +29 -0
  4527. package/dist/rich-reference/kinds/database-record.js +1 -0
  4528. package/dist/rich-reference/kinds/entity.d.js +1 -0
  4529. package/dist/rich-reference/kinds/entity.d.ts +62 -0
  4530. package/dist/rich-reference/kinds/entity.js +27 -0
  4531. package/dist/rich-reference/kinds/file.d.js +1 -0
  4532. package/dist/rich-reference/kinds/file.d.ts +26 -0
  4533. package/dist/rich-reference/kinds/file.js +1 -0
  4534. package/dist/rich-reference/kinds/index.d.js +1 -0
  4535. package/dist/rich-reference/kinds/index.d.ts +70 -0
  4536. package/dist/rich-reference/kinds/index.js +1 -0
  4537. package/dist/rich-reference/kinds/link.d.js +1 -0
  4538. package/dist/rich-reference/kinds/link.d.ts +24 -0
  4539. package/dist/rich-reference/kinds/link.js +1 -0
  4540. package/dist/rich-reference/kinds/media.d.js +1 -0
  4541. package/dist/rich-reference/kinds/media.d.ts +34 -0
  4542. package/dist/rich-reference/kinds/media.js +1 -0
  4543. package/dist/rich-reference/kinds/object.d.js +1 -0
  4544. package/dist/rich-reference/kinds/object.d.ts +24 -0
  4545. package/dist/rich-reference/kinds/object.js +1 -0
  4546. package/dist/rich-reference/markdown-envelope.d.js +0 -0
  4547. package/dist/rich-reference/markdown-envelope.d.ts +73 -0
  4548. package/dist/rich-reference/markdown-envelope.js +1 -0
  4549. package/dist/rich-reference/ports/audit-sink.d.js +0 -0
  4550. package/dist/rich-reference/ports/audit-sink.d.ts +32 -0
  4551. package/dist/rich-reference/ports/audit-sink.js +0 -0
  4552. package/dist/rich-reference/ports/coarse-preferences-provider.d.js +0 -0
  4553. package/dist/rich-reference/ports/coarse-preferences-provider.d.ts +39 -0
  4554. package/dist/rich-reference/ports/coarse-preferences-provider.js +0 -0
  4555. package/dist/rich-reference/ports/durable-audit-sink.d.js +0 -0
  4556. package/dist/rich-reference/ports/durable-audit-sink.d.ts +46 -0
  4557. package/dist/rich-reference/ports/durable-audit-sink.js +0 -0
  4558. package/dist/rich-reference/ports/index.d.js +0 -0
  4559. package/dist/rich-reference/ports/index.d.ts +12 -0
  4560. package/dist/rich-reference/ports/index.js +0 -0
  4561. package/dist/rich-reference/ports/kind-policy-provider.d.js +0 -0
  4562. package/dist/rich-reference/ports/kind-policy-provider.d.ts +35 -0
  4563. package/dist/rich-reference/ports/kind-policy-provider.js +0 -0
  4564. package/dist/rich-reference/ports/subject-provider.d.js +0 -0
  4565. package/dist/rich-reference/ports/subject-provider.d.ts +40 -0
  4566. package/dist/rich-reference/ports/subject-provider.js +0 -0
  4567. package/dist/rich-reference/redaction.d.js +0 -0
  4568. package/dist/rich-reference/redaction.d.ts +23 -0
  4569. package/dist/rich-reference/redaction.js +1 -0
  4570. package/dist/rich-reference/registry.d.js +0 -0
  4571. package/dist/rich-reference/registry.d.ts +35 -0
  4572. package/dist/rich-reference/registry.js +1 -0
  4573. package/dist/rich-reference/runtime/dev-invariants.d.ts +18 -0
  4574. package/dist/rich-reference/runtime/dev-invariants.js +1 -0
  4575. package/dist/rich-reference/runtime/dispatch.d.ts +48 -0
  4576. package/dist/rich-reference/runtime/dispatch.js +1 -0
  4577. package/dist/rich-reference/runtime/index.d.ts +16 -0
  4578. package/dist/rich-reference/runtime/index.js +1 -0
  4579. package/dist/rich-reference/runtime/redaction-enforcer.d.ts +21 -0
  4580. package/dist/rich-reference/runtime/redaction-enforcer.js +1 -0
  4581. package/dist/rich-reference/runtime/runtime.d.ts +27 -0
  4582. package/dist/rich-reference/runtime/runtime.js +1 -0
  4583. package/dist/rich-reference/types.d.js +0 -0
  4584. package/dist/rich-reference/types.d.ts +66 -0
  4585. package/dist/rich-reference/types.js +1 -0
  4586. package/dist/runtime-adapters.d.js +0 -0
  4587. package/dist/runtime-adapters.d.ts +25 -0
  4588. package/dist/runtime-adapters.js +1 -0
  4589. package/dist/schema-to-markdown.d.ts +56 -0
  4590. package/dist/schema-to-markdown.js +10 -0
  4591. package/dist/self-improving-system/constants.d.ts +14 -0
  4592. package/dist/self-improving-system/constants.js +1 -0
  4593. package/dist/self-improving-system/events.d.ts +1007 -0
  4594. package/dist/self-improving-system/events.js +1 -0
  4595. package/dist/self-improving-system/index.d.ts +7 -0
  4596. package/dist/self-improving-system/index.js +1 -0
  4597. package/dist/self-improving-system/operation-definitions.d.ts +1751 -0
  4598. package/dist/self-improving-system/operation-definitions.js +1 -0
  4599. package/dist/self-improving-system/operations.d.ts +1726 -0
  4600. package/dist/self-improving-system/operations.js +1 -0
  4601. package/dist/self-improving-system/registry.d.ts +9 -0
  4602. package/dist/self-improving-system/registry.js +1 -0
  4603. package/dist/self-improving-system/transport.d.ts +10 -0
  4604. package/dist/self-improving-system/transport.js +1 -0
  4605. package/dist/self-improving-system/types.d.ts +136 -0
  4606. package/dist/self-improving-system/types.js +1 -0
  4607. package/dist/self-improving-system/validation.d.ts +274 -0
  4608. package/dist/self-improving-system/validation.js +1 -0
  4609. package/dist/serialization/index.d.ts +10 -0
  4610. package/dist/serialization/index.js +1 -0
  4611. package/dist/serialization/serializers.d.ts +35 -0
  4612. package/dist/serialization/serializers.js +1 -0
  4613. package/dist/serialization/types.d.ts +100 -0
  4614. package/dist/serialization/types.js +0 -0
  4615. package/dist/shared/attach-context.d.js +0 -0
  4616. package/dist/shared/attach-context.d.ts +83 -0
  4617. package/dist/shared/attach-context.js +1 -0
  4618. package/dist/shared/audit.d.js +0 -0
  4619. package/dist/shared/audit.d.ts +93 -0
  4620. package/dist/shared/audit.js +1 -0
  4621. package/dist/shared/idempotency-shape.d.js +0 -0
  4622. package/dist/shared/idempotency-shape.d.ts +63 -0
  4623. package/dist/shared/idempotency-shape.js +1 -0
  4624. package/dist/shared/idempotency.d.ts +64 -0
  4625. package/dist/shared/idempotency.js +1 -0
  4626. package/dist/shared/index.d.js +1 -0
  4627. package/dist/shared/index.d.ts +39 -0
  4628. package/dist/shared/index.js +1 -0
  4629. package/dist/shared/window.d.js +0 -0
  4630. package/dist/shared/window.d.ts +81 -0
  4631. package/dist/shared/window.js +1 -0
  4632. package/dist/shared-entities/index.d.ts +8 -0
  4633. package/dist/shared-entities/index.js +1 -0
  4634. package/dist/shared-entities/person.d.ts +50 -0
  4635. package/dist/shared-entities/person.js +12 -0
  4636. package/dist/shared-entities/project.d.ts +53 -0
  4637. package/dist/shared-entities/project.js +4 -0
  4638. package/dist/shared-entities/resource.d.ts +36 -0
  4639. package/dist/shared-entities/resource.js +4 -0
  4640. package/dist/shared-entities/task-validators.d.ts +24 -0
  4641. package/dist/shared-entities/task-validators.js +1 -0
  4642. package/dist/shared-entities/task.d.js +0 -0
  4643. package/dist/shared-entities/task.d.ts +128 -0
  4644. package/dist/shared-entities/task.js +1 -0
  4645. package/dist/shared-entities/team.d.ts +44 -0
  4646. package/dist/shared-entities/team.js +12 -0
  4647. package/dist/sop/generation-sources.d.ts +57 -0
  4648. package/dist/sop/generation-sources.js +5 -0
  4649. package/dist/sop/index.d.ts +5 -0
  4650. package/dist/sop/index.js +1 -0
  4651. package/dist/sop/operations.d.ts +566 -0
  4652. package/dist/sop/operations.js +1 -0
  4653. package/dist/sop/sop.feature.d.ts +11 -0
  4654. package/dist/sop/sop.feature.js +3 -0
  4655. package/dist/sop/types.d.ts +144 -0
  4656. package/dist/sop/types.js +0 -0
  4657. package/dist/sop/validation.d.ts +9 -0
  4658. package/dist/sop/validation.js +1 -0
  4659. package/dist/structured-data/derive.d.js +0 -0
  4660. package/dist/structured-data/derive.d.ts +61 -0
  4661. package/dist/structured-data/derive.js +1 -0
  4662. package/dist/structured-data/index.d.js +1 -0
  4663. package/dist/structured-data/index.d.ts +3 -0
  4664. package/dist/structured-data/index.js +1 -0
  4665. package/dist/structured-data/kinds.d.js +0 -0
  4666. package/dist/structured-data/kinds.d.ts +143 -0
  4667. package/dist/structured-data/kinds.js +1 -0
  4668. package/dist/structured-data/schema-guards.d.ts +1 -0
  4669. package/dist/structured-data/schema-guards.js +0 -0
  4670. package/dist/structured-data/validate.d.js +0 -0
  4671. package/dist/structured-data/validate.d.ts +19 -0
  4672. package/dist/structured-data/validate.js +1 -0
  4673. package/dist/telemetry/anomaly.d.js +0 -0
  4674. package/dist/telemetry/anomaly.d.ts +22 -0
  4675. package/dist/telemetry/anomaly.js +1 -0
  4676. package/dist/telemetry/delivery-v2.d.js +0 -0
  4677. package/dist/telemetry/delivery-v2.d.ts +152 -0
  4678. package/dist/telemetry/delivery-v2.js +1 -0
  4679. package/dist/telemetry/index.d.js +1 -0
  4680. package/dist/telemetry/index.d.ts +5 -0
  4681. package/dist/telemetry/index.js +1 -0
  4682. package/dist/telemetry/spec.d.js +0 -0
  4683. package/dist/telemetry/spec.d.ts +89 -0
  4684. package/dist/telemetry/spec.js +1 -0
  4685. package/dist/telemetry/tracker.d.js +0 -0
  4686. package/dist/telemetry/tracker.d.ts +48 -0
  4687. package/dist/telemetry/tracker.js +1 -0
  4688. package/dist/telemetry/v2-primitives.d.js +0 -0
  4689. package/dist/telemetry/v2-primitives.d.ts +113 -0
  4690. package/dist/telemetry/v2-primitives.js +1 -0
  4691. package/dist/telemetry/v2-validation.d.js +0 -0
  4692. package/dist/telemetry/v2-validation.d.ts +3 -0
  4693. package/dist/telemetry/v2-validation.js +1 -0
  4694. package/dist/telemetry/v2.d.js +1 -0
  4695. package/dist/telemetry/v2.d.ts +520 -0
  4696. package/dist/telemetry/v2.js +1 -0
  4697. package/dist/tests/index.d.ts +2 -0
  4698. package/dist/tests/index.js +1 -0
  4699. package/dist/tests/runner.d.ts +38 -0
  4700. package/dist/tests/runner.js +1 -0
  4701. package/dist/tests/spec.d.js +0 -0
  4702. package/dist/tests/spec.d.ts +84 -0
  4703. package/dist/tests/spec.js +1 -0
  4704. package/dist/themes.d.js +1 -0
  4705. package/dist/themes.d.ts +248 -0
  4706. package/dist/themes.js +1 -0
  4707. package/dist/themes.platform-validation.d.js +0 -0
  4708. package/dist/themes.platform-validation.d.ts +7 -0
  4709. package/dist/themes.platform-validation.js +1 -0
  4710. package/dist/themes.validation.d.js +0 -0
  4711. package/dist/themes.validation.d.ts +18 -0
  4712. package/dist/themes.validation.js +1 -0
  4713. package/dist/translations/catalog.d.js +0 -0
  4714. package/dist/translations/catalog.d.ts +25 -0
  4715. package/dist/translations/catalog.js +0 -0
  4716. package/dist/translations/diagnostics.d.js +0 -0
  4717. package/dist/translations/diagnostics.d.ts +92 -0
  4718. package/dist/translations/diagnostics.js +1 -0
  4719. package/dist/translations/i18n-factory-snapshot.d.js +0 -0
  4720. package/dist/translations/i18n-factory-snapshot.d.ts +86 -0
  4721. package/dist/translations/i18n-factory-snapshot.js +1 -0
  4722. package/dist/translations/i18n-factory.d.js +0 -0
  4723. package/dist/translations/i18n-factory.d.ts +149 -0
  4724. package/dist/translations/i18n-factory.js +1 -0
  4725. package/dist/translations/index.d.js +1 -0
  4726. package/dist/translations/index.d.ts +48 -0
  4727. package/dist/translations/index.js +1 -0
  4728. package/dist/translations/locale.d.js +0 -0
  4729. package/dist/translations/locale.d.ts +9 -0
  4730. package/dist/translations/locale.js +1 -0
  4731. package/dist/translations/registry.d.js +0 -0
  4732. package/dist/translations/registry.d.ts +179 -0
  4733. package/dist/translations/registry.js +1 -0
  4734. package/dist/translations/spec.d.js +0 -0
  4735. package/dist/translations/spec.d.ts +296 -0
  4736. package/dist/translations/spec.js +1 -0
  4737. package/dist/translations/tenant.d.js +0 -0
  4738. package/dist/translations/tenant.d.ts +11 -0
  4739. package/dist/translations/tenant.js +0 -0
  4740. package/dist/translations/validation.d.js +0 -0
  4741. package/dist/translations/validation.d.ts +165 -0
  4742. package/dist/translations/validation.js +1 -0
  4743. package/dist/types.d.js +0 -0
  4744. package/dist/types.d.ts +310 -0
  4745. package/dist/types.js +1 -0
  4746. package/dist/utils/safe-json.d.ts +10 -0
  4747. package/dist/utils/safe-json.js +1 -0
  4748. package/dist/versioning/index.d.js +1 -0
  4749. package/dist/versioning/index.d.ts +12 -0
  4750. package/dist/versioning/index.js +1 -0
  4751. package/dist/versioning/refs.d.js +0 -0
  4752. package/dist/versioning/refs.d.ts +176 -0
  4753. package/dist/versioning/refs.js +1 -0
  4754. package/dist/versioning/release-types.d.js +0 -0
  4755. package/dist/versioning/release-types.d.ts +142 -0
  4756. package/dist/versioning/release-types.js +0 -0
  4757. package/dist/versioning/release-utils.d.js +0 -0
  4758. package/dist/versioning/release-utils.d.ts +5 -0
  4759. package/dist/versioning/release-utils.js +1 -0
  4760. package/dist/versioning/schema.d.js +0 -0
  4761. package/dist/versioning/schema.d.ts +24 -0
  4762. package/dist/versioning/schema.js +1 -0
  4763. package/dist/versioning/types.d.js +0 -0
  4764. package/dist/versioning/types.d.ts +130 -0
  4765. package/dist/versioning/types.js +1 -0
  4766. package/dist/versioning/utils.d.js +0 -0
  4767. package/dist/versioning/utils.d.ts +93 -0
  4768. package/dist/versioning/utils.js +1 -0
  4769. package/dist/visual-scenarios/index.d.ts +4 -0
  4770. package/dist/visual-scenarios/index.js +1 -0
  4771. package/dist/visual-scenarios/platform.d.ts +2 -0
  4772. package/dist/visual-scenarios/platform.js +1 -0
  4773. package/dist/visual-scenarios/registry.d.js +0 -0
  4774. package/dist/visual-scenarios/registry.d.ts +6 -0
  4775. package/dist/visual-scenarios/registry.js +1 -0
  4776. package/dist/visual-scenarios/spec.d.js +0 -0
  4777. package/dist/visual-scenarios/spec.d.ts +94 -0
  4778. package/dist/visual-scenarios/spec.js +1 -0
  4779. package/dist/visual-scenarios/validation-authoring.d.ts +5 -0
  4780. package/dist/visual-scenarios/validation-authoring.js +1 -0
  4781. package/dist/visual-scenarios/validation.d.ts +17 -0
  4782. package/dist/visual-scenarios/validation.js +1 -0
  4783. package/dist/visualizations/index.d.ts +4 -0
  4784. package/dist/visualizations/index.js +1 -0
  4785. package/dist/visualizations/registry.d.js +0 -0
  4786. package/dist/visualizations/registry.d.ts +6 -0
  4787. package/dist/visualizations/registry.js +1 -0
  4788. package/dist/visualizations/spec.d.js +0 -0
  4789. package/dist/visualizations/spec.d.ts +16 -0
  4790. package/dist/visualizations/spec.js +1 -0
  4791. package/dist/visualizations/types.d.js +0 -0
  4792. package/dist/visualizations/types.d.ts +187 -0
  4793. package/dist/visualizations/types.js +1 -0
  4794. package/dist/workflow/adapters/db-adapter.d.ts +43 -0
  4795. package/dist/workflow/adapters/db-adapter.js +1 -0
  4796. package/dist/workflow/adapters/file-adapter.d.ts +10 -0
  4797. package/dist/workflow/adapters/file-adapter.js +1 -0
  4798. package/dist/workflow/adapters/index.d.ts +3 -0
  4799. package/dist/workflow/adapters/index.js +1 -0
  4800. package/dist/workflow/adapters/memory-store.d.ts +13 -0
  4801. package/dist/workflow/adapters/memory-store.js +1 -0
  4802. package/dist/workflow/context.d.ts +217 -0
  4803. package/dist/workflow/context.js +1 -0
  4804. package/dist/workflow/dag-utils.d.ts +18 -0
  4805. package/dist/workflow/dag-utils.js +1 -0
  4806. package/dist/workflow/expression.d.ts +6 -0
  4807. package/dist/workflow/expression.js +1 -0
  4808. package/dist/workflow/index.d.ts +10 -0
  4809. package/dist/workflow/index.js +1 -0
  4810. package/dist/workflow/runner.d.ts +103 -0
  4811. package/dist/workflow/runner.js +1 -0
  4812. package/dist/workflow/sla-monitor.d.ts +16 -0
  4813. package/dist/workflow/sla-monitor.js +1 -0
  4814. package/dist/workflow/spec.d.js +0 -0
  4815. package/dist/workflow/spec.d.ts +203 -0
  4816. package/dist/workflow/spec.js +1 -0
  4817. package/dist/workflow/state.d.ts +46 -0
  4818. package/dist/workflow/state.js +0 -0
  4819. package/dist/workflow/validation-workflow-devkit.d.ts +3 -0
  4820. package/dist/workflow/validation-workflow-devkit.js +1 -0
  4821. package/dist/workflow/validation.d.ts +93 -0
  4822. package/dist/workflow/validation.js +1 -0
  4823. package/dist/workflow/workflow-devkit.d.js +0 -0
  4824. package/dist/workflow/workflow-devkit.d.ts +74 -0
  4825. package/dist/workflow/workflow-devkit.js +0 -0
  4826. package/dist/workflow/workflow-sdk.d.ts +8 -0
  4827. package/dist/workflow/workflow-sdk.js +1 -0
  4828. package/dist/workspace-config/contractsrc-schema.d.ts +226 -0
  4829. package/dist/workspace-config/contractsrc-schema.js +1 -0
  4830. package/dist/workspace-config/contractsrc-types.d.ts +707 -0
  4831. package/dist/workspace-config/contractsrc-types.js +0 -0
  4832. package/dist/workspace-config/environment-validation-alias.d.ts +3 -0
  4833. package/dist/workspace-config/environment-validation-alias.js +1 -0
  4834. package/dist/workspace-config/environment-validation.d.ts +4 -0
  4835. package/dist/workspace-config/environment-validation.js +1 -0
  4836. package/dist/workspace-config/environment.d.ts +77 -0
  4837. package/dist/workspace-config/environment.js +1 -0
  4838. package/dist/workspace-config/index.d.ts +13 -0
  4839. package/dist/workspace-config/index.js +1 -0
  4840. package/dist/workspace-config/lssm-os-config.fixture.d.ts +2 -0
  4841. package/dist/workspace-config/lssm-os-config.fixture.js +1 -0
  4842. package/dist/workspace-config/lssm-os-constraints.d.ts +14 -0
  4843. package/dist/workspace-config/lssm-os-constraints.js +1 -0
  4844. package/dist/workspace-config/lssm-os-extension-schema.d.ts +3 -0
  4845. package/dist/workspace-config/lssm-os-extension-schema.js +1 -0
  4846. package/dist/workspace-config/lssm-os-inheritance.d.ts +3 -0
  4847. package/dist/workspace-config/lssm-os-inheritance.js +1 -0
  4848. package/dist/workspace-config/lssm-os-policy-merge.d.ts +3 -0
  4849. package/dist/workspace-config/lssm-os-policy-merge.js +1 -0
  4850. package/dist/workspace-config/lssm-os-provider-merge.d.ts +3 -0
  4851. package/dist/workspace-config/lssm-os-provider-merge.js +1 -0
  4852. package/dist/workspace-config/lssm-os-schema.d.ts +20 -0
  4853. package/dist/workspace-config/lssm-os-schema.js +1 -0
  4854. package/dist/workspace-config/lssm-os-secrets.d.ts +2 -0
  4855. package/dist/workspace-config/lssm-os-secrets.js +1 -0
  4856. package/dist/workspace-config/lssm-os-types.d.ts +125 -0
  4857. package/dist/workspace-config/lssm-os-types.js +1 -0
  4858. package/package.json +22130 -0
@@ -0,0 +1 @@
1
+ export*from"./decisioning.feature.js";export*from"./evaluation.js";export*from"./evaluation-events.js";export*from"./evaluation-evidence-administration.js";export*from"./evaluation-evidence-administration-operations.js";export*from"./evaluation-evidence-administration-schemas.js";export*from"./evaluation-input-schemas.js";export*from"./evaluation-output-schemas.js";export*from"./lifecycle.js";export*from"./lifecycle-events.js";export*from"./lifecycle-operations.js";export*from"./operations.js";export*from"./predicate.js";export*from"./predicate-evaluation.js";export*from"./types.js";export*from"./validation.js";
File without changes
@@ -0,0 +1 @@
1
+ import{EnumType as s,ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as c}from"../events.js";import{DECISION_DEFINITION_LIFECYCLES as a}from"./lifecycle.js";const d=new s("DecisionLifecycleEventState",[...a]);export const DecisionLifecycleEventPayloadModel=new t({name:"DecisionLifecycleEventPayloadV1",fields:{graphRef:{type:e.ID(),isOptional:!1},lifecycle:{type:d,isOptional:!1},draftRevision:{type:e.Int_unsecure(),isOptional:!1},publishedRevision:{type:e.Int_unsecure(),isOptional:!0},receiptRef:{type:e.ID(),isOptional:!1}}});const i=(o,n)=>c({meta:{key:o,version:"1.0.0",title:n,description:n,domain:"decisioning",owners:["platform.core"],tags:["decisioning","lifecycle","audit"],stability:"experimental"},payload:DecisionLifecycleEventPayloadModel,pii:[]});export const decisionLifecycleEvents=[i("decision.definition.created","Decision definition created"),i("decision.draft.saved","Decision draft saved"),i("decision.revision.published","Decision revision published"),i("decision.definition.archived","Decision definition archived")];
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as i,SchemaModel as o}from"@lssm/lib.schema";const a={graphRef:{type:i.ID(),isOptional:!1},document:{type:i.JSONObject(),isOptional:!1},idempotencyKey:{type:i.ID(),isOptional:!1}};function r(e,s,t){for(const n of t)if(typeof e[n]!=="string"||!e[n].trim()||e[n].length>200)s.addIssue({code:"custom",path:[n],message:`${n} must be bounded`})}function d(e,s){const t=e.graphRef;if(typeof t!=="string"||!t.trim()||t.length>200||!/^[A-Za-z0-9][A-Za-z0-9._:-]*$/.test(t))s.addIssue({code:"custom",path:["graphRef"],message:"graphRef must be a canonical bounded identifier"})}class p extends o{getZod(){return super.getZod().strict().superRefine((e,s)=>{d(e,s);r(e,s,["idempotencyKey"])})}}export const DecisionDefinitionCreateInputModel=new p({name:"DecisionDefinitionCreateInputV2",fields:a});const u={...a,expectedDraftRevision:{type:i.Int_unsecure(),isOptional:!1}};class c extends o{getZod(){return super.getZod().strict().superRefine((e,s)=>{d(e,s);r(e,s,["idempotencyKey"]);const t=e.expectedDraftRevision;if(typeof t!=="number"||!Number.isSafeInteger(t)||t<0)s.addIssue({code:"custom",path:["expectedDraftRevision"],message:"expectedDraftRevision must be non-negative"})})}}export const DecisionDraftSaveInputModel=new c({name:"DecisionDraftSaveInputV2",fields:u});const l={graphRef:{type:i.ID(),isOptional:!1},expectedDraftRevision:{type:i.Int_unsecure(),isOptional:!1},idempotencyKey:{type:i.ID(),isOptional:!1}};class f extends o{getZod(){return super.getZod().strict().superRefine((e,s)=>{d(e,s);r(e,s,["idempotencyKey"]);const t=e.expectedDraftRevision;if(typeof t!=="number"||!Number.isSafeInteger(t)||t<0)s.addIssue({code:"custom",path:["expectedDraftRevision"],message:"expectedDraftRevision must be non-negative"})})}}export const DecisionDefinitionStateInputModel=new f({name:"DecisionDefinitionStateInputV2",fields:l});const m={graphRef:{type:i.ID(),isOptional:!1}};export const DecisionDefinitionGetInputModel=new class extends o{getZod(){return super.getZod().strict().superRefine(d)}}({name:"DecisionDefinitionGetInputV2",fields:m});const g={limit:{type:i.Int_unsecure(),isOptional:!1},cursor:{type:i.String_unsecure(),isOptional:!0},watermark:{type:i.String_unsecure(),isOptional:!0}};export const DecisionDefinitionListInputModel=new class extends o{getZod(){return super.getZod().strict().superRefine((e,s)=>{for(const t of["cursor","watermark"])if(typeof e[t]==="string"&&e[t].length>2000)s.addIssue({code:"custom",path:[t],message:`${t} must be bounded`})}).refine((e)=>typeof e.limit==="number"&&e.limit>=1&&e.limit<=100,{message:"limit must be between 1 and 100"})}}({name:"DecisionDefinitionListInputV2",fields:g});
@@ -0,0 +1 @@
1
+ export*from"./lifecycle-input-schemas.js";export*from"./lifecycle-output-schemas.js";
@@ -0,0 +1,7 @@
1
+ import{docRef as a}from"../docs/registry.js";import{defineCommand as t,defineQuery as s}from"../operations/index.js";import{DecisionDefinitionCreateInputModel as d,DecisionDefinitionGetInputModel as p,DecisionDefinitionListInputModel as u,DecisionDefinitionStateInputModel as c,DecisionDraftSaveInputModel as f}from"./lifecycle-input-schemas.js";import{DecisionDefinitionGetOutputModel as D,DecisionDefinitionListOutputModel as l,DecisionLifecycleMutationOutputModel as o}from"./lifecycle-output-schemas.js";export*from"./lifecycle-input-schemas.js";export*from"./lifecycle-output-schemas.js";export const DecisionLifecycleDocBlock={id:"decision-lifecycle-v2",title:"Decision lifecycle v2",summary:"Revision-fenced drafts and immutable, digest-pinned DecisionGraph publications.",kind:"reference",visibility:"public",route:"/docs/platform/decision-lifecycle-v2",tags:["decisioning","supportos","revisioning","audit"],body:`# Decision lifecycle v2
2
+
3
+ Decision definitions are workspace-scoped by authenticated server context. Draft
4
+ mutations use optimistic revision fencing and stable idempotency keys. Publishing
5
+ creates an immutable digest-pinned revision; editing never mutates a published
6
+ revision. Lists use fixed watermarks and keyset cursors. Creator JavaScript and
7
+ business effects are not accepted or executed.`},DecisionLifecycleDocRef=a(DecisionLifecycleDocBlock.id);const i=(r,n)=>({key:r,version:"2.0.0",title:n,description:n,goal:n,context:"Decision lifecycle is scope-derived, revision-fenced, and effect-free.",domain:"decisioning",owners:["platform.core"],tags:["decisioning","lifecycle"],stability:"experimental",docs:[DecisionLifecycleDocRef]}),e={NOT_FOUND:{description:"Decision definition was not found.",http:404},SCOPE_DENIED:{description:"Decision authority was denied.",http:403},POLICY_DENIED:{description:"Decision lifecycle policy denied the mutation.",http:403},REVISION_CONFLICT:{description:"Draft revision is stale.",http:409},IDEMPOTENCY_CONFLICT:{description:"Retry input changed.",http:409},VALIDATION_FAILED:{description:"Decision input or graph is invalid.",http:422},DEPENDENCY_DEGRADED:{description:"Decision authority is unavailable.",http:503}};export const DecisionDefinitionCreateCommand=t({meta:i("decision.definition.create","Create decision definition"),io:{input:d,output:o,errors:e},policy:{auth:"user",pii:[]}}),DecisionDraftSaveCommand=t({meta:i("decision.draft.save","Save decision draft"),io:{input:f,output:o,errors:e},policy:{auth:"user",pii:[]}}),DecisionDefinitionPublishCommand=t({meta:i("decision.definition.publish","Publish decision revision"),io:{input:c,output:o,errors:e},policy:{auth:"user",pii:[]}}),DecisionDefinitionArchiveCommand=t({meta:i("decision.definition.archive","Archive decision definition"),io:{input:c,output:o,errors:e},policy:{auth:"user",pii:[]}}),DecisionDefinitionGetQuery=s({meta:i("decision.definition.get","Get decision definition"),io:{input:p,output:D,errors:e},policy:{auth:"user",pii:[]}}),DecisionDefinitionListQuery=s({meta:i("decision.definition.list","List decision definitions"),io:{input:u,output:l,errors:e},policy:{auth:"user",pii:[]}}),decisionLifecycleOperations=[DecisionDefinitionCreateCommand,DecisionDraftSaveCommand,DecisionDefinitionPublishCommand,DecisionDefinitionArchiveCommand,DecisionDefinitionGetQuery,DecisionDefinitionListQuery];
@@ -0,0 +1 @@
1
+ import{EnumType as n,ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{DECISION_DEFINITION_LIFECYCLES as o}from"./lifecycle.js";const i={graphRef:{type:e.ID(),isOptional:!1},lifecycle:{type:new n("DecisionDefinitionProjectionLifecycle",[...o]),isOptional:!1},draftRevision:{type:e.Int_unsecure(),isOptional:!1},publishedRevision:{type:e.Int_unsecure(),isOptional:!0},draft:{type:e.JSONObject(),isOptional:!1},createdAt:{type:e.String_unsecure(),isOptional:!1},updatedAt:{type:e.String_unsecure(),isOptional:!1}};export const DecisionDefinitionProjectionModel=new class extends t{getZod(){return super.getZod().strict()}}({name:"DecisionDefinitionProjectionV2",fields:i});const l=(({draft:d,...s})=>s)(i);export const DecisionDefinitionSummaryModel=new class extends t{getZod(){return super.getZod().strict()}}({name:"DecisionDefinitionSummaryV2",fields:l});const p={graphKey:{type:e.ID(),isOptional:!1},revision:{type:e.Int_unsecure(),isOptional:!1},digest:{type:e.String_unsecure(),isOptional:!1},document:{type:e.JSONObject(),isOptional:!1},publishedAt:{type:e.String_unsecure(),isOptional:!1},publishedByRef:{type:e.ID(),isOptional:!1}};export const DecisionGraphRevisionOutputModel=new class extends t{getZod(){return super.getZod().strict()}}({name:"DecisionGraphRevisionOutputV2",fields:p});const a={definition:{type:DecisionDefinitionProjectionModel,isOptional:!1},receiptRef:{type:e.ID(),isOptional:!1},eventRef:{type:e.String_unsecure(),isOptional:!1},publishedRevision:{type:DecisionGraphRevisionOutputModel,isOptional:!0}};export const DecisionLifecycleMutationOutputModel=new t({name:"DecisionLifecycleMutationOutputV2",fields:a});const u={definition:{type:DecisionDefinitionProjectionModel,isOptional:!1}};export const DecisionDefinitionGetOutputModel=new t({name:"DecisionDefinitionGetOutputV2",fields:u});const r={items:{type:DecisionDefinitionSummaryModel,isOptional:!1,isArray:!0},nextCursor:{type:e.String_unsecure(),isOptional:!0},watermark:{type:e.String_unsecure(),isOptional:!1}};export const DecisionDefinitionListOutputModel=new t({name:"DecisionDefinitionListOutputV2",fields:r});
File without changes
@@ -0,0 +1 @@
1
+ export const DECISION_DEFINITION_LIFECYCLES=["draft","published","archived"];
File without changes
@@ -0,0 +1 @@
1
+ export const decisionOperationMetaV1=(e,i)=>({key:e,version:"1.0.0",title:i,description:i,goal:i,context:"Decision graphs are revision-pinned, deterministic, and effect-free.",domain:"decisioning",owners:["platform.core"],tags:["decisioning","deterministic"],stability:"experimental"}),decisionOperationMetaV2=(e,i)=>({...decisionOperationMetaV1(e,i),version:"2.0.0",tags:["decisioning","deterministic","v2"]}),decisionOperationErrorsV1={INVALID_GRAPH:{description:"The graph is invalid.",http:422},REVISION_NOT_FOUND:{description:"The pinned revision was not found.",http:404},DIGEST_MISMATCH:{description:"Replay evidence does not match.",http:409},EVALUATION_LIMIT:{description:"Evaluation exceeded a safe bound.",http:422}},decisionOperationErrorsV2={NOT_FOUND:{description:"Decision evidence was not found.",http:404},SCOPE_DENIED:{description:"Decision authority was denied.",http:403},POLICY_DENIED:{description:"Decision policy denied the operation.",http:403},REVISION_CONFLICT:{description:"The pinned revision changed during the operation.",http:409},VALIDATION_FAILED:{description:"The graph or input is invalid.",http:422},IDEMPOTENCY_CONFLICT:{description:"Retry input changed.",http:409},DEPENDENCY_DEGRADED:{description:"Decision authority is unavailable.",http:503},FEATURE_DISABLED:{description:"Decisioning is disabled.",http:404}};
File without changes
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as o}from"@lssm/lib.schema";import{defineCommand as i,defineQuery as y}from"../operations/index.js";import{decisionEvidenceAdministrationOperations as V}from"./evaluation-evidence-administration-operations.js";import{DecisionCompareInputModelV2 as f,DecisionEvaluationInputModelV2 as v,DecisionReplayInputModelV2 as D,DecisionRevisionInputModelV2 as O,DecisionSimulationInputModelV2 as x}from"./evaluation-input-schemas.js";import{DecisionAuthoritativeEvaluationOutputModelV2 as h,DecisionCompareOutputModelV2 as E,DecisionReplayOutputModelV2 as C,DecisionSimulationOutputModelV2 as I,DecisionValidationOutputModelV2 as R}from"./evaluation-output-schemas.js";import{decisionLifecycleOperations as p}from"./lifecycle-operations.js";import{decisionOperationErrorsV1 as c,decisionOperationErrorsV2 as t,decisionOperationMetaV1 as r,decisionOperationMetaV2 as n}from"./operation-metadata.js";const S=new o({name:"DecisionRevisionInputV1",fields:{graphRef:{type:e.String_unsecure(),isOptional:!1},revision:{type:e.Int_unsecure(),isOptional:!1}}}),u=new o({name:"DecisionEvaluationInputV1",fields:{graphRef:{type:e.ID(),isOptional:!1},revision:{type:e.Int_unsecure(),isOptional:!1},inputs:{type:e.JSONObject(),isOptional:!1}}}),g=new o({name:"DecisionReplayInputV1",fields:{evaluationRef:{type:e.ID(),isOptional:!1}}}),M=new o({name:"DecisionCompareInputV1",fields:{graphRef:{type:e.ID(),isOptional:!1},fromRevision:{type:e.Int_unsecure(),isOptional:!1},toRevision:{type:e.Int_unsecure(),isOptional:!1}}}),l=new o({name:"DecisionOperationOutputV1",fields:{status:{type:e.String_unsecure(),isOptional:!1},result:{type:e.JSONObject(),isOptional:!1},traceRef:{type:e.String_unsecure(),isOptional:!0}}}),s=(a,d,m)=>y({meta:r(a,d),io:{input:m,output:l,errors:c},policy:{auth:"user",pii:a==="decision.simulate"?["inputs"]:[]}});export const DecisionValidateQueryV1=s("decision.validate","Validate decision graph",S),DecisionSimulateQueryV1=s("decision.simulate","Simulate decision graph",u),DecisionEvaluateCommandV1=i({meta:r("decision.evaluate","Evaluate decision graph"),io:{input:u,output:l,errors:c},policy:{auth:"user",pii:["inputs"]}}),DecisionReplayQueryV1=s("decision.replay","Replay decision evaluation",g),DecisionCompareQueryV1=s("decision.compare","Compare decision revisions",M),DecisionValidateQuery=DecisionValidateQueryV1,DecisionSimulateQuery=DecisionSimulateQueryV1,DecisionEvaluateCommand=DecisionEvaluateCommandV1,DecisionReplayQuery=DecisionReplayQueryV1,DecisionCompareQuery=DecisionCompareQueryV1,DecisionValidateCommandV2=i({meta:n("decision.validate","Validate decision graph"),io:{input:O,output:R,errors:t},policy:{auth:"user",pii:[]},sideEffects:{audit:["decision.validation.completed"]}}),DecisionSimulateCommandV2=i({meta:n("decision.simulate","Simulate decision graph"),io:{input:x,output:I,errors:t},policy:{auth:"user",pii:["inputs"]},sideEffects:{audit:["decision.simulation.completed"]}}),DecisionEvaluateCommandV2=i({meta:n("decision.evaluate","Evaluate decision graph"),io:{input:v,output:h,errors:t},policy:{auth:"user",pii:["inputs"]},sideEffects:{audit:["decision.evaluation.completed"]}}),DecisionReplayCommandV2=i({meta:n("decision.replay","Replay decision evaluation"),io:{input:D,output:C,errors:t},policy:{auth:"user",pii:[]},sideEffects:{audit:["decision.replay.verified"]}}),DecisionCompareCommandV2=i({meta:n("decision.compare","Compare decision revisions"),io:{input:f,output:E,errors:t},policy:{auth:"user",pii:[]},sideEffects:{audit:["decision.revisions.compared"]}}),DecisionValidateQueryV2=DecisionValidateCommandV2,DecisionSimulateQueryV2=DecisionSimulateCommandV2,DecisionReplayQueryV2=DecisionReplayCommandV2,DecisionCompareQueryV2=DecisionCompareCommandV2,decisionEvaluationOperationVersions={"decision.validate":{"1.0.0":DecisionValidateQueryV1,"2.0.0":DecisionValidateCommandV2},"decision.simulate":{"1.0.0":DecisionSimulateQueryV1,"2.0.0":DecisionSimulateCommandV2},"decision.evaluate":{"1.0.0":DecisionEvaluateCommandV1,"2.0.0":DecisionEvaluateCommandV2},"decision.replay":{"1.0.0":DecisionReplayQueryV1,"2.0.0":DecisionReplayCommandV2},"decision.compare":{"1.0.0":DecisionCompareQueryV1,"2.0.0":DecisionCompareCommandV2}},decisionEvaluationOperations=[DecisionValidateCommandV2,DecisionSimulateCommandV2,DecisionEvaluateCommandV2,DecisionReplayCommandV2,DecisionCompareCommandV2],decisionEvaluationOperationsV1=[DecisionValidateQueryV1,DecisionSimulateQueryV1,DecisionEvaluateCommandV1,DecisionReplayQueryV1,DecisionCompareQueryV1],decisionOperations=[...decisionEvaluationOperationsV1,...p],decisionOperationsV2=[...decisionEvaluationOperations,...V,...p];
@@ -0,0 +1 @@
1
+ function i(t,n){let e=t;for(const s of n.split(".")){if(e===null||typeof e!=="object")return;e=e[s]}return e}function h(t,n){const e=t.op??"truthy";if(e==="equals")return n===t.value;if(e==="notEquals")return n!==t.value;if(e==="truthy")return Boolean(n);if(e==="empty")return n==null||(Array.isArray(n)?n.length===0:String(n).length===0);if(e==="in")return Array.isArray(t.value)&&t.value.includes(n);if(e==="notIn")return Array.isArray(t.value)&&!t.value.includes(n);if(e.startsWith("length")){if(!Array.isArray(n)&&typeof n!=="string")return!1;const o=Number(t.value??0);if(e==="lengthGt")return n.length>o;if(e==="lengthGte")return n.length>=o;if(e==="lengthLt")return n.length<o;return n.length<=o}const s=Number(n),r=Number(t.value);if(e==="gt")return s>r;if(e==="gte")return s>=r;if(e==="lt")return s<r;return s<=r}export function evaluatePredicateSpec(t,n,e=(s)=>s){if(t.when){const r=e(t.when.path);return{matched:h(t.when,i(n,r)),accessedPaths:[r]}}const s=t.all??t.anyOf;if(s?.length){const r=s.map((o)=>evaluatePredicateSpec(o,n,e));return{matched:t.all?r.every((o)=>o.matched):r.some((o)=>o.matched),accessedPaths:[...new Set(r.flatMap((o)=>o.accessedPaths))]}}if(t.not){const r=evaluatePredicateSpec(t.not,n,e);return{matched:!r.matched,accessedPaths:r.accessedPaths}}return{matched:!0,accessedPaths:[]}}
File without changes
@@ -0,0 +1 @@
1
+ const o=new Set(["equals","notEquals","in","notIn","gt","gte","lt","lte","lengthGt","lengthGte","lengthLt","lengthLte"]);export function validatePredicateSpec(e,n="predicate"){const l=[e.when,e.all,e.anyOf,e.not].filter((t)=>t!==void 0).length;if(l===0)return[{path:n,code:"empty",message:"Predicate must declare one branch."}];if(l>1)return[{path:n,code:"ambiguous",message:"Predicate branches are mutually exclusive."}];if(e.when){const t=[];if(!e.when.path.trim())t.push({path:`${n}.when.path`,code:"invalid-path",message:"Predicate path is required."});const a=e.when.op??"truthy";if(o.has(a)&&e.when.value===void 0)t.push({path:`${n}.when.value`,code:"missing-value",message:`${a} requires a value.`});return t}const r=e.all??e.anyOf;if(r){if(r.length===0)return[{path:n,code:"empty-group",message:"Predicate groups cannot be empty."}];return r.flatMap((t,a)=>validatePredicateSpec(t,`${n}.${e.all?"all":"anyOf"}[${a}]`))}return e.not?validatePredicateSpec(e.not,`${n}.not`):[]}
@@ -0,0 +1 @@
1
+ export{};
File without changes
@@ -0,0 +1 @@
1
+ export const DECISION_GRAPH_LIMITS={maxNodes:1000,maxEdges:5000,maxTableRows:2000,maxPredicateDepth:32,maxPredicateNodes:2000,maxVisitedNodes:1000,maxOutcomeKeyLength:200},DECISION_GRAPH_DIAGNOSTIC_CODES=["duplicate-node","duplicate-edge","duplicate-table-row","duplicate-outcome","missing-entry","unknown-node","cycle","unreachable-node","missing-outcome","ambiguous-default","incomplete-branch","invalid-input-path","invalid-policy","limit-exceeded","invalid-predicate","invalid-edge","locale-catalog-missing"];export function decisionGraphIssue(e,i,a){return{code:e,path:i,message:a}}
File without changes
@@ -0,0 +1 @@
1
+ import{validatePredicateSpec as p}from"./predicate.js";import{DECISION_GRAPH_LIMITS as r,decisionGraphIssue as d}from"./validation-diagnostics.js";export function uniqueDecisionIds(i,n,e,a){const t=new Set;for(const[c,s]of i.entries()){if(t.has(s.id))a.push(d(e,`${n}[${c}].id`,`Duplicate ${n==="nodes"?"node":"edge"} ${s.id}.`));t.add(s.id)}return t}export function validateDecisionLimits(i,n){const e=r;if(i.nodes.length>e.maxNodes)n.push(d("limit-exceeded","nodes",`Graph exceeds ${e.maxNodes} nodes.`));if(i.edges.length>e.maxEdges)n.push(d("limit-exceeded","edges",`Graph exceeds ${e.maxEdges} edges.`));if(i.nodes.reduce((c,s)=>c+(s.kind==="decision-table"?s.rows.length:0),0)>e.maxTableRows)n.push(d("limit-exceeded","nodes",`Graph exceeds ${e.maxTableRows} decision-table rows.`));const t=i.policy?.maxVisitedNodes;if(t!==void 0&&(!Number.isSafeInteger(t)||t<1||t>e.maxVisitedNodes))n.push(d("invalid-policy","policy.maxVisitedNodes",`maxVisitedNodes must be an integer from 1 to ${e.maxVisitedNodes}.`));for(const[c,s]of(i.policy?.allowedInputPaths??[]).entries())if(!s.trim()||s.length>256)n.push(d("invalid-policy",`policy.allowedInputPaths[${c}]`,"Allowed input paths must contain 1 to 256 characters."))}export function validateDecisionPredicate(i,n,e,a,t){if(t.exceeded)return;const c=[{value:i,depth:1}],s=new WeakSet;while(c.length>0){const o=c.pop();if(!o)break;if(s.has(o.value)){a.push(d("invalid-predicate",n,"Predicate must be an acyclic tree."));return}s.add(o.value);t.count+=1;if(o.depth>r.maxPredicateDepth||t.count>r.maxPredicateNodes){t.exceeded=!0;a.push(d("limit-exceeded",n,"Predicate exceeds deterministic complexity limits."));break}if(o.value.when)validateDecisionInputPath(o.value.when.path,`${n}.when.path`,e,a);for(const l of o.value.all??o.value.anyOf??[])c.push({value:l,depth:o.depth+1});if(o.value.not)c.push({value:o.value.not,depth:o.depth+1})}for(const o of p(i,n))a.push(d("invalid-predicate",o.path,o.message))}export function validateDecisionInputPath(i,n,e,a){if(e&&!e.has(i))a.push(d("invalid-input-path",n,`Input path ${i} is not allowlisted.`))}export function addDecisionTarget(i,n,e,a,t){if(!e.has(i))t.push(d("unknown-node",n,`Unknown node ${i}.`));a?.add(i)}export function validateTotalBranches(i,n){for(const e of i.nodes){const a=i.edges.filter((t)=>t.from===e.id&&!t.predicate&&!t.subgraphOutcomeKey);if(a.length>1)n.push(d("ambiguous-default",`nodes.${e.id}`,"A node can have at most one default edge."));if(!i.policy?.requireTotalBranches)continue;if(e.kind==="decision-table"&&!e.defaultTargetNodeId)n.push(d("incomplete-branch",`nodes.${e.id}`,"A total decision table requires a default target."));if((e.kind==="branch"||e.kind==="input")&&a.length===0)n.push(d("incomplete-branch",`nodes.${e.id}`,"A total branch requires a default edge."))}}
File without changes
@@ -0,0 +1 @@
1
+ import{DECISION_GRAPH_LIMITS as c,decisionGraphIssue as t}from"./validation-diagnostics.js";export function validateDecisionEdgeShape(e,i,o,a){if(i?.kind==="decision-table"||i?.kind==="outcome")a.push(t("invalid-edge",`edges[${o}].from`,`${i.kind} nodes cannot declare graph edges.`));if(i?.kind==="subgraph"&&e.predicate)a.push(t("invalid-edge",`edges[${o}].predicate`,"Subgraph routing cannot declare predicates."));if(e.subgraphOutcomeKey&&i?.kind!=="subgraph")a.push(t("invalid-edge",`edges[${o}].subgraphOutcomeKey`,"A subgraph outcome edge must originate from a subgraph node."));if(e.subgraphOutcomeKey&&e.predicate)a.push(t("invalid-edge",`edges[${o}]`,"A subgraph outcome edge cannot also declare a predicate."))}export function validateDecisionNodeIdentity(e,i,o){if(!/^[A-Za-z0-9][A-Za-z0-9._:-]{0,199}$/.test(e.id))o.push(t("limit-exceeded",`nodes[${i}].id`,"Node IDs must be canonical references of 1 to 200 characters."));if(e.kind==="outcome"&&(!e.outcomeKey.trim()||e.outcomeKey.length>c.maxOutcomeKeyLength))o.push(t("limit-exceeded",`nodes[${i}].outcomeKey`,`Outcome keys must contain 1 to ${c.maxOutcomeKeyLength} characters.`))}
@@ -0,0 +1 @@
1
+ export{DECISION_GRAPH_DIAGNOSTIC_CODES,DECISION_GRAPH_LIMITS}from"./validation-diagnostics.js";
@@ -0,0 +1 @@
1
+ import{decisionGraphIssue as r}from"./validation-diagnostics.js";import{addDecisionTarget as f,uniqueDecisionIds as u,validateDecisionInputPath as y,validateDecisionLimits as w,validateDecisionPredicate as h,validateTotalBranches as I}from"./validation-policy.js";import{validateDecisionEdgeShape as m,validateDecisionNodeIdentity as v}from"./validation-shape.js";export{DECISION_GRAPH_DIAGNOSTIC_CODES,DECISION_GRAPH_LIMITS}from"./validation-diagnostics.js";export function validateDecisionGraph(i){const e=[],a=u(i.nodes,"nodes","duplicate-node",e);u(i.edges,"edges","duplicate-edge",e);w(i,e);if(!a.has(i.entryNodeId))e.push(r("missing-entry","entryNodeId","Entry node is not declared."));const t=new Map(i.nodes.map((n)=>[n.id,new Set])),d=i.policy?.allowedInputPaths?new Set(i.policy.allowedInputPaths):void 0,s={count:0};for(const[n,o]of i.edges.entries()){if(!a.has(o.from)||!a.has(o.to))e.push(r("unknown-node",`edges[${n}]`,`Edge ${o.id} references an unknown node.`));t.get(o.from)?.add(o.to);const g=i.nodes.find((l)=>l.id===o.from);m(o,g,n,e);if(o.predicate)h(o.predicate,`edges[${n}].predicate`,d,e,s)}const c=new Set;for(const[n,o]of i.nodes.entries()){v(o,n,e);if(o.kind==="input")y(o.path,`nodes[${n}].path`,d,e);if(o.kind==="outcome"){if(c.has(o.outcomeKey))e.push(r("duplicate-outcome",`nodes[${n}].outcomeKey`,`Duplicate outcome key ${o.outcomeKey}.`));c.add(o.outcomeKey)}if(o.kind!=="decision-table")continue;const g=new Set;for(const[l,p]of o.rows.entries()){if(g.has(p.id))e.push(r("duplicate-table-row",`nodes[${n}].rows[${l}].id`,`Duplicate table row ${p.id}.`));g.add(p.id);h(p.predicate,`nodes[${n}].rows[${l}].predicate`,d,e,s);f(p.targetNodeId,`nodes[${n}].rows[${l}].targetNodeId`,a,t.get(o.id),e)}if(o.defaultTargetNodeId)f(o.defaultTargetNodeId,`nodes[${n}].defaultTargetNodeId`,a,t.get(o.id),e)}I(i,e);S(t,e);const D=G(i.entryNodeId,t);for(const n of i.nodes)if(!D.has(n.id))e.push(r("unreachable-node",`nodes.${n.id}`,`Node ${n.id} is unreachable.`));if(c.size===0)e.push(r("missing-outcome","nodes","A graph requires at least one outcome node."));N(i,e);return e}export function assertDecisionGraphValid(i){const e=validateDecisionGraph(i);if(e.length>0)throw Error(`Decision graph ${i.key} is invalid: ${e.map((a)=>a.message).join(" ")}`)}function G(i,e){const a=new Set,t=[i];while(t.length>0){const d=t.pop();if(!d||a.has(d))continue;a.add(d);for(const s of e.get(d)??[])t.push(s)}return a}function S(i,e){const a=new Set,t=new Set,d=(s)=>{if(t.has(s)){e.push(r("cycle",`nodes.${s}`,`Cycle detected at ${s}.`));return}if(a.has(s))return;t.add(s);for(const c of i.get(s)??[])d(c);t.delete(s);a.add(s)};for(const s of i.keys())d(s)}function N(i,e){if(!i.localeCatalogs||!i.defaultLocale)return;if(!i.localeCatalogs[i.defaultLocale]){e.push(r("locale-catalog-missing","defaultLocale","Default locale catalog is missing."));return}const a=new Set(i.nodes.map((t)=>t.labelI18n).filter((t)=>Boolean(t)));for(const[t,d]of Object.entries(i.localeCatalogs))for(const s of a)if(!(s in d))e.push(r("locale-catalog-missing",`localeCatalogs.${t}.${s}`,`Locale ${t} is missing ${s}.`))}
@@ -0,0 +1 @@
1
+ import{sha256Hex as f}from"@lssm/lib.crypto-utils";import{z as r}from"zod";import{canonicalJsonString as m}from"../rich-reference/canonical-serializer.js";import{addDeliveryDuplicateIssue as s,DELIVERY_RISK_TIERS as y,deliveryDigestSchema as u,deliveryRefSchema as t,deliveryRiskDimensionSchema as R,deliveryRiskTierSchema as v,deliveryTimestampSchema as l}from"./primitives.js";export const DELIVERY_TENANT_POLICY_V1="contractspec.delivery.tenant-policy.v1",OWNERSHIP_ROLES_V1=["intent","contract","code","quality","security_compliance","infrastructure","release","outcome"],ownershipRoleV1Schema=r.enum(OWNERSHIP_ROLES_V1),ownershipPrincipalKindV1Schema=r.enum(["human","team","service","agent"]),ownershipBindingV1Schema=r.object({id:t,role:ownershipRoleV1Schema,principalRef:t,principalKind:ownershipPrincipalKindV1Schema,scopeRefs:r.array(t).min(1),authoritySource:r.enum(["direct","delegated"]),parentBindingRef:t.optional(),grantedByRef:t,connectDecisionRef:t,evidenceRefs:r.array(t).min(1),validFrom:l,expiresAt:l.optional(),status:r.enum(["active","revoked"]),revokedAt:l.optional(),revocationEvidenceRef:t.optional()}).strict().superRefine((e,i)=>{s(e.scopeRefs,["scopeRefs"],i);s(e.evidenceRefs,["evidenceRefs"],i);if(e.authoritySource==="delegated"){if(!e.parentBindingRef)c("parentBindingRef",i);if(!e.expiresAt)c("expiresAt",i)}else if(e.parentBindingRef)i.addIssue({code:"custom",path:["parentBindingRef"],message:"Direct ownership cannot name a parent binding"});if(e.status==="revoked"){if(!e.revokedAt)c("revokedAt",i);if(!e.revocationEvidenceRef)c("revocationEvidenceRef",i)}else if(e.revokedAt||e.revocationEvidenceRef)i.addIssue({code:"custom",path:["status"],message:"Active ownership cannot carry revocation evidence"});if(e.expiresAt&&Date.parse(e.expiresAt)<=Date.parse(e.validFrom))i.addIssue({code:"custom",path:["expiresAt"],message:"Ownership expiry must be after its valid-from time"})}),riskRuleSchema=r.object({id:t,priority:r.number().int().nonnegative(),tiers:r.array(v).min(1),dimensions:r.array(R).min(1),effect:r.enum(["allow_qualified","require_review","deny"]),requiredOwnerRoles:r.array(ownershipRoleV1Schema).min(1),policyRef:t}).strict().superRefine((e,i)=>{s(e.tiers,["tiers"],i);s(e.dimensions,["dimensions"],i);s(e.requiredOwnerRoles,["requiredOwnerRoles"],i)});const d={schemaVersion:r.literal(DELIVERY_TENANT_POLICY_V1),tenantRef:t,revision:r.number().int().positive(),mode:r.enum(["manual","risk_tiered","fully_autonomous"]),ownerBindings:r.array(ownershipBindingV1Schema).min(OWNERSHIP_ROLES_V1.length),riskRules:r.array(riskRuleSchema).min(1),qualityProfileRef:t,allowedEnvironmentRefs:r.array(t).min(1),allowedProviderRefs:r.array(t),budgetRef:t,connectPolicyRef:t,rollbackPolicyRef:t,evidenceRefs:r.array(t).min(1),qualificationRef:t.optional(),killSwitchRef:t.optional(),expiry:l.optional()};export const tenantDeliveryPolicyMaterialV1Schema=r.object(d).strict().superRefine(p),tenantDeliveryPolicyV1Schema=r.object({...d,digest:u}).strict().superRefine((e,i)=>{p(e,i);const{digest:n,...a}=e;if(n!==digestTenantDeliveryPolicyV1(a))i.addIssue({code:"custom",path:["digest"],message:"Tenant policy digest does not match canonical material"})});export function digestTenantDeliveryPolicyV1(e){return`sha256:${f(m(e))}`}export function defineTenantDeliveryPolicyV1(e){return tenantDeliveryPolicyV1Schema.parse({...e,digest:digestTenantDeliveryPolicyV1(e)})}function p(e,i){for(const n of["allowedEnvironmentRefs","allowedProviderRefs","evidenceRefs"])s(e[n],[n],i);for(const[n,a]of[["ownerBindings",e.ownerBindings.map((o)=>o.id)],["riskRules",e.riskRules.map((o)=>o.id)],["riskRules",e.riskRules.map((o)=>o.priority)]])s(a,[n],i);for(const n of OWNERSHIP_ROLES_V1)if(e.ownerBindings.filter((o)=>o.role===n&&o.status==="active").length!==1)i.addIssue({code:"custom",path:["ownerBindings"],message:`Exactly one active ${n} owner is required`});for(const n of y)if(!e.riskRules.some((a)=>a.tiers.includes(n)))i.addIssue({code:"custom",path:["riskRules"],message:`Risk rules do not cover ${n}`});if(e.mode==="manual"&&e.riskRules.some((n)=>n.effect==="allow_qualified"))i.addIssue({code:"custom",path:["riskRules"],message:"Manual mode cannot authorize automatic progression"});if(e.mode==="fully_autonomous"){for(const n of["expiry","qualificationRef","killSwitchRef"])if(!e[n])c(n,i)}}function c(e,i){i.addIssue({code:"custom",path:[e],message:`${e} is required by this authority mode`})}export const tenantDeliveryAuthorityV1DocBlock={id:"contractspec-delivery-tenant-authority-v1",title:"Tenant delivery authority V1",body:"TenantDeliveryPolicyV1 binds one active owner for every delivery role to tenant scope, risk rules, quality, environments, providers, budget, Connect policy, rollback, and evidence. Delegations expire and remain revocable. Fully autonomous policies additionally require expiry, qualification, and a kill switch. No mode waives exact authority or evidence.",kind:"reference",route:"/docs/contracts/delivery/tenant-authority-v1",visibility:"public"};
@@ -0,0 +1 @@
1
+ import{z as t}from"zod";import{deliveryRefSchema as e,deliveryRiskTierSchema as r,deliveryTimestampSchema as i}from"./primitives.js";export const deliveryAutonomyContextV2Schema=t.object({tenantRef:e,rootPolicyRef:e,organizationRef:e,workspaceRef:e,projectRef:e,environmentRef:e,teamRefs:t.array(e),userRef:e,actionRef:e,resourceRef:e,risk:r,estimatedCostUsd:t.number().finite().nonnegative(),now:i}).strict();
@@ -0,0 +1 @@
1
+ import{sha256Hex as s}from"@lssm/lib.crypto-utils";import{z as t}from"zod";import{canonicalJsonString as d}from"../rich-reference/canonical-serializer.js";import{deliveryArtifactRefSchema as f,deliveryDigestSchema as i,deliveryGitShaSchema as n,deliveryRefSchema as e,deliveryTimestampSchema as p}from"./primitives.js";export const DELIVERY_CHAIN_ARTIFACT_V1="contractspec.delivery.chain-artifact.v1";const r={schemaVersion:t.literal(DELIVERY_CHAIN_ARTIFACT_V1),id:e,deliveryPlanDigest:i,predecessorDigests:t.array(i),evidenceRefs:t.array(e),createdAt:p,effectAuthority:t.literal("none")},y=t.object({...r,kind:t.literal("product_intent_v2"),intentRef:e,tenantRef:e,goalRefs:t.array(e).min(1),ownerBindingRefs:t.array(e).min(1),acceptanceRefs:t.array(e).min(1),outcomeMetricRefs:t.array(e).min(1)}),m=t.object({...r,kind:t.literal("builder_change_plan"),baseSha:n,qualityPlanRef:e,agentProviderRefs:t.array(e).min(1),pathLeaseRefs:t.array(e).min(1),capabilityManifestRefs:t.array(e),rollbackRef:e}),h=t.object({...r,kind:t.literal("connect_plan_decision"),decisionRef:e,verdict:t.enum(["permit","rewrite","require_review","deny"]),ownerPolicyRef:e}),v=t.object({...r,kind:t.literal("candidate_patch_receipt"),baseSha:n,headSha:n,treeSha:n,patchDigest:i,builderReceiptRef:e,preMutationDecisionRef:e,postDiffDecisionRef:e,rollbackRef:e}),u=t.object({...r,kind:t.literal("release_plan"),sourceSha:n,catalogHash:i,qualityReceiptRef:e,promotionPermitRef:e,artifacts:t.array(f).min(1),sbomDigest:i,deploymentTargetRef:e,observationPlanRef:e}),R=t.object({...r,kind:t.literal("infrastructure_work_order"),infrastructurePlanRef:e,connectPermitRef:e,runtimeNodeRef:e,providerAdapterRef:e,secretRefs:t.array(e),rollbackPlanRef:e}),b=t.object({...r,kind:t.literal("deployment_receipt"),releasePlanRef:e,infrastructureReceiptRef:e,workOrderRef:e,targetRef:e,sourceSha:n,artifactDigests:t.array(i).min(1),healthEvidenceRefs:t.array(e).min(1),rollbackEvidenceRef:e,status:t.enum(["succeeded","failed","indeterminate","rolled_back"])}),k=t.object({...r,kind:t.literal("runtime_evidence"),deploymentReceiptRef:e,observationWindowRef:e,sloEvidenceRefs:t.array(e),errorEvidenceRefs:t.array(e),rolloutEvidenceRefs:t.array(e)}),_=t.object({...r,kind:t.literal("outcome_observation"),goalRef:e,baselineRef:e,observationWindowRef:e,metricEvidenceRefs:t.array(e).min(1),result:t.enum(["improved","neutral","regressed","indeterminate"])}),g=t.object({...r,kind:t.literal("governed_evolution_proposal"),outcomeObservationRefs:t.array(e).min(1),proposedIntentRef:e,policyRef:e,connectContextRef:e,status:t.enum(["proposed","accepted","rejected","expired"])});export const deliveryChainArtifactMaterialV1Schema=t.discriminatedUnion("kind",[y,m,h,v,u,R,b,k,_,g]),deliveryChainArtifactV1Schema=t.intersection(deliveryChainArtifactMaterialV1Schema,t.object({digest:i})).superRefine((a,c)=>{const{digest:o,...l}=a;if(o!==digestDeliveryChainArtifactV1(l))c.addIssue({code:"custom",path:["digest"],message:"Delivery chain artifact digest does not match its material"})});export function defineDeliveryChainArtifactV1(a){return deliveryChainArtifactV1Schema.parse({...a,digest:digestDeliveryChainArtifactV1(a)})}export function digestDeliveryChainArtifactV1(a){return`sha256:${s(d(a))}`}export const deliveryChainArtifactV1DocBlock={id:"contractspec-delivery-chain-artifact-v1",title:"Intent-to-production delivery chain artifacts",body:"The delivery chain links product intent, Builder planning, Connect decisions, candidate patches, release plans, infrastructure work orders, deployment receipts, runtime evidence, outcome observations, and governed evolution proposals through canonical SHA-256 digests. Every artifact has effectAuthority none: existing Connect, Runtime Node, infrastructure, release, and provider adapters retain execution authority.",kind:"reference",route:"/docs/contracts/delivery/chain-v1",visibility:"public"};
@@ -0,0 +1 @@
1
+ import{sha256Hex as C}from"@lssm/lib.crypto-utils";import{z as s}from"zod";import{canonicalJsonString as S}from"../rich-reference/canonical-serializer.js";import{addDeliveryDuplicateIssue as m,deliveryDigestSchema as U,deliveryRefSchema as o,deliveryTimestampSchema as n}from"./primitives.js";export const CI_BUDGET_STATE_V2="contractspec.delivery.ci-budget-state.v2",CI_BUDGET_ADMISSION_MODES_V2=["normal","constrained","protected_only","recovery_only","closed"];const i=s.number().finite().nonnegative().max(1e6),p=s.object({id:o,providerRef:o,amountUsd:i,evidenceRef:o}).strict();export const ciBudgetFixedCostV2Schema=p,ciBudgetProviderActualV2Schema=p.extend({watermarkAt:n}),ciBudgetReservationV2Schema=s.object({id:o,workloadRef:o,workloadClass:s.enum(["ordinary","protected","recovery"]),amountUsd:i,expiresAt:n,evidenceRef:o}).strict(),ciBudgetProjectionV2Schema=p.extend({horizonEndsAt:n,basisRef:o});const f={schemaVersion:s.literal(CI_BUDGET_STATE_V2),id:o,tenantRef:o,budgetRef:o,billingPeriod:s.object({startsAt:n,endsAt:n,currency:s.literal("USD")}).strict(),thresholds:s.object({normalCeilingUsd:i,constrainedCeilingUsd:i,protectedCeilingUsd:i,hardLimitUsd:i}).strict(),fixedCosts:s.array(ciBudgetFixedCostV2Schema),providerActuals:s.array(ciBudgetProviderActualV2Schema),reservations:s.array(ciBudgetReservationV2Schema),projections:s.array(ciBudgetProjectionV2Schema),recoveryReserveUsd:i,reconciliation:s.object({status:s.enum(["reconciled","stale","mismatch"]),fixedCostUsd:i,providerActualUsd:i,activeReservationUsd:i,projectedUsd:i,exposureUsd:i,reconciledAt:n,evidenceRefs:s.array(o).min(1)}).strict(),admissionMode:s.enum(CI_BUDGET_ADMISSION_MODES_V2),capturedAt:n};export const ciBudgetStateMaterialV2Schema=s.object(f).strict().superRefine(h),ciBudgetStateV2Schema=s.object({...f,digest:U}).strict().superRefine((e,t)=>{h(e,t);const{digest:c,...d}=e;if(c!==digestCiBudgetStateV2(d))t.addIssue({code:"custom",path:["digest"],message:"CI budget state digest does not match its material"})});export function digestCiBudgetStateV2(e){return`sha256:${C(S(g(e)))}`}export function defineCiBudgetStateV2(e){const t=g(e);return ciBudgetStateV2Schema.parse({...t,digest:digestCiBudgetStateV2(t)})}export function expectedCiBudgetAdmissionModeV2(e){const t=e.reconciliation.exposureUsd;if(t>=e.thresholds.hardLimitUsd)return"closed";if(e.reconciliation.status!=="reconciled")return"recovery_only";if(t>=e.thresholds.protectedCeilingUsd)return"recovery_only";if(t>=e.thresholds.constrainedCeilingUsd)return"protected_only";if(t>=e.thresholds.normalCeilingUsd)return"constrained";return"normal"}function g(e){return{...e,fixedCosts:[...e.fixedCosts].sort(l),providerActuals:[...e.providerActuals].sort(l),reservations:[...e.reservations].sort(l),projections:[...e.projections].sort(l),reconciliation:{...e.reconciliation,evidenceRefs:[...e.reconciliation.evidenceRefs].sort()}}}function l(e,t){return e.id.localeCompare(t.id)}function h(e,t){const c=[e.thresholds.normalCeilingUsd,e.thresholds.constrainedCeilingUsd,e.thresholds.protectedCeilingUsd,e.thresholds.hardLimitUsd];if(!c.every((r,a)=>a===0||r>c[a-1]))t.addIssue({code:"custom",path:["thresholds"],message:"CI budget thresholds must be strictly increasing"});if(Date.parse(e.billingPeriod.endsAt)<=Date.parse(e.billingPeriod.startsAt))t.addIssue({code:"custom",path:["billingPeriod","endsAt"],message:"Billing period end must follow its start"});for(const r of["fixedCosts","providerActuals","reservations","projections"])m(e[r].map((a)=>a.id),[r],t);m(e.reconciliation.evidenceRefs,["reconciliation","evidenceRefs"],t);const d={fixedCostUsd:u(e.fixedCosts),providerActualUsd:u(e.providerActuals),activeReservationUsd:u(e.reservations),projectedUsd:u(e.projections)};for(const[r,a]of Object.entries(d))if(!v(e.reconciliation[r],a))t.addIssue({code:"custom",path:["reconciliation",r],message:`${r} does not reconcile with its components`});const y=d.fixedCostUsd+d.providerActualUsd+d.activeReservationUsd+d.projectedUsd+e.recoveryReserveUsd;if(!v(e.reconciliation.exposureUsd,y))t.addIssue({code:"custom",path:["reconciliation","exposureUsd"],message:"Budget exposure does not reconcile with costs and reserves"});if(e.admissionMode!==expectedCiBudgetAdmissionModeV2(e))t.addIssue({code:"custom",path:["admissionMode"],message:"Admission mode does not match reconciled exposure and freshness"})}function u(e){return e.reduce((t,c)=>t+c.amountUsd,0)}function v(e,t){return Math.abs(e-t)<=0.000001}export const ciBudgetStateV2DocBlock={id:"contractspec-delivery-ci-budget-state-v2",title:"CI budget state V2",body:"CiBudgetStateV2 is the provider-neutral, tenant-scoped economic admission state for delivery work. It reconciles fixed costs, provider actuals, active reservations, projections, and recovery reserve against strictly increasing tenant thresholds. Stale or mismatched evidence fails to recovery-only admission, and exposure at the hard limit closes all positive-cost admission.",kind:"reference",route:"/docs/contracts/delivery/ci-budget-state-v2",visibility:"public"};
@@ -0,0 +1 @@
1
+ import{sha256Hex as p}from"@lssm/lib.crypto-utils";import{z as t}from"zod";import{canonicalJsonString as v}from"../rich-reference/canonical-serializer.js";import{addDeliveryDuplicateIssue as s,deliveryDigestSchema as a,deliveryGitShaSchema as o,deliveryRefSchema as e,deliveryRiskSchema as f}from"./primitives.js";export const DELIVERY_PLAN_V1="contractspec.delivery.plan.v1",DELIVERY_EVIDENCE_ENVELOPE_V2="contractspec.delivery.evidence-envelope.v2";const c={schemaVersion:t.literal(DELIVERY_PLAN_V1),id:e,predecessorDigests:t.array(a),tenantRef:e,repositoryRef:e,environmentRef:e,baseSha:o,headSha:o,treeSha:o,intentRefs:t.array(e).min(1),goalRefs:t.array(e).min(1),contractRefs:t.array(e).min(1),ownerPolicyRef:e,autonomyProfileRef:e,connectPlanDecisionRef:e,catalogHash:a,risk:f,qualityPlanRef:e,observationPlanRef:e};export const deliveryPlanMaterialV1Schema=t.object(c).strict().superRefine(l),deliveryPlanV1Schema=t.object({...c,digest:a}).strict().superRefine((i,n)=>{l(i,n);const{digest:r,...d}=i;if(r!==digestDeliveryPlanV1(d))n.addIssue({code:"custom",path:["digest"],message:"Delivery plan digest does not match canonical material"});if(i.predecessorDigests.includes(r))n.addIssue({code:"custom",path:["predecessorDigests"],message:"A delivery plan cannot name itself as a predecessor"})}),deliveryEvidenceEnvelopeV2Schema=t.object({schemaVersion:t.literal(DELIVERY_EVIDENCE_ENVELOPE_V2),deliveryPlanDigest:a,builderReceiptRef:e,connectDecisionRefs:t.array(e).min(1),qualityReceiptRef:e,artifactDigests:t.array(a).min(1),releaseReceiptRef:e.optional(),infrastructureReceiptRef:e.optional(),deploymentReceiptRef:e.optional(),runtimeEvidenceRefs:t.array(e),economicEvidenceRefs:t.array(e),outcomeObservationRefs:t.array(e)}).strict().superRefine((i,n)=>{for(const r of["connectDecisionRefs","artifactDigests","runtimeEvidenceRefs","economicEvidenceRefs","outcomeObservationRefs"])s(i[r],[r],n);if(i.deploymentReceiptRef&&!i.infrastructureReceiptRef)n.addIssue({code:"custom",path:["infrastructureReceiptRef"],message:"Deployment evidence requires infrastructure evidence"})});export function digestDeliveryPlanV1(i){return`sha256:${p(v(i))}`}export function defineDeliveryPlanV1(i){return deliveryPlanV1Schema.parse({...i,digest:digestDeliveryPlanV1(i)})}export function verifyDeliveryEvidenceEnvelopeV2(i){const n=[];if(i.envelope.deliveryPlanDigest!==i.plan.digest)n.push("Evidence envelope does not bind the delivery plan digest");if(i.envelope.deploymentReceiptRef&&i.envelope.runtimeEvidenceRefs.length===0)n.push("A deployed delivery requires runtime evidence");return n}function l(i,n){for(const r of["predecessorDigests","intentRefs","goalRefs","contractRefs"])s(i[r],[r],n)}export const deliveryPlanV1DocBlock={id:"contractspec-delivery-plan-v1",title:"Digest-bound delivery plan V1",body:"DeliveryPlanV1 is the provider-neutral aggregate for one exact candidate. Its canonical SHA-256 digest binds tenant, repository, environment, Git base/head/tree, intent, goals, contracts, ownership, autonomy, a signed Connect plan decision reference, catalog provenance, risk, quality, and observation. DeliveryEvidenceEnvelopeV2 links Builder, Connect, quality, release, infrastructure, deployment, runtime, economic, and outcome evidence without embedding provider payloads or secrets.",kind:"reference",route:"/docs/contracts/delivery/plan-v1",visibility:"public"};
@@ -0,0 +1 @@
1
+ export*from"../quality/index.js";export*from"./authority.js";export*from"./chain.js";export*from"./ci-budget.js";export*from"./contracts.js";export*from"./manual-author-attestation.js";export*from"./primitives.js";export*from"./project-profile.js";export*from"./scoped-autonomy.js";
@@ -0,0 +1 @@
1
+ import{sha256Hex as m}from"@lssm/lib.crypto-utils";import{z as e}from"zod";import{canonicalJsonString as d}from"../rich-reference/canonical-serializer.js";import{addDeliveryDuplicateIssue as l,deliveryDigestSchema as r,deliveryGitShaSchema as n,deliveryRefSchema as o,deliveryTimestampSchema as p}from"./primitives.js";export const MANUAL_AUTHOR_ATTESTATION_V1="contractspec.delivery.manual-author-attestation.v1";const s={schemaVersion:e.literal(MANUAL_AUTHOR_ATTESTATION_V1),id:o,tenantRef:o,repositoryRef:o,authorPrincipalRef:o,sourceKind:e.enum(["uncommitted_worktree","commit","patch_series"]),baseSha:n,headSha:n.optional(),sourceDigest:r,pathManifestDigest:r,paths:e.array(o).min(1),intentRefs:e.array(o).min(1),evidenceRefs:e.array(o).min(1),connectDecisionRef:o,statement:e.string().trim().min(1).max(2000),assertedAt:p,authorityEffect:e.literal("none"),promotionAuthority:e.literal(!1),providerMutationAuthority:e.literal(!1),dataMigrationAuthority:e.literal(!1)};export const manualAuthorAttestationMaterialV1Schema=e.object(s).strict().superRefine(u),manualAuthorAttestationV1Schema=e.object({...s,digest:r}).strict().superRefine((t,a)=>{u(t,a);const{digest:i,...h}=t;if(i!==digestManualAuthorAttestationV1(h))a.addIssue({code:"custom",path:["digest"],message:"Manual author attestation digest does not match its material"})});export function digestManualAuthorAttestationV1(t){return`sha256:${m(d(c(t)))}`}export function defineManualAuthorAttestationV1(t){const a=c(t);return manualAuthorAttestationV1Schema.parse({...a,digest:digestManualAuthorAttestationV1(a)})}function c(t){return{...t,paths:[...t.paths].sort(),intentRefs:[...t.intentRefs].sort(),evidenceRefs:[...t.evidenceRefs].sort()}}function u(t,a){for(const i of["paths","intentRefs","evidenceRefs"])l(t[i],[i],a);if(t.sourceKind==="commit"&&!t.headSha)a.addIssue({code:"custom",path:["headSha"],message:"Committed authorship requires the exact head SHA"});if(t.sourceKind==="uncommitted_worktree"&&t.headSha)a.addIssue({code:"custom",path:["headSha"],message:"Uncommitted worktree authorship cannot claim a head commit"})}export const manualAuthorAttestationV1DocBlock={id:"contractspec-delivery-manual-author-attestation-v1",title:"Manual author attestation V1",body:"ManualAuthorAttestationV1 records who authored an exact existing worktree, commit, or patch series before its first governed remote mutation. It binds tenant, repository, source and path digests, intent, evidence, and a Connect decision. It explicitly grants no promotion, provider, migration, or other mutation authority; those actions require their own current Connect decisions and permits.",kind:"reference",route:"/docs/contracts/delivery/manual-author-attestation-v1",visibility:"public"};
File without changes
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";export const deliveryRefSchema=e.string().trim().min(1).max(512).regex(/^[^\s\u0000-\u001f]+$/),deliveryDigestSchema=e.string().regex(/^sha256:[a-f0-9]{64}$/),deliveryGitShaSchema=e.string().regex(/^(?:[a-f0-9]{40}|[a-f0-9]{64})$/),deliveryTimestampSchema=e.string().datetime({offset:!0}),deliveryArtifactRefSchema=e.object({ref:deliveryRefSchema,digest:deliveryDigestSchema}).strict(),DELIVERY_RISK_TIERS=["low","medium","high","critical"],deliveryRiskTierSchema=e.enum(DELIVERY_RISK_TIERS),deliveryRiskDimensionSchema=e.enum(["contract_compatibility","data_integrity","security","privacy","compliance","availability","infrastructure","financial","user_experience","operational"]),deliveryBlastRadiusSchema=e.enum(["local","workspace","tenant","multi_tenant","global"]),deliveryRiskSchema=e.object({tier:deliveryRiskTierSchema,dimensions:e.array(deliveryRiskDimensionSchema).min(1),blastRadius:deliveryBlastRadiusSchema,reversible:e.boolean(),rationaleRefs:e.array(deliveryRefSchema).min(1)}).strict().superRefine((i,t)=>{addDeliveryDuplicateIssue(i.dimensions,["dimensions"],t);addDeliveryDuplicateIssue(i.rationaleRefs,["rationaleRefs"],t);if((i.tier==="high"||i.tier==="critical")&&!i.dimensions.some((r)=>["security","privacy","compliance","data_integrity"].includes(r)))t.addIssue({code:"custom",path:["dimensions"],message:"High and critical risk require an explicit safety dimension"})});export function addDeliveryDuplicateIssue(i,t,r){if(new Set(i).size!==i.length)r.addIssue({code:"custom",path:t,message:"Values must be unique"})}
@@ -0,0 +1 @@
1
+ import{sha256Hex as p}from"@lssm/lib.crypto-utils";import{z as e}from"zod";import{canonicalJsonString as u}from"../rich-reference/canonical-serializer.js";import{addDeliveryDuplicateIssue as s,deliveryDigestSchema as m,deliveryRefSchema as t}from"./primitives.js";export const DELIVERY_PROJECT_PROFILE_V1="contractspec.delivery.project-profile.v1";const y=e.object({id:t,mode:e.enum(["managed_application","managed_container","virtual_machine","kubernetes"]),providerRef:t,capabilityRefs:e.array(t).min(1),qualificationRef:t.optional()}).strict(),l={schemaVersion:e.literal(DELIVERY_PROJECT_PROFILE_V1),id:t,revision:e.number().int().positive(),tenantRef:t,projectRef:t,adoption:e.enum(["contracts","delivery","operations"]),controlPlane:e.enum(["local","managed","self_hosted"]),runtimeTopologyRef:t.optional(),hosting:e.array(y),agent:e.object({runtimeRef:t,location:e.enum(["local_device","disposable_sandbox","dedicated_worker","customer_infrastructure"]),mode:e.enum(["on_demand","persistent"]),capabilityRefs:e.array(t).min(1),qualificationRef:t.optional()}).strict().optional(),companyBrainRef:t.optional(),qualityProfileRef:t.optional(),buildProfileRefs:e.array(t),environments:e.array(e.object({ref:t,kind:e.enum(["development","test","preview","staging","production"]),hostingBindingIds:e.array(t).min(1),dataPolicyRef:t,recoveryPolicyRef:t,preview:e.object({accessPolicyRef:t,maximumLifetimeSeconds:e.number().int().positive(),maximumConcurrent:e.number().int().positive(),cleanupOnPullRequestClose:e.literal(!0)}).strict().optional()}).strict()),budgets:e.array(e.object({category:e.enum(["ci","previews","staging","production","agent_inference","control_plane"]),budgetRef:t}).strict()),policyRef:t};export const deliveryProjectProfileMaterialV1Schema=e.object(l).strict().superRefine(d),deliveryProjectProfileV1Schema=e.object({...l,digest:m}).strict().superRefine((i,r)=>{d(i,r);const{digest:n,...c}=i;if(n!==digestDeliveryProjectProfileV1(c))r.addIssue({code:"custom",path:["digest"],message:"Project profile digest mismatch"})});export function digestDeliveryProjectProfileV1(i){return`sha256:${p(u(i))}`}export function defineDeliveryProjectProfileV1(i){return deliveryProjectProfileV1Schema.parse({...i,digest:digestDeliveryProjectProfileV1(i)})}function d(i,r){const n=(o,a)=>r.addIssue({code:"custom",path:o,message:a});s(i.hosting.map((o)=>o.id),["hosting"],r);s(i.environments.map((o)=>o.ref),["environments"],r);s(i.budgets.map((o)=>o.category),["budgets"],r);s(i.buildProfileRefs,["buildProfileRefs"],r);const c=new Set(i.hosting.map((o)=>o.id));i.hosting.forEach((o,a)=>s(o.capabilityRefs,["hosting",a,"capabilityRefs"],r));if(i.agent)s(i.agent.capabilityRefs,["agent","capabilityRefs"],r);i.environments.forEach((o,a)=>{s(o.hostingBindingIds,["environments",a,"hostingBindingIds"],r);if(o.hostingBindingIds.some((f)=>!c.has(f)))n(["environments",a,"hostingBindingIds"],"Unknown hosting binding");if(o.kind==="preview"!==Boolean(o.preview))n(["environments",a,"preview"],"Preview lifecycle is required only for preview environments")});if(i.adoption!=="contracts"){if(!i.qualityProfileRef)n(["qualityProfileRef"],"Delivery requires a quality profile");if(!i.buildProfileRefs.length)n(["buildProfileRefs"],"Delivery requires a build profile");if(!i.budgets.some((o)=>o.category==="ci"))n(["budgets"],"Delivery requires its own CI budget")}}export const deliveryProjectProfileV1DocBlock={id:"contractspec-delivery-project-profile-v1",title:"Adaptive delivery project profiles",body:"DeliveryProjectProfileV1 independently selects adoption, control-plane placement, application hosting, state topology, optional agent execution and company context. Contracts-only consumers need no infrastructure. A mixed Vercel/Railway project needs no Kubernetes, broker, or persistent agent. Preview environments require bounded lifetime, access policy and teardown. CI and operating budget categories remain distinct. A digest proves identity, not qualification or authority: hosts must independently verify referenced qualifications and obtain Connect authorization before effects.",kind:"reference",route:"/docs/contracts/delivery/project-profile-v1",visibility:"public"};
@@ -0,0 +1 @@
1
+ export{deliveryAutonomyContextV2Schema}from"./autonomy-context.js";import{sha256Hex as _}from"@lssm/lib.crypto-utils";import{z as c}from"zod";import{canonicalJsonString as x}from"../rich-reference/canonical-serializer.js";import{deliveryDigestSchema as P,deliveryRefSchema as s,deliveryRiskTierSchema as k,deliveryTimestampSchema as D}from"./primitives.js";export const DELIVERY_AUTONOMY_POLICY_V2="contractspec.delivery.autonomy-policy.v2",DELIVERY_AUTONOMY_MODES=["preview_only","human_reviewed","delegated_release","qualified_autonomous"];const R=["organizationRef","workspaceRef","projectRef","environmentRef","teamRef","userRef","actionRef","resourceRef"],b=c.object({organizationRef:s,workspaceRef:s.optional(),projectRef:s.optional(),environmentRef:s.optional(),teamRef:s.optional(),userRef:s.optional(),actionRef:s.optional(),resourceRef:s.optional()}).strict(),A={schemaVersion:c.literal(DELIVERY_AUTONOMY_POLICY_V2),id:s,revision:c.number().int().positive(),tenantRef:s,scope:b,parentPolicyRef:s.optional(),mode:c.enum(DELIVERY_AUTONOMY_MODES),status:c.enum(["active","revoked"]),allowedRiskTiers:c.array(k).min(1),maximumCostUsd:c.number().finite().nonnegative(),requiredCheckRefs:c.array(s),validFrom:D,expiresAt:D,connectPolicyRef:s};export const deliveryAutonomyPolicyMaterialV2Schema=c.object(A).strict(),deliveryAutonomyPolicyV2Schema=c.object({...A,digest:P}).strict().superRefine((o,r)=>{const{digest:m,...i}=o,l=(a)=>r.addIssue({code:"custom",message:a});if(m!==V(i))l("Autonomy policy digest mismatch");if(Date.parse(o.expiresAt)<=Date.parse(o.validFrom))l("Invalid policy validity interval");if(o.parentPolicyRef===o.id)l("A policy cannot inherit from itself");if(!o.parentPolicyRef&&R.slice(1).some((a)=>o.scope[a]))l("A scoped policy must reference its parent");for(const a of[o.requiredCheckRefs,o.allowedRiskTiers])if(new Set(a).size!==a.length)l("Policy requirements must be unique")});function V(o){return`sha256:${_(x(o))}`}export function defineDeliveryAutonomyPolicyV2(o){return deliveryAutonomyPolicyV2Schema.parse({...o,digest:V(o)})}export function resolveDeliveryAutonomyV2(o,r){const m=new Set,i=(e)=>m.add(e),l=Date.parse(r.now);if(!Number.isFinite(l)||!Number.isFinite(r.estimatedCostUsd)||r.estimatedCostUsd<0)i("invalid_context");const a=new Map;for(const e of o){const n=deliveryAutonomyPolicyV2Schema.safeParse(e);if(!n.success){i("invalid_policy");continue}if(a.has(e.id))i("duplicate_policy");if(e.tenantRef!==r.tenantRef)i("cross_tenant_policy");a.set(e.id,n.data)}const u=(e)=>R.every((n)=>{const t=e.scope[n];return!t||(n==="teamRef"?r.teamRefs.includes(t):r[n]===t)}),y=a.get(r.rootPolicyRef);if(!y||y.parentPolicyRef||!u(y))i("missing_root_policy");const h=[...a.values()].filter(u).sort((e,n)=>e.id.localeCompare(n.id));let f=y?DELIVERY_AUTONOMY_MODES.length-1:1,p=y?.maximumCostUsd??0;const g=new Set;for(const e of h){const n=new Set;let t=e;while(t&&t.id!==r.rootPolicyRef){if(n.has(t.id)){i("policy_cycle");break}n.add(t.id);const d=t.parentPolicyRef?a.get(t.parentPolicyRef):void 0;if(!d||!u(d)){i("missing_parent_policy");break}if(R.some((v)=>d.scope[v]&&d.scope[v]!==t?.scope[v]))i("policy_scope_expansion");t=d}if(e.status!=="active")i("revoked_policy");if(l<Date.parse(e.validFrom)||l>=Date.parse(e.expiresAt))i("policy_outside_validity");if(!e.allowedRiskTiers.includes(r.risk))i("risk_denied");f=Math.min(f,DELIVERY_AUTONOMY_MODES.indexOf(e.mode));p=Math.min(p,e.maximumCostUsd);for(const d of e.requiredCheckRefs)g.add(d)}if(r.estimatedCostUsd>p)i("budget_exceeded");return{mode:m.size?"preview_only":DELIVERY_AUTONOMY_MODES[f],blocked:m.size>0,reasons:[...m].sort(),maximumCostUsd:p,requiredCheckRefs:[...g].sort(),policyDigests:h.map(({id:e,revision:n,digest:t})=>({id:e,revision:n,digest:t})),authorizesExecution:!1}}export const deliveryScopedAutonomyV2DocBlock={id:"contractspec-delivery-scoped-autonomy-v2",title:"Scoped delivery autonomy",body:"Additive V2 policies preserve TenantDeliveryPolicyV1. Organization roots and explicit parent chains constrain workspace, project, environment, team, user, action and resource policies. Resolution intersects autonomy, risk and cost limits and unions required checks. Missing parents, cycles, scope expansion, revocation, expiry and digest substitution block progression. Hosts must load the complete applicable policy set and authenticated context, then recheck current policy in Connect before execution. This helper computes an explanation, never a permit; qualified_autonomous still requires independent runtime qualification and authority.",kind:"reference",route:"/docs/contracts/delivery/scoped-autonomy-v2",visibility:"public"};
@@ -0,0 +1 @@
1
+ export*from"./inheritance.js";export*from"./legacy-theme.js";export*from"./operations.js";export*from"./patches.js";export*from"./policy.js";export*from"./ports.js";export*from"./records.js";export*from"./registry.js";export*from"./runtime.js";export*from"./types.js";export*from"./validation.js";
@@ -0,0 +1 @@
1
+ export*from"./inheritance.js";export*from"./legacy-theme.js";export*from"./operations.js";export*from"./patches.js";export*from"./policy.js";export*from"./ports.js";export*from"./records.js";export*from"./registry.js";export*from"./runtime.js";export*from"./types.js";export*from"./validation.js";
File without changes
@@ -0,0 +1 @@
1
+ function o(n){return`${n.key}@${n.version}`}export function resolveDesignPackInheritance(n,s,i=new Set){const r=o(s);if(i.has(r))throw Error(`Design pack inheritance cycle: ${[...i,r].join(" -> ")}`);const e=n.get(s.key,s.version);if(!e)return;if(!e.extends)return e;const t=resolveDesignPackInheritance(n,e.extends,new Set([...i,r]));if(!t)throw Error(`Design pack parent not found: ${o(e.extends)}`);return{...t,...e,tags:{industries:[...new Set([...t.tags.industries,...e.tags.industries])],styles:[...new Set([...t.tags.styles,...e.tags.styles])],keywords:[...new Set([...t.tags.keywords??[],...e.tags.keywords??[]])]},platforms:[...new Set([...t.platforms,...e.platforms])],modes:[...new Set([...t.modes,...e.modes])],layoutRecipes:{...t.layoutRecipes,...e.layoutRecipes},componentProfile:{...t.componentProfile,...e.componentProfile}}}
File without changes
@@ -0,0 +1 @@
1
+ const t={"app-shell":["navigation","header","content"],dashboard:["heading","primary","secondary"],collection:["heading","filters","results"],detail:["heading","content","actions"],form:["heading","fields","validation","actions"],workflow:["heading","progress","work","actions"],marketing:["hero","content","call-to-action"],auth:["brand","heading","credentials","recovery"]};export function makeLegacyThemeDesignPackRef(e){return{key:`contractspec.design.legacy-theme.${e.key}`,version:e.version}}export function createLegacyDesignSelectionPolicy(e){const a=makeLegacyThemeDesignPackRef(e.primary);return{mode:"fixed",default:a,allowed:[a],fallbacks:e.fallbacks?.map(makeLegacyThemeDesignPackRef),customDesigns:"disabled"}}export function createLegacyThemeDesignPack(e){return{meta:{...makeLegacyThemeDesignPackRef(e),title:`Legacy theme: ${e.key}`,description:`Compatibility design pack for legacy theme ${e.key}.`,domain:"design-system",owners:["platform.design"],tags:["design-pack","legacy-theme"],stability:"stable"},theme:e,tags:{industries:["general"],styles:["neutral"]},platforms:["web","native"],modes:["light","dark"],layoutRecipes:Object.fromEntries(Object.entries(t).map(([a,i])=>[a,{key:a,regions:i,variant:"neutral"}])),componentProfile:{density:"comfortable",shape:"neutral"}}}
@@ -0,0 +1 @@
1
+ export{};
@@ -0,0 +1,3 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as o}from"@lssm/lib.schema";import{defineCommand as d,defineQuery as p}from"../operations/operation.js";const DesignOperationInput=new o({name:"DesignOperationInput",fields:{tenantId:{type:e.NonEmptyString(),isOptional:!1},appId:{type:e.NonEmptyString(),isOptional:!1},resourceId:{type:e.NonEmptyString(),isOptional:!0},designPackKey:{type:e.NonEmptyString(),isOptional:!0},designPackVersion:{type:e.NonEmptyString(),isOptional:!0},revision:{type:e.Int_unsecure(),isOptional:!0},payload:{type:e.String_unsecure(),isOptional:!0}}}),DesignOperationOutput=new o({name:"DesignOperationOutput",fields:{status:{type:e.NonEmptyString(),isOptional:!1},resourceId:{type:e.NonEmptyString(),isOptional:!0},revision:{type:e.Int_unsecure(),isOptional:!0},contentDigest:{type:e.NonEmptyString(),isOptional:!0},payload:{type:e.String_unsecure(),isOptional:!0}}});function a(s,n){return{key:s,version:"1.0.0",title:n,description:n,goal:`${n} through the tenant-safe design platform.`,context:"Design operations cannot change RoleMorph authorization, actions, component membership, or hidden-data decisions.",domain:"design-system",owners:["platform.design"],tags:["design-pack","design-studio"],stability:"experimental"}}function i(s,n){return p({meta:a(s,n),io:{input:DesignOperationInput,output:DesignOperationOutput},policy:{auth:"user",permissions:["design.read"],pii:[]}})}function t(s,n,r="design.write"){return d({meta:a(s,n),io:{input:DesignOperationInput,output:DesignOperationOutput},policy:{auth:"user",permissions:[r],pii:[]}})}export const DesignCatalogListQuery=i("design.catalog.list","List design catalog"),DesignCatalogGetQuery=i("design.catalog.get","Get design pack"),DesignSelectionGetQuery=i("design.selection.get","Get user design selection"),DesignSelectionSetCommand=t("design.selection.set","Set user design selection"),DesignSelectionResetCommand=t("design.selection.reset","Reset user design selection"),DesignTenantConfigurationGetQuery=i("design.tenant-configuration.get","Get tenant design configuration"),DesignTenantConfigurationSetCommand=t("design.tenant-configuration.set","Set narrowed tenant design configuration","design.publish"),DesignDraftCreateCommand=t("design.draft.create","Create private design draft"),DesignDraftCloneCommand=t("design.draft.clone","Clone private design draft"),DesignDraftUpdateCommand=t("design.draft.update","Update private design draft"),DesignDraftPreviewQuery=i("design.draft.preview","Preview private design draft"),DesignDraftRestoreCommand=t("design.draft.restore","Restore private design draft"),DesignDraftDeleteCommand=t("design.draft.delete","Delete private design draft"),DesignDraftValidateQuery=i("design.draft.validate","Validate private design draft"),DesignDraftCertifyCommand=t("design.draft.certify","Certify private design draft","design.publish"),DesignPublishCommand=t("design.publish","Publish immutable tenant design","design.publish"),DesignUnpublishCommand=t("design.unpublish","Unpublish tenant design","design.unpublish"),DesignAuditGetQuery=i("design.audit.get","Inspect design audit evidence"),DesignPackOperations=[DesignCatalogListQuery,DesignCatalogGetQuery,DesignSelectionGetQuery,DesignSelectionSetCommand,DesignSelectionResetCommand,DesignTenantConfigurationGetQuery,DesignTenantConfigurationSetCommand,DesignDraftCreateCommand,DesignDraftCloneCommand,DesignDraftUpdateCommand,DesignDraftPreviewQuery,DesignDraftRestoreCommand,DesignDraftDeleteCommand,DesignDraftValidateQuery,DesignDraftCertifyCommand,DesignPublishCommand,DesignUnpublishCommand,DesignAuditGetQuery],DesignPackOperationsDocBlock={id:"docs.contracts-spec.design-packs.operations",title:"Design pack operations",summary:"Versioned catalog, selection, private draft, certification, publication, and evidence operations.",kind:"reference",visibility:"public",route:"/docs/contracts-spec/design-packs/operations",tags:["design-pack","design-studio","operations"],body:`# Design pack operations
2
+
3
+ Queries cover catalog discovery, selection reads, previews, validation, and audit evidence. Commands cover selection changes, owner-scoped draft lifecycle, certification, immutable publication, and unpublication. Publication and unpublication require their exact permissions; runtime handlers must preserve tenant and RoleMorph boundaries.`};export{DesignOperationInput,DesignOperationOutput};
File without changes
@@ -0,0 +1 @@
1
+ import{invalidComponentProps as n,unsafeDesignValue as o}from"./patch-value-validation.js";const i=/^\/(?:theme\/tokens\/(?:colors|typography|space|radii|shadows|motion|elevation|density)\/[^/]+\/(?:value|description)|theme\/components\/\d+\/variants\/[^/]+\/(?:props|tokens)|layoutRecipes\/(?:app-shell|dashboard|collection|detail|form|workflow|marketing|auth)\/(?:regions|variant)|componentProfile\/[^/]+)$/;export function validateSafeDesignPatch(e){const s=[];if(e.format!=="contractspec.design-patch/v1"||!Array.isArray(e.operations))return{valid:!1,issues:[{index:-1,code:"invalid_patch",message:"Invalid patch"}]};if(e.operations.length>100)s.push({index:-1,code:"patch_too_large",message:"A design patch may contain at most 100 operations"});e.operations.forEach((a,t)=>{if(!a||!["add","replace","remove"].includes(a.op)||typeof a.path!=="string"||!i.test(a.path))s.push({index:t,code:"unsafe_patch_path",message:`Patch path "${a.path}" is outside the design allowlist`});c(a,t,s)});return{valid:s.length===0,issues:s}}function c(e,s,a){if(e.op==="remove"&&"value"in e)a.push({index:s,code:"unexpected_patch_value",message:"Remove operations cannot include a value"});else if(e.op!=="remove"&&!("value"in e))a.push({index:s,code:"missing_patch_value",message:"Add and replace operations require a value"});else if("value"in e&&o(e.value))a.push({index:s,code:"unsafe_patch_value",message:"Patch values cannot contain executable or remote asset code"});if(e.path.endsWith("/props")&&"value"in e&&n(e.value))a.push({index:s,code:"behavioral_component_props",message:"Component props must be presentation-only"})}
@@ -0,0 +1 @@
1
+ const e=/(?:<\/?[a-z][^>]*>|javascript\s*:|vbscript\s*:|data\s*:\s*text\/html|@import\b|url\s*\(|expression\s*\()/i,r=/^(?:__proto__|prototype|constructor)$/i,n=/^(?:hidden|disabled|href|action|data|role|tabindex|aria-|on[a-z])/i,i=new Set(["background","border","density","emphasis","foreground","motion","radius","shadow","shape","size","spacing","tone","typography"]);export function unsafeDesignValue(t){if(typeof t==="string")return e.test(t);if(Array.isArray(t))return t.some(unsafeDesignValue);if(t&&typeof t==="object")return Object.entries(t).some(([o,s])=>r.test(o)||n.test(o)||unsafeDesignValue(s));return!1}export function invalidComponentProps(t){return typeof t!=="object"||t===null||Array.isArray(t)||Object.keys(t).some((o)=>!i.has(o))}
@@ -0,0 +1 @@
1
+ export{validateSafeDesignPatch}from"./patch-validation.js";
@@ -0,0 +1 @@
1
+ export{validateSafeDesignPatch}from"./patch-validation.js";
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1 @@
1
+ import{SpecContractRegistry as i}from"../registry.js";import{resolveDesignPackInheritance as t}from"./inheritance.js";export class DesignPackRegistry extends i{constructor(e){super("design-pack",e)}listByIndustry(e){return this.list().filter((s)=>s.tags.industries.includes(e))}listByStyle(e){return this.list().filter((s)=>s.tags.styles.includes(e))}listByPlatform(e){return this.list().filter((s)=>s.platforms.includes(e))}resolve(e){return t(this,e)}}
File without changes
@@ -0,0 +1 @@
1
+ export function narrowTenantAllowed(e,n,i){if(!n)return e;if(!e)return n;const a=n.filter((t)=>s(e,t));if(a.length!==n.length)i.push({code:"tenant_policy_widening_ignored",message:"Tenant allowed designs outside the app policy were ignored",source:"tenant"});return a}export function isEligibleDesign(e,n,i,a,t,o,d,r,u){if(!d&&i&&!s(i,e)){o.push({code:"candidate_unavailable",message:"Design pack is unavailable",source:n,candidate:e});return!1}if(!d&&!r&&u!=="app"&&a&&!s(a,e)){o.push({code:"candidate_not_allowed_by_app",message:"Design pack is outside the app policy",source:n,candidate:e});return!1}if(!d&&!r&&(n==="user-private"||n==="tenant"||u==="tenant")&&t&&!s(t,e)){o.push({code:"candidate_not_allowed_by_tenant",message:"Design pack is outside the tenant policy",source:n,candidate:e});return!1}return!0}export function customDesignRank(e){return e==="disabled"?0:e==="private"?1:2}export function narrowCustomDesigns(e,n){if(!n||customDesignRank(n)>customDesignRank(e))return e;return n}function s(e,n){return e.some((i)=>i.key===n.key&&i.version===n.version)}
File without changes
@@ -0,0 +1 @@
1
+ import{customDesignRank as c,isEligibleDesign as r,narrowCustomDesigns as d,narrowTenantAllowed as f}from"./resolution-helpers.js";export const CONTRACTSPEC_EDITORIAL_DESIGN_PACK_REF={key:"contractspec.design.editorial",version:"1.0.0"},CONTRACTSPEC_EXECUTIVE_LEDGER_DESIGN_PACK_REF={key:"contractspec.design.executive-ledger",version:"2.0.0"};export function resolveDesignSelection(e){const n=[],o=e.policy.allowed,a=d(e.policy.customDesigns,e.tenantPolicy?.customDesigns);if(e.tenantPolicy?.customDesigns&&c(e.tenantPolicy.customDesigns)>c(e.policy.customDesigns))n.push({code:"tenant_custom_design_widening_ignored",message:"Tenant custom design policy cannot widen the app policy",source:"tenant"});const l=f(o,e.tenantPolicy?.allowed,n),s=[];if(e.policy.mode==="fixed")s.push({ref:e.policy.fixed??e.policy.default,source:"fixed",fixedPolicyOwner:"app"});else if(e.tenantPolicy?.mode==="fixed"){if(!e.tenantPolicy.fixed&&!e.tenantPolicy.default)n.push({code:"fixed_policy_missing_ref",message:"Fixed tenant design policy did not provide a fixed design pack",source:"fixed"});s.push({ref:e.tenantPolicy.fixed??e.tenantPolicy.default,source:"fixed",fixedPolicyOwner:"tenant"})}else{if(e.userSelection?.visibility==="private"){const i=e.userSelection.kind==="private-draft";if(i&&a==="disabled")n.push({code:"private_draft_disabled",message:"Private custom designs are disabled by the effective policy",source:"user-private",candidate:e.userSelection.designPack});else if(i&&e.userSelection.draftOwnerUserId!==e.userSelection.userId)n.push({code:"private_draft_owner_mismatch",message:"A private draft can only be selected by its owner",source:"user-private",candidate:e.userSelection.designPack});else s.push({ref:e.userSelection.designPack,source:"user-private",privateDraft:i})}else if(e.userSelection)n.push({code:"user_selection_not_private",message:"Only private user design selections are eligible",source:"user-private"});s.push({ref:e.tenantPolicy?.default,source:"tenant"})}s.push({ref:e.policy.default,source:"app"});for(const i of e.tenantPolicy?.fallbacks??[])s.push({ref:i,source:"fallback"});for(const i of e.policy.fallbacks??[])s.push({ref:i,source:"fallback"});for(const i of s){if(!i.ref)continue;if(r(i.ref,i.source,e.available,o,l,n,i.privateDraft??!1,a==="tenant-publish"&&g(e.tenantPublished,i.ref),i.fixedPolicyOwner))return{designPack:i.ref,source:i.source,diagnostics:n}}const t=e.editorialFallback??CONTRACTSPEC_EDITORIAL_DESIGN_PACK_REF;n.push({code:"editorial_fallback_used",message:"No eligible configured design pack was available; using editorial fallback",source:"editorial",candidate:t});return{designPack:t,source:"editorial",diagnostics:n}}function g(e,n){return e?.some((o)=>o.key===n.key&&o.version===n.version)??!1}
File without changes
@@ -0,0 +1 @@
1
+ export const defineDesignPack=(e)=>e;export function makeDesignPackRef(e){return{key:e.meta.key,version:e.meta.version}}
File without changes
@@ -0,0 +1 @@
1
+ export class DesignPackValidationError extends Error{issues;constructor(i,e){super(i);this.issues=e;this.name="DesignPackValidationError"}}export function validateDesignPackSpec(i){const e=[];for(const t of["actions","permissions","capabilities","hiddenData","dataVisibility","roleMorph","policy"])if(t in i)e.push(n(t,"authority_boundary_forbidden",`Design packs cannot declare ${t}`));s(i.meta.key,"meta.key",e);s(i.meta.version,"meta.version",e);if(!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(i.meta.version))e.push(n("meta.version","version_invalid","Design pack version must be semantic"));s(i.meta.title,"meta.title",e);s(i.meta.domain,"meta.domain",e);r(i.meta.owners,"meta.owners",e);if(i.extends?.key===i.meta.key&&i.extends.version===i.meta.version)e.push(n("extends","inheritance_self_reference","A design pack cannot extend itself"));s(i.theme.key,"theme.key",e);s(i.theme.version,"theme.version",e);r(i.tags.industries,"tags.industries",e);r(i.tags.styles,"tags.styles",e);r(i.platforms,"platforms",e);r(i.modes,"modes",e);d(i.layoutRecipes,e);if(i.preview&&!i.preview.alt.trim())e.push(n("preview.alt","preview_alt_empty","Preview alt text is required"));for(const[t,a]of[["imageUrl",i.preview?.imageUrl],["thumbnailUrl",i.preview?.thumbnailUrl]])if(a&&/^(?:data|javascript|vbscript):/i.test(a.trim()))e.push(n(`preview.${t}`,"preview_url_unsafe",`Preview ${t} cannot use an executable or embedded-data URL`));return{valid:e.every((t)=>t.level!=="error"),issues:e}}export function assertDesignPackSpecValid(i){const e=validateDesignPackSpec(i);if(!e.valid)throw new DesignPackValidationError(`Design pack ${i.meta.key}.v${i.meta.version} is invalid`,e.issues)}function d(i,e){const t=Object.entries(i);if(t.length===0)e.push(n("layoutRecipes","layout_recipes_empty","At least one layout recipe is required"));for(const[a,o]of t){const l=`layoutRecipes.${a}`;s(o.key,`${l}.key`,e);r(o.regions,`${l}.regions`,e);if(o.key!==a)e.push({level:"warning",code:"layout_recipe_key_mismatch",path:`${l}.key`,message:`Recipe key "${o.key}" differs from record key "${a}"`})}}function s(i,e,t){if(!i?.trim())t.push(n(e,"required_text_empty",`${e} must be non-empty`))}function r(i,e,t){if(i.length===0){t.push(n(e,"required_list_empty",`${e} must contain at least one value`));return}if(i.some((a)=>!a.trim()))t.push(n(e,"list_value_empty",`${e} cannot contain empty values`));if(new Set(i).size!==i.length)t.push(n(e,"list_value_duplicate",`${e} cannot contain duplicate values`))}function n(i,e,t){return{level:"error",code:e,path:i,message:t}}
@@ -0,0 +1 @@
1
+ import{defineCapability as e}from"../../capabilities/index.js";import{DOCS_DOMAIN as o,DOCS_OWNERS as s,DOCS_STABILITY as n,DOCS_TAGS as t}from"../constants.js";export const DocumentationSystemCapability=e({meta:{key:"docs.system",version:"1.0.0",kind:"ui",title:"Documentation System",description:"End-to-end docs generation, indexing, and presentation.",domain:o,owners:s,tags:[...t,"system"],stability:n},provides:[{surface:"operation",key:"docs.generate",version:"1.0.0",description:"Generate documentation artifacts."},{surface:"operation",key:"docs.publish",version:"1.0.0",description:"Publish documentation artifacts."},{surface:"operation",key:"docs_search",version:"1.0.0",description:"Index and search DocBlocks."},{surface:"operation",key:"docs.contract.reference",version:"1.0.0",description:"Resolve contract references for docs."},{surface:"event",key:"docs.generated",version:"1.0.0",description:"Docs generation completed."},{surface:"event",key:"docs.published",version:"1.0.0",description:"Docs publish completed."},{surface:"presentation",key:"docs.layout",version:"1.0.0",description:"Docs layout presentation."},{surface:"presentation",key:"docs.reference.page",version:"1.0.0",description:"Docs reference page presentation."}]});
@@ -0,0 +1 @@
1
+ export*from"./documentationSystem.capability.js";
@@ -0,0 +1 @@
1
+ export*from"./documentationSystem.capability.js";
@@ -0,0 +1,4 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineCommand as r}from"../../operations/index.js";import{DOCS_DOMAIN as o,DOCS_OWNERS as n,DOCS_STABILITY as i,DOCS_TAGS as s}from"../constants.js";import{DocsGeneratedEvent as a}from"../events/docsGenerated.event.js";import{docId as c}from"../registry.js";const u=new t({name:"DocsArtifact",fields:{path:{type:e.String_unsecure(),isOptional:!1},format:{type:e.String_unsecure(),isOptional:!0},bytes:{type:e.Int_unsecure(),isOptional:!0},kind:{type:e.String_unsecure(),isOptional:!0}}}),p=new t({name:"DocsGenerateInput",fields:{workspaceRoot:{type:e.String_unsecure(),isOptional:!0},outputDir:{type:e.String_unsecure(),isOptional:!0},version:{type:e.String_unsecure(),isOptional:!0},formats:{type:e.String_unsecure(),isOptional:!0,isArray:!0},includeInternal:{type:e.Boolean(),isOptional:!0},includeExperimental:{type:e.Boolean(),isOptional:!0},contractFilter:{type:e.String_unsecure(),isOptional:!0},docblockFilter:{type:e.String_unsecure(),isOptional:!0},dryRun:{type:e.Boolean(),isOptional:!0}}}),d=new t({name:"DocsGenerateOutput",fields:{buildId:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!0},generatedAt:{type:e.DateTime(),isOptional:!1},outputDir:{type:e.String_unsecure(),isOptional:!0},artifacts:{type:u,isOptional:!0,isArray:!0},warnings:{type:e.String_unsecure(),isOptional:!0,isArray:!0}}});export const DocsGenerateDocBlock={id:"docs.tech.docs-generator",title:"Docs generator",summary:"Generate reference docs and metadata from ContractSpecs.",kind:"how",visibility:"public",route:"/docs/tech/docs/generator",tags:["docs","generator","cli"],body:`# Docs generator
2
+
3
+ The generator produces documentation artifacts, search metadata, and reference pages from ContractSpecs and DocBlocks.
4
+ `},DocsGenerateCommand=r({meta:{key:"docs.generate",title:"Generate Documentation",version:"1.0.0",description:"Generate documentation artifacts from ContractSpecs.",goal:"Produce up-to-date reference docs and guides from specs and DocBlocks.",context:"Used by CLI and CI to keep docs in sync with contract definitions.",domain:o,owners:n,tags:[...s,"generation"],stability:i,docId:[c("docs.tech.docs-generator")]},capability:{key:"docs.system",version:"1.0.0"},io:{input:p,output:d,errors:{OUTPUT_WRITE_FAILED:{description:"Failed to write generated docs output.",http:500,when:"The generator cannot persist artifacts to the output path."}}},policy:{auth:"admin",pii:[]},sideEffects:{emits:[{ref:a.meta,when:"Docs generation completes successfully."}]}});
@@ -0,0 +1,4 @@
1
+ import{ScalarTypeEnum as t,SchemaModel as e}from"@lssm/lib.schema";import{defineCommand as s}from"../../operations/index.js";import{DOCS_DOMAIN as i,DOCS_OWNERS as o,DOCS_STABILITY as n,DOCS_TAGS as r}from"../constants.js";import{DocsPublishedEvent as u}from"../events/docsPublished.event.js";import{docId as a}from"../registry.js";const c=new e({name:"DocsPublishInput",fields:{buildId:{type:t.String_unsecure(),isOptional:!1},version:{type:t.String_unsecure(),isOptional:!0},environment:{type:t.String_unsecure(),isOptional:!0},deployTarget:{type:t.String_unsecure(),isOptional:!0},artifactPath:{type:t.String_unsecure(),isOptional:!0},dryRun:{type:t.Boolean(),isOptional:!0},notes:{type:t.String_unsecure(),isOptional:!0}}}),p=new e({name:"DocsPublishOutput",fields:{publishId:{type:t.String_unsecure(),isOptional:!1},publishedAt:{type:t.DateTime(),isOptional:!1},url:{type:t.String_unsecure(),isOptional:!0},status:{type:t.String_unsecure(),isOptional:!0},warnings:{type:t.String_unsecure(),isOptional:!0,isArray:!0}}});export const DocsPublishDocBlock={id:"docs.tech.docs-publish",title:"Docs publish",summary:"Publish generated artifacts to the docs host.",kind:"how",visibility:"public",route:"/docs/tech/docs/publish",tags:["docs","publish"],body:`# Docs publish
2
+
3
+ Publishing moves generated artifacts to a hosting target with versioning and release metadata.
4
+ `},DocsPublishCommand=s({meta:{key:"docs.publish",title:"Publish Documentation",version:"1.0.0",description:"Publish generated documentation artifacts.",goal:"Deploy docs to the public docs surface with consistent versioning.",context:"Used by release pipelines to push generated docs to hosting targets.",domain:i,owners:o,tags:[...r,"publish"],stability:n,docId:[a("docs.tech.docs-publish")]},capability:{key:"docs.system",version:"1.0.0"},io:{input:c,output:p,errors:{DEPLOY_FAILED:{description:"Failed to deploy documentation artifacts.",http:500,when:"The docs publish step fails to deploy to the target host."}}},policy:{auth:"admin",pii:[]},sideEffects:{emits:[{ref:u.meta,when:"Docs publish completes successfully."}]}});
@@ -0,0 +1 @@
1
+ export*from"./docsGenerate.command.js";export*from"./docsPublish.command.js";
@@ -0,0 +1 @@
1
+ export*from"./docsGenerate.command.js";export*from"./docsPublish.command.js";
File without changes
@@ -0,0 +1 @@
1
+ import{StabilityEnum as o}from"../ownership.js";export const DOCS_DOMAIN="docs",DOCS_OWNERS=["docs-platform"],DOCS_TAGS=["docs","documentation"],DOCS_STABILITY=o.Experimental;
File without changes
@@ -0,0 +1 @@
1
+ import{DocsGenerateCommand as r,DocsPublishCommand as t}from"./commands/index.js";import{DocsGeneratedEvent as o,DocsPublishedEvent as s}from"./events/index.js";import{DocsSearchForm as i}from"./forms/index.js";import{DocsLayoutPresentation as n,DocsReferencePagePresentation as a}from"./presentations/index.js";import{ContractReferenceQuery as c,DocsIndexQuery as p}from"./queries/index.js";import{ContractReferenceDataView as m,DocsIndexDataView as g,ExampleCatalogDataView as D}from"./views/index.js";export const docsOperationContracts={DocsIndexQuery:p,ContractReferenceQuery:c,DocsGenerateCommand:r,DocsPublishCommand:t},docsEventContracts={DocsGeneratedEvent:o,DocsPublishedEvent:s},docsPresentationContracts={DocsLayoutPresentation:n,DocsReferencePagePresentation:a},docsFormContracts={DocsSearchForm:i},docsDataViewContracts={DocsIndexDataView:g,ContractReferenceDataView:m,ExampleCatalogDataView:D};export function registerDocsOperations(e){return e.register(p).register(c).register(r).register(t)}export function registerDocsEvents(e){return e.register(o).register(s)}export function registerDocsPresentations(e){return e.register(n).register(a)}export function registerDocsForms(e){return e.register(i)}export function registerDocsDataViews(e){return e.register(g).register(m).register(D)}