@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
+ import{validateVisualAuthoring as m}from"./validation-authoring.js";export function validateVisualScenario(e,t={}){const n=[],i=(a,r)=>n.push({message:a,path:r});if(!e.meta.key.trim())i("Visual scenario key must not be empty","meta.key");if(!e.meta.version.trim())i("Visual scenario version must not be empty","meta.version");if(!e.meta.description.trim())i("Visual scenario description must not be empty","meta.description");if(!e.meta.owners.length)i("Visual scenario must declare at least one owner","meta.owners");if(!e.meta.tags.length)i("Visual scenario must declare at least one tag","meta.tags");if(!e.surface.trim())i("Visual scenario surface must not be empty","surface");if(!e.presentation.key.trim()||!e.presentation.version.trim())i("Visual scenario must reference a versioned presentation","presentation");if(!e.cases.length)i("Visual scenario must declare at least one case","cases");if(e.capture.classification!=="synthetic"&&e.capture.classification!=="sanitized")i("Capture classification must be synthetic or sanitized","capture.classification");g(e,t,i);V(e,t,i);m(e,t,i);c(e.snapshot,e.capture.external,"snapshot",i);return{valid:n.length===0,errors:n}}function g(e,t,n){if(!t.presentations)return;const i=t.presentations.get(e.presentation.key,e.presentation.version);if(!i){n(`Presentation ${e.presentation.key}.v${e.presentation.version} was not found`,"presentation");return}if(i.source.type!=="component"||i.source.framework!=="react"||!i.targets.includes("react"))n("Visual scenarios require a React presentation","presentation")}function V(e,t,n){const i=new Set;for(const[r,s]of(e.modes??[]).entries()){if(!s.key.trim())n("Visual mode key must not be empty",`modes[${r}].key`);else if(i.has(s.key))n(`Duplicate visual mode ${s.key}`,`modes[${r}]`);i.add(s.key);f(s.parameters,t,`modes[${r}].parameters`,n)}const a=new Set;for(const[r,s]of e.cases.entries()){const o=`cases[${r}]`;if(!s.key.trim())n("Visual case key must not be empty",`${o}.key`);else if(a.has(s.key))n(`Duplicate visual case ${s.key}`,o);a.add(s.key);for(const d of s.modes??[])if(!i.has(d))n(`Unknown visual mode ${d}`,`${o}.modes`);if(s.modes&&new Set(s.modes).size!==s.modes.length)n("Visual case mode references must be unique",`${o}.modes`);l(s.renderBinding,t,`${o}.renderBinding`,n);f(s.args,t,`${o}.args`,n);c(s.snapshot,e.capture.external,`${o}.snapshot`,n)}l(e.renderBinding,t,"renderBinding",n)}function c(e,t,n,i){if(e?.publish&&t!==!0)i("Published snapshots require capture.external to be true",`${n}.publish`);if(e?.publish&&!e.enabled)i("Published snapshots must be enabled",`${n}.enabled`);if(e?.delayMs!==void 0&&e.delayMs<0)i("Snapshot delayMs must be non-negative",`${n}.delayMs`)}function f(e,t,n,i){if(!e)return;u(e,n,(a,r)=>l(a,t,r,i))}function u(e,t,n){if(e===null||typeof e!=="object")return;if("$binding"in e&&typeof e.$binding==="string"){n(e.$binding,`${t}.$binding`);return}if(Array.isArray(e)){e.forEach((i,a)=>u(i,`${t}[${a}]`,n));return}for(const[i,a]of Object.entries(e))u(a,`${t}.${i}`,n)}function l(e,t,n,i){if(e===void 0)return;if(!e.trim()){i("Visual binding must not be empty",n);return}if(!t.bindings)return;const a=t.bindings;if(!(typeof a.has==="function"?a.has(e):t.bindings.includes(e)))i(`Unresolved visual binding ${e}`,n)}
@@ -0,0 +1 @@
1
+ export{VisualizationRegistry,visualizationKey}from"./registry.js";export{defineVisualization}from"./spec.js";
File without changes
@@ -0,0 +1 @@
1
+ import{SpecContractRegistry as t}from"../registry.js";export function visualizationKey(i){return`${i.meta.key}.v${i.meta.version}`}export class VisualizationRegistry extends t{constructor(i){super("visualization",i)}}
File without changes
@@ -0,0 +1 @@
1
+ export function defineVisualization(i){return i}
File without changes
@@ -0,0 +1 @@
1
+ export const tech_contracts_visualizations_graph_DocBlocks=[{id:"docs.tech.contracts.visualizations.graph",title:"Graph & Timeline Visualization Configs",summary:"`GraphVisualizationConfig` and `TimelineVisualizationConfig` extend `VisualizationKind` with `graph` and `timeline` variants for aggregated graph analytics (node-count by dimension, edge-weight measure) and time-axis projections (time dimension + measure series).",kind:"reference",visibility:"public",route:"/docs/tech/contracts/visualizations/graph",tags:["tech","contracts","visualizations","graph","timeline"],body:"# Graph & Timeline Visualization Configs\n\n## GraphVisualizationConfig (`kind: 'graph'`)\n\nAggregated graph analytics view. Use when you want to visualize node\npopulations grouped by a dimension, or edge weights as a measure — not\ninteractive graph topology (use `DataViewGraphSpec` for that).\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `nodeDimension` | `string?` | Dimension key to group/color nodes (e.g. type, status). |\n| `edgeWeightMeasure` | `string?` | Measure key representing edge weight or count. |\n| `layout` | `'force' | 'dag' | 'radial' | 'grid'?` | Default layout algorithm. |\n\n## TimelineVisualizationConfig (`kind: 'timeline'`)\n\nProjects records along a time axis. Use for event/activity charts where the\ngoal is aggregate density or value over time — not interactive graph topology.\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `timeDimension` | `string` | **Required.** Dimension key holding the time value. |\n| `laneDimension` | `string?` | Dimension key for grouping swim-lanes. |\n| `measureSeries` | `string[]?` | Measure keys to render as overlaid chart series. |\n| `endDimension` | `string?` | End-time dimension for span/interval events. |\n\n## Choosing Between VisualizationSpec and DataViewGraphSpec\n\n- Use `VisualizationSpec` with `kind: 'graph' | 'timeline'` for **aggregated\n analytics** (e.g., charts, dashboards).\n- Use `DataViewGraphSpec` with `view.kind: 'graph' | 'timeline-graph'` for\n **interactive graph topology** (clickable nodes, editable edges, layout\n algorithms, node inspector panels).\n"}];
@@ -0,0 +1 @@
1
+ export class PrismaStateStore{prisma;constructor(t){this.prisma=t}async create(t){await this.prisma.workflowState.create({data:{id:t.workflowId,name:t.workflowName,version:t.workflowVersion,status:t.status,currentStep:t.currentStep,data:t.data,history:t.history,retryCounts:t.retryCounts??{},createdAt:t.createdAt,updatedAt:t.updatedAt}})}async get(t){const e=await this.prisma.workflowState.findUnique({where:{id:t}});if(!e)return;return{workflowId:e.id,workflowName:e.name,workflowVersion:e.version,currentStep:e.currentStep,data:e.data,history:e.history,retryCounts:e.retryCounts,status:e.status,createdAt:e.createdAt,updatedAt:e.updatedAt}}async update(t,e){const a=await this.get(t);if(!a)throw Error(`Workflow ${t} not found`);const r=e(a),o=await this.prisma.workflowState.update({where:{id:t},data:{status:r.status,currentStep:r.currentStep,data:r.data,history:r.history,retryCounts:r.retryCounts,updatedAt:r.updatedAt}});return{workflowId:o.id,workflowName:o.name,workflowVersion:o.version,currentStep:o.currentStep,data:o.data,history:o.history,retryCounts:o.retryCounts,status:o.status,createdAt:o.createdAt,updatedAt:o.updatedAt}}async list(t){const e={};if(t?.status)e.status=t.status;return(await this.prisma.workflowState.findMany({where:e})).map((r)=>({workflowId:r.id,workflowName:r.name,workflowVersion:r.version,currentStep:r.currentStep,data:r.data,history:r.history,retryCounts:r.retryCounts,status:r.status,createdAt:r.createdAt,updatedAt:r.updatedAt}))}}
@@ -0,0 +1 @@
1
+ export function createFileStateStore(t){throw Error("File-backed state store adapter not implemented. Provide a custom adapter that satisfies StateStore.")}
@@ -0,0 +1 @@
1
+ export*from"./db-adapter.js";export*from"./file-adapter.js";export*from"./memory-store.js";
@@ -0,0 +1 @@
1
+ function o(t){return{...t,data:n(t.data),history:t.history.map((e)=>({...e,input:n(e.input),output:n(e.output),startedAt:new Date(e.startedAt),completedAt:e.completedAt?new Date(e.completedAt):void 0})),createdAt:new Date(t.createdAt),updatedAt:new Date(t.updatedAt)}}export class InMemoryStateStore{items=new Map;async create(t){if(this.items.has(t.workflowId))throw Error(`Workflow state already exists: ${t.workflowId}`);this.items.set(t.workflowId,o(t))}async get(t){const e=this.items.get(t);return e?o(e):void 0}async update(t,e){const s=this.items.get(t);if(!s)throw Error(`Workflow state not found for ${t}`);const r=o(e(o(s)));this.items.set(t,r);return o(r)}async list(t){const e=[...this.items.values()];return((t?.status)?e.filter((r)=>r.status===t.status):e).map(o)}clear(){this.items.clear()}}function n(t){if(t instanceof Date)return new Date(t.getTime());if(Array.isArray(t))return t.map((e)=>n(e));if(t&&typeof t==="object"){const e={};for(const[s,r]of Object.entries(t))e[s]=n(r);return e}return t}
@@ -0,0 +1 @@
1
+ export class WorkflowContextError extends Error{errorType;workflowId;details;constructor(t,e,r,n){super(r);this.name="WorkflowContextError";this.errorType=t;this.workflowId=e;this.details=n}}class u{state;spec;constructor(t,e){this.state=t;this.spec=e}get workflowId(){return this.state.workflowId}get workflowKey(){return this.state.workflowName}get workflowVersion(){return this.state.workflowVersion}get currentStep(){return this.state.currentStep}get status(){return this.state.status}get data(){return this.state.data}get history(){return this.state.history}getState(){return this.state}getData(t){return this.state.data[t]}isTerminal(){return this.state.status==="completed"||this.state.status==="failed"||this.state.status==="cancelled"}isRunning(){return this.state.status==="running"}getCurrentStepDef(){return this.spec.definition.steps?.find((t)=>t.id===this.state.currentStep)}getRetryCount(t){const e=t??this.state.currentStep;return this.state.retryCounts?.[e]??0}canTransition(t){return(this.spec.definition.transitions??[]).filter((r)=>r.from===this.state.currentStep&&r.to===t).length>0}getAvailableTransitions(){return(this.spec.definition.transitions??[]).filter((t)=>t.from===this.state.currentStep).map((t)=>({from:t.from,to:t.to,label:t.label,condition:t.condition}))}hasNextStep(){return(this.spec.definition.transitions??[]).some((t)=>t.from===this.state.currentStep)}getRemainingTime(t){const e=this.spec.definition.sla;if(!e)return null;const r=Date.now();if(t==="totalDuration"){if(!e.totalDurationMs)return null;const o=r-this.state.createdAt.getTime();return Math.max(0,e.totalDurationMs-o)}const n=e.stepDurationMs?.[t];if(!n)return null;const s=this.state.history.find((o)=>o.stepId===t&&o.status==="running");if(!s)return n;const i=r-s.startedAt.getTime();return Math.max(0,n-i)}isSlaViolated(t){const e=this.getRemainingTime(t);return e!==null&&e<=0}getAllSlaStatuses(){const t=this.spec.definition.sla;if(!t)return[];const e=[],r=Date.now();if(t.totalDurationMs){const n=r-this.state.createdAt.getTime(),s=Math.max(0,t.totalDurationMs-n);e.push({key:"totalDuration",type:"workflow",limitMs:t.totalDurationMs,elapsedMs:n,remainingMs:s,violated:s<=0,percentUsed:n/t.totalDurationMs*100})}if(t.stepDurationMs)for(const[n,s]of Object.entries(t.stepDurationMs)){const i=this.state.history.find((l)=>l.stepId===n&&l.status==="running"),o=i?r-i.startedAt.getTime():0,a=Math.max(0,s-o);e.push({key:n,type:"step",stepId:n,limitMs:s,elapsedMs:o,remainingMs:a,violated:i!==void 0&&a<=0,percentUsed:o/s*100})}return e}hasCompensation(){return this.spec.definition.compensation!==void 0}getCompensableSteps(){const t=this.spec.definition.compensation;if(!t)return[];return t.steps.map((e)=>e.stepId)}getEvents(){const t=[];for(const e of this.state.history){t.push({timestamp:e.startedAt,type:"step_started",stepId:e.stepId,input:e.input});if(e.completedAt){if(e.status==="completed")t.push({timestamp:e.completedAt,type:"step_completed",stepId:e.stepId,output:e.output});else if(e.status==="failed")t.push({timestamp:e.completedAt,type:"step_failed",stepId:e.stepId,error:e.error})}}t.sort((e,r)=>e.timestamp.getTime()-r.timestamp.getTime());return t}}export function createWorkflowContext(t,e){return new u(t,e)}export function calculateWorkflowProgress(t){const e=t.getState(),r=new Set(e.history.filter((s)=>s.status==="completed").map((s)=>s.stepId)),n=r.size+(t.isTerminal()?0:1);if(t.status==="completed")return 100;if(t.status==="failed"||t.status==="cancelled")return r.size>0?Math.min(99,r.size*20):0;return Math.min(99,r.size*20)}export function getWorkflowDuration(t){const e=t.getState();return(t.isTerminal()?e.updatedAt.getTime():Date.now())-e.createdAt.getTime()}export function getAverageStepDuration(t){const e=t.history.filter((n)=>n.status==="completed"&&n.completedAt);if(e.length===0)return 0;return e.reduce((n,s)=>{if(!s.completedAt)return n;const i=s.completedAt.getTime()-s.startedAt.getTime();return n+i},0)/e.length}
@@ -0,0 +1 @@
1
+ export function detectShape(e){return Array.isArray(e.tasks)&&e.tasks.length>0?"v2":"v1"}export function topoSortTasks(e,f){const o=new Map(e.map((t)=>[t,0])),i=new Map(e.map((t)=>[t,[]]));for(const t of f){i.get(t.from)?.push(t.to);o.set(t.to,(o.get(t.to)??0)+1)}const r=[];for(const[t,n]of o)if(n===0)r.push(t);const s=[];while(r.length>0){const t=r.shift();s.push(t);for(const n of i.get(t)??[]){const g=(o.get(n)??1)-1;o.set(n,g);if(g===0)r.push(n)}}if(s.length!==e.length)throw Error(`[workflow/dag-utils] Cycle detected in task graph. Sorted ${s.length} of ${e.length} tasks.`);return s}
@@ -0,0 +1 @@
1
+ export function evaluateExpression(t,n){if(!t)return!0;const e=t.trim();if(!e)return!0;const r=m(e,"||");if(r.length>1)return r.some((i)=>evaluateExpression(i,n));const u=m(e,"&&");if(u.length>1)return u.every((i)=>evaluateExpression(i,n));return c(e,n)}function c(t,n){const e=t.trim();if(!e)return!0;if(e.startsWith("!"))return!c(e.slice(1),n);const r=e.match(/^(data|input|output)\.([A-Za-z0-9_.[\]]+)\s*(===|==|!==|!=|>=|<=|>|<)\s*(.+)$/);if(r){const[,s,o,a,p]=r,d=l(s,n,o),g=f(p);return h(d,g,a)}const u=e.match(/^(data|input|output)\.([A-Za-z0-9_.[\]]+)$/);if(u){const[,s,o]=u,a=l(s,n,o);return Boolean(a)}const i=f(e);return Boolean(i)}function h(t,n,e){switch(e){case"===":case"==":return t===n;case"!==":case"!=":return t!==n;case">":return Number(t)>Number(n);case">=":return Number(t)>=Number(n);case"<":return Number(t)<Number(n);case"<=":return Number(t)<=Number(n);default:return!1}}function f(t){const n=(t??"").trim();if(n.startsWith('"')&&n.endsWith('"')||n.startsWith("'")&&n.endsWith("'"))return n.slice(1,-1);if(/^-?\d+(\.\d+)?$/.test(n))return Number(n);if(/^true$/i.test(n))return!0;if(/^false$/i.test(n))return!1;if(/^null$/i.test(n))return null;if(/^undefined$/i.test(n))return;return n}function l(t,n,e){const r=t==="data"?n.data:t==="input"?n.input:n.output;return b(r,e)}function b(t,n){if(t==null)return;if(!n)return t;const e=n.replace(/\[(\d+)\]/g,".$1").split(".").filter(Boolean);let r=t;for(const u of e){if(r==null)return;r=r[u]}return r}function m(t,n){const e=[];let r="",u=!1,i=!1;for(let s=0;s<t.length;s++){const o=t[s];if(!o)continue;const a=t.slice(s,s+n.length);if(o==="'"&&!i){u=!u;r+=o;continue}if(o==='"'&&!u){i=!i;r+=o;continue}if(!u&&!i&&a===n){e.push(r.trim());r="";s+=n.length-1;continue}r+=o}if(r.trim().length)e.push(r.trim());return e}
@@ -0,0 +1 @@
1
+ export*from"./adapters/index.js";export*from"./context.js";export*from"./expression.js";export*from"./runner.js";export*from"./sla-monitor.js";export*from"./spec.js";export*from"./state.js";export*from"./validation.js";export*from"./workflow-devkit.js";export*from"./workflow-sdk.js";
@@ -0,0 +1 @@
1
+ import{normalizeContractError as W,problemToSafeMessage as k}from"../results/index.js";import{topoSortTasks as R}from"./dag-utils.js";import{evaluateExpression as h}from"./expression.js";function x(){return globalThis.crypto?.randomUUID?.()??`id_${Date.now().toString(36)}_${Math.random().toString(36).slice(2,10)}`}export class WorkflowRunner{config;constructor(t){this.config=t}get timers(){return this.config.timers??globalThis}async preFlightCheck(t,e,r){const d=this.getSpec(t,e);return this.performPreFlight(d,r)}async start(t,e,r){const d=this.getSpec(t,e),a=new Date,p=x(),i=x(),o={workflowId:p,traceId:i,workflowName:d.meta.key,workflowVersion:d.meta.version,currentStep:"",data:{...r??{}},retryCounts:{},history:[],status:"running",createdAt:a,updatedAt:a},s=this.config.appConfigProvider?await this.config.appConfigProvider(o):void 0,n=await this.performPreFlight(d,s);if(!n.canStart)throw new WorkflowPreFlightError(n.issues);await this.config.stateStore.create(o);this.emit("workflow.started",{workflowId:p,traceId:i,workflowName:d.meta.key,workflowVersion:d.meta.version});return p}async executeStep(t,e){const r=await this.getStateOrThrow(t);if(O(r.status))throw Error(`Workflow ${t} is in terminal status "${r.status}".`);return this.executeV2Dag(t,e)}async rollback(t){const e=await this.getStateOrThrow(t),r=this.getSpec(e.workflowName,e.workflowVersion);if(!r.definition.compensation)return;this.emit("workflow.rollback_started",{workflowId:t,traceId:e.traceId});const d=e.history.filter((a)=>a.status==="completed").reverse();for(const a of d){const p=r.definition.compensation.steps.find((i)=>i.stepId===a.stepId);if(p){const i={stepId:a.stepId,originalInput:a.input,originalOutput:a.output,workflowData:e.data};try{const o=this.config.appConfigProvider?await this.config.appConfigProvider(e):void 0,s={workflow:e,resolvedAppConfig:o,integrations:o?.integrations??[],knowledge:o?.knowledge??[],branding:o?.branding,translation:o?.translation,translationResolver:this.config.translationResolver,secretProvider:this.config.secretProvider};await this.config.opExecutor(p.operation,i,s);this.emit("workflow.compensation_step_completed",{workflowId:t,traceId:e.traceId,stepId:a.stepId,compensationOp:p.operation.key})}catch(o){const s=o instanceof Error?o.message:String(o);this.emit("workflow.compensation_step_failed",{workflowId:t,traceId:e.traceId,stepId:a.stepId,compensationOp:p.operation.key,error:s})}}}this.emit("workflow.rollback_completed",{workflowId:t,traceId:e.traceId})}async getState(t){return this.getStateOrThrow(t)}async pause(t){const e=await this.getStateOrThrow(t);if(e.status!=="running")return;const r={...e,status:"paused",updatedAt:new Date};await this.config.stateStore.update(t,()=>r);this.emit("workflow.paused",{workflowId:t,traceId:e.traceId,workflowName:e.workflowName})}async resume(t){const e=await this.getStateOrThrow(t);if(e.status!=="paused")return;const r={...e,status:"running",updatedAt:new Date};await this.config.stateStore.update(t,()=>r);this.emit("workflow.resumed",{workflowId:t,traceId:e.traceId,workflowName:e.workflowName})}async cancel(t){const e=await this.getStateOrThrow(t);if(e.status==="cancelled")return;const r={...e,status:"cancelled",updatedAt:new Date};await this.config.stateStore.update(t,()=>r);this.emit("workflow.cancelled",{workflowId:t,traceId:e.traceId,workflowName:e.workflowName})}async executeV2Dag(t,e){const r=await this.getStateOrThrow(t),d=this.getSpec(r.workflowName,r.workflowVersion),a=d.definition.tasks??[],p=d.definition.edges??[],i=R(a.map((l)=>l.id),p),o=r.data.__v2TaskStatus__??{},s=new Map(i.map((l)=>[l,o[l]??"pending"])),n={...r,data:{...r.data},history:[...r.history],status:"running",wait:void 0},f=r.status==="waiting"&&r.wait?.reason==="human_input"?r.currentStep:void 0;if(f){s.set(f,"completed");if(e!==void 0)n.data={...n.data,[`${f}.output`]:e}}for(const l of i){const m=s.get(l);if(m==="completed"||m==="skipped")continue;const u=a.find((c)=>c.id===l);if(!u)continue;const y=p.filter((c)=>c.to===l),v=y.some((c)=>s.get(c.from)==="skipped"),I=!v&&y.some((c)=>c.runIf!==void 0&&!h(c.runIf,{data:n.data})||c.condition!==void 0&&!h(c.condition,{data:n.data}));if(v||I){s.set(l,"skipped");this.emit("workflow.task_skipped_runIf",{workflowId:t,traceId:r.traceId,taskId:l,taskLabel:u.label});continue}if(u.guard){if(!await this.evalTaskGuard(u.guard,n,u)){s.set(l,"skipped");this.emit("workflow.task_skipped_runIf",{workflowId:t,traceId:r.traceId,taskId:l,taskLabel:u.label});continue}}if(u.type==="human"){n.status="waiting";n.currentStep=l;n.wait={reason:"human_input",stepId:l,requestedAt:new Date};n.data={...n.data,__v2TaskStatus__:Object.fromEntries(s)};n.updatedAt=new Date;await this.config.stateStore.update(t,()=>n);this.emit("workflow.task_waiting",{workflowId:t,traceId:r.traceId,taskId:l,taskLabel:u.label});return}this.emit("workflow.task_started",{workflowId:t,traceId:r.traceId,taskId:l,taskLabel:u.label});try{if(u.operation){const c=this.config.appConfigProvider?await this.config.appConfigProvider(n):void 0,w={workflow:n,resolvedAppConfig:c,integrations:c?.integrations??[],knowledge:c?.knowledge??[],branding:c?.branding,translation:c?.translation,translationResolver:this.config.translationResolver,secretProvider:this.config.secretProvider},b=()=>this.config.opExecutor(u.operation,n.data,w),S=u.retry?C(b,u.retry,this.timers):b(),P=u.timeoutMs?await _(S,u.timeoutMs,this.timers):await S;if(E(P))n.data={...n.data,...P}}s.set(l,"completed");n.updatedAt=new Date;this.emit("workflow.task_completed",{workflowId:t,traceId:r.traceId,taskId:l,taskLabel:u.label})}catch(c){s.set(l,"failed");const w=c instanceof Error?c.message:String(c);n.status="failed";n.data={...n.data,__v2TaskStatus__:Object.fromEntries(s)};n.updatedAt=new Date;await this.config.stateStore.update(t,()=>n);this.emit("workflow.task_failed",{workflowId:t,traceId:r.traceId,taskId:l,taskLabel:u.label,error:w});this.emit("workflow.step_failed",{workflowId:t,traceId:r.traceId,workflowName:r.workflowName,stepId:l,error:w});return}}n.status="completed";n.data={...n.data,__v2TaskStatus__:Object.fromEntries(s)};n.updatedAt=new Date;await this.config.stateStore.update(t,()=>n);this.emit("workflow.step_completed",{workflowId:t,traceId:r.traceId,workflowName:r.workflowName,stepId:"",status:"completed"})}async evalTaskGuard(t,e,r){if(t.type==="expression")return h(t.value,{data:e.data});if(this.config.guardEvaluator){const d={id:r.id,type:r.type??"automation",label:r.label};return this.config.guardEvaluator({type:"policy",value:t.value},{workflow:e,step:d})}return!0}async performPreFlight(t,e){if(!e)return{canStart:!0,issues:[]};const r=[],d=new Map;for(const i of e.integrations)d.set(i.slot.slotId,i);for(const i of t.definition.steps??[])for(const o of i.requiredIntegrations??[]){const s=d.get(o);if(!s){r.push({stepId:i.id,type:"integration",identifier:o,severity:"error",reason:`Integration slot "${o}" is not bound in the resolved app config.`});continue}const n=s.connection.status;if(n==="disconnected"||n==="error")r.push({stepId:i.id,type:"integration",identifier:o,severity:"error",reason:`Integration slot "${o}" is in status "${n}".`});else if(n==="unknown")r.push({stepId:i.id,type:"integration",identifier:o,severity:"warning",reason:`Integration slot "${o}" reports unknown health status.`})}const a=new Set(e.capabilities.enabled.map(g));for(const i of t.definition.steps??[])for(const o of i.requiredCapabilities??[])if(!a.has(g(o)))r.push({stepId:i.id,type:"capability",identifier:g(o),severity:"error",reason:`Capability "${o.key}@${o.version}" is not enabled.`});for(const i of t.definition.tasks??[]){for(const o of i.requiredIntegrations??[]){const s=d.get(o);if(!s){r.push({stepId:i.id,type:"integration",identifier:o,severity:"error",reason:`Integration slot "${o}" is not bound in the resolved app config.`});continue}const n=s.connection.status;if(n==="disconnected"||n==="error")r.push({stepId:i.id,type:"integration",identifier:o,severity:"error",reason:`Integration slot "${o}" is in status "${n}".`});else if(n==="unknown")r.push({stepId:i.id,type:"integration",identifier:o,severity:"warning",reason:`Integration slot "${o}" reports unknown health status.`})}for(const o of i.requiredCapabilities??[])if(!a.has(g(o)))r.push({stepId:i.id,type:"capability",identifier:g(o),severity:"error",reason:`Capability "${o.key}@${o.version}" is not enabled.`})}return{canStart:r.every((i)=>i.severity!=="error"),issues:r}}getSpec(t,e){const r=this.config.registry.get(t,e);if(!r)throw Error(`Workflow spec not found for ${t}${e?`.v${e}`:""}`);return r}async getStateOrThrow(t){const e=await this.config.stateStore.get(t);if(!e)throw Error(`Workflow state not found for ${t}`);return e}emit(t,e){this.config.eventEmitter?.(t,e)}}function E(t){return t!=null&&typeof t==="object"&&!Array.isArray(t)}async function C(t,e,r=globalThis){const{maxAttempts:d,backoff:a="fixed",delayMs:p=0,maxDelayMs:i}=e;let o;for(let s=1;s<=d;s++)try{return await t()}catch(n){o=n;if(s<d&&p>0){const f=a==="exponential"?p*2**(s-1):p,l=i!==void 0?Math.min(f,i):f;await new Promise((m)=>r.setTimeout(m,l))}}throw o}function _(t,e,r=globalThis){let d;const a=new Promise((p,i)=>{d=r.setTimeout(()=>i(new WorkflowExecutionError(`Task timed out after ${e}ms`,"timeout")),e)});return Promise.race([t,a]).finally(()=>{if(d!==void 0)r.clearTimeout(d)})}function O(t){return t==="completed"||t==="failed"||t==="cancelled"}export class WorkflowPreFlightError extends Error{issues;constructor(t){super(`Workflow pre-flight failed: ${t.filter((e)=>e.severity==="error").map((e)=>`${e.type}:${e.identifier}`).join(", ")}`);this.issues=t;this.name="WorkflowPreFlightError"}}export class WorkflowExecutionError extends Error{kind;constructor(t,e){super(t);this.kind=e;this.name="WorkflowExecutionError"}}function g(t){return`${t.key}@${t.version}`}function M(t){const e=W(t,{source:{service:"workflow"}});if(t instanceof WorkflowExecutionError){const a=T(e.problem,t.kind);return{kind:t.kind,message:k(a),retryable:t.kind==="retryable"||t.kind==="timeout",problem:a}}const r=A(t);if(r){const a=T(e.problem,r);return{kind:r,message:k(a),retryable:r==="retryable"||r==="timeout",problem:a}}return{kind:e.problem.retryable?"retryable":"fatal",message:k(e.problem),retryable:e.problem.retryable,problem:e.problem}}function T(t,e){const r=e==="retryable"||e==="timeout";return{...t,category:e==="policy_blocked"?"policy":e==="guard_rejected"?"workflow":e==="timeout"?"timeout":t.category,retryable:r}}function K(t){if(t instanceof Date)return Math.max(0,t.getTime()-Date.now());if(typeof t==="number")return Math.max(0,t);return}function A(t){if(typeof t!=="object"||t===null||!("kind"in t))return;const e=t.kind;if(e==="fatal"||e==="retryable"||e==="timeout"||e==="guard_rejected"||e==="policy_blocked")return e;return}
@@ -0,0 +1 @@
1
+ export class SLAMonitor{eventEmitter;constructor(t){this.eventEmitter=t}check(t,a){const e=a.definition.sla;if(!e)return;const n=new Date().getTime();if(e.totalDurationMs){const o=n-t.createdAt.getTime();if(o>e.totalDurationMs){if(t.status==="running"||t.status==="paused"||t.status==="waiting")this.eventEmitter("workflow.sla_breach",{workflowId:t.workflowId,workflowName:t.workflowName,type:"workflow_duration",expectedMs:e.totalDurationMs,actualMs:o,breachedAt:new Date})}}if(e.stepDurationMs){if(t.status==="running"&&t.currentStep){const o=t.history.find((r)=>r.stepId===t.currentStep&&r.status==="running");if(o){const r=e.stepDurationMs[t.currentStep];if(r){const i=n-o.startedAt.getTime();if(i>r)this.eventEmitter("workflow.sla_breach",{workflowId:t.workflowId,workflowName:t.workflowName,type:"step_duration",stepId:t.currentStep,expectedMs:r,actualMs:i,breachedAt:new Date})}}}}}}
File without changes
@@ -0,0 +1 @@
1
+ import{SpecContractRegistry as t}from"../registry.js";export const defineWorkflow=(e)=>e;export class WorkflowRegistry extends t{constructor(e){super("workflow",e)}}export const tech_workflows_overview_DocBlocks=[{id:"docs.tech.workflows.overview",title:"WorkflowSpec Overview",summary:"WorkflowSpec provides a declarative, versioned format for long-running flows that mix automation and human review, including runtime adapter capabilities/ports for checkpointing, suspend-resume orchestration, and explicit waiting/retry states. Specs stay inside `@lssm/lib.contracts-spec` (`src/workflow/spec.ts`) so the same definition powers runtime execution, documentation, and future generation.",kind:"reference",visibility:"public",route:"/docs/tech/workflows/overview",tags:["tech","workflows","overview"],body:"# WorkflowSpec Overview\n\n## Purpose\n\nWorkflowSpec provides a declarative, versioned format for long-running flows that mix automation and human review. Specs stay inside `@lssm/lib.contracts-spec` (`src/workflow/spec.ts`) so the same definition powers runtime execution, documentation, and future generation.\n\n## Core Types\n\n- `WorkflowMeta`: ownership metadata (`title`, `domain`, `owners`, `tags`, `stability`) plus `name` and `version`.\n- `WorkflowDefinition`:\n - `entryStepId?`: optional explicit entry point (defaults to first step).\n - `steps[]`: ordered list of `Step` descriptors.\n - `transitions[]`: directed edges between steps with optional expressions.\n - `sla?`: aggregated timing hints for the overall flow or per-step budgets.\n - `compensation?`: fallback operations executed when a workflow is rolled back or fails.\n- `Step`:\n - `type`: `human`, `automation`, or `decision`.\n - `action`: references either a `ContractSpec` (`operation`) or `FormSpec` (`form`).\n - Optional `guard`, `timeoutMs`, and retry policy (`maxAttempts`, `backoff`, `delayMs`, `maxDelayMs?`).\n - `requiredIntegrations?`: integration slot ids that must be bound before the step may execute.\n - `requiredCapabilities?`: `CapabilityRef[]` that must be enabled in the resolved app config.\n- `Transition`: `from` → `to` with optional `condition` string (simple data expressions).\n\n## Registry & Validation\n\n- `defineWorkflow()` is available from `@lssm/lib.contracts-spec/workflow/spec` for safe workflow authoring in VM-evaluated runtimes.\n- `WorkflowRegistry` (`src/workflow/spec.ts`) stores specs by key `<name>.v<version>` and exposes `register`, `list`, and `get`.\n- `validateWorkflowSpec()` (`src/workflow/validation.ts`) checks:\n - Duplicate step IDs.\n - Unknown `from`/`to` transitions.\n - Empty guards/conditions.\n - Reachability from the entry step.\n - Cycles in the graph.\n - Operation/Form references against provided registries.\n- `assertWorkflowSpecValid()` wraps validation and throws `WorkflowValidationError` when errors remain.\n\n## Runtime\n\n- `WorkflowRunner` (`src/workflow/runner.ts`) executes workflows and coordinates steps.\n - `start(name, version?, initialData?)` returns a `workflowId`.\n - `executeStep(workflowId, input?)` runs the current step (automation or human).\n - `getState(workflowId)` retrieves the latest state snapshot.\n - `cancel(workflowId)` marks the workflow as cancelled.\n - `preFlightCheck(name, version?, resolvedConfig?)` evaluates integration/capability requirements before the workflow starts.\n - Throws `WorkflowPreFlightError` if required integration slots are unbound or required capabilities are disabled.\n- `StateStore` (`src/workflow/state.ts`) abstracts persistence. V1 ships with:\n - `InMemoryStateStore` (`src/workflow/adapters/memory-store.ts`) for tests/dev.\n - Placeholder factories for file/database adapters (`adapters/file-adapter.ts`, `adapters/db-adapter.ts`).\n- Guard evaluation: expression guards run through `evaluateExpression()` (`src/workflow/expression.ts`); custom policy guards can be provided via `guardEvaluator`.\n- Events: the runner emits `workflow.started`, `workflow.step_completed`, `workflow.step_failed`, and `workflow.cancelled` through the optional `eventEmitter`.\n- React bindings (`@lssm/lib.presentation-runtime-react`):\n - `useWorkflow` hook (polls state, exposes `executeStep`, `cancel`, `refresh`).\n - `WorkflowStepper` progress indicator using design-system Stepper.\n - `WorkflowStepRenderer` helper to render human/automation/decision steps with sensible fallbacks.\n\n## Authoring Checklist\n\n1. Reuse existing operations/forms; create new specs when missing.\n2. Prefer explicit `entryStepId` for clarity (especially with decision branches).\n3. Give automation steps an `operation` and human steps a `form` (warnings surface otherwise).\n4. Use short, meaningful step IDs (`submit`, `review`, `finalize`) to simplify analytics.\n5. Keep guard expressions deterministic; complex policy logic should move to PolicySpec (Phase 2).\n6. For Vercel Workflow or other VM-evaluated runtimes, import `defineWorkflow` and `WorkflowSpec` from `@lssm/lib.contracts-spec/workflow/spec`.\n\n## Testing\n\n- Add unit tests for new workflows via `assertWorkflowSpecValid`.\n- Use the new Vitest suites (`validation.test.ts`, `expression.test.ts`, `runner.test.ts`) as examples.\n- CLI support will arrive in Phase 1 PR 3 (`contractspec create --type workflow`).\n\n## Tooling\n\n- `contractspec create --type workflow` scaffolds a WorkflowSpec with interactive prompts.\n- `contractspec build <spec.workflow.ts>` generates a runner scaffold (`.runner.ts`) wired to `WorkflowRunner` and the in-memory store.\n- `contractspec validate` understands `.workflow.ts` files and checks core structure (meta, steps, transitions).\n\n## Next Steps (Non-MVP)\n\n- Persistence adapters (database/file) for workflow state (Phase 2).\n- React bindings (`useWorkflow`, `WorkflowStepper`) and presentation-runtime integration (PR 3).\n- Policy engine integration (`guard.type === 'policy'` validated against PolicySpec).\n- Telemetry hooks for step execution metrics.\n\n"}];
File without changes
@@ -0,0 +1 @@
1
+ export function validateWorkflowDevkitConfig(e,o){if(!Boolean(e.runtime?.workflowDevkit||e.runtime?.capabilities?.adapters?.["workflow-devkit"]))return;const t=e.runtime?.workflowDevkit;if(!t){o.push({level:"warning",message:"Workflow enables the workflow-devkit adapter without defining runtime.workflowDevkit."});return}k(t.runIdentity?.prefix,"runtime.workflowDevkit.runIdentity.prefix",o);k(t.hookTokens?.prefix,"runtime.workflowDevkit.hookTokens.prefix",o);const l=t.serialization?.mode??"strict";if(l==="strict"){if((t.serialization?.enforceMetadata??!0)&&e.metadata!==void 0&&!n(e.metadata))f(o,"Workflow metadata must be JSON-serializable.");if((t.serialization?.enforceMetadata??!0)&&e.annotations!==void 0&&!n(e.annotations))f(o,"Workflow annotations must be JSON-serializable.")}for(const d of e.definition.steps??[])s(d,l,o)}function s(e,o,i){const t=e.runtime?.workflowDevkit;if(!t){if(e.type==="human")i.push({level:"warning",message:`Human step "${e.id}" does not define runtime.workflowDevkit wait behavior.`});return}u(e.id,t,i);if(e.type==="automation"&&e.retry&&(!t.idempotencyKey||t.idempotencyKey.trim().length===0))i.push({level:"error",message:`Retrying automation step "${e.id}" must define runtime.workflowDevkit.idempotencyKey.`});if(t.idempotencyKey!==void 0&&t.idempotencyKey.trim().length===0)i.push({level:"error",message:`Step "${e.id}" defines an empty runtime.workflowDevkit.idempotencyKey.`});if(o==="strict"){r(e.id,"runtime.workflowDevkit.stateExample",t.stateExample,i);r(e.id,"runtime.workflowDevkit.hookWait.payloadExample",t.hookWait?.payloadExample,i);r(e.id,"runtime.workflowDevkit.webhookWait.payloadExample",t.webhookWait?.payloadExample,i);r(e.id,"runtime.workflowDevkit.approvalWait.payloadExample",t.approvalWait?.payloadExample,i);r(e.id,"runtime.workflowDevkit.streamSession.initialState",t.streamSession?.initialState,i)}}function u(e,o,i){switch(o.behavior){case"sleep":if(!o.sleep?.duration.trim())w(e,o.behavior,"sleep.duration",i);return;case"hookWait":if(o.hookWait?.resumeSource!=="hook")a(e,o.behavior,"hook",i);return;case"webhookWait":if(o.webhookWait?.resumeSource!=="webhook")a(e,o.behavior,"webhook",i);return;case"approvalWait":if(o.approvalWait?.resumeSource!=="approval")a(e,o.behavior,"approval",i);return;case"streamSession":if(o.streamSession?.resumeSource!=="stream")a(e,o.behavior,"stream",i);return}}function w(e,o,i,t){t.push({level:"error",message:`Step "${e}" configures ${o} but is missing ${i}.`})}function f(e,o){e.push({level:"error",message:o})}function a(e,o,i,t){t.push({level:"error",message:`Step "${e}" configures ${o} but does not declare resumeSource "${i}".`})}function r(e,o,i,t){if(i===void 0)return;if(!n(i))t.push({level:"error",message:`Step "${e}" field ${o} must be JSON-serializable.`})}function k(e,o,i){if(e!==void 0&&e.trim().length===0)i.push({level:"error",message:`${o} must not be empty when provided.`})}function n(e,o=new Set){if(e===null||typeof e==="boolean"||typeof e==="number"||typeof e==="string")return!0;if(typeof e==="bigint"||typeof e==="function"||typeof e==="symbol"||e===void 0)return!1;if(o.has(e))return!1;o.add(e);if(Array.isArray(e))return e.every((i)=>n(i,o));if(Object.getPrototypeOf(e)!==Object.prototype)return!1;return Object.values(e).every((i)=>n(i,o))}
@@ -0,0 +1 @@
1
+ import{validatePredicateSpec as d}from"../decisioning/predicate.js";import{validateWorkflowTask as u}from"../shared-entities/task-validators.js";import{validateWorkflowDevkitConfig as m}from"./validation-workflow-devkit.js";export class WorkflowValidationError extends Error{issues;constructor(s,o){super(s);this.issues=o;this.name="WorkflowValidationError"}}export function validateWorkflowSpec(s,o={}){const e=[],{definition:i}=s,n=Boolean(i.tasks?.length);if(!(i.steps?.length??0)&&!n){e.push({level:"error",message:"Workflow must declare at least one step."});return e}if(i.steps?.length){const r=k(i,e),t=i.entryStepId??i.steps?.[0]?.id??null;if(!t)e.push({level:"error",message:"Workflow requires an entry step (definition.entryStepId)."});else if(!r.has(t))e.push({level:"error",message:`Entry step "${t}" is not defined in steps.`});const l=v(i,r,e);W(i.steps??[],o,e);S(t,r,l,e);I(l,e)}y(s,e);m(s,e);if(n){g(i.tasks,e);w(i.tasks,i.edges??[],e)}return e}function g(s,o){const e=new Set;for(const i of s){if(e.has(i.id))o.push({level:"error",message:`Duplicate task id "${i.id}" in DAG tasks[].`});e.add(i.id);const n=u(i);if(!n.valid)o.push({level:"error",message:n.error})}}function w(s,o,e){const i=new Set(s.map((a)=>a.id));for(const a of o){if(!i.has(a.from))e.push({level:"error",message:`DAG edge references unknown task "${a.from}" in 'from'.`});if(!i.has(a.to))e.push({level:"error",message:`DAG edge references unknown task "${a.to}" in 'to'.`});f(a,`DAG edge ${a.from} -> ${a.to}`,e)}const n=new Map(s.map((a)=>[a.id,new Set]));for(const a of o)n.get(a.from)?.add(a.to);const r=new Set,t=new Set;let l=!1;const p=(a)=>{if(t.has(a)){if(!l){e.push({level:"error",message:`DAG tasks contain a cycle involving task "${a}".`});l=!0}return}if(r.has(a))return;t.add(a);for(const c of n.get(a)??[])p(c);t.delete(a);r.add(a)};for(const a of n.keys())p(a)}export function assertWorkflowSpecValid(s,o={}){const e=validateWorkflowSpec(s,o);if(e.filter((n)=>n.level==="error").length)throw new WorkflowValidationError(`Workflow ${s.meta.key}.v${s.meta.version} is invalid`,e)}function k(s,o){const e=new Map;for(const i of s.steps??[]){if(e.has(i.id)){o.push({level:"error",message:`Duplicate step id "${i.id}" detected.`});continue}e.set(i.id,i);if(i.type==="automation"&&!i.action?.operation)o.push({level:"warning",message:`Automation step "${i.id}" does not declare an operation.`});if(i.type==="human"&&!i.action?.form)o.push({level:"warning",message:`Human step "${i.id}" does not declare a form.`});if(i.guard&&!i.guard.value.trim())o.push({level:"error",message:`Guard for step "${i.id}" must have a non-empty value.`})}return e}function v(s,o,e){const i=new Map,n=new Map;for(const t of o.keys()){i.set(t,new Set);n.set(t,0)}for(const t of s.transitions??[]){const l=o.get(t.from),p=o.get(t.to);if(!l){e.push({level:"error",message:`Transition refers to unknown "from" step "${t.from}".`});continue}if(!p){e.push({level:"error",message:`Transition refers to unknown "to" step "${t.to}".`});continue}i.get(t.from)?.add(t.to);n.set(t.to,(n.get(t.to)??0)+1);h(t,e)}const r=[...n.entries()].filter(([,t])=>t===0).map(([t])=>t);if(r.length>1)e.push({level:"warning",message:`Workflow has multiple potential entry steps: ${r.join(", ")}`});return i}function h(s,o){if(s.condition&&!s.condition.trim())o.push({level:"error",message:`Transition ${s.from} -> ${s.to} declares an empty condition.`});f(s,`Transition ${s.from} -> ${s.to}`,o)}function f(s,o,e){if(s.predicate&&(s.condition!==void 0||s.runIf!==void 0))e.push({level:"error",message:`${o} cannot combine a typed predicate with a legacy expression.`});if(!s.predicate)return;for(const i of d(s.predicate))e.push({level:"error",message:`${o} has an invalid predicate at ${i.path}: ${i.message}`})}function y(s,o){const e=s.runtime;if(!e)return;const i=e.capabilities?.adapters;if(i){const r=Object.entries(i).filter(([,t])=>Boolean(t)).map(([t])=>t);if(r.length>1)o.push({level:"warning",message:`Workflow enables multiple runtime adapters (${r.join(", ")}). Ensure adapter routing is deterministic.`})}const n=e.ports;if(!n)return;for(const[r,t]of Object.entries(n)){if(t===void 0)continue;if(t.trim().length===0)o.push({level:"error",message:`Workflow runtime port "${r}" must not be empty when provided.`})}if(e.capabilities?.checkpointing&&!n.checkpointStore)o.push({level:"warning",message:"Workflow enables checkpointing without defining runtime.ports.checkpointStore."});if(e.capabilities?.suspendResume&&!n.suspension)o.push({level:"warning",message:"Workflow enables suspend/resume without defining runtime.ports.suspension."});if(e.capabilities?.approvalGateway&&!n.approvalGateway)o.push({level:"warning",message:"Workflow enables approval gateway without defining runtime.ports.approvalGateway."})}function W(s,o,e){for(const i of s){const n=i.action;if(!n)continue;if(n.operation&&o.operations){if(!o.operations.get(n.operation.key,n.operation.version))e.push({level:"error",message:`Step "${i.id}" references unknown operation ${n.operation.key}.v${n.operation.version}.`})}if(n.form&&o.forms){if(!o.forms.get(n.form.key,n.form.version))e.push({level:"error",message:`Step "${i.id}" references unknown form ${n.form.key}.v${n.form.version}.`})}}}function S(s,o,e,i){if(!s||!o.has(s))return;const n=new Set,r=[s];n.add(s);while(r.length){const t=r.shift();if(!t)continue;const l=e.get(t);if(!l)continue;for(const p of l){if(n.has(p))continue;n.add(p);r.push(p)}}for(const t of o.keys())if(!n.has(t))i.push({level:"error",message:`Step "${t}" is unreachable from entry step "${s}".`})}function I(s,o){const e=new Set,i=new Set;let n=!1;const r=(t)=>{if(i.has(t)){if(!n){o.push({level:"error",message:`Workflow contains a cycle involving step "${t}".`});n=!0}return}if(e.has(t))return;i.add(t);const l=s.get(t);if(l)for(const p of l)r(p);i.delete(t);e.add(t)};for(const t of s.keys())r(t)}export function validateWorkflowConsistency(s){const o=[];for(const e of s.workflows.list()){const i={operations:s.operations,forms:s.forms},n=validateWorkflowSpec(e,i);o.push(...n.map((r)=>({...r,message:`[${e.meta.key}.v${e.meta.version}] ${r.message}`})));if(s.capabilities){for(const r of e.definition.steps??[])for(const t of r.requiredCapabilities??[])if(!s.capabilities.get(t.key,t.version))o.push({level:"error",message:`[${e.meta.key}.v${e.meta.version}] Step "${r.id}" references unknown capability "${t.key}.v${t.version}"`,context:{stepId:r.id,capability:t}})}if(e.definition.compensation&&s.operations){for(const r of e.definition.compensation.steps)if(!s.operations.get(r.operation.key,r.operation.version))o.push({level:"error",message:`[${e.meta.key}.v${e.meta.version}] Compensation for step "${r.stepId}" references unknown operation "${r.operation.key}.v${r.operation.version}"`,context:{stepId:r.stepId,operation:r.operation}})}if(e.definition.sla?.stepDurationMs){const r=new Set((e.definition.steps??[]).map((t)=>t.id));for(const t of Object.keys(e.definition.sla.stepDurationMs))if(!r.has(t))o.push({level:"warning",message:`[${e.meta.key}.v${e.meta.version}] SLA references unknown step "${t}"`,context:{stepId:t}})}}return{valid:o.filter((e)=>e.level==="error").length===0,issues:o}}export function assertWorkflowConsistency(s){const o=validateWorkflowConsistency(s);if(!o.valid)throw new WorkflowValidationError("Workflow consistency check failed",o.issues)}export function validateSlaConfig(s){const o=[],e=s.definition.sla;if(!e)return o;if(e.totalDurationMs!==void 0&&e.totalDurationMs<=0)o.push({level:"error",message:"SLA totalDurationMs must be positive",context:{totalDurationMs:e.totalDurationMs}});if(e.stepDurationMs){for(const[n,r]of Object.entries(e.stepDurationMs))if(r<=0)o.push({level:"error",message:`SLA stepDurationMs for "${n}" must be positive`,context:{stepId:n,duration:r}});const i=Object.values(e.stepDurationMs).reduce((n,r)=>n+r,0);if(e.totalDurationMs&&i>e.totalDurationMs)o.push({level:"warning",message:`Sum of step durations (${i}ms) exceeds total duration (${e.totalDurationMs}ms)`,context:{stepDurationsSum:i,totalDurationMs:e.totalDurationMs}})}return o}export function validateCompensation(s){const o=[],e=s.definition.compensation;if(!e)return o;const i=new Set((s.definition.steps??[]).map((t)=>t.id)),n=new Set;for(const t of e.steps){if(!i.has(t.stepId))o.push({level:"error",message:`Compensation references unknown step "${t.stepId}"`,context:{stepId:t.stepId}});if(n.has(t.stepId))o.push({level:"warning",message:`Multiple compensation handlers for step "${t.stepId}"`,context:{stepId:t.stepId}});n.add(t.stepId);if(!t.operation?.key||!t.operation?.version)o.push({level:"error",message:`Compensation for step "${t.stepId}" must specify operation with key and version`,context:{stepId:t.stepId}})}const r=(s.definition.steps??[]).filter((t)=>t.type==="automation");for(const t of r)if(!n.has(t.id))o.push({level:"warning",message:`Automation step "${t.id}" has no compensation handler`,context:{stepId:t.id}});return o}export function validateRetryConfig(s){const o=[];for(const e of s.definition.steps??[]){if(!e.retry)continue;if(e.retry.maxAttempts<=0)o.push({level:"error",message:`Step "${e.id}" retry maxAttempts must be positive`,context:{stepId:e.id,maxAttempts:e.retry.maxAttempts}});if(e.retry.delayMs<=0)o.push({level:"error",message:`Step "${e.id}" retry delayMs must be positive`,context:{stepId:e.id,delayMs:e.retry.delayMs}});if(e.retry.maxDelayMs!==void 0&&e.retry.maxDelayMs<e.retry.delayMs)o.push({level:"warning",message:`Step "${e.id}" retry maxDelayMs (${e.retry.maxDelayMs}) is less than delayMs (${e.retry.delayMs})`,context:{stepId:e.id}})}return o}export function validateWorkflowComprehensive(s,o={}){const e=[];e.push(...validateWorkflowSpec(s,o));e.push(...validateSlaConfig(s));e.push(...validateCompensation(s));e.push(...validateRetryConfig(s));return{valid:e.filter((i)=>i.level==="error").length===0,issues:e}}
File without changes
File without changes
@@ -0,0 +1 @@
1
+ import{ContractSpecError as e,normalizeContractError as s}from"../results/index.js";export function toWorkflowSdkError(r,o){const t=s(r,{source:{service:"workflow"}});return problemToWorkflowSdkError(t.problem,o)}export function problemToWorkflowSdkError(r,o){const t=r.detail??r.title,n={code:r.code,status:r.status,retryAfter:r.retryAfter,problem:r};if(r.retryable)return new o.RetryableError(t,n);return new o.FatalError(t,n)}export function throwWorkflowSdkError(r,o){throw toWorkflowSdkError(r instanceof e?r.problem:r,o)}
@@ -0,0 +1 @@
1
+ import*as e from"zod";import{CONTRACT_SPEC_TYPES as t}from"../types.js";import{AgentTargetSchema as o,ReleaseEnforceOnSchema as n}from"../versioning/schema.js";import{EnvironmentConfigSchema as a}from"./environment.js";import{LssmOsConfigV1Schema as i}from"./lssm-os-schema.js";export*from"./environment.js";export*from"./contractsrc-types.js";export const SchemaFormatSchema=e.enum(["contractspec","zod","json-schema","graphql"]),OpenApiSourceConfigSchema=e.object({name:e.string(),url:e.string().url().optional(),file:e.string().optional(),syncMode:e.enum(["import","sync","validate"]).default("validate").optional(),tags:e.array(e.string()).optional(),exclude:e.array(e.string()).optional(),include:e.array(e.string()).optional(),prefix:e.string().optional(),defaultStability:e.enum(["experimental","beta","stable","deprecated"]).optional(),defaultAuth:e.enum(["anonymous","user","admin"]).optional(),defaultOwners:e.array(e.string()).optional(),schemaFormat:SchemaFormatSchema.default("contractspec").optional()}),OpenApiExportConfigSchema=e.object({outputPath:e.string().default("./openapi.json").optional(),format:e.enum(["json","yaml"]).default("json").optional(),title:e.string().optional(),version:e.string().optional(),description:e.string().optional(),servers:e.array(e.object({url:e.string(),description:e.string().optional()})).optional()}),OpenApiConfigSchema=e.object({sources:e.array(OpenApiSourceConfigSchema).optional(),export:OpenApiExportConfigSchema.optional()}),CliCommandPackDiscoveryConfigSchema=e.object({include:e.array(e.string().trim().min(1)).optional(),exclude:e.array(e.string().trim().min(1)).optional()}),BuilderRuntimeModeSchema=e.enum(["managed","local","hybrid"]),BuilderBootstrapPresetSchema=e.enum(["managed_mvp","local_daemon_mvp","hybrid_mvp"]),BuilderApiConfigSchema=e.object({baseUrl:e.string().url().optional(),controlPlaneTokenEnvVar:e.string().default("CONTROL_PLANE_API_TOKEN").optional()}),BuilderLocalRuntimeConfigSchema=e.object({runtimeId:e.string().default("rt_local_daemon").optional(),grantedTo:e.string().default("local:operator").optional(),providerIds:e.array(e.string()).default(["provider.codex","provider.local.model"]).optional()});const r=e.enum(["codex-opencode-go"]),l=e.enum(["planner","architect","critic","executor","verifier","quality-reviewer","security-reviewer"]),s=e.enum(["verifier","quality-reviewer","security-reviewer"]);export const BuilderRoleProviderConfigSchema=e.object({role:l,providerId:e.string().min(1),modelId:e.string().min(1).optional(),fallbackModelIds:e.array(e.string().min(1)).optional()}),BuilderQualityGateConfigSchema=e.object({key:e.string().min(1),required:e.boolean().default(!0).optional(),role:s.optional(),modelId:e.string().min(1).optional()}),BuilderBudgetConfigSchema=e.object({maxIterations:e.number().int().positive().optional(),maxEstimatedCostUsd:e.number().positive().optional(),maxRuntimeMinutes:e.number().int().positive().optional()}),BuilderProviderCommandConfigSchema=e.object({codex:e.string().min(1).optional(),opencode:e.string().min(1).optional()}),BuilderSafetyConfigSchema=e.object({codexSandbox:e.enum(["read-only","workspace-write"]).optional(),opencodeAutoApprove:e.boolean().optional()}),BuilderSmokeTestModeSchema=e.enum(["disabled","doctor-only","always"]),BuilderConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),runtimeMode:BuilderRuntimeModeSchema.default("managed").optional(),bootstrapPreset:BuilderBootstrapPresetSchema.default("managed_mvp").optional(),api:BuilderApiConfigSchema.optional(),localRuntime:BuilderLocalRuntimeConfigSchema.optional(),executionProfile:r.optional(),roleProviders:e.array(BuilderRoleProviderConfigSchema).optional(),qualityGates:e.array(BuilderQualityGateConfigSchema).optional(),budget:BuilderBudgetConfigSchema.optional(),providerCommands:BuilderProviderCommandConfigSchema.optional(),smokeTestMode:BuilderSmokeTestModeSchema.optional(),safety:BuilderSafetyConfigSchema.optional(),maxIterations:e.number().int().positive().optional()}),GroupingStrategySchema=e.enum(["by-tag","by-owner","by-domain","by-url-path-single","by-url-path-multi","by-feature","none"]),GroupingRuleSchema=e.object({strategy:GroupingStrategySchema,urlPathLevel:e.number().optional(),pattern:e.string().optional()}),TranslationDiagnosticsConfigSchema=e.object({catalogGlob:e.string().optional(),baseLocale:e.string().optional(),locales:e.array(e.string()).optional(),allowExtraKeys:e.boolean().optional(),checkPlaceholders:e.boolean().optional(),checkIcu:e.boolean().optional(),strict:e.boolean().optional()}),FolderConventionsSchema=e.object({models:e.string().default("models").optional(),operations:e.string().default("operations/commands|queries").optional(),events:e.string().default("events").optional(),presentations:e.string().default("presentations").optional(),forms:e.string().default("forms").optional(),capabilities:e.string().default("capabilities").optional(),policies:e.string().default("policies").optional(),tests:e.string().default("tests").optional(),translations:e.string().default("translations").optional(),groupByFeature:e.boolean().default(!0).optional(),operationsGrouping:GroupingRuleSchema.optional(),modelsGrouping:GroupingRuleSchema.optional(),eventsGrouping:GroupingRuleSchema.optional()}),PrCommentConfigSchema=e.object({enabled:e.boolean().default(!0).optional(),template:e.enum(["minimal","detailed"]).default("detailed").optional(),updateExisting:e.boolean().default(!0).optional()}),CheckRunConfigSchema=e.object({enabled:e.boolean().default(!0).optional(),name:e.string().default("ContractSpec Impact").optional(),failOnBreaking:e.boolean().default(!0).optional(),failOnChanges:e.boolean().default(!1).optional()}),ImpactConfigSchema=e.object({baseline:e.string().default("default-branch").optional(),include:e.array(e.string()).optional(),exclude:e.array(e.string()).optional()}),PackageDeclarationRolloutSchema=e.enum(["off","warning","error"]),PackageDeclarationTargetSchema=e.enum(["feature","integration","app-config","module-bundle","example"]),PackageDeclarationRequiredByKindSchema=e.object({libs:PackageDeclarationTargetSchema.default("feature").optional(),modules:PackageDeclarationTargetSchema.default("feature").optional(),integrations:PackageDeclarationTargetSchema.default("integration").optional(),bundles:PackageDeclarationTargetSchema.default("module-bundle").optional(),apps:PackageDeclarationTargetSchema.default("app-config").optional(),appsRegistry:PackageDeclarationTargetSchema.default("app-config").optional(),examples:PackageDeclarationTargetSchema.default("example").optional()}),PackageDeclarationConfigSchema=e.object({severity:PackageDeclarationRolloutSchema.default("error").optional(),requiredByKind:PackageDeclarationRequiredByKindSchema.optional(),allowMissing:e.array(e.string()).default([]).optional()}),CiConfigSchema=e.object({checks:e.array(e.string()).default(["structure","integrity","deps"]).optional(),skipChecks:e.array(e.string()).optional(),failOnWarnings:e.boolean().default(!1).optional(),uploadSarif:e.boolean().default(!0).optional(),prComment:PrCommentConfigSchema.optional(),checkRun:CheckRunConfigSchema.optional(),impact:ImpactConfigSchema.optional(),packageDeclarations:PackageDeclarationConfigSchema.optional()}),ExternalWorkspaceSchema=e.object({alias:e.string(),submodule:e.string(),packages:e.array(e.string()).optional(),autoResolve:e.boolean().default(!0).optional()}),MetaRepoConfigSchema=e.object({activeScope:e.string().optional(),externalWorkspaces:e.array(ExternalWorkspaceSchema).optional(),crossWorkspaceSearch:e.boolean().default(!1).optional()}),FormatterTypeSchema=e.enum(["biome","dprint","custom"]),FormatterConfigSchema=e.object({enabled:e.boolean().default(!0).optional(),type:FormatterTypeSchema.optional(),command:e.string().optional(),args:e.array(e.string()).optional(),timeout:e.number().default(30000).optional()}),BumpStrategySchema=e.enum(["impact","conventional"]),ChangelogFormatSchema=e.enum(["keep-a-changelog","conventional","custom"]),ChangelogTierSchema=e.enum(["spec","library","monorepo"]),VersioningConfigSchema=e.object({autoBump:e.boolean().default(!1).optional(),bumpStrategy:BumpStrategySchema.default("impact").optional(),integrateWithChangesets:e.boolean().default(!1).optional(),changelogTiers:e.array(ChangelogTierSchema).default(["spec","library","monorepo"]).optional(),format:ChangelogFormatSchema.default("keep-a-changelog").optional(),commitChanges:e.boolean().default(!1).optional(),commitMessage:e.string().default("chore: bump spec versions").optional(),createTags:e.boolean().default(!1).optional(),tagPrefix:e.string().default("v").optional(),include:e.array(e.string()).optional(),exclude:e.array(e.string()).optional()}),ReleaseConfigSchema=e.object({enforceOn:n.default("release-branch").optional(),requireChangesetForPublished:e.boolean().default(!0).optional(),requireReleaseCapsule:e.boolean().default(!0).optional(),publishArtifacts:e.array(e.string()).default(["manifest.json","patch-notes.md","customer-guide.md","upgrade-manifest.json"]).optional(),agentTargets:e.array(o).default(["codex"]).optional()}),UpgradeConfigSchema=e.object({manifestPaths:e.array(e.string()).default(["generated/releases/upgrade-manifest.json"]).optional(),defaultAgentTarget:o.default("codex").optional(),enableInteractiveGuidance:e.boolean().default(!0).optional(),applyCodemods:e.boolean().default(!0).optional()}),RuleSyncTargetSchema=e.enum(["cursor","windsurf","cline","claude-code","copilot","subagent","skill"]),RuleSyncConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),rulesDir:e.string().default("./.rules").optional(),rules:e.array(e.string()).default(["**/*.rule.md"]).optional(),targets:e.array(RuleSyncTargetSchema).default(["cursor","windsurf"]).optional(),autoSync:e.boolean().default(!0).optional(),ejectMode:e.boolean().default(!1).optional()}),ClaudeAgentSDKConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),apiKey:e.string().optional(),model:e.string().default("claude-sonnet-4-6").optional(),computerUse:e.boolean().default(!1).optional(),extendedThinking:e.boolean().default(!1).optional()}),OpenCodeSDKConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),serverUrl:e.string().optional(),port:e.number().optional(),agentType:e.enum(["build","plan","general","explore"]).default("general").optional(),model:e.string().optional()}),ExternalAgentsConfigSchema=e.object({claudeAgent:ClaudeAgentSDKConfigSchema.optional(),openCode:OpenCodeSDKConfigSchema.optional()}),ConnectVerdictSchema=e.enum(["permit","rewrite","require_review","deny"]),ConnectAdapterModeSchema=e.enum(["plugin","rule","wrapper"]),ConnectAdapterConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),mode:ConnectAdapterModeSchema.default("plugin").optional(),packageRef:e.string().optional()}),ConnectStorageConfigSchema=e.object({root:e.string().default(".contractspec/connect").optional(),contextPack:e.string().default(".contractspec/connect/context-pack.json").optional(),planPacket:e.string().default(".contractspec/connect/plan-packet.json").optional(),patchVerdict:e.string().default(".contractspec/connect/patch-verdict.json").optional(),auditFile:e.string().default(".contractspec/connect/audit.ndjson").optional(),reviewPacketsDir:e.string().default(".contractspec/connect/review-packets").optional()}),ConnectReviewThresholdsSchema=e.object({protectedPathWrite:ConnectVerdictSchema.optional(),unknownImpact:ConnectVerdictSchema.optional(),contractDrift:ConnectVerdictSchema.optional(),breakingChange:ConnectVerdictSchema.optional(),destructiveCommand:ConnectVerdictSchema.optional()}),ConnectPolicyConfigSchema=e.object({protectedPaths:e.array(e.string()).optional(),immutablePaths:e.array(e.string()).optional(),generatedPaths:e.array(e.string()).optional(),smokeChecks:e.array(e.string()).optional(),reviewThresholds:ConnectReviewThresholdsSchema.optional()}),ConnectCommandPolicySchema=e.object({allow:e.array(e.string()).optional(),review:e.array(e.string()).optional(),deny:e.array(e.string()).optional()}),ConnectCanonPackRefSchema=e.object({ref:e.string(),readOnly:e.boolean().default(!0).optional()}),ConnectStudioConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),mode:e.enum(["off","review-bridge"]).default("off").optional(),endpoint:e.string().url().optional(),queue:e.string().optional()}),ConnectAdoptionFamilySchema=e.enum(["ui","contracts","integrations","runtime","sharedLibs","solutions"]),ConnectAdoptionCatalogConfigSchema=e.object({indexPath:e.string().default(".contractspec/adoption/catalog.json").optional(),overrideManifestPath:e.string().default(".contractspec/adoption/overrides.json").optional()}),ConnectAdoptionWorkspaceScanConfigSchema=e.object({include:e.array(e.string()).default(["src/**/*.{ts,tsx,js,jsx}","app/**/*.{ts,tsx,js,jsx}","components/**/*.{ts,tsx,js,jsx}","packages/**/*.{ts,tsx,js,jsx}"]).optional(),exclude:e.array(e.string()).default(["**/node_modules/**","**/dist/**","**/.next/**","**/coverage/**","**/generated/**","**/*.test.*","**/*.spec.*","**/*.stories.*"]).optional()}),ConnectAdoptionFamiliesConfigSchema=e.object({ui:e.boolean().default(!0).optional(),contracts:e.boolean().default(!0).optional(),integrations:e.boolean().default(!0).optional(),runtime:e.boolean().default(!0).optional(),sharedLibs:e.boolean().default(!0).optional(),solutions:e.boolean().default(!0).optional()}),ConnectAdoptionThresholdsSchema=e.object({workspaceReuse:ConnectVerdictSchema.default("rewrite").optional(),contractspecReuse:ConnectVerdictSchema.default("rewrite").optional(),ambiguous:ConnectVerdictSchema.default("require_review").optional(),newExternalDependency:ConnectVerdictSchema.default("require_review").optional(),newImplementation:ConnectVerdictSchema.default("require_review").optional()}),ConnectAdoptionConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),catalog:ConnectAdoptionCatalogConfigSchema.optional(),workspaceScan:ConnectAdoptionWorkspaceScanConfigSchema.optional(),families:ConnectAdoptionFamiliesConfigSchema.optional(),thresholds:ConnectAdoptionThresholdsSchema.optional()}),ConnectConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),durableAuthorityRequired:e.boolean().default(!1).optional(),adapters:e.object({cursor:ConnectAdapterConfigSchema.optional(),codex:ConnectAdapterConfigSchema.optional(),"claude-code":ConnectAdapterConfigSchema.optional()}).optional(),storage:ConnectStorageConfigSchema.optional(),policy:ConnectPolicyConfigSchema.optional(),commands:ConnectCommandPolicySchema.optional(),canonPacks:e.array(ConnectCanonPackRefSchema).optional(),studio:ConnectStudioConfigSchema.optional(),adoption:ConnectAdoptionConfigSchema.optional()}),DeliveryRuntimeModeSchema=e.enum(["managed","local","hybrid"]),DeliveryConfigSchema=e.object({enabled:e.boolean().default(!1).optional(),runtimeMode:DeliveryRuntimeModeSchema.default("local").optional(),durableEvidenceRequired:e.boolean().default(!0).optional(),qualityProfileRef:e.string().min(1).default("quality.default").optional(),evidenceLedgerPath:e.string().min(1).default(".contractspec/delivery/evidence.ndjson").optional()}),RuleSeveritySchema=e.enum(["off","warn","error"]),SpecKindSchema=e.enum(t),LintRulesSchema=e.object({"require-acceptance":RuleSeveritySchema.optional(),"require-examples":RuleSeveritySchema.optional(),"require-stability":RuleSeveritySchema.optional(),"require-owners-format":RuleSeveritySchema.optional(),"event-past-tense":RuleSeveritySchema.optional(),"no-todo":RuleSeveritySchema.optional(),"workflow-transitions":RuleSeveritySchema.optional(),"telemetry-privacy":RuleSeveritySchema.optional(),"experiment-allocation":RuleSeveritySchema.optional(),"app-config-appid":RuleSeveritySchema.optional(),"app-config-capabilities":RuleSeveritySchema.optional(),"data-view-fields":RuleSeveritySchema.optional()}),TestLinkingStrategySchema=e.enum(["target-first","convention-only","both"]),TestLinkingConfigSchema=e.object({strategy:TestLinkingStrategySchema.default("both").optional(),warnOnConvention:e.boolean().default(!1).optional()}),TestingHarnessBrowserEngineSchema=e.enum(["playwright","agent-browser","both"]),TestingHarnessTargetUrlsSchema=e.object({preview:e.string().url().optional(),task:e.string().url().optional(),shared:e.string().url().optional(),sandbox:e.string().url().optional()}),TestingHarnessVisualConfigSchema=e.object({maxDiffBytes:e.number().int().min(0).optional(),maxDiffRatio:e.number().min(0).max(1).optional(),updateBaselines:e.boolean().default(!1).optional()}),TestingHarnessAuthProfileConfigSchema=e.object({kind:e.enum(["storage-state","browser-profile","session-name","headers-env"]),ref:e.string().min(1)}),TestingHarnessConfigSchema=e.object({artifactRoot:e.string().default(".contractspec/harness").optional(),browserEngine:TestingHarnessBrowserEngineSchema.default("playwright").optional(),targetBaseUrls:TestingHarnessTargetUrlsSchema.optional(),allowlistedDomains:e.array(e.string()).optional(),visual:TestingHarnessVisualConfigSchema.optional(),authProfiles:e.record(e.string(),TestingHarnessAuthProfileConfigSchema).optional()}),TestingConfigSchema=e.object({runner:e.enum(["internal","jest","vitest","bun"]).default("internal").optional(),testMatch:e.array(e.string()).default(["**/*.{test,spec}.{ts,js}"]).optional(),autoGenerate:e.boolean().default(!1).optional(),integrity:e.object({requireTestsFor:e.array(SpecKindSchema).optional(),minCoverage:e.number().optional()}).optional(),testLinking:TestLinkingConfigSchema.optional(),harness:TestingHarnessConfigSchema.optional()}),RulesConfigSchema=e.object({defaults:LintRulesSchema.optional(),overrides:e.record(SpecKindSchema,LintRulesSchema).optional()}),HooksConfigSchema=e.record(e.string(),e.array(e.string())),ContractsrcSchema=e.object({$schema:e.string().optional(),aiProvider:e.enum(["claude","openai","ollama","mistral","custom"]).default("claude").optional(),aiModel:e.string().optional(),agentMode:e.enum(["simple","cursor","claude-code","openai-codex","claude-agent-sdk","opencode","opencode-sdk"]).default("simple").optional(),customEndpoint:e.url().nullable().optional(),customApiKey:e.string().nullable().optional(),outputDir:e.string().default("./src").optional(),conventions:FolderConventionsSchema.optional(),defaultOwners:e.array(e.string()).default([]).optional(),defaultTags:e.array(e.string()).default([]).optional(),packages:e.array(e.string()).optional(),excludePackages:e.array(e.string()).optional(),recursive:e.boolean().optional(),i18n:TranslationDiagnosticsConfigSchema.optional(),commandPacks:CliCommandPackDiscoveryConfigSchema.optional(),openapi:OpenApiConfigSchema.optional(),ci:CiConfigSchema.optional(),metaRepo:MetaRepoConfigSchema.optional(),rules:RulesConfigSchema.optional(),testing:TestingConfigSchema.optional(),hooks:HooksConfigSchema.optional(),schemaFormat:SchemaFormatSchema.default("contractspec").optional(),formatter:FormatterConfigSchema.optional(),versioning:VersioningConfigSchema.optional(),release:ReleaseConfigSchema.optional(),upgrade:UpgradeConfigSchema.optional(),ruleSync:RuleSyncConfigSchema.optional(),externalAgents:ExternalAgentsConfigSchema.optional(),builder:BuilderConfigSchema.optional(),delivery:DeliveryConfigSchema.optional(),connect:ConnectConfigSchema.optional(),environment:a.optional(),lssmOs:i.optional()}),DEFAULT_CONTRACTSRC={aiProvider:"claude",agentMode:"simple",outputDir:"./src",ci:{packageDeclarations:{severity:"error",requiredByKind:{libs:"feature",modules:"feature",integrations:"integration",bundles:"module-bundle",apps:"app-config",appsRegistry:"app-config",examples:"example"},allowMissing:[]}},conventions:{models:"models",operations:"interactions/commands|queries",events:"events",presentations:"presentations",forms:"forms",capabilities:"capabilities",policies:"policies",tests:"tests",translations:"translations",groupByFeature:!0},defaultOwners:[],defaultTags:[],schemaFormat:"contractspec",i18n:{catalogGlob:"packages/**/src/i18n/catalogs",baseLocale:"en",locales:["en","fr","es"],allowExtraKeys:!1,checkPlaceholders:!0,checkIcu:!0,strict:!1},release:{enforceOn:"release-branch",requireChangesetForPublished:!0,requireReleaseCapsule:!0,publishArtifacts:["manifest.json","patch-notes.md","customer-guide.md","upgrade-manifest.json"],agentTargets:["codex"]},upgrade:{manifestPaths:["generated/releases/upgrade-manifest.json"],defaultAgentTarget:"codex",enableInteractiveGuidance:!0,applyCodemods:!0},builder:{enabled:!1,runtimeMode:"managed",bootstrapPreset:"managed_mvp",api:{controlPlaneTokenEnvVar:"CONTROL_PLANE_API_TOKEN"},localRuntime:{runtimeId:"rt_local_daemon",grantedTo:"local:operator",providerIds:["provider.codex","provider.opencode.go","provider.local.model"]},executionProfile:"codex-opencode-go",roleProviders:[{role:"planner",providerId:"provider.codex",modelId:"gpt-5.5"},{role:"architect",providerId:"provider.codex",modelId:"gpt-5.5"},{role:"critic",providerId:"provider.codex",modelId:"gpt-5.5"},{role:"executor",providerId:"provider.opencode.go",modelId:"opencode-go/deepseek-v4-flash",fallbackModelIds:["opencode-go/kimi-k2.6"]},{role:"verifier",providerId:"provider.codex",modelId:"gpt-5.5"}],qualityGates:[{key:"deterministic-checks",required:!0,role:"verifier",modelId:"gpt-5.5"},{key:"quality-review",required:!0,role:"quality-reviewer",modelId:"gpt-5.5"},{key:"security-review",required:!0,role:"security-reviewer",modelId:"gpt-5.5"}],budget:{maxIterations:5,maxRuntimeMinutes:90},maxIterations:5},connect:{enabled:!1,durableAuthorityRequired:!1,adapters:{cursor:{enabled:!1,mode:"plugin"},codex:{enabled:!1,mode:"wrapper"},"claude-code":{enabled:!1,mode:"rule"}},storage:{root:".contractspec/connect",contextPack:".contractspec/connect/context-pack.json",planPacket:".contractspec/connect/plan-packet.json",patchVerdict:".contractspec/connect/patch-verdict.json",auditFile:".contractspec/connect/audit.ndjson",reviewPacketsDir:".contractspec/connect/review-packets"},policy:{reviewThresholds:{protectedPathWrite:"require_review",unknownImpact:"require_review",contractDrift:"require_review",breakingChange:"require_review",destructiveCommand:"deny"}},studio:{enabled:!1,mode:"off"},adoption:{enabled:!1,catalog:{indexPath:".contractspec/adoption/catalog.json",overrideManifestPath:".contractspec/adoption/overrides.json"},workspaceScan:{include:["src/**/*.{ts,tsx,js,jsx}","app/**/*.{ts,tsx,js,jsx}","components/**/*.{ts,tsx,js,jsx}","packages/**/*.{ts,tsx,js,jsx}"],exclude:["**/node_modules/**","**/dist/**","**/.next/**","**/coverage/**","**/generated/**","**/storybook-static/**","**/*.test.*","**/*.spec.*","**/*.stories.*"]},families:{ui:!0,contracts:!0,integrations:!0,runtime:!0,sharedLibs:!0,solutions:!0},thresholds:{workspaceReuse:"rewrite",contractspecReuse:"rewrite",ambiguous:"require_review",newExternalDependency:"require_review",newImplementation:"require_review"}}},delivery:{enabled:!1,runtimeMode:"local",durableEvidenceRequired:!0,qualityProfileRef:"quality.default",evidenceLedgerPath:".contractspec/delivery/evidence.ndjson"}};
@@ -0,0 +1 @@
1
+ export function validateAliasCollisions(e,n){const s=[];for(const[c,i]of Object.entries(e.variables??{}))for(const[f,o]of(i.aliases??[]).entries()){const t={...o,logicalKey:i.key},l=s.find((a)=>a.name===o.name&&a.logicalKey!==i.key&&p(a,t));if(l)n.addIssue({code:"custom",path:["variables",c,"aliases",f,"name"],message:`Alias "${o.name}" collides in target scope with logical variable "${l.logicalKey}".`});s.push(t)}}function p(e,n){return r(e.targetId,n.targetId)&&r(e.profile,n.profile)&&r(e.framework,n.framework)}function r(e,n){return e===void 0||n===void 0||e===n}
@@ -0,0 +1 @@
1
+ import{validateAliasCollisions as r}from"./environment-validation-alias.js";export function isPublicEnvironmentAlias(e){return e.startsWith("NEXT_PUBLIC_")||e.startsWith("EXPO_PUBLIC_")}export function validateEnvironmentConfig(e,i){l(e,i);r(e,i)}function l(e,i){for(const[a,t]of Object.entries(e.variables??{})){const s=t.sensitivity??"internal";if((s==="secret"||s==="sensitive")&&t.defaultValue!==void 0)i.addIssue({code:"custom",path:["variables",a,"defaultValue"],message:"Secret and sensitive variables cannot define defaultValue."});for(const[o,n]of(t.aliases??[]).entries())if((n.exposure==="public-client"||n.exposure==="native-client"||n.materialization==="next-config-env"||isPublicEnvironmentAlias(n.name))&&s!=="public")i.addIssue({code:"custom",path:["variables",a,"aliases",o,"name"],message:'Public env aliases require sensitivity "public"; never expose secret or sensitive values.'})}}
@@ -0,0 +1 @@
1
+ import*as e from"zod";import{validateEnvironmentConfig as r}from"./environment-validation.js";export{isPublicEnvironmentAlias}from"./environment-validation.js";export const EnvironmentSensitivitySchema=e.enum(["public","internal","sensitive","secret"]),EnvironmentLifecycleSchema=e.enum(["build-time","runtime","both"]),EnvironmentSurfaceSchema=e.enum(["server","public-client","native-client","edge","worker","ci"]),AppEnvironmentFrameworkSchema=e.enum(["next","expo","node","vite","worker","custom"]),EnvironmentValueSourceSchema=e.object({type:e.enum(["literal","env","secret","managed-connection","byok-connection"]),ref:e.string().optional(),envVar:e.string().optional(),value:e.union([e.string(),e.number(),e.boolean()]).optional(),connectionId:e.string().optional(),secretRef:e.string().optional()}),EnvVariableAliasSchema=e.object({name:e.string().min(1),targetId:e.string().optional(),framework:AppEnvironmentFrameworkSchema.optional(),profile:e.string().optional(),exposure:EnvironmentSurfaceSchema.optional(),materialization:e.enum(["env-file","process-env","next-config-env"]).default("env-file").optional()}),EnvironmentVariableDefinitionSchema=e.object({key:e.string().min(1),description:e.string().optional(),sensitivity:EnvironmentSensitivitySchema.default("internal").optional(),lifecycle:EnvironmentLifecycleSchema.default("runtime").optional(),allowedSurfaces:e.array(EnvironmentSurfaceSchema).optional(),requiredProfiles:e.array(e.string()).optional(),defaultValue:e.union([e.string(),e.number(),e.boolean()]).optional(),example:e.string().optional(),valueSource:EnvironmentValueSourceSchema.optional(),aliases:e.array(EnvVariableAliasSchema).optional()}),AppEnvironmentTargetSchema=e.object({id:e.string().min(1),packageName:e.string().optional(),packagePath:e.string().optional(),appId:e.string().optional(),framework:AppEnvironmentFrameworkSchema.optional(),surfaces:e.array(EnvironmentSurfaceSchema).optional(),profiles:e.array(e.string()).optional(),envFiles:e.array(e.string()).optional()}),EnvironmentProfileConfigSchema=e.object({envFiles:e.array(e.string()).optional(),secretProviders:e.array(e.string()).optional(),variables:e.record(e.string(),EnvironmentValueSourceSchema).optional()}),SecretRequirementConfigSchema=e.object({key:e.string().min(1),description:e.string().optional(),required:e.boolean().default(!0).optional(),provider:e.string().optional(),envVar:e.string().optional(),secretRefPattern:e.string().optional(),rotationDays:e.number().int().positive().optional()}),EnvironmentConfigSchema=e.object({profiles:e.record(e.string(),EnvironmentProfileConfigSchema).optional(),variables:e.record(e.string(),EnvironmentVariableDefinitionSchema).optional(),targets:e.record(e.string(),AppEnvironmentTargetSchema).optional(),secretRequirements:e.record(e.string(),SecretRequirementConfigSchema).optional()}).superRefine((n,i)=>{r(n,i)});
@@ -0,0 +1 @@
1
+ export{AgentTargetSchema,ReleaseEnforceOnSchema}from"../versioning/schema.js";export{BuilderApiConfigSchema,BuilderBootstrapPresetSchema,BuilderConfigSchema,BuilderLocalRuntimeConfigSchema,BuilderRuntimeModeSchema,BumpStrategySchema,ChangelogFormatSchema,ChangelogTierSchema,CliCommandPackDiscoveryConfigSchema,ConnectAdapterConfigSchema,ConnectAdapterModeSchema,ConnectAdoptionCatalogConfigSchema,ConnectAdoptionConfigSchema,ConnectAdoptionFamiliesConfigSchema,ConnectAdoptionFamilySchema,ConnectAdoptionThresholdsSchema,ConnectAdoptionWorkspaceScanConfigSchema,ConnectCanonPackRefSchema,ConnectCommandPolicySchema,ConnectConfigSchema,ConnectPolicyConfigSchema,ConnectReviewThresholdsSchema,ConnectStorageConfigSchema,ConnectStudioConfigSchema,ConnectVerdictSchema,ContractsrcSchema,DEFAULT_CONTRACTSRC,FolderConventionsSchema,FormatterConfigSchema,FormatterTypeSchema,OpenApiConfigSchema,OpenApiExportConfigSchema,OpenApiSourceConfigSchema,PackageDeclarationConfigSchema,PackageDeclarationRequiredByKindSchema,PackageDeclarationRolloutSchema,PackageDeclarationTargetSchema,ReleaseConfigSchema,RuleSyncConfigSchema,RuleSyncTargetSchema,SchemaFormatSchema,SpecKindSchema,TranslationDiagnosticsConfigSchema,UpgradeConfigSchema,VersioningConfigSchema}from"./contractsrc-schema.js";export{AppEnvironmentFrameworkSchema,AppEnvironmentTargetSchema,EnvironmentConfigSchema,EnvironmentLifecycleSchema,EnvironmentProfileConfigSchema,EnvironmentSensitivitySchema,EnvironmentSurfaceSchema,EnvironmentValueSourceSchema,EnvironmentVariableDefinitionSchema,EnvVariableAliasSchema,isPublicEnvironmentAlias,SecretRequirementConfigSchema}from"./environment.js";export*from"./lssm-os-inheritance.js";export*from"./lssm-os-schema.js";export*from"./lssm-os-types.js";export const tech_workspace_config_DocBlocks=[{id:"docs.tech.contracts.workspace-config",title:"Workspace Configuration (.contractsrc)",summary:"Configuration-as-code conventions for ContractSpec workspaces (`.contractsrc.json`).",kind:"reference",visibility:"public",route:"/docs/tech/contracts/workspace-config",tags:["tech","contracts","config"],body:"## Workspace Configuration (.contractsrc)\n\nContractSpec uses a hierarchical configuration system anchored by `.contractsrc.json` files. Configuration loader supports standard rc-file discovery (cosmiconfig).\n\n### Schema Formats\n\nThe `schemaFormat` option controls the output format of schema generation commands (like `contractspec openapi import`).\n\nSupported formats:\n- `contractspec` (default): Generates standard `defineSchemaModel` code.\n- `zod`: Generates raw Zod schemas using `z.object({...})`.\n- `json-schema`: Generates JSON Schema definitions.\n- `graphql`: Generates GraphQL SDL type definitions.\n\n### Config Interface\n\n```ts\nexport interface ContractsrcConfig {\n // ... existing fields ...\n schemaFormat?: 'contractspec' | 'zod' | 'json-schema' | 'graphql';\n}\n```\n\nDefined in `@lssm/lib.contracts-spec/workspace-config`.\n\n### CI Package Declaration Coverage\n\nThe `ci.packageDeclarations` section lets workspaces stage package-level contract declaration enforcement across the monorepo.\n\n```ts\nexport interface ContractsrcConfig {\n ci?: {\n packageDeclarations?: {\n severity?: 'off' | 'warning' | 'error';\n requiredByKind?: {\n libs?: 'feature';\n modules?: 'feature';\n integrations?: 'integration';\n bundles?: 'module-bundle';\n apps?: 'app-config';\n appsRegistry?: 'app-config';\n examples?: 'example';\n };\n allowMissing?: string[];\n };\n };\n}\n```\n\n### Connect\n\nThe `connect` section configures ContractSpec Connect as a codebase-aligned adapter layer inside the existing CLI and runtime stack.\n\n```ts\nexport interface ContractsrcConfig {\n connect?: {\n enabled?: boolean;\n adapters?: {\n cursor?: { enabled?: boolean; mode?: 'plugin' | 'rule' | 'wrapper' };\n codex?: { enabled?: boolean; mode?: 'plugin' | 'rule' | 'wrapper' };\n 'claude-code'?: { enabled?: boolean; mode?: 'plugin' | 'rule' | 'wrapper' };\n };\n storage?: {\n root?: string;\n contextPack?: string;\n planPacket?: string;\n patchVerdict?: string;\n auditFile?: string;\n reviewPacketsDir?: string;\n };\n policy?: {\n protectedPaths?: string[];\n immutablePaths?: string[];\n generatedPaths?: string[];\n smokeChecks?: string[];\n reviewThresholds?: {\n protectedPathWrite?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n unknownImpact?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n contractDrift?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n breakingChange?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n destructiveCommand?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n };\n };\n commands?: {\n allow?: string[];\n review?: string[];\n deny?: string[];\n };\n canonPacks?: Array<{ ref: string; readOnly?: boolean }>;\n studio?: { enabled?: boolean; mode?: 'off' | 'review-bridge'; endpoint?: string; queue?: string };\n adoption?: {\n enabled?: boolean;\n catalog?: {\n indexPath?: string;\n overrideManifestPath?: string;\n };\n workspaceScan?: {\n include?: string[];\n exclude?: string[];\n };\n families?: {\n ui?: boolean;\n contracts?: boolean;\n integrations?: boolean;\n runtime?: boolean;\n sharedLibs?: boolean;\n solutions?: boolean;\n };\n thresholds?: {\n workspaceReuse?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n contractspecReuse?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n ambiguous?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n newExternalDependency?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n newImplementation?: 'permit' | 'rewrite' | 'require_review' | 'deny';\n };\n };\n };\n}\n```\n\n### Builder\n\nThe `builder` section configures preset-driven Builder onboarding without requiring live bootstrap during setup.\n\n```ts\nexport interface ContractsrcConfig {\n builder?: {\n enabled?: boolean;\n runtimeMode?: 'managed' | 'local' | 'hybrid';\n bootstrapPreset?: 'managed_mvp' | 'local_daemon_mvp' | 'hybrid_mvp';\n api?: {\n baseUrl?: string;\n controlPlaneTokenEnvVar?: string;\n };\n localRuntime?: {\n runtimeId?: string;\n grantedTo?: string;\n providerIds?: string[];\n };\n };\n}\n```\n\n### LSSM OS\n\nThe optional `lssmOs` V1 section carries provider-neutral goals, contract\nreferences, workload envelopes, provider restrictions, exact minor-unit budgets,\nautonomy, infrastructure ownership, credential references, and evidence profiles.\nProvider-specific extensions are typed JSON escape hatches and reject raw secret\nfields recursively.\n\nScoped policy layers resolve deterministically in this order: platform,\norganization, workspace, environment, deployable, feature, operation, tenant.\nChildren may only tighten inherited constraints. A relaxation requires an\napproved, exact-path, exact-scope, unexpired waiver; inherited immutable rules\ncannot be waived.\n\nUse `resolveLssmOsConfigV1(config, now)` to produce a deterministic policy\nprojection and the exact scopes and waiver identifiers used by the resolution.\n"}];
@@ -0,0 +1 @@
1
+ export const lssmOsConfigFixture={version:"1",profile:"startup",goalRefs:[{id:"goal.activation",version:"1.0.0"}],contractRefs:[{id:"operation.signup",version:"2.0.0"}],workloadEnvelopes:[{id:"api",maxConcurrentUsers:5000,maxDataBytes:"100000000000",regions:["eu-west"]}],providerPolicy:{allow:["railway","vercel"],deny:["aws"],regions:["eu-west","eu-central"],residency:["eu"],portability:"preferred",requiredCapabilities:["compute"]},budget:{currency:"EUR",maxMonthlyMinorUnits:"100000",hardGateOnUnknownOrStale:!0,unitEconomics:[{metric:"activated_workspace",maxCostMinorUnits:"300",unit:"one"}]},autonomy:{default:"apply_with_approval"},infrastructure:{iac:"opentofu",stateBackend:"postgres",stateRef:"state.production",ownerByResource:{database:"opentofu"}},credentialRefs:[{id:"credential.railway",kind:"oidc",provider:"railway"}],evidence:{observability:{backend:"otel",region:"eu",retentionDays:30,privacyPreset:"strict"},analytics:{backend:"posthog",region:"eu",consentRequired:!0}},providerExtensions:[{provider:"railway",capability:"private-networking",config:{enabled:!0,credentialRef:"credential.railway"}}]};
@@ -0,0 +1 @@
1
+ export class LssmOsConfigResolutionError extends Error{scopeId;constraintPath;constructor(n,e,r){super(n);this.scopeId=e;this.constraintPath=r;this.name="LssmOsConfigResolutionError"}}export function constrainedSubset(n,e,r,i,t){if(!e)return n;if(!n||e.every((s)=>n.includes(s))||t(r))return unique(e);return fail(i,r,`${r} may only remove inherited values.`)}export function constrainedSuperset(n,e,r,i,t){if(!e)return n;if(!n||n.every((s)=>e.includes(s))||t(r))return unique(e);return fail(i,r,`${r} may only add inherited values.`)}export function orderedConstraint(n,e,r,i,t,s,u){if(!e||!n)return e??n;const o=r.indexOf(e)-r.indexOf(n);if((u?o>=0:o<=0)||s(i))return e;return fail(t,i,`${i} cannot be relaxed without a valid waiver.`)}export function maxConstraint(n,e,r,i,t){if(!e||!n||BigInt(e)<=BigInt(n)||t(r))return e??n;return fail(i,r,`${r} cannot increase without a valid waiver.`)}export function maxNumberConstraint(n,e,r,i,t){if(e===void 0||n===void 0||e<=n||t(r))return e??n;return fail(i,r,`${r} cannot increase without a valid waiver.`)}export function booleanConstraint(n,e,r,i,t){if(e===void 0||n===void 0||e||!n||t(r))return e??n;return fail(i,r,`${r} cannot be disabled without a valid waiver.`)}export function unique(n){return n?[...new Set(n)].sort():void 0}export function fail(n,e,r){throw new LssmOsConfigResolutionError(r,n.scope.id,e)}
@@ -0,0 +1 @@
1
+ import*as s from"zod";const r=s.string().trim().min(1),o=s.lazy(()=>s.union([s.string(),s.number().finite(),s.boolean(),s.null(),s.array(o),s.record(s.string(),o)]));export const LssmOsProviderExtensionV1Schema=s.object({provider:r,capability:r,config:s.record(s.string(),o)}).strict();
@@ -0,0 +1 @@
1
+ import{LssmOsConfigResolutionError as a}from"./lssm-os-constraints.js";import{mergeLssmOsPolicy as c,normalizeLssmOsPolicy as p}from"./lssm-os-policy-merge.js";import{LSSM_OS_SCOPE_ORDER as t}from"./lssm-os-types.js";export{LssmOsConfigResolutionError}from"./lssm-os-constraints.js";export function resolveLssmOsConfigV1(n,i=new Date){const o=m(n.layers??[]);let s=p(n);const e=[];for(const r of o)s=c(s,r,i,e);return{config:s,appliedScopes:o.map((r)=>r.scope),appliedWaiverIds:e}}function m(n){const i=new Set,o=[...n].sort((s,e)=>{return t.indexOf(s.scope.kind)-t.indexOf(e.scope.kind)||s.scope.id.localeCompare(e.scope.id)});for(const s of o){if(i.has(s.scope.kind))throw new a(`Only one ${s.scope.kind} layer may participate in a resolution chain.`,s.scope.id,"scope.kind");i.add(s.scope.kind)}return o}
@@ -0,0 +1 @@
1
+ import{booleanConstraint as d,fail as f,maxConstraint as m,maxNumberConstraint as y,orderedConstraint as u,unique as a}from"./lssm-os-constraints.js";import{mergeProviderPolicy as b,normalizeProviderPolicy as O}from"./lssm-os-provider-merge.js";const l=["observe","recommend","plan","apply_with_approval","auto_apply_qualified"];export function normalizeLssmOsPolicy(n){return{providerPolicy:O(n.providerPolicy),budget:n.budget?{...n.budget,unitEconomics:n.budget.unitEconomics?.map((s)=>({...s}))}:void 0,autonomy:n.autonomy?{...n.autonomy,byScope:{...n.autonomy.byScope}}:void 0,immutableRules:a(n.immutableRules)}}export function mergeLssmOsPolicy(n,s,i,t){const o=normalizeLssmOsPolicy(s.policy),e=(r)=>C(n,s,r,i,t);return{providerPolicy:b(n.providerPolicy,o.providerPolicy,s,e),budget:L(n,o,s,e),autonomy:p(n,o,s,e),immutableRules:a([...n.immutableRules??[],...o.immutableRules??[]])}}function L(n,s,i,t){const o=n.budget,e=s.budget;if(!e)return o;if(!o)return e;if(o.currency!==e.currency&&!t("budget.currency"))f(i,"budget.currency","Budget currency cannot change in a child scope.");return{...o,...e,maxMonthlyMinorUnits:m(o.maxMonthlyMinorUnits,e.maxMonthlyMinorUnits,"budget.maxMonthlyMinorUnits",i,t),maxChangeMinorUnits:m(o.maxChangeMinorUnits,e.maxChangeMinorUnits,"budget.maxChangeMinorUnits",i,t),hardGateOnUnknownOrStale:d(o.hardGateOnUnknownOrStale,e.hardGateOnUnknownOrStale,"budget.hardGateOnUnknownOrStale",i,t),warningPercent:y(o.warningPercent,e.warningPercent,"budget.warningPercent",i,t),unitEconomics:e.unitEconomics??o.unitEconomics}}function p(n,s,i,t){const o=n.autonomy,e=s.autonomy;if(!e)return o;if(!o)return e;const r={...o.byScope};for(const[c,g]of Object.entries(e.byScope??{}))r[c]=u(o.byScope?.[c]??o.default,g,l,`autonomy.byScope.${c}`,i,t,!1);return{default:u(o.default,e.default,l,"autonomy.default",i,t,!1),byScope:r}}function C(n,s,i,t,o){if([...n.immutableRules??[],...s.policy.immutableRules??[]].some((r)=>i===r||i.startsWith(`${r}.`)))return!1;const e=(s.waivers??[]).find((r)=>P(r,s,i,t));if(!e)return!1;if(!o.includes(e.id))o.push(e.id);return!0}function P(n,s,i,t){return n.constraintPath===i&&n.scope.kind===s.scope.kind&&n.scope.id===s.scope.id&&new Date(n.expiresAt).getTime()>t.getTime()}
@@ -0,0 +1 @@
1
+ import{constrainedSubset as d,constrainedSuperset as u,fail as P,orderedConstraint as y,unique as n}from"./lssm-os-constraints.js";const f=["none","preferred","required"];export function normalizeProviderPolicy(e){if(!e)return;return{...e,allow:n(e.allow),deny:n(e.deny),regions:n(e.regions),residency:n(e.residency),requiredCapabilities:n(e.requiredCapabilities)}}export function mergeProviderPolicy(e,i,r,s){if(!i)return e;if(!e)return i;const o={...e};o.allow=d(e.allow,i.allow,"providerPolicy.allow",r,s);o.regions=d(e.regions,i.regions,"providerPolicy.regions",r,s);o.residency=d(e.residency,i.residency,"providerPolicy.residency",r,s);o.deny=u(e.deny,i.deny,"providerPolicy.deny",r,s);o.requiredCapabilities=u(e.requiredCapabilities,i.requiredCapabilities,"providerPolicy.requiredCapabilities",r,s);o.portability=y(e.portability,i.portability,f,"providerPolicy.portability",r,s,!0);o.managedPosture=v(e.managedPosture,i.managedPosture,r,s);const a=new Set(o.deny??[]),t=(o.allow??[]).filter((l)=>a.has(l));if(t.length)P(r,"providerPolicy",`Provider policy is unsatisfiable: ${t.join(", ")} are both allowed and denied.`);return o}function v(e,i,r,s){if(!i||!e||e===i||e==="either")return i??e;if(s("providerPolicy.managedPosture"))return i;return P(r,"providerPolicy.managedPosture","Managed posture cannot change or widen without a valid waiver.")}
@@ -0,0 +1 @@
1
+ import*as o from"zod";import{LssmOsProviderExtensionV1Schema as m}from"./lssm-os-extension-schema.js";import{rejectLssmOsSecretValues as p}from"./lssm-os-secrets.js";export{LssmOsProviderExtensionV1Schema}from"./lssm-os-extension-schema.js";const e=o.string().trim().min(1),s=o.string().regex(/^(0|[1-9]\d*)$/);export const LssmOsScopeKindV1Schema=o.enum(["platform","organization","workspace","environment","deployable","feature","operation","tenant"]),LssmOsProfileV1Schema=o.enum(["bootstrap","startup","growth","regulated","enterprise","custom"]),LssmOsAutonomyLevelV1Schema=o.enum(["observe","recommend","plan","apply_with_approval","auto_apply_qualified"]),LssmOsRefV1Schema=o.object({id:e,version:e.optional()}).strict(),LssmOsScopeRefV1Schema=o.object({kind:LssmOsScopeKindV1Schema,id:e}).strict(),LssmOsWorkloadEnvelopeV1Schema=o.object({id:e,maxConcurrentUsers:o.number().int().positive().optional(),maxRequestsPerSecond:o.number().positive().optional(),maxBurstRequestsPerSecond:o.number().positive().optional(),maxLatencyMs:o.number().int().positive().optional(),minAvailabilityPercent:o.number().min(0).max(100).optional(),maxDataBytes:s.optional(),maxMonthlyDataGrowthBytes:s.optional(),maxStorageBytes:s.optional(),maxMonthlyEgressBytes:s.optional(),maxBackgroundJobsPerHour:o.number().int().nonnegative().optional(),maxRpoSeconds:o.number().int().nonnegative().optional(),maxRtoSeconds:o.number().int().nonnegative().optional(),regions:o.array(e).min(1).optional()}).strict(),LssmOsProviderPolicyV1Schema=o.object({allow:o.array(e).min(1).optional(),deny:o.array(e).optional(),regions:o.array(e).min(1).optional(),residency:o.array(e).min(1).optional(),portability:o.enum(["none","preferred","required"]).optional(),managedPosture:o.enum(["managed","self_hosted","either"]).optional(),requiredCapabilities:o.array(e).optional()}).strict().superRefine((t,i)=>{const n=new Set(t.deny??[]);for(const a of t.allow??[])if(n.has(a))i.addIssue({code:"custom",message:`Provider "${a}" cannot be both allowed and denied.`,path:["allow"]})}),LssmOsBudgetPolicyV1Schema=o.object({currency:o.string().regex(/^[A-Z]{3}$/),maxMonthlyMinorUnits:s.optional(),maxChangeMinorUnits:s.optional(),hardGateOnUnknownOrStale:o.boolean().optional(),warningPercent:o.number().min(0).max(100).optional(),unitEconomics:o.array(o.object({metric:e,maxCostMinorUnits:s,unit:e}).strict()).optional()}).strict(),LssmOsAutonomyPolicyV1Schema=o.object({default:LssmOsAutonomyLevelV1Schema,byScope:o.record(e,LssmOsAutonomyLevelV1Schema).optional()}).strict(),LssmOsInfrastructureOwnershipV1Schema=o.object({iac:o.enum(["provider_native","opentofu","docker_compose","none"]),ownerByResource:o.record(e,e).optional(),stateBackend:o.enum(["git","sqlite","pglite","postgres","supabase"]).optional(),stateRef:e.optional()}).strict(),LssmOsCredentialRefV1Schema=o.object({id:e,kind:o.enum(["environment","oidc","github_app","managed_custody"]),provider:e.optional(),envVar:o.string().regex(/^[A-Z][A-Z0-9_]*$/).optional()}).strict(),LssmOsDataProfileV1Schema=o.object({backend:e.optional(),region:e.optional(),retentionDays:o.number().int().nonnegative().optional(),samplingRate:o.number().min(0).max(1).optional(),privacyPreset:o.enum(["strict","balanced","custom"]).optional(),consentRequired:o.boolean().optional()}).strict(),LssmOsEvidenceConfigV1Schema=o.object({observability:LssmOsDataProfileV1Schema.optional(),analytics:LssmOsDataProfileV1Schema.optional(),featureFlags:LssmOsDataProfileV1Schema.optional(),experiments:LssmOsDataProfileV1Schema.optional()}).strict(),LssmOsConstraintWaiverV1Schema=o.object({id:e,constraintPath:o.string().regex(/^[a-zA-Z][a-zA-Z0-9.[\]_-]*$/),scope:LssmOsScopeRefV1Schema,expiresAt:o.iso.datetime({offset:!0}),approvedByRef:e,evidenceRefs:o.array(e).min(1),reason:e}).strict(),LssmOsPolicyConfigV1Schema=o.object({providerPolicy:LssmOsProviderPolicyV1Schema.optional(),budget:LssmOsBudgetPolicyV1Schema.optional(),autonomy:LssmOsAutonomyPolicyV1Schema.optional(),immutableRules:o.array(e).optional()}).strict(),LssmOsConfigLayerV1Schema=o.object({scope:LssmOsScopeRefV1Schema,policy:LssmOsPolicyConfigV1Schema,waivers:o.array(LssmOsConstraintWaiverV1Schema).optional()}).strict(),LssmOsConfigV1Schema=o.object({version:o.literal("1"),profile:LssmOsProfileV1Schema,goalRefs:o.array(LssmOsRefV1Schema).optional(),contractRefs:o.array(LssmOsRefV1Schema).optional(),workloadEnvelopes:o.array(LssmOsWorkloadEnvelopeV1Schema).optional(),providerPolicy:LssmOsProviderPolicyV1Schema.optional(),budget:LssmOsBudgetPolicyV1Schema.optional(),autonomy:LssmOsAutonomyPolicyV1Schema.optional(),infrastructure:LssmOsInfrastructureOwnershipV1Schema.optional(),credentialRefs:o.array(LssmOsCredentialRefV1Schema).optional(),evidence:LssmOsEvidenceConfigV1Schema.optional(),providerExtensions:o.array(m).optional(),immutableRules:o.array(e).optional(),layers:o.array(LssmOsConfigLayerV1Schema).optional()}).strict().superRefine((t,i)=>{p(t,i);const n=t.layers?.flatMap((a)=>a.waivers?.map((r)=>r.id)??[]);if(n&&new Set(n).size!==n.length)i.addIssue({code:"custom",message:"Waiver identifiers must be unique across all layers.",path:["layers"]})});
@@ -0,0 +1 @@
1
+ export function rejectLssmOsSecretValues(e,t){o(e,[],t)}function o(e,t,s){if(!e||typeof e!=="object")return;for(const[r,i]of Object.entries(e)){const n=[...t,r];if(a(r))s.addIssue({code:"custom",message:`Raw secret field "${r}" is forbidden; use a credential reference.`,path:n});o(i,n,s)}}function a(e){const t=e.replaceAll(/[-_]/g,"").toLowerCase();if(/(ref|refid|envvar)$/.test(t))return!1;return/(secret|password|passphrase|privatekey|apikey|accesstoken|authtoken)/.test(t)}
@@ -0,0 +1 @@
1
+ export const LSSM_OS_SCOPE_ORDER=["platform","organization","workspace","environment","deployable","feature","operation","tenant"];