@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{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as o}from"../../events.js";import{CONTROL_PLANE_DOMAIN as n,CONTROL_PLANE_OWNERS as i,CONTROL_PLANE_STABILITY as l,CONTROL_PLANE_TAGS as a}from"../constants.js";export const ControlPlaneExecutionCompletedPayload=new t({name:"ControlPlaneExecutionCompletedPayload",fields:{executionId:{type:e.ID(),isOptional:!1},runId:{type:e.ID(),isOptional:!1},completedAt:{type:e.DateTime(),isOptional:!1},outcome:{type:e.String_unsecure(),isOptional:!0}}}),ControlPlaneExecutionCompletedEvent=o({meta:{key:"controlPlane.execution.completed",version:"1.0.0",description:"Emitted when an execution run finishes successfully.",domain:n,owners:i,tags:[...a,"execution"],stability:l},payload:ControlPlaneExecutionCompletedPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as o}from"../../events.js";import{CONTROL_PLANE_DOMAIN as i,CONTROL_PLANE_OWNERS as n,CONTROL_PLANE_STABILITY as a,CONTROL_PLANE_TAGS as r}from"../constants.js";export const ControlPlaneExecutionFailedPayload=new t({name:"ControlPlaneExecutionFailedPayload",fields:{executionId:{type:e.ID(),isOptional:!1},runId:{type:e.ID(),isOptional:!0},failedAt:{type:e.DateTime(),isOptional:!1},errorCode:{type:e.String_unsecure(),isOptional:!1},errorMessage:{type:e.String_unsecure(),isOptional:!0},problem:{type:e.JSONObject(),isOptional:!0}}}),ControlPlaneExecutionFailedEvent=o({meta:{key:"controlPlane.execution.failed",version:"1.0.0",description:"Emitted when an execution run fails.",domain:i,owners:n,tags:[...r,"execution","failure"],stability:a},payload:ControlPlaneExecutionFailedPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as o}from"../../events.js";import{CONTROL_PLANE_DOMAIN as n,CONTROL_PLANE_OWNERS as i,CONTROL_PLANE_STABILITY as l,CONTROL_PLANE_TAGS as a}from"../constants.js";export const ControlPlaneExecutionStepBlockedPayload=new t({name:"ControlPlaneExecutionStepBlockedPayload",fields:{executionId:{type:e.ID(),isOptional:!1},runId:{type:e.ID(),isOptional:!0},stepId:{type:e.ID(),isOptional:!0},blockedAt:{type:e.DateTime(),isOptional:!1},reason:{type:e.String_unsecure(),isOptional:!1}}}),ControlPlaneExecutionStepBlockedEvent=o({meta:{key:"controlPlane.execution.step.blocked",version:"1.0.0",description:"Emitted when policy blocks an execution step.",domain:n,owners:i,tags:[...a,"execution","blocked"],stability:l},payload:ControlPlaneExecutionStepBlockedPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as o}from"../../events.js";import{CONTROL_PLANE_DOMAIN as n,CONTROL_PLANE_OWNERS as l,CONTROL_PLANE_STABILITY as a,CONTROL_PLANE_TAGS as i}from"../constants.js";export const ControlPlaneExecutionStepCompletedPayload=new t({name:"ControlPlaneExecutionStepCompletedPayload",fields:{executionId:{type:e.ID(),isOptional:!1},runId:{type:e.ID(),isOptional:!1},stepId:{type:e.ID(),isOptional:!1},completedAt:{type:e.DateTime(),isOptional:!1}}}),ControlPlaneExecutionStepCompletedEvent=o({meta:{key:"controlPlane.execution.step.completed",version:"1.0.0",description:"Emitted when an execution step completes.",domain:n,owners:l,tags:[...i,"execution"],stability:a},payload:ControlPlaneExecutionStepCompletedPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as o}from"../../events.js";import{CONTROL_PLANE_DOMAIN as a,CONTROL_PLANE_OWNERS as n,CONTROL_PLANE_STABILITY as i,CONTROL_PLANE_TAGS as l}from"../constants.js";export const ControlPlaneExecutionStepStartedPayload=new t({name:"ControlPlaneExecutionStepStartedPayload",fields:{executionId:{type:e.ID(),isOptional:!1},runId:{type:e.ID(),isOptional:!1},stepId:{type:e.ID(),isOptional:!1},startedAt:{type:e.DateTime(),isOptional:!1}}}),ControlPlaneExecutionStepStartedEvent=o({meta:{key:"controlPlane.execution.step.started",version:"1.0.0",description:"Emitted when an execution step starts.",domain:a,owners:n,tags:[...l,"execution"],stability:i},payload:ControlPlaneExecutionStepStartedPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as n}from"../../events.js";import{CONTROL_PLANE_DOMAIN as i,CONTROL_PLANE_OWNERS as o,CONTROL_PLANE_STABILITY as a,CONTROL_PLANE_TAGS as l}from"../constants.js";export const ControlPlaneIntentReceivedPayload=new t({name:"ControlPlaneIntentReceivedPayload",fields:{executionId:{type:e.ID(),isOptional:!1},intentId:{type:e.ID(),isOptional:!1},receivedAt:{type:e.DateTime(),isOptional:!1},actorId:{type:e.ID(),isOptional:!0},channelKey:{type:e.String_unsecure(),isOptional:!0}}}),ControlPlaneIntentReceivedEvent=n({meta:{key:"controlPlane.intent.received",version:"1.0.0",description:"Emitted when a new control plane intent is accepted.",domain:i,owners:o,tags:[...l,"intent"],stability:a},payload:ControlPlaneIntentReceivedPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as n}from"@lssm/lib.schema";import{defineEvent as o}from"../../events.js";import{CONTROL_PLANE_DOMAIN as t,CONTROL_PLANE_OWNERS as a,CONTROL_PLANE_STABILITY as l,CONTROL_PLANE_TAGS as i}from"../constants.js";export const ControlPlanePlanCompiledPayload=new n({name:"ControlPlanePlanCompiledPayload",fields:{executionId:{type:e.ID(),isOptional:!1},planId:{type:e.ID(),isOptional:!1},compiledAt:{type:e.DateTime(),isOptional:!1},stepCount:{type:e.Int_unsecure(),isOptional:!1}}}),ControlPlanePlanCompiledEvent=o({meta:{key:"controlPlane.plan.compiled",version:"1.0.0",description:"Emitted when an intent is compiled into an executable plan.",domain:t,owners:a,tags:[...i,"plan"],stability:l},payload:ControlPlanePlanCompiledPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as n}from"@lssm/lib.schema";import{defineEvent as t}from"../../events.js";import{CONTROL_PLANE_DOMAIN as a,CONTROL_PLANE_OWNERS as o,CONTROL_PLANE_STABILITY as r,CONTROL_PLANE_TAGS as l}from"../constants.js";export const ControlPlanePlanRejectedPayload=new n({name:"ControlPlanePlanRejectedPayload",fields:{executionId:{type:e.ID(),isOptional:!1},planId:{type:e.ID(),isOptional:!0},rejectedAt:{type:e.DateTime(),isOptional:!1},reasons:{type:e.String_unsecure(),isOptional:!0,isArray:!0}}}),ControlPlanePlanRejectedEvent=t({meta:{key:"controlPlane.plan.rejected",version:"1.0.0",description:"Emitted when a plan fails verification or governance checks.",domain:a,owners:o,tags:[...l,"plan","governance"],stability:r},payload:ControlPlanePlanRejectedPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as l}from"../../events.js";import{CONTROL_PLANE_DOMAIN as i,CONTROL_PLANE_OWNERS as n,CONTROL_PLANE_STABILITY as a,CONTROL_PLANE_TAGS as s}from"../constants.js";export const ControlPlaneSkillInstalledPayload=new t({name:"ControlPlaneSkillInstalledPayload",fields:{installationId:{type:e.ID(),isOptional:!1},skillKey:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!1},installedAt:{type:e.DateTime(),isOptional:!1},publisher:{type:e.String_unsecure(),isOptional:!0},provenance:{type:e.String_unsecure(),isOptional:!0},manifestDigest:{type:e.String_unsecure(),isOptional:!0}}}),ControlPlaneSkillInstalledEvent=l({meta:{key:"controlPlane.skill.installed",version:"1.0.0",description:"Emitted when a skill artifact is verified and installed.",domain:i,owners:n,tags:[...s,"skills"],stability:a},payload:ControlPlaneSkillInstalledPayload});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineEvent as i}from"../../events.js";import{CONTROL_PLANE_DOMAIN as n,CONTROL_PLANE_OWNERS as l,CONTROL_PLANE_STABILITY as r,CONTROL_PLANE_TAGS as o}from"../constants.js";import{ControlPlaneSkillVerificationIssueModel as s}from"../skills/schema.js";export const ControlPlaneSkillRejectedPayload=new t({name:"ControlPlaneSkillRejectedPayload",fields:{skillKey:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!0},rejectedAt:{type:e.DateTime(),isOptional:!1},reason:{type:e.String_unsecure(),isOptional:!1},provenance:{type:e.String_unsecure(),isOptional:!0},manifestDigest:{type:e.String_unsecure(),isOptional:!0},issues:{type:s,isOptional:!0,isArray:!0}}}),ControlPlaneSkillRejectedEvent=i({meta:{key:"controlPlane.skill.rejected",version:"1.0.0",description:"Emitted when a skill install attempt is rejected.",domain:n,owners:l,tags:[...o,"skills","governance"],stability:r},payload:ControlPlaneSkillRejectedPayload});
@@ -0,0 +1 @@
1
+ export*from"./controlPlaneExecutionCompleted.event.js";export*from"./controlPlaneExecutionFailed.event.js";export*from"./controlPlaneExecutionStepBlocked.event.js";export*from"./controlPlaneExecutionStepCompleted.event.js";export*from"./controlPlaneExecutionStepStarted.event.js";export*from"./controlPlaneIntentReceived.event.js";export*from"./controlPlanePlanCompiled.event.js";export*from"./controlPlanePlanRejected.event.js";export*from"./controlPlaneSkillInstalled.event.js";export*from"./controlPlaneSkillRejected.event.js";
@@ -0,0 +1 @@
1
+ import{sha256Hex as r}from"@lssm/lib.crypto-utils";export function hookAuthorityDigest(o){return{algorithm:"sha256",canonicalizationVersion:1,value:`sha256:${r(JSON.stringify(n(o)))}`}}export function hookAuthorityBodyDigest(o){return hookAuthorityDigest(o)}export function hookAuthorityEnvelopeDigest(o){return hookAuthorityDigest(o)}export function equalHookAuthorityDigest(o,t){return o.algorithm===t.algorithm&&o.canonicalizationVersion===t.canonicalizationVersion&&o.value===t.value}function n(o){if(Array.isArray(o))return o.map(n);if(!o||typeof o!=="object")return o;return Object.fromEntries(Object.entries(o).sort(([t],[i])=>t<i?-1:t>i?1:0).map(([t,i])=>[t,n(i)]))}
@@ -0,0 +1 @@
1
+ export function immutableData(t){try{return p(t,new WeakMap)}catch{return}}function p(t,o){if(t===null||typeof t!=="object"){if(typeof t==="number"&&!Number.isFinite(t))throw Error();if(["string","number","boolean","undefined"].includes(typeof t))return t;throw Error()}if(o.has(t))return o.get(t);const r=Array.isArray(t),i=Object.getPrototypeOf(t);if(!r&&i!==Object.prototype&&i!==null||r&&i!==Array.prototype)throw Error();const f=Object.getOwnPropertyDescriptors(t),c=Reflect.ownKeys(t).filter((n)=>typeof n==="string"&&!(r&&n==="length"));if(Object.entries(f).some(([n,e])=>n!=="length"&&(e.get||e.set||!e.enumerable))||r&&(c.length!==t.length||c.some((n,e)=>n!==String(e))))throw Error();const s=r?[]:Object.create(null);o.set(t,s);for(const n of c)s[n]=p(f[n].value,o);return Object.freeze(s)}
@@ -0,0 +1 @@
1
+ import{immutableData as f}from"./hook-authority-immutable.js";import{validBinding as V}from"./hook-authority-reference-binding.js";import{committedStartCapability as b,startCapabilityValue as _}from"./hook-authority-reference-capability.js";import{authenticated as z,trustedNow as v}from"./hook-authority-reference-clock.js";import{createSession as A,hookAuthorityRequestDigest as w,replaySessionId as p}from"./hook-authority-reference-helpers.js";import{invoke as R}from"./hook-authority-reference-invoke.js";import{advanceLeases as T}from"./hook-authority-reference-leases.js";import{withSerialLock as H}from"./hook-authority-reference-lock.js";import{authorization as x}from"./hook-authority-reference-result.js";import{refKey as l,sessionMatchesRequest as C}from"./hook-authority-reference-session.js";import{createReferenceState as D,resumedReferenceState as L}from"./hook-authority-reference-state.js";import{fail as t,validLive as B}from"./hook-authority-reference-validation.js";import{HookAuthorityRequestSchema as K}from"./hook-authority-validation.js";export class ReferenceHookAuthorityAdapter{dependencies;#e;#t;constructor(e){this.dependencies=e;const s=D();this.#e=s.state;this.#t=s.token}get restartToken(){return this.#t}static resume(e,s){const n=L(s);if(!n)return;const r=new ReferenceHookAuthorityAdapter(e);r.#e=n;r.#t=s;return r}async transition(e,s){const n=v(this.dependencies.clock,this.#e);if(n===null)return t("signature_untrusted","Trusted clock failed closed.");const r=K.parse(e,new Date(n));if(!r.ok)return r;const a=r.value,c=b(a,s);if(!c)return t("invalid_request","Caller session capability does not match the signed commitment.");const o=w(a),i=await H(this.#e,()=>this.authenticateOrReplay(a,o));if(!i.ok||i.value)return i;const h=await R(this.dependencies,()=>this.dependencies.verifier.verify(a.decision),(d)=>d===void 0);if(!h.ok)return h;const u=await R(this.dependencies,()=>this.dependencies.liveBindings.resolve(a.decision),B);if(!u.ok)return u;return H(this.#e,()=>this.commit(a,o,u.value,n,c))}authenticateOrReplay(e,s){const n=p(e);if(e.event!=="session-start"&&!z(e,this.#e.sessions))return t("scope_mismatch","Session capability does not authenticate the session.");if(e.event!=="session-start"){const o=this.#e.sessions.get(l(e.sessionRef));if(!o)return t("not_found","Session does not exist.");if(!C(o,e))return t("scope_mismatch","Session decision, tenant, or workspace does not match the request.");if(o.terminalizedAt){const i=this.#e.replays.get(`${p(e)}\x00${e.replayKey}`);if(i?.requestDigest.value===s.value){const{sessionCapability:h,...u}=i;return{ok:!0,value:f({...u,replayed:!0})}}return t("terminalized","Session is terminalized.")}}const r=this.#e.replays.get(`${n}\x00${e.replayKey}`);if(!r){if(e.event!=="session-start"){const o=this.#e.sessions.get(l(e.sessionRef));if(o&&(o.revision!==e.expectedRevision||o.fence!==e.expectedFence))return t("version_conflict","Session revision or fence does not match.")}return{ok:!0,value:void 0}}if(r.requestDigest.value!==s.value)return t("replay_conflict","Replay key was used with a distinct request digest.");const{sessionCapability:a,...c}=r;return{ok:!0,value:f({...c,replayed:!0})}}commit(e,s,n,r,a){const c=v(this.dependencies.clock,this.#e,r);if(c===null||!V(e,n,c))return t("scope_mismatch","Live binding no longer exactly binds this decision.");const o=this.authenticateOrReplay(e,s);if(!o.ok||o.value)return o;const i=e.event==="session-start"?void 0:this.#e.sessions.get(l(e.sessionRef));if(e.event==="session-start"&&this.#e.sessions.has(l(A(e,"",1,"").sessionRef)))return t("replay_conflict","Decision identity already owns a session.");if(!i&&e.event!=="session-start")return t("not_found","Session does not exist.");if(i?.terminalizedAt)return t("terminalized","Session is terminalized.");if(i&&e.event!=="session-start"&&(i.revision!==e.expectedRevision||i.fence!==e.expectedFence))return t("version_conflict","Session revision or fence does not match.");let h;if(e.event==="session-start"){h=_(a,()=>this.dependencies.capabilities.generate());if(!h)return t("signature_untrusted","Capability source failed closed.")}const u=new Date(c).toISOString(),d=i??A(e,u,n.fence,h);if(i&&i.authorityVersion!==n.authorityVersion)return t("version_conflict","Live authority version changed.");const m=T(this.#e,e,d,u);if(!m)return t("scope_mismatch","Stored active leases do not match.");const g=e.event==="session-start"?d:{...d,revision:d.revision+1,fence:n.fence,...e.event==="stop"?{terminalizedAt:u}:{}},y=f(g);this.#e.sessions.set(l(y.sessionRef),y);const k=f(x(e,s,y,u,a.committed?void 0:h,m)),{sessionCapability:O,...S}=k;this.#e.replays.set(`${p(e)}\x00${e.replayKey}`,f(S));return{ok:!0,value:f(k)}}}
@@ -0,0 +1 @@
1
+ import{validTimestamp as s}from"./hook-authority-validation-primitives.js";export function validBinding(o,e,i){const t=o.decision.body,a=s(e.verifiedAt),r=s(e.validUntil),u=s(e.expiresAt);return n(t.scope.tenantRef,e.tenantRef)&&n(t.scope.workspaceRef,e.workspaceRef)&&n(t.evidence.ownershipRef,e.ownershipRef)&&n(t.evidence.keyStatusRef,e.keyStatusRef)&&n(t.revocationRef,e.revocationRef)&&t.evidence.leaseRefs.length===e.leaseRefs.length&&t.evidence.leaseRefs.every((c,d)=>n(c,e.leaseRefs[d]))&&e.authorityGeneration===t.decisionRef.generation&&e.authorityVersion===t.authorityVersion&&e.revoked===!1&&e.keyStatus==="active"&&e.ownershipStatus==="active"&&e.leaseStatus==="active"&&u!==null&&e.expiresAt===t.expiresAt&&a!==null&&r!==null&&a<=i&&i<r&&i<u&&e.fence===t.authorityFence&&e.fence===(o.event==="session-start"?t.authorityFence:o.expectedFence)}function n(o,e){return o===e||Boolean(o&&e&&o.id===e.id&&o.generation===e.generation&&o.digest.value===e.digest.value)}
@@ -0,0 +1 @@
1
+ import{hookAuthorityDigest as o}from"./hook-authority-digest.js";import{validCapability as n}from"./hook-authority-validation-primitives.js";export function committedStartCapability(e,t){if(e.event!=="session-start")return t===void 0?{committed:!1}:void 0;const i=e.decision.body.sessionCapabilityHash;if(!i)return t===void 0?{committed:!1}:void 0;if(!r(t)||!n(t.sessionCapability))return;return o(t.sessionCapability).value===i.value?{committed:!0,value:t.sessionCapability}:void 0}export function startCapabilityValue(e,t){if(e.value)return e.value;try{const i=t();return n(i)?i:void 0}catch{return}}function r(e){if(!e||Object.getPrototypeOf(e)!==Object.prototype)return!1;if(Object.keys(e).length!==1||Object.getOwnPropertySymbols(e).length)return!1;const t=Object.getOwnPropertyDescriptor(e,"sessionCapability");return Boolean(t&&!t.get&&!t.set&&typeof t.value==="string")}
@@ -0,0 +1 @@
1
+ import{hookAuthorityDigest as r}from"./hook-authority-digest.js";export function authenticated(t,n){const o=n.get(s(t.sessionRef));return Boolean(o&&s(o.sessionRef)===s(t.sessionRef)&&o.capabilityHash.value===r(t.sessionCapability).value)}function s(t){return`${t.id}\x00${t.generation}\x00${t.digest.value}`}export function trustedNow(t,n,o){try{const i=t.now(),e=i instanceof Date?i.getTime():NaN;if(!Number.isFinite(e)||i.toISOString()!==new Date(e).toISOString()||o!==void 0&&e<o||e<n.lastNow)return null;n.lastNow=e;return e}catch{return null}}
@@ -0,0 +1 @@
1
+ import{hookAuthorityDigest as i}from"./hook-authority-digest.js";export function hookAuthorityRequestDigest(o){const{sessionCapability:e,...t}=o;return i(t)}export function replaySessionId(o){return o.event==="session-start"?i({kind:"hook-authority-start-replay-scope-v1",decisionRef:o.decision.body.decisionRef,tenantRef:o.tenantRef,workspaceRef:o.workspaceRef}).value:i({kind:"hook-authority-session-replay-scope-v1",sessionRef:o.sessionRef}).value}export function createSession(o,e,t,n){return{sessionRef:reference("session",s({kind:"hook-authority-session-v1",decisionRef:o.decision.body.decisionRef,tenantRef:o.tenantRef,workspaceRef:o.workspaceRef})),tenantRef:o.tenantRef,workspaceRef:o.workspaceRef,actorRef:o.actorRef,currentSha:o.currentSha,workspaceRoot:o.workspaceRoot,capabilityHash:i(n),decisionRef:o.decision.body.decisionRef,decisionBodyDigest:o.decision.bodyDigest,decisionEnvelopeDigest:o.decision.envelopeDigest,leaseRefs:o.decision.body.evidence.leaseRefs,authorityVersion:o.decision.body.authorityVersion,revision:1,fence:t,createdAt:e}}function s(o){return i(o).value.slice(7)}export function reference(o,e){return{id:`${o}.${e}`.slice(0,128),generation:1,digest:i({kind:o,id:e})}}
@@ -0,0 +1 @@
1
+ import{immutableData as d}from"./hook-authority-immutable.js";import{fail as u}from"./hook-authority-reference-validation.js";export async function invoke(r,n,o){try{const e=s(await r.deadlines.race(()=>l(n)));if(!e)return i();if(e.ok===!1)return a(e)??i();if(!o(e.value))return i();return{ok:!0,value:e.value}}catch{return u("signature_untrusted","Trusted dependency failed closed.")}}function s(r){const n=d(r);if(!n||typeof n!=="object"||Array.isArray(n))return;const o=Object.getOwnPropertyDescriptors(n),e=Object.keys(o).sort();if(e.length!==2||o.ok?.value===void 0)return;if(o.ok.value===!0&&e[0]==="ok"&&e[1]==="value")return{ok:!0,value:o.value?.value};if(o.ok.value!==!1||e[0]!=="error"||e[1]!=="ok")return;const t=d(o.error?.value);if(!t||Object.keys(t).sort().join(",")!=="code,message")return;if(typeof t.code!=="string"||typeof t.message!=="string")return;return{ok:!1,error:{code:t.code,message:t.message}}}function a(r){if(!["expired","revoked"].includes(r.error.code))return;return u(r.error.code,`Trusted authority denied: ${r.error.code}.`)}function i(){return u("signature_untrusted","Trusted dependency timed out or returned an invalid result.")}function l(r){const n=r();if(!(n instanceof Promise))throw Error("Dependency did not return a native Promise.");return n}
@@ -0,0 +1 @@
1
+ import{hookAuthorityDigest as a}from"./hook-authority-digest.js";import{reference as u}from"./hook-authority-reference-helpers.js";import{refKey as s}from"./hook-authority-reference-session.js";export function createActiveLeases(o,e,t){if(t.some((n)=>o.leases.has(f(e.sessionRef,n))))return!1;for(const n of t)o.leases.set(f(e.sessionRef,n),{leaseRef:n,sessionRef:e.sessionRef});return!0}export function activeLeasesMatch(o,e,t){return[...o.leases.values()].filter((r)=>s(r.sessionRef)===s(e.sessionRef)).length===t.length&&e.leaseRefs.length===t.length&&e.leaseRefs.every((r,i)=>s(r)===s(t[i]))&&t.every((r)=>{const i=o.leases.get(f(e.sessionRef,r));return Boolean(i&&!i.releasedAt&&s(i.sessionRef)===s(e.sessionRef))})}function f(o,e){return`${s(o)}\x00${s(e)}`}export function releaseLeases(o,e,t,n){if(!activeLeasesMatch(o,e,t))return;return t.map((r)=>{o.leases.get(f(e.sessionRef,r)).releasedAt=n;return{leaseRef:r,releaseRef:u("lease-release",l(e.sessionRef,r)),status:"released",releasedAt:n}})}function l(o,e){return a({kind:"hook-authority-lease-release-v1",sessionRef:o,leaseRef:e}).value.slice(7)}export function advanceLeases(o,e,t,n){const r=e.decision.body.evidence.leaseRefs;if(e.event==="session-start")return createActiveLeases(o,t,r)?[]:void 0;if(!activeLeasesMatch(o,t,r))return;return e.event==="stop"?releaseLeases(o,t,r,n):[]}
@@ -0,0 +1 @@
1
+ export async function withSerialLock(i,o){let e=()=>{return};const r=i.tail;i.tail=new Promise((n)=>{e=n});await r;try{return o()}finally{e()}}
@@ -0,0 +1 @@
1
+ import{reference as t}from"./hook-authority-reference-helpers.js";export function authorization(e,i,a,r,s,R=[]){const o=`${a.sessionRef.id}.${e.event}.${i.value.slice(7)}`,n=t("receipt",o);return{requestDigest:i,replayed:!1,receipt:{receiptRef:n,transactionRef:t("transaction",o),commitRef:t("commit",o),requestId:e.requestId,replayKey:e.replayKey,event:e.event,decisionRef:e.decision.body.decisionRef,sessionRef:a.sessionRef,tenantRef:e.tenantRef,workspaceRef:e.workspaceRef,authorityVersion:e.decision.body.authorityVersion,requestDigest:i,issuedAt:r},session:a,outbox:{outboxRef:t("outbox",o),receiptRef:n,event:e.event,requestDigest:i,occurredAt:r,...e.event==="stop"?{terminalLeaseReleaseRefs:e.decision.body.evidence.leaseRefs,terminalLeaseReleases:R.map((c)=>({...c,receiptRef:n}))}:{}},audit:{auditRef:t("audit",o),receiptRef:n,decisionRef:e.decision.body.decisionRef,event:e.event,tenantRef:e.tenantRef,workspaceRef:e.workspaceRef,observedAt:r},...s?{sessionCapability:s}:{}}}
@@ -0,0 +1 @@
1
+ export function refKey(e){return`${e.id}\x00${e.generation}\x00${e.digest.value}`}export function sessionMatchesRequest(e,o){return refKey(e.decisionRef)===refKey(o.decision.body.decisionRef)&&refKey(e.tenantRef)===refKey(o.tenantRef)&&refKey(e.workspaceRef)===refKey(o.workspaceRef)&&e.decisionBodyDigest.value===o.decision.bodyDigest.value&&e.decisionEnvelopeDigest.value===o.decision.envelopeDigest.value&&e.leaseRefs.length===o.decision.body.evidence.leaseRefs.length&&e.leaseRefs.every((t,i)=>refKey(t)===refKey(o.decision.body.evidence.leaseRefs[i]))&&e.actorRef===o.actorRef&&e.currentSha===o.currentSha&&e.workspaceRoot===o.workspaceRoot}
@@ -0,0 +1 @@
1
+ const o=new WeakMap;export function createReferenceState(){const e={replays:new Map,sessions:new Map,tail:Promise.resolve(),lastNow:Number.NEGATIVE_INFINITY,leases:new Map},t=Object.freeze({schemaVersion:1});o.set(t,e);return{state:e,token:t}}export function resumedReferenceState(e){return o.get(e)}
@@ -0,0 +1 @@
1
+ import{closedObjectWithOptional as o,safeArray as n}from"./hook-authority-validation-objects.js";import{validRef as t,validTimestamp as i}from"./hook-authority-validation-primitives.js";export function validLive(e){return o(e,["authorityVersion","authorityGeneration","expiresAt","fence","keyStatus","keyStatusRef","leaseRefs","leaseStatus","ownershipRef","ownershipStatus","revoked","tenantRef","validUntil","verifiedAt","workspaceRef"],["revocationRef"])&&t(e.ownershipRef)&&t(e.tenantRef)&&t(e.workspaceRef)&&t(e.keyStatusRef)&&(e.revocationRef===void 0||t(e.revocationRef))&&n(e.leaseRefs)&&e.leaseRefs.every(t)&&typeof e.authorityGeneration==="number"&&Number.isSafeInteger(e.authorityGeneration)&&e.authorityGeneration>0&&typeof e.authorityVersion==="number"&&Number.isSafeInteger(e.authorityVersion)&&e.authorityVersion>0&&typeof e.fence==="number"&&Number.isSafeInteger(e.fence)&&e.fence>0&&e.revoked===!1&&e.keyStatus==="active"&&e.ownershipStatus==="active"&&e.leaseStatus==="active"&&i(e.expiresAt)!==null&&i(e.verifiedAt)!==null&&i(e.validUntil)!==null}export function fail(e,r){return{ok:!1,error:{code:e,message:r}}}
@@ -0,0 +1 @@
1
+ import{HOOK_AUTHORITY_EVENTS as o,HOOK_AUTHORITY_V1 as r}from"./hook-authority.js";import{hookAuthorityDigest as t}from"./hook-authority-digest.js";export function ref(e){return{id:e,generation:1,digest:t({id:e})}}export function body(e){return{schemaVersion:r,decisionRef:ref("decision.fixture"),issuedAt:"2030-01-01T00:00:00.000Z",expiresAt:"2030-01-01T00:01:00.000Z",authorityVersion:3,authorityFence:1,scope:{tenantRef:ref("tenant.fixture"),workspaceRef:ref("workspace.fixture"),currentSha:"a".repeat(40),workspaceRoot:"/workspace",actorRef:"actor.fixture",pathPrefixes:["packages/libs/contracts-spec/"],commandDigests:[t("bun test")],events:[...o]},evidence:{evidenceRefs:[ref("evidence.fixture")],keyStatusRef:ref("key-status.fixture"),ownershipRef:ref("ownership.fixture"),leaseRefs:[ref("lease.fixture")]}}}
@@ -0,0 +1 @@
1
+ import{HOOK_AUTHORITY_SIGNATURE_DOMAIN as n,HOOK_AUTHORITY_V1 as s}from"./hook-authority.js";import{hookAuthorityBodyDigest as c,hookAuthorityDigest as i,hookAuthorityEnvelopeDigest as f}from"./hook-authority-digest.js";import{body as u,ref as o}from"./hook-authority-test-body.js";export{body,ref}from"./hook-authority-test-body.js";export const now=new Date("2030-01-01T00:00:02.000Z"),capability="a".repeat(32);export function request(e){const t=u(e),a=c(t),r={schemaVersion:s,domain:n,body:t,bodyDigest:a,signature:{issuerService:"connect",issuerKeyId:"connect-key",algorithm:"ed25519",value:`${"a".repeat(85)}A`}};return{schemaVersion:s,requestId:"request.fixture",replayKey:"replay.fixture",event:e,decision:{...r,envelopeDigest:f(r)},actorRef:"actor.fixture",tenantRef:t.scope.tenantRef,workspaceRef:t.scope.workspaceRef,currentSha:"a".repeat(40),workspaceRoot:"/workspace",paths:e==="before-file-edit"||e==="after-file-edit"||e==="before-merge"?["packages/libs/contracts-spec/src/control-plane/hook-authority.ts"]:[],...e==="before-shell-execution"?{commandDigest:t.scope.commandDigests[0]}:{},...e==="before-handoff"?{checkpointRef:o("checkpoint.fixture"),handoffRef:o("handoff.fixture")}:{},...e==="before-merge"?{merge:{sourceRef:o("source.fixture"),baseRef:o("base.fixture"),headRef:o("head.fixture"),treeDigest:i("tree"),diffDigest:i("diff")}}:{},...e==="session-start"?{}:{sessionCapability:capability,sessionRef:o("session.fixture"),expectedRevision:1,expectedFence:1},requestedAt:"2030-01-01T00:00:01.000Z"}}
@@ -0,0 +1 @@
1
+ import{equalHookAuthorityDigest as h}from"./hook-authority-digest.js";import{closedObject as l}from"./hook-authority-validation-objects.js";import{inPathScope as r}from"./hook-authority-validation-paths.js";import{validCapability as p,validDigest as a,validRef as i}from"./hook-authority-validation-primitives.js";const c=new Set(["before-file-edit","after-file-edit","before-merge"]),m=["actorRef","currentSha","decision","event","paths","replayKey","requestId","requestedAt","schemaVersion","tenantRef","workspaceRef","workspaceRoot"],f=["sessionRef","expectedRevision","expectedFence"];export function validEventRequestBinding(e){if(e.event==="session-start")return e.paths.length===0&&!["sessionCapability","sessionRef","expectedRevision","expectedFence"].some((o)=>(o in e));if(!("sessionCapability"in e)||!p(e.sessionCapability))return!1;if(!i(e.sessionRef)||!Number.isSafeInteger(e.expectedRevision)||e.expectedRevision<1||!Number.isSafeInteger(e.expectedFence)||e.expectedFence<1)return!1;if(e.event==="before-shell-execution")return e.paths.length===0&&a(e.commandDigest)&&e.decision.body.scope.commandDigests.some((o)=>h(o,e.commandDigest));if(e.event==="before-handoff")return e.paths.length===0&&i(e.checkpointRef)&&i(e.handoffRef);if(e.event==="before-merge")return e.paths.length>0&&e.paths.every((o)=>typeof o==="string"&&r(o,e.decision.body.scope.pathPrefixes))&&l(e.merge,["baseRef","diffDigest","headRef","sourceRef","treeDigest"])&&i(e.merge.sourceRef)&&i(e.merge.baseRef)&&i(e.merge.headRef)&&a(e.merge.treeDigest)&&a(e.merge.diffDigest);if(c.has(e.event))return e.paths.length>0&&e.paths.every((o)=>typeof o==="string"&&r(o,e.decision.body.scope.pathPrefixes));return e.paths.length===0}export function validEventFields(e){const o=e.event,d=Object.keys(e),n=(t)=>d.every((s)=>m.includes(s)||f.includes(s)||t.includes(s));if(o==="session-start")return n([])&&!f.some((t)=>Object.hasOwn(e,t));if(!f.every((t)=>Object.hasOwn(e,t)))return!1;if(o==="before-shell-execution")return n(["commandDigest","sessionCapability"])&&Object.hasOwn(e,"commandDigest")&&Object.hasOwn(e,"sessionCapability");if(o==="before-handoff")return n(["sessionCapability","checkpointRef","handoffRef"])&&Object.hasOwn(e,"checkpointRef")&&Object.hasOwn(e,"handoffRef");if(o==="stop")return n(["sessionCapability"]);return c.has(o)&&n(["sessionCapability",...o==="before-merge"?["merge"]:[]])&&(o!=="before-merge"||Object.hasOwn(e,"merge"))}
@@ -0,0 +1 @@
1
+ export function closedObject(e,t){if(!s(e))return!1;if(Reflect.ownKeys(e).some((o)=>typeof o!=="string"||!Object.prototype.propertyIsEnumerable.call(e,o)))return!1;const r=Object.keys(e).sort(),n=[...t].sort();return r.length===n.length&&r.every((o,y)=>o===n[y])}export function closedObjectWithOptional(e,t,r){return s(e)&&!Reflect.ownKeys(e).some((n)=>typeof n!=="string"||!Object.prototype.propertyIsEnumerable.call(e,n))&&t.every((n)=>Object.hasOwn(e,n))&&Object.keys(e).every((n)=>t.includes(n)||r.includes(n))}export function safeArray(e){return Array.isArray(e)&&c(e)&&Reflect.ownKeys(e).every((t)=>t==="length"||typeof t==="string"&&/^0$|^[1-9][0-9]*$/.test(t))&&e.length===Object.keys(e).length&&Object.keys(e).every((t,r)=>t===String(r))}function s(e){if(!e||typeof e!=="object"||Array.isArray(e))return!1;return(Object.getPrototypeOf(e)===Object.prototype||Object.getPrototypeOf(e)===null)&&c(e)}function c(e){return Object.values(Object.getOwnPropertyDescriptors(e)).every((t)=>!t.get&&!t.set)}
@@ -0,0 +1 @@
1
+ export function inPathScope(n,e){return i(n)&&e.some((o)=>n.startsWith(o))}export function validPrefix(n){return n.endsWith("/")&&i(n.slice(0,-1))}function i(n){return Boolean(n)&&!/[\\\u0000-\u001f\u007f]/.test(n)&&!/^(?:\/|[A-Za-z]:|\\\\)/.test(n)&&!n.includes("%")&&!n.split("/").some((e)=>e===""||e==="."||e==="..")}
@@ -0,0 +1 @@
1
+ import{HOOK_AUTHORITY_EVENTS as i}from"./hook-authority.js";import{closedObject as o}from"./hook-authority-validation-objects.js";const r=/^[A-Za-z0-9_-]+$/,e=/^sha256:[0-9a-f]{64}$/,s=/^[a-z][a-z0-9._-]{2,127}$/,f=/^(?:[0-9a-f]{40}|[0-9a-f]{64})$/,p=/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$/;export function validDigest(n){return o(n,["algorithm","canonicalizationVersion","value"])&&n.algorithm==="sha256"&&n.canonicalizationVersion===1&&typeof n.value==="string"&&e.test(n.value)}export function validRef(n){return o(n,["digest","generation","id"])&&typeof n.id==="string"&&s.test(n.id)&&typeof n.generation==="number"&&Number.isSafeInteger(n.generation)&&n.generation>0&&validDigest(n.digest)}export function validTimestamp(n){if(typeof n!=="string"||!p.test(n))return null;const t=Date.parse(n);return Number.isFinite(t)&&new Date(t).toISOString()===n?t:null}export function validCapability(n){return typeof n==="string"&&n.length>=32&&n.length<=512&&r.test(n)}export function validSha(n){return typeof n==="string"&&f.test(n)}export function validWorkspaceRoot(n){if(typeof n!=="string"||n.length<2||!n.startsWith("/"))return!1;return!n.includes("\\")&&!n.includes("//")&&!n.split("/").some((t)=>t==="."||t===".."||t.includes("\x00"))}export function unique(n){return new Set(n.map((t)=>JSON.stringify(t))).size===n.length}export function supportedEvent(n){return typeof n==="string"&&i.includes(n)}
@@ -0,0 +1 @@
1
+ import{HOOK_AUTHORITY_SIGNATURE_DOMAIN as R}from"./hook-authority.js";import{validEventFields as v,validEventRequestBinding as p}from"./hook-authority-validation-events.js";import{closedObject as a,closedObjectWithOptional as c,safeArray as s}from"./hook-authority-validation-objects.js";import{validPrefix as u}from"./hook-authority-validation-paths.js";import{supportedEvent as d,unique as t,validDigest as r,validRef as n,validSha as l,validWorkspaceRoot as h}from"./hook-authority-validation-primitives.js";const m=/^[a-z][a-z0-9._-]{2,127}$/,g=/^[A-Za-z0-9_-]{85}[AQgw]$/;export function isClosedRequest(e){if(!c(e,["actorRef","currentSha","decision","event","paths","replayKey","requestId","requestedAt","schemaVersion","tenantRef","workspaceRef","workspaceRoot"],["commandDigest","sessionCapability","sessionRef","expectedRevision","expectedFence","checkpointRef","handoffRef","merge"]))return!1;if(!a(e.decision,["body","bodyDigest","domain","envelopeDigest","schemaVersion","signature"]))return!1;const i=e.decision.body;if(!c(i,["authorityFence","authorityVersion","decisionRef","evidence","expiresAt","issuedAt","schemaVersion","scope"],["revocationRef","sessionCapabilityHash"]))return!1;if(!v(e))return!1;return a(i.scope,["actorRef","commandDigests","currentSha","events","pathPrefixes","tenantRef","workspaceRef","workspaceRoot"])&&a(i.evidence,["evidenceRefs","keyStatusRef","leaseRefs","ownershipRef"])&&a(e.decision.signature,["algorithm","issuerKeyId","issuerService","value"])&&s(e.paths)&&s(i.scope.pathPrefixes)&&s(i.scope.events)&&s(i.scope.commandDigests)&&s(i.evidence.evidenceRefs)&&s(i.evidence.leaseRefs)&&(i.revocationRef===void 0||n(i.revocationRef))&&(i.sessionCapabilityHash===void 0||r(i.sessionCapabilityHash))}export function validRequestSemantics(e){const{body:i,signature:o}=e.decision;return d(e.event)&&i.scope.events.includes(e.event)&&y(i)&&k(i)&&A(e)&&p(e)&&e.decision.domain===R&&o.algorithm==="ed25519"&&g.test(o.value)}function y(e){return n(e.decisionRef)&&n(e.scope.tenantRef)&&n(e.scope.workspaceRef)&&n(e.evidence.ownershipRef)&&n(e.evidence.keyStatusRef)&&e.evidence.evidenceRefs.length>0&&e.evidence.leaseRefs.length>0&&e.evidence.evidenceRefs.every(n)&&e.evidence.leaseRefs.every(n)}function k(e){const{scope:i}=e;return i.pathPrefixes.length>0&&i.events.length>0&&t(i.pathPrefixes)&&t(i.events)&&t(i.commandDigests)&&t(e.evidence.evidenceRefs)&&t(e.evidence.leaseRefs)&&i.pathPrefixes.every((o)=>typeof o==="string"&&u(o))&&i.events.every(d)&&i.commandDigests.every(r)}function A(e){const{body:i}=e.decision;return e.schemaVersion===1&&i.schemaVersion===1&&e.decision.schemaVersion===1&&Number.isSafeInteger(i.authorityVersion)&&i.authorityVersion>0&&Number.isSafeInteger(i.authorityFence)&&i.authorityFence>0&&[e.requestId,e.replayKey,e.actorRef,i.decisionRef.id,i.scope.actorRef,e.decision.signature.issuerService,e.decision.signature.issuerKeyId].every((o)=>typeof o==="string"&&m.test(o))&&l(e.currentSha)&&e.currentSha===i.scope.currentSha&&h(e.workspaceRoot)&&e.workspaceRoot===i.scope.workspaceRoot&&e.actorRef===i.scope.actorRef&&f(e.tenantRef,i.scope.tenantRef)&&f(e.workspaceRef,i.scope.workspaceRef)&&r(e.decision.bodyDigest)&&r(e.decision.envelopeDigest)}function f(e,i){return e.id===i.id&&e.generation===i.generation&&e.digest.value===i.digest.value}
@@ -0,0 +1 @@
1
+ import{equalHookAuthorityDigest as f,hookAuthorityBodyDigest as m,hookAuthorityEnvelopeDigest as k}from"./hook-authority-digest.js";import{validTimestamp as c}from"./hook-authority-validation-primitives.js";import{isClosedRequest as A,validRequestSemantics as p}from"./hook-authority-validation-request.js";export const HookAuthorityRequestSchema={parse(e,s=new Date){const n=y(e);if(!n||!A(n))return l("Hook Authority request does not match the closed V1 schema.");const t=n;if(!p(t))return l("Request identity, signed scope, signature, or event binding is invalid.");const{body:o}=t.decision,i=c(o.issuedAt),r=c(t.requestedAt),u=c(o.expiresAt);if(i===null||r===null||u===null)return l("Timestamps must be canonical UTC milliseconds.");if(u<=s.getTime())return{ok:!1,error:{code:"expired",message:"Decision has expired."}};if(i>r||r>s.getTime()||r>=u)return l("Authority time must satisfy issuedAt <= requestedAt <= now < expiresAt.");if(!f(t.decision.bodyDigest,m(o)))return l("Signed body digest does not match the decision body.");const{envelopeDigest:b,...g}=t.decision;if(!f(t.decision.envelopeDigest,k(g)))return l("Envelope digest does not match its immutable projection.");return{ok:!0,value:a(t)}}};function l(e){return{ok:!1,error:{code:"invalid_request",message:e}}}function a(e){if(e&&typeof e==="object"){Object.freeze(e);for(const s of Object.values(e))a(s)}return e}function y(e){if(e===null||typeof e!=="object")return null;if(Array.isArray(e)){const n=Reflect.ownKeys(e);if(n.length!==e.length+1||!n.includes("length"))return null;const t=[];for(let i=0;i<e.length;i+=1){const r=Object.getOwnPropertyDescriptor(e,String(i));if(!r||r.get||r.set||r.enumerable!==!0||r.configurable!==!0||r.writable!==!0)return null;const u=h(r.value);if(u===d)return null;t.push(u)}const o=Object.getOwnPropertyDescriptor(e,"length");if(!o||o.get||o.set||o.value!==e.length||o.enumerable!==!1||o.configurable!==!1||o.writable!==!0)return null;return t}if(Object.getPrototypeOf(e)!==Object.prototype&&Object.getPrototypeOf(e)!==null)return null;const s={};for(const n of Reflect.ownKeys(e)){if(typeof n!=="string")return null;const t=Object.getOwnPropertyDescriptor(e,n);if(!t||!t.enumerable||t.get||t.set)return null;const o=h(t.value);if(o===d)return null;s[n]=o}return s}const d=Symbol("invalid");function h(e){if(e===null||typeof e!=="object")return e;return y(e)??d}export function hookAuthoritySchemaError(e){return`${e.code}:${e.message}`}
@@ -0,0 +1 @@
1
+ export const HOOK_AUTHORITY_V1=1,HOOK_AUTHORITY_SIGNATURE_DOMAIN="contractspec.hook-authority.decision.v1",HOOK_AUTHORITY_COMPATIBILITY="additive_backward_compatible",HOOK_AUTHORITY_EVENTS=["session-start","before-file-edit","before-shell-execution","after-file-edit","before-handoff","stop","before-merge"];
@@ -0,0 +1 @@
1
+ export*from"./approval-kernel.js";export*from"./capabilities/index.js";export*from"./commands/index.js";export*from"./connect-materialization.js";export*from"./constants.js";export*from"./contracts.js";export*from"./control-plane.feature.js";export*from"./events/index.js";export*from"./hook-authority.js";export*from"./hook-authority-digest.js";export*from"./hook-authority-reference-adapter.js";export*from"./hook-authority-validation.js";export*from"./policies/index.js";export*from"./queries/index.js";export*from"./repository-authority-bootstrap.js";
@@ -0,0 +1 @@
1
+ import{definePolicy as e}from"../../policy/index.js";import{CONTROL_PLANE_DOMAIN as n,CONTROL_PLANE_OWNERS as o,CONTROL_PLANE_STABILITY as t,CONTROL_PLANE_TAGS as s}from"../constants.js";export const ControlPlaneMessagingPolicy=e({meta:{key:"channel.messaging-policy",version:"2.0.0",title:"Deterministic Messaging Safety Policy",description:"Applies contract-backed blocked, assist, and autonomous routing for inbound messaging events.",domain:n,scope:"operation",owners:o,tags:[...s,"policy","messaging"],stability:t},rules:[{effect:"deny",actions:["channel.reply"],resource:{type:"control-plane.message"},conditions:[{expression:"context.blockedSignalDetected === true"}],reason:"blocked_signal_detected"},{effect:"allow",actions:["channel.reply"],resource:{type:"control-plane.message"},conditions:[{expression:"context.highRiskDetected === true"}],escalate:"human_review",reason:"high_risk_topic_detected"},{effect:"allow",actions:["channel.reply"],resource:{type:"control-plane.message"},conditions:[{expression:"context.mediumRiskDetected === true && context.confidence >= context.assistMinConfidence"}],escalate:"human_review",reason:"needs_human_review"},{effect:"allow",actions:["channel.reply"],resource:{type:"control-plane.message"},conditions:[{expression:"context.riskTier === 'low' && context.confidence >= context.autoResolveMinConfidence"}],reason:"low_risk_high_confidence"},{effect:"allow",actions:["channel.reply"],resource:{type:"control-plane.message"},conditions:[{expression:"context.confidence >= context.assistMinConfidence && context.blockedSignalDetected !== true"}],escalate:"human_review",reason:"needs_human_review"},{effect:"deny",actions:["channel.reply"],resource:{type:"control-plane.message"},conditions:[{expression:"context.confidence < context.assistMinConfidence"}],reason:"low_confidence"}]});
@@ -0,0 +1 @@
1
+ export*from"./controlPlaneMessaging.policy.js";
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineQuery as n}from"../../operations/index.js";import{CONTROL_PLANE_DOMAIN as o,CONTROL_PLANE_OWNERS as i,CONTROL_PLANE_STABILITY as a,CONTROL_PLANE_TAGS as l}from"../constants.js";import{ControlPlaneExecutionLaneStateModel as r}from"./controlPlaneExecutionLane.models.js";const p=new t({name:"ControlPlaneExecutionRecord",fields:{executionId:{type:e.ID(),isOptional:!1},intentId:{type:e.ID(),isOptional:!0},planId:{type:e.ID(),isOptional:!0},runId:{type:e.ID(),isOptional:!0},status:{type:e.String_unsecure(),isOptional:!1},riskTier:{type:e.String_unsecure(),isOptional:!0},requiresApproval:{type:e.Boolean(),isOptional:!0},lane:{type:r,isOptional:!0},createdAt:{type:e.DateTime(),isOptional:!1},updatedAt:{type:e.DateTime(),isOptional:!1}}}),s=new t({name:"ControlPlaneExecutionGetInput",fields:{executionId:{type:e.ID(),isOptional:!1}}}),u=new t({name:"ControlPlaneExecutionGetOutput",fields:{execution:{type:p,isOptional:!1}}});export const ControlPlaneExecutionGetQuery=n({meta:{key:"controlPlane.execution.get",title:"Get Execution",version:"1.0.0",description:"Fetch the latest state for one execution.",goal:"Provide operators and channels a deterministic execution view.",context:"Used by dashboards, CLI, and channel adapters to inspect one execution.",domain:o,owners:i,tags:[...l,"execution"],stability:a},capability:{key:"control-plane.core",version:"1.0.0"},io:{input:s,output:u},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";export const ControlPlaneExecutionLaneStateModel=new t({name:"ControlPlaneExecutionLaneState",fields:{laneKey:{type:e.String_unsecure(),isOptional:!0},laneStatus:{type:e.String_unsecure(),isOptional:!0},lanePhase:{type:e.String_unsecure(),isOptional:!0},ownerRole:{type:e.String_unsecure(),isOptional:!0},evidenceBundleCount:{type:e.Int_unsecure(),isOptional:!0},pendingApprovalCount:{type:e.Int_unsecure(),isOptional:!0},recommendedNextLane:{type:e.String_unsecure(),isOptional:!0}}}),ControlPlaneExecutionLaneSummaryModel=new t({name:"ControlPlaneExecutionLaneSummary",fields:{runId:{type:e.ID(),isOptional:!1},laneKey:{type:e.String_unsecure(),isOptional:!1},laneStatus:{type:e.String_unsecure(),isOptional:!1},lanePhase:{type:e.String_unsecure(),isOptional:!1},ownerRole:{type:e.String_unsecure(),isOptional:!1},objective:{type:e.String_unsecure(),isOptional:!1},evidenceCompleteness:{type:e.Float_unsecure(),isOptional:!1},terminalReadiness:{type:e.String_unsecure(),isOptional:!0},pendingApprovalCount:{type:e.Int_unsecure(),isOptional:!1},missingEvidenceCount:{type:e.Int_unsecure(),isOptional:!0},missingApprovalCount:{type:e.Int_unsecure(),isOptional:!0},recommendedNextLane:{type:e.String_unsecure(),isOptional:!0},updatedAt:{type:e.DateTime(),isOptional:!1}}}),ControlPlaneExecutionLaneDetailModel=new t({name:"ControlPlaneExecutionLaneDetail",fields:{runId:{type:e.ID(),isOptional:!1},laneKey:{type:e.String_unsecure(),isOptional:!1},laneStatus:{type:e.String_unsecure(),isOptional:!1},lanePhase:{type:e.String_unsecure(),isOptional:!1},ownerRole:{type:e.String_unsecure(),isOptional:!1},objective:{type:e.String_unsecure(),isOptional:!1},teamStatus:{type:e.String_unsecure(),isOptional:!0},completionPhase:{type:e.String_unsecure(),isOptional:!0},terminalReadiness:{type:e.String_unsecure(),isOptional:!0},missingEvidence:{type:e.String_unsecure(),isOptional:!0,isArray:!0},missingApprovals:{type:e.String_unsecure(),isOptional:!0,isArray:!0},blockingRisks:{type:e.String_unsecure(),isOptional:!0,isArray:!0},recommendedNextLane:{type:e.String_unsecure(),isOptional:!0},evidenceBundleCount:{type:e.Int_unsecure(),isOptional:!1},approvalCount:{type:e.Int_unsecure(),isOptional:!1},transitionCount:{type:e.Int_unsecure(),isOptional:!1},queueSkew:{type:e.Int_unsecure(),isOptional:!0},cleanupStatus:{type:e.String_unsecure(),isOptional:!0},retryCount:{type:e.Int_unsecure(),isOptional:!0},snapshotRef:{type:e.String_unsecure(),isOptional:!0},updatedAt:{type:e.DateTime(),isOptional:!1}}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as t,SchemaModel as e}from"@lssm/lib.schema";import{defineQuery as n}from"../../operations/index.js";import{CONTROL_PLANE_DOMAIN as o,CONTROL_PLANE_OWNERS as a,CONTROL_PLANE_STABILITY as i,CONTROL_PLANE_TAGS as r}from"../constants.js";import{ControlPlaneExecutionLaneDetailModel as l}from"./controlPlaneExecutionLane.models.js";const u=new e({name:"ControlPlaneExecutionLaneGetInput",fields:{runId:{type:t.ID(),isOptional:!1}}}),c=new e({name:"ControlPlaneExecutionLaneGetOutput",fields:{run:{type:l,isOptional:!1}}});export const ControlPlaneExecutionLaneGetQuery=n({meta:{key:"controlPlane.execution.lane.get",title:"Get Execution Lane",version:"1.0.0",description:"Fetch the current state of one execution-lane run.",goal:"Provide contract-backed lane detail for operator surfaces.",context:"Used by dashboards, APIs, and CLI surfaces to inspect one lane run.",domain:o,owners:a,tags:[...r,"execution","lane"],stability:i},capability:{key:"control-plane.audit",version:"1.0.0"},io:{input:u,output:c},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineQuery as n}from"../../operations/index.js";import{CONTROL_PLANE_DOMAIN as o,CONTROL_PLANE_OWNERS as i,CONTROL_PLANE_STABILITY as a,CONTROL_PLANE_TAGS as s}from"../constants.js";import{ControlPlaneExecutionLaneSummaryModel as r}from"./controlPlaneExecutionLane.models.js";const u=new t({name:"ControlPlaneExecutionLaneListInput",fields:{laneKey:{type:e.String_unsecure(),isOptional:!0},laneStatus:{type:e.String_unsecure(),isOptional:!0},limit:{type:e.Int_unsecure(),isOptional:!0},offset:{type:e.Int_unsecure(),isOptional:!0}}}),l=new t({name:"ControlPlaneExecutionLaneListOutput",fields:{items:{type:r,isOptional:!1,isArray:!0},total:{type:e.Int_unsecure(),isOptional:!1}}});export const ControlPlaneExecutionLaneListQuery=n({meta:{key:"controlPlane.execution.lane.list",title:"List Execution Lanes",version:"1.0.0",description:"List execution-lane runs with lane-focused filters.",goal:"Provide contract-backed lane inventory for operators.",context:"Used by dashboards, APIs, and CLI surfaces to inspect lane queues and status.",domain:o,owners:i,tags:[...s,"execution","lane"],stability:a},capability:{key:"control-plane.audit",version:"1.0.0"},io:{input:u,output:l},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as t,SchemaModel as e}from"@lssm/lib.schema";import{defineQuery as n}from"../../operations/index.js";import{CONTROL_PLANE_DOMAIN as i,CONTROL_PLANE_OWNERS as o,CONTROL_PLANE_STABILITY as a,CONTROL_PLANE_TAGS as s}from"../constants.js";import{ControlPlaneExecutionLaneStateModel as r}from"./controlPlaneExecutionLane.models.js";const u=new e({name:"ControlPlaneExecutionSummary",fields:{executionId:{type:t.ID(),isOptional:!1},status:{type:t.String_unsecure(),isOptional:!1},riskTier:{type:t.String_unsecure(),isOptional:!0},lane:{type:r,isOptional:!0},updatedAt:{type:t.DateTime(),isOptional:!1}}}),l=new e({name:"ControlPlaneExecutionListInput",fields:{workspaceId:{type:t.ID(),isOptional:!0},status:{type:t.String_unsecure(),isOptional:!0},limit:{type:t.Int_unsecure(),isOptional:!0},offset:{type:t.Int_unsecure(),isOptional:!0}}}),p=new e({name:"ControlPlaneExecutionListOutput",fields:{items:{type:u,isOptional:!1,isArray:!0},total:{type:t.Int_unsecure(),isOptional:!1}}});export const ControlPlaneExecutionListQuery=n({meta:{key:"controlPlane.execution.list",title:"List Executions",version:"1.0.0",description:"List execution runs with filtering and pagination.",goal:"Provide auditable execution inventory for operations teams.",context:"Used by dashboards and CLI status views to monitor runtime execution.",domain:i,owners:o,tags:[...s,"execution"],stability:a},capability:{key:"control-plane.core",version:"1.0.0"},io:{input:l,output:p},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as i}from"@lssm/lib.schema";import{defineQuery as n}from"../../operations/index.js";import{CONTROL_PLANE_DOMAIN as t,CONTROL_PLANE_OWNERS as o,CONTROL_PLANE_STABILITY as a,CONTROL_PLANE_TAGS as l}from"../constants.js";const r=new i({name:"ControlPlanePolicyExplainInput",fields:{executionId:{type:e.ID(),isOptional:!1},stepId:{type:e.ID(),isOptional:!0}}}),p=new i({name:"ControlPlanePolicyExplainOutput",fields:{verdict:{type:e.String_unsecure(),isOptional:!1},riskTier:{type:e.String_unsecure(),isOptional:!1},reasons:{type:e.String_unsecure(),isOptional:!0,isArray:!0},policyVersion:{type:e.String_unsecure(),isOptional:!1}}});export const ControlPlanePolicyExplainQuery=n({meta:{key:"controlPlane.policy.explain",title:"Explain Policy Verdict",version:"1.0.0",description:"Explain policy outcomes for an execution or step.",goal:"Make governance decisions auditable and understandable.",context:"Used in operator UIs and incident review to inspect verdict rationale.",domain:t,owners:o,tags:[...l,"policy","audit"],stability:a},capability:{key:"control-plane.audit",version:"1.0.0"},io:{input:r,output:p},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as t,SchemaModel as e}from"@lssm/lib.schema";import{defineQuery as i}from"../../operations/index.js";import{CONTROL_PLANE_DOMAIN as l,CONTROL_PLANE_OWNERS as n,CONTROL_PLANE_STABILITY as s,CONTROL_PLANE_TAGS as a}from"../constants.js";const o=new e({name:"ControlPlaneSkillSummary",fields:{skillKey:{type:t.String_unsecure(),isOptional:!1},version:{type:t.String_unsecure(),isOptional:!1},status:{type:t.String_unsecure(),isOptional:!1},verified:{type:t.Boolean(),isOptional:!1},publisher:{type:t.String_unsecure(),isOptional:!0},provenance:{type:t.String_unsecure(),isOptional:!0},installedAt:{type:t.DateTime(),isOptional:!0}}}),r=new e({name:"ControlPlaneSkillListInput",fields:{includeDisabled:{type:t.Boolean(),isOptional:!0},limit:{type:t.Int_unsecure(),isOptional:!0},offset:{type:t.Int_unsecure(),isOptional:!0}}}),p=new e({name:"ControlPlaneSkillListOutput",fields:{items:{type:o,isOptional:!1,isArray:!0},total:{type:t.Int_unsecure(),isOptional:!1}}});export const ControlPlaneSkillListQuery=i({meta:{key:"controlPlane.skill.list",title:"List Skills",version:"1.0.0",description:"List installed and available skill artifacts.",goal:"Provide a governed inventory of skill availability and state.",context:"Used by operators and marketplace tooling to inspect active skill sets.",domain:l,owners:n,tags:[...a,"skills"],stability:s},capability:{key:"control-plane.skill-registry",version:"1.0.0"},io:{input:r,output:p},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as i}from"@lssm/lib.schema";import{defineQuery as t}from"../../operations/index.js";import{CONTROL_PLANE_DOMAIN as l,CONTROL_PLANE_OWNERS as n,CONTROL_PLANE_STABILITY as r,CONTROL_PLANE_TAGS as o}from"../constants.js";import{ControlPlaneSkillManifestModel as a,ControlPlaneSkillVerificationIssueModel as s}from"../skills/schema.js";const p=new i({name:"ControlPlaneSkillVerifyInput",fields:{skillKey:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!1},artifactDigest:{type:e.String_unsecure(),isOptional:!1},manifest:{type:a,isOptional:!1}}}),u=new i({name:"ControlPlaneSkillVerifyOutput",fields:{verified:{type:e.Boolean(),isOptional:!1},signatureVerified:{type:e.Boolean(),isOptional:!0},publisherTrusted:{type:e.Boolean(),isOptional:!0},compatibilityVerified:{type:e.Boolean(),isOptional:!0},manifestDigest:{type:e.String_unsecure(),isOptional:!0},issues:{type:s,isOptional:!0,isArray:!0},reason:{type:e.String_unsecure(),isOptional:!0},verifiedAt:{type:e.DateTime(),isOptional:!1}}});export const ControlPlaneSkillVerifyQuery=t({meta:{key:"controlPlane.skill.verify",title:"Verify Skill Artifact",version:"1.0.0",description:"Verify skill signature and compatibility constraints.",goal:"Make skill trust checks explicit and queryable.",context:"Used by install pipelines and operators before enabling skill artifacts.",domain:l,owners:n,tags:[...o,"skills","governance"],stability:r},capability:{key:"control-plane.skill-registry",version:"1.0.0"},io:{input:p,output:u},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineQuery as n}from"../../operations/index.js";import{CONTROL_PLANE_DOMAIN as a,CONTROL_PLANE_OWNERS as o,CONTROL_PLANE_STABILITY as i,CONTROL_PLANE_TAGS as r}from"../constants.js";const l=new t({name:"ControlPlaneTraceEntry",fields:{timestamp:{type:e.DateTime(),isOptional:!1},stage:{type:e.String_unsecure(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1},actorId:{type:e.ID(),isOptional:!0},metadata:{type:e.JSONObject(),isOptional:!0}}}),s=new t({name:"ControlPlaneTraceGetInput",fields:{executionId:{type:e.ID(),isOptional:!1},includePayloads:{type:e.Boolean(),isOptional:!0}}}),p=new t({name:"ControlPlaneTraceGetOutput",fields:{executionId:{type:e.ID(),isOptional:!1},entries:{type:l,isOptional:!1,isArray:!0}}});export const ControlPlaneTraceGetQuery=n({meta:{key:"controlPlane.trace.get",title:"Get Execution Trace",version:"1.0.0",description:"Return the replayable trace timeline for one execution.",goal:"Support audits, debugging, and deterministic replay.",context:"Used by operator surfaces when inspecting policy and tool execution history.",domain:a,owners:o,tags:[...r,"trace","audit"],stability:i},capability:{key:"control-plane.audit",version:"1.0.0"},io:{input:s,output:p},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ export*from"./controlPlaneExecutionGet.query.js";export*from"./controlPlaneExecutionLane.models.js";export*from"./controlPlaneExecutionLaneGet.query.js";export*from"./controlPlaneExecutionLaneList.query.js";export*from"./controlPlaneExecutionList.query.js";export*from"./controlPlanePolicyExplain.query.js";export*from"./controlPlaneSkillList.query.js";export*from"./controlPlaneSkillVerify.query.js";export*from"./controlPlaneTraceGet.query.js";
@@ -0,0 +1 @@
1
+ export const CONTROL_PLANE_REPOSITORY_AUTHORITY_BOOTSTRAP_VERSION=1;
@@ -0,0 +1 @@
1
+ export*from"./schema.js";export*from"./signer.js";export*from"./types.js";export*from"./validator.js";export*from"./verifier.js";
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";export const ControlPlaneSkillCapabilityRequirementModel=new t({name:"ControlPlaneSkillCapabilityRequirement",fields:{key:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!0}}});const i=new t({name:"ControlPlaneSkillVersionRange",fields:{minVersion:{type:e.String_unsecure(),isOptional:!0},maxVersion:{type:e.String_unsecure(),isOptional:!0}}}),n=new t({name:"ControlPlaneSkillArtifactFile",fields:{path:{type:e.String_unsecure(),isOptional:!1},digest:{type:e.String_unsecure(),isOptional:!1},size:{type:e.Int_unsecure(),isOptional:!1}}}),l=new t({name:"ControlPlaneSkillSignature",fields:{algorithm:{type:e.String_unsecure(),isOptional:!1},signature:{type:e.String_unsecure(),isOptional:!1},publicKey:{type:e.String_unsecure(),isOptional:!1},keyId:{type:e.String_unsecure(),isOptional:!0},issuedAt:{type:e.DateTime(),isOptional:!0},expiresAt:{type:e.DateTime(),isOptional:!0},metadata:{type:e.JSONObject(),isOptional:!0}}});export const ControlPlaneSkillManifestModel=new t({name:"ControlPlaneSkillManifest",fields:{schemaVersion:{type:e.String_unsecure(),isOptional:!1},skill:{type:new t({name:"ControlPlaneSkillManifestSkill",fields:{key:{type:e.String_unsecure(),isOptional:!1},version:{type:e.String_unsecure(),isOptional:!1},entryPoint:{type:e.String_unsecure(),isOptional:!1},description:{type:e.String_unsecure(),isOptional:!0}}}),isOptional:!1},publisher:{type:new t({name:"ControlPlaneSkillManifestPublisher",fields:{id:{type:e.String_unsecure(),isOptional:!1},provenance:{type:e.String_unsecure(),isOptional:!1},repositoryUrl:{type:e.String_unsecure(),isOptional:!0}}}),isOptional:!1},artifact:{type:new t({name:"ControlPlaneSkillManifestArtifact",fields:{digest:{type:e.String_unsecure(),isOptional:!1},files:{type:n,isOptional:!0,isArray:!0}}}),isOptional:!1},compatibility:{type:new t({name:"ControlPlaneSkillManifestCompatibility",fields:{contractsSpec:{type:i,isOptional:!0},controlPlaneFeature:{type:i,isOptional:!0},requiredCapabilities:{type:ControlPlaneSkillCapabilityRequirementModel,isOptional:!0,isArray:!0}}}),isOptional:!1},metadata:{type:e.JSONObject(),isOptional:!0},signature:{type:l,isOptional:!0}}}),ControlPlaneSkillVerificationIssueModel=new t({name:"ControlPlaneSkillVerificationIssue",fields:{code:{type:e.String_unsecure(),isOptional:!1},message:{type:e.String_unsecure(),isOptional:!1}}});
@@ -0,0 +1,4 @@
1
+ export async function signControlPlaneSkillManifest(t,r,n={}){const e=n.algorithm??"ed25519",f=l(canonicalizeControlPlaneSkillManifest(t)),p=await b(r,e),S=await crypto.subtle.sign(i(e),p,o(f)),C=await m(r,e,n.publicKey);return{...t,signature:{algorithm:e,signature:u(new Uint8Array(S)),publicKey:C,keyId:n.keyId,issuedAt:c(n.issuedAt)??new Date().toISOString(),expiresAt:c(n.expiresAt),metadata:n.metadata}}}export async function verifyControlPlaneSkillSignature(t){if(!t.signature?.signature)throw Error("Skill manifest is missing signature metadata.");const r=l(canonicalizeControlPlaneSkillManifest(t)),n=g(t.signature.signature),e=await P(t.signature.publicKey,t.signature.algorithm);return crypto.subtle.verify(i(t.signature.algorithm),e,o(n),o(r))}export function canonicalizeControlPlaneSkillManifest(t){const r=a({...t,signature:void 0});return JSON.stringify(r)}async function b(t,r){if(t instanceof CryptoKey)return t;if(typeof t==="string")return K(t,r);return t.privateKey}async function m(t,r,n){if(typeof n==="string")return n;if(n instanceof CryptoKey)return s(n);if(typeof t!=="string"&&"publicKey"in t&&t.publicKey)return s(t.publicKey);throw Error("signControlPlaneSkillManifest: publicKey is required when the signing key does not include a public CryptoKey.")}async function K(t,r){return crypto.subtle.importKey("pkcs8",y(t),i(r),!0,["sign"])}async function P(t,r){return crypto.subtle.importKey("spki",y(t),i(r),!0,["verify"])}async function s(t){const r=await crypto.subtle.exportKey("spki",t);return d(new Uint8Array(r),"PUBLIC KEY")}function i(t){if(t==="ed25519")return{name:"Ed25519"};return{name:"RSA-PSS",saltLength:32}}function l(t){return new TextEncoder().encode(t)}function y(t){const r=t.replace(/-----BEGIN [^-]+-----|-----END [^-]+-----|\s/g,"");return o(g(r))}function d(t,r){const e=u(t).match(/.{1,64}/g)??[];return`-----BEGIN ${r}-----
2
+ ${e.join(`
3
+ `)}
4
+ -----END ${r}-----`}function o(t){return t.buffer.slice(t.byteOffset,t.byteOffset+t.byteLength)}function u(t){let r="";for(const n of t)r+=String.fromCharCode(n);return btoa(r)}function g(t){const r=atob(t),n=new Uint8Array(r.length);for(let e=0;e<r.length;e+=1)n[e]=r.charCodeAt(e);return n}function a(t){if(Array.isArray(t))return t.map((r)=>a(r));if(!t||typeof t!=="object")return t;return Object.fromEntries(Object.entries(t).filter(([,r])=>r!==void 0).sort(([r],[n])=>r.localeCompare(n)).map(([r,n])=>[r,a(n)]))}function c(t){if(!t)return;return typeof t==="string"?new Date(t).toISOString():t.toISOString()}
File without changes
@@ -0,0 +1 @@
1
+ export function validateControlPlaneSkillManifest(i){const e=[],s=r(i.skill)?i.skill:null,n=r(i.publisher)?i.publisher:null,t=r(i.artifact)?i.artifact:null;if(i.schemaVersion!=="1.0.0")e.push({code:"SCHEMA_VERSION_INVALID",message:`Unsupported skill manifest schema version ${i.schemaVersion}.`});if(!s||typeof s.key!=="string"||typeof s.version!=="string"||typeof s.entryPoint!=="string")e.push({code:"MANIFEST_INVALID",message:"Skill manifest is missing required skill metadata."});if(!n||typeof n.id!=="string"||typeof n.provenance!=="string")e.push({code:"MANIFEST_INVALID",message:"Skill manifest is missing required publisher metadata."});if(!t||typeof t.digest!=="string")e.push({code:"MANIFEST_INVALID",message:"Skill manifest is missing an artifact digest."});for(const l of Array.isArray(t?.files)?t.files:[])if(!l.path||!l.digest||l.size<0)e.push({code:"MANIFEST_INVALID",message:"Skill manifest contains an invalid artifact file entry."});if(i.signature?.issuedAt&&Number.isNaN(Date.parse(i.signature.issuedAt)))e.push({code:"MANIFEST_INVALID",message:"Skill manifest signature issuedAt is not a valid ISO timestamp."});if(i.signature?.expiresAt&&Number.isNaN(Date.parse(i.signature.expiresAt)))e.push({code:"MANIFEST_INVALID",message:"Skill manifest signature expiresAt is not a valid ISO timestamp."});return e}function r(i){return typeof i==="object"&&i!==null}
@@ -0,0 +1 @@
1
+ import{sha256Hex as f}from"@lssm/lib.crypto-utils";import{compareVersions as s}from"compare-versions";import{canonicalizeControlPlaneSkillManifest as S,verifyControlPlaneSkillSignature as u}from"./signer.js";import{validateControlPlaneSkillManifest as d}from"./validator.js";export async function verifyControlPlaneSkillManifest(e){const i=d(e.manifest),l=e.now??new Date,t=e.trustPolicy.trustedPublishers.find((c)=>c.id===e.manifest.publisher.id),o=await P(e.manifest,i),n=m(e.manifest,t,e.trustPolicy,l,i),r=C(e.manifest,e.runtime,i);if(e.expectedArtifactDigest&&e.expectedArtifactDigest!==e.manifest.artifact.digest)i.push({code:"ARTIFACT_DIGEST_MISMATCH",message:"Artifact digest does not match the manifest digest."});return{verified:i.length===0,signatureVerified:o,publisherTrusted:n,compatibilityVerified:r,verifiedAt:l.toISOString(),manifestDigest:p(S(e.manifest)),issues:i}}async function P(e,i){if(!e.signature){i.push({code:"SIGNATURE_MISSING",message:"Skill manifest is missing a signature block."});return!1}try{if(await u(e))return!0}catch{}i.push({code:"SIGNATURE_INVALID",message:"Skill manifest signature verification failed."});return!1}function m(e,i,l,t,o){let n=!0;if(!i){o.push({code:"PUBLISHER_UNTRUSTED",message:`Publisher ${e.publisher.id} is not trusted.`});n=!1}if(i&&!i.keyIds?.length&&!i.publicKeys?.length){o.push({code:"KEY_UNTRUSTED",message:"Trusted publishers must pin at least one keyId or public key."});n=!1}if(i?.keyIds?.length&&(!e.signature?.keyId||!i.keyIds.includes(e.signature.keyId))){o.push({code:"KEY_UNTRUSTED",message:"Skill manifest keyId is not trusted for this publisher."});n=!1}if(i?.publicKeys?.length&&(!e.signature?.publicKey||!i.publicKeys.includes(e.signature.publicKey))){o.push({code:"KEY_UNTRUSTED",message:"Skill manifest public key is not trusted for this publisher."});n=!1}if(i?.provenancePrefixes?.length&&!i.provenancePrefixes.some((r)=>e.publisher.provenance.startsWith(r))){o.push({code:"PROVENANCE_UNTRUSTED",message:"Skill manifest provenance is not trusted for this publisher."});n=!1}if(e.signature?.expiresAt&&!l.allowExpiredSignatures&&new Date(e.signature.expiresAt).getTime()<t.getTime()){o.push({code:"SIGNATURE_EXPIRED",message:"Skill manifest signature has expired."});n=!1}return n}function C(e,i,l){a(i.contractsSpecVersion,e.compatibility.contractsSpec,"CONTRACTS_SPEC_TOO_OLD","CONTRACTS_SPEC_TOO_NEW","ContractSpec runtime",l);a(i.controlPlaneFeatureVersion,e.compatibility.controlPlaneFeature,"CONTROL_PLANE_TOO_OLD","CONTROL_PLANE_TOO_NEW","Control plane feature",l);for(const t of e.compatibility.requiredCapabilities??[])if(!i.availableCapabilities?.some((n)=>n.key===t.key&&(t.version==null||n.version===t.version)))l.push({code:"CAPABILITY_MISSING",message:`Missing required capability ${t.key}${t.version?`@${t.version}`:""}.`});return!l.some((t)=>t.code.includes("TOO_")||t.code.includes("VERSION_MISSING")||t.code==="CAPABILITY_MISSING")}function a(e,i,l,t,o,n){if(!i||!e){if(i&&!e)n.push({code:l==="CONTRACTS_SPEC_TOO_OLD"?"CONTRACTS_SPEC_VERSION_MISSING":"CONTROL_PLANE_VERSION_MISSING",message:`${o} version is required for compatibility verification.`});return}if(i.minVersion&&s(e,i.minVersion)<0)n.push({code:l,message:`${o} version is below ${i.minVersion}.`});if(i.maxVersion&&s(e,i.maxVersion)>0)n.push({code:t,message:`${o} version is above ${i.maxVersion}.`})}function p(e){return f(e)}
@@ -0,0 +1 @@
1
+ export const CREATIVE_INTELLIGENCE_DOMAIN="creative-intelligence",CREATIVE_INTELLIGENCE_OWNERS=["team-creator-intelligence"],CREATIVE_INTELLIGENCE_TAGS=["creative-intelligence","trends","campaigns","evidence"],CREATIVE_INTELLIGENCE_STABILITY="experimental",CREATIVE_INTELLIGENCE_CAPABILITY={key:"creative-intelligence.system",version:"1.0.0"},CREATIVE_CAUSAL_LABELS=["observed","correlated","experiment_supported"];
@@ -0,0 +1,3 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as a}from"@lssm/lib.schema";import{docRef as o}from"../docs/registry.js";import{defineEvent as c}from"../events.js";import{CREATIVE_INTELLIGENCE_CAPABILITY as s,CREATIVE_INTELLIGENCE_OWNERS as d,CREATIVE_INTELLIGENCE_STABILITY as l,CREATIVE_INTELLIGENCE_TAGS as v}from"./constants.js";const p=new a({name:"CreativeIntelligenceEventPayloadV1",fields:{tenantId:{type:e.ID(),isOptional:!1},workspaceId:{type:e.ID(),isOptional:!1},resourceId:{type:e.ID(),isOptional:!1},evidenceRef:{type:e.ID(),isOptional:!0},change:{type:e.JSONObject(),isOptional:!0},occurredAt:{type:e.DateTime(),isOptional:!1}}});export const CreativeIntelligenceEventsDocBlock={id:"docs.tech.creative-intelligence.events",title:"Creative intelligence events",summary:"Lifecycle events for signals, trends, hypotheses, outcomes, and benchmarks.",kind:"reference",visibility:"public",route:"/docs/tech/creative-intelligence/events",tags:["creative-intelligence","trends","evidence","benchmarks","events"],body:`# Creative intelligence events
2
+
3
+ Events retain evidence and causal boundaries without granting campaign authority.`};const t=(i,n,r)=>c({meta:{key:i,title:n,version:"1.0.0",description:r,owners:[...d],tags:[...v],stability:l,docId:[o(CreativeIntelligenceEventsDocBlock.id)]},capability:{...s},pii:[],payload:p});export const CreativeSignalIngestedEvent=t("creative.signal.ingested","Creative signal ingested","An admitted signal was normalized with evidence."),CreativeTrendCalculatedEvent=t("creative.trend.calculated","Creative trend calculated","A deterministic trend projection was calculated."),CreativeHypothesisProposedEvent=t("creative.hypothesis.proposed","Creative hypothesis proposed","An assistive hypothesis was drafted from cited evidence."),CreativeOutcomeRecordedEvent=t("creative.outcome.recorded","Creative outcome recorded","A variant outcome was recorded with an explicit causal label."),CreativeBenchmarkRebuiltEvent=t("creative.benchmark.rebuilt","Creative benchmark rebuilt","An opt-in privacy-thresholded benchmark projection was rebuilt."),CreativeBenchmarkConsentRevokedEvent=t("creative.benchmark.consent_revoked","Creative benchmark consent revoked","A workspace revoked future and projected benchmark contribution."),creativeIntelligenceEvents=[CreativeSignalIngestedEvent,CreativeTrendCalculatedEvent,CreativeHypothesisProposedEvent,CreativeOutcomeRecordedEvent,CreativeBenchmarkRebuiltEvent,CreativeBenchmarkConsentRevokedEvent];
@@ -0,0 +1 @@
1
+ export*from"./constants.js";export*from"./events.js";export*from"./operations.js";export*from"./registry.js";export*from"./types.js";
@@ -0,0 +1,6 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as a}from"@lssm/lib.schema";import{docRef as d}from"../docs/registry.js";import{defineCommand as m,defineQuery as u}from"../operations/index.js";import{CREATIVE_INTELLIGENCE_CAPABILITY as s,CREATIVE_INTELLIGENCE_DOMAIN as v,CREATIVE_INTELLIGENCE_OWNERS as y,CREATIVE_INTELLIGENCE_STABILITY as g,CREATIVE_INTELLIGENCE_TAGS as h}from"./constants.js";const c=new a({name:"CreativeIntelligenceScopedInputV1",fields:{ecosystemId:{type:e.ID(),isOptional:!1},tenantId:{type:e.ID(),isOptional:!1},workspaceId:{type:e.ID(),isOptional:!1},datasetId:{type:e.ID(),isOptional:!1},jurisdiction:{type:e.NonEmptyString(),isOptional:!1},purpose:{type:e.NonEmptyString(),isOptional:!1},idempotencyKey:{type:e.NonEmptyString(),isOptional:!0},payload:{type:e.JSONObject(),isOptional:!0}}}),E=new a({name:"CreativeIntelligenceMutationOutputV1",fields:{receiptId:{type:e.ID(),isOptional:!1},resourceId:{type:e.ID(),isOptional:!0},state:{type:e.NonEmptyString(),isOptional:!1}}}),I=new a({name:"CreativeIntelligenceQueryOutputV1",fields:{items:{type:e.JSONObject(),isOptional:!1},snapshotAt:{type:e.DateTime(),isOptional:!1},nextCursor:{type:e.String_unsecure(),isOptional:!0}}});export const CreativeIntelligenceOperationsDocBlock={id:"docs.tech.creative-intelligence.operations",title:"Creative intelligence operations",summary:"Evidence-backed trend, hypothesis, outcome, and benchmark operations.",kind:"reference",visibility:"public",route:"/docs/tech/creative-intelligence/operations",tags:["creative-intelligence","trends","evidence","benchmarks"],body:`# Creative intelligence operations
2
+
3
+ Public-source and owned-performance evidence may produce bounded hypotheses.
4
+ Missing metrics remain missing, causal claims stay explicit, and generated
5
+ suggestions never activate campaigns or select creators.
6
+ `};const p=(i,n,t)=>({key:i,title:n,version:"1.0.0",description:t,goal:t,context:"Creative intelligence is evidence-first and cannot activate campaigns or make adverse or economic decisions.",domain:v,owners:[...y],tags:[...h],stability:g,docId:[d(CreativeIntelligenceOperationsDocBlock.id)]}),l={SCOPE_DENIED:{description:"The actor cannot access this scope.",http:403},SOURCE_DENIED:{description:"Source qualification or rights policy denied use.",http:403},EVIDENCE_REQUIRED:{description:"The operation requires immutable source evidence.",http:422},BENCHMARK_SUPPRESSED:{description:"The requested slice is below the privacy floor.",http:404}},o=(i,n,t)=>m({meta:p(i,n,t),capability:{...s},io:{input:c,output:E,errors:l},policy:{auth:"user",pii:[]}}),r=(i,n,t)=>u({meta:p(i,n,t),capability:{...s},io:{input:c,output:I,errors:l},policy:{auth:"user",pii:[]}});export const CreativeSignalIngestCommand=o("creative.signal.ingest","Ingest creative signal","Normalize an admitted evidence-backed creative signal."),CreativeHypothesisProposeCommand=o("creative.hypothesis.propose","Propose creative hypothesis","Draft a bounded campaign hypothesis from cited signals."),CreativeOutcomeRecordCommand=o("creative.outcome.record","Record creative outcome","Record an observed or experiment-supported variant outcome."),CreativeBenchmarkConsentSetCommand=o("creative.benchmark.consent.set","Set benchmark consent","Grant or revoke versioned benchmark contribution consent."),CreativeTrendSearchQuery=r("creative.trend.search","Search creative trends","Search current evidence-backed trends with freshness and limitations."),CreativeInspirationListQuery=r("creative.inspiration.list","List creative inspiration","List source-linked inspiration without copying protected assets."),CreativeBenchmarkCompareQuery=r("creative.benchmark.compare","Compare creative benchmark","Compare an eligible workspace projection with privacy-thresholded benchmarks."),CreativeInsightExplainQuery=r("creative.insight.explain","Explain creative insight","Explain score components, evidence, limitations, and causal status."),creativeIntelligenceOperations=[CreativeSignalIngestCommand,CreativeHypothesisProposeCommand,CreativeOutcomeRecordCommand,CreativeBenchmarkConsentSetCommand,CreativeTrendSearchQuery,CreativeInspirationListQuery,CreativeBenchmarkCompareQuery,CreativeInsightExplainQuery];
@@ -0,0 +1 @@
1
+ import{creativeIntelligenceEvents as n}from"./events.js";import{creativeIntelligenceOperations as r}from"./operations.js";export const creativeIntelligenceOperationRegistry=Object.fromEntries(r.map((e)=>[e.meta.key,e])),creativeIntelligenceEventRegistry=Object.fromEntries(n.map((e)=>[e.meta.key,e]));export function assertUniqueCreativeIntelligenceContractKeys(){const e=[...r.map((t)=>t.meta.key),...n.map((t)=>t.meta.key)];if(new Set(e).size!==e.length)throw Error("CREATIVE_INTELLIGENCE_CONTRACT_KEY_COLLISION")}
File without changes
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";import{CreatorDigestSchema as n,CreatorIdSchema as o,CreatorMoneyUnitSchema as p,CreatorRecordBase as m,CreatorUnitsSchema as i}from"./common.js";export const CreatorTermsSchema=e.strictObject({version:e.number().int().positive(),unit:p,tiers:e.array(e.strictObject({fromViews:i,toViews:i.nullable(),ratePerThousand:i})).min(1).max(100),maximumViews:i.nullable(),flatUnits:i,postCapUnits:i,creatorCapUnits:i,campaignCapUnits:i,cadenceSlots:e.number().int().positive()}).superRefine((t,c)=>{const r=(a)=>c.addIssue({code:"custom",message:a});if(t.tiers[0]?.fromViews!=="0")r("First tier starts at zero.");for(const[a,s]of t.tiers.entries()){if(s.toViews!==null&&BigInt(s.toViews)<=BigInt(s.fromViews))r("Tier bounds must increase.");if(a&&t.tiers[a-1]?.toViews!==s.fromViews)r("Tiers must be contiguous; only the last can be unbounded.")}if(t.maximumViews!==null&&t.tiers.at(-1)?.toViews!==t.maximumViews)r("Final tier must end at maximumViews.");if(BigInt(t.postCapUnits)>BigInt(t.creatorCapUnits)||BigInt(t.creatorCapUnits)>BigInt(t.campaignCapUnits))r("Caps must satisfy post <= creator <= campaign.")}),CreatorCampaignSchema=e.strictObject({...m,name:e.string().trim().min(1).max(300),state:e.enum(["draft","funding","active","paused","completed","cancelled"]),terms:CreatorTermsSchema,termsDigest:n,authorizedUnits:i,exposureUnits:i,authorityReceiptRef:o}),CreatorAgreementSchema=e.strictObject({...m,revision:e.literal(1),campaignId:o,creatorId:o,terms:CreatorTermsSchema,termsDigest:n,acceptedAt:e.iso.datetime(),authorityReceiptRef:o});
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";export const CreatorIdSchema=e.string().trim().min(1).max(200),CreatorUnitsSchema=e.string().regex(/^(0|[1-9][0-9]{0,29})$/),CreatorDigestSchema=e.string().regex(/^sha256:[a-f0-9]{64}$/),CreatorScopeSchema=e.strictObject({tenantId:CreatorIdSchema,workspaceId:CreatorIdSchema}),CreatorMoneyUnitSchema=e.strictObject({currency:e.string().regex(/^[A-Z]{3}$/),scale:e.number().int().min(0).max(9)}),CreatorRecordBase={id:CreatorIdSchema,scope:CreatorScopeSchema,revision:e.number().int().positive(),updatedAt:e.iso.datetime()};
@@ -0,0 +1 @@
1
+ export*from"./campaign.js";export*from"./common.js";export*from"./operation-inputs.js";export*from"./operations.js";export*from"./ports.js";export*from"./submission.js";export*from"./wallet.js";
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";import{CreatorTermsSchema as n}from"./campaign.js";import{CreatorDigestSchema as o,CreatorIdSchema as t,CreatorMoneyUnitSchema as i,CreatorScopeSchema as a,CreatorUnitsSchema as r}from"./common.js";export const CreatorOperationContextFields={scope:a,evidenceRefs:e.array(t).min(1).max(100)},CreatorCampaignCreateInput=e.strictObject({...CreatorOperationContextFields,id:t,name:e.string().trim().min(1).max(300),terms:n,authorizedUnits:r,exposureUnits:r}),CreatorCampaignTransitionInput=e.strictObject({...CreatorOperationContextFields,campaignId:t,expectedRevision:e.number().int().positive(),action:e.enum(["activate","pause","resume","complete","cancel"])}),CreatorAgreementAcceptInput=e.strictObject({...CreatorOperationContextFields,id:t,campaignId:t,creatorId:t,termsDigest:o}),CreatorSubmissionCreateInput=e.strictObject({...CreatorOperationContextFields,id:t,agreementId:t,mode:e.enum(["draft_first","post_first"]),assetRevisionRef:t,contentDigest:o,publicationRef:t.optional()}),CreatorSubmissionReviewInput=e.strictObject({...CreatorOperationContextFields,submissionId:t,expectedRevision:e.number().int().positive(),contentDigest:o,decision:e.enum(["approved","changes_requested","rejected","disputed"])}),CreatorAccrueInput=e.strictObject({...CreatorOperationContextFields,id:t,submissionId:t,observationRef:t,acceptedViews:r}),CreatorWalletInput=e.strictObject({...CreatorOperationContextFields,creatorId:t,unit:i}),CreatorPayoutReserveInput=e.strictObject({...CreatorOperationContextFields,id:t,creatorId:t,unit:i,amountUnits:r,rail:e.enum(["stripe","paypal","manual"]),destinationRef:t}),CreatorPayoutActionInput=e.strictObject({...CreatorOperationContextFields,payoutId:t});
@@ -0,0 +1,23 @@
1
+ import{fromZod as a}from"@lssm/lib.schema";import{defineFeature as l}from"../features/index.js";import{defineCommand as d,defineQuery as C}from"../operations/index.js";import{CreatorAgreementSchema as g,CreatorCampaignSchema as i}from"./campaign.js";import{CreatorAccrueInput as y,CreatorAgreementAcceptInput as h,CreatorCampaignCreateInput as b,CreatorCampaignTransitionInput as f,CreatorPayoutActionInput as n,CreatorPayoutReserveInput as v,CreatorSubmissionCreateInput as w,CreatorSubmissionReviewInput as x,CreatorWalletInput as S}from"./operation-inputs.js";import{CreatorAccrualSchema as k,CreatorSubmissionSchema as s}from"./submission.js";import{CreatorPayoutSchema as o,CreatorWalletSchema as A}from"./wallet.js";const c=(e,r)=>({key:`creator-operations.${e}`,title:r,version:"1.0.0",description:r,goal:r,context:"Canonical creator operations with immutable accepted terms, exact units, transactional ledger and independent evidence authority.",owners:["@platform/creator-operations"],tags:["creator-operations"],domain:"creator-operations",stability:"experimental"});function t(e,r,p,m,u=!1){return d({meta:c(e,r),io:{input:a(p,{name:`${e}_InputV1`}),output:a(m,{name:`${e}_OutputV1`})},policy:{auth:"user"},execution:u?{effects:["write","cost-bearing","external-side-effect"],approval:{required:!0}}:{effects:["write"]},transport:{rest:{method:"POST",path:`/creator-operations/${e.replaceAll(".","/")}`},mcp:{toolName:`creator_${e.replaceAll(".","_")}`}}})}export const CreatorCampaignCreate=t("campaign.create","Create a funded creator campaign",b,i,!0),CreatorCampaignTransition=t("campaign.transition","Transition a creator campaign",f,i,!0),CreatorAgreementAccept=t("agreement.accept","Accept immutable creator terms",h,g),CreatorSubmissionCreate=t("submission.create","Submit creator content",w,s),CreatorSubmissionReview=t("submission.review","Review a creator submission",x,s,!0),CreatorRewardAccrue=t("reward.accrue","Accrue verified cumulative creator rewards",y,k,!0),CreatorPayoutReserve=t("payout.reserve","Reserve canonical wallet funds",v,o,!0),CreatorPayoutExecute=t("payout.execute","Execute a reserved creator settlement",n,o,!0),CreatorPayoutReconcile=t("payout.reconcile","Reconcile an uncertain creator settlement",n,o),CreatorPayoutCancel=t("payout.cancel","Cancel an undispatched payout reservation",n,o),CreatorWalletRead=C({meta:c("wallet.read","Read a scoped creator wallet"),io:{input:a(S,{name:"CreatorWalletInputV1"}),output:a(A,{name:"CreatorWalletV1"})},policy:{auth:"user"},execution:{effects:["read"]},transport:{rest:{method:"POST",path:"/creator-operations/wallet/read"},mcp:{toolName:"creator_wallet_read"}}}),creatorOperations=[CreatorCampaignCreate,CreatorCampaignTransition,CreatorAgreementAccept,CreatorSubmissionCreate,CreatorSubmissionReview,CreatorRewardAccrue,CreatorPayoutReserve,CreatorPayoutExecute,CreatorPayoutReconcile,CreatorPayoutCancel,CreatorWalletRead],CreatorOperationsFeature=l({meta:{key:"creator-operations",version:"1.0.0",title:"Creator Operations",description:"Campaign agreements, submissions, canonical accrual and settlement.",domain:"creator-operations",owners:["@platform/creator-operations"],tags:["creators"],stability:"experimental"},operations:creatorOperations.map((e)=>({key:e.meta.key,version:e.meta.version}))}),CreatorOperationsDocBlock={id:"docs.tech.creator-operations",title:"Canonical creator operations",summary:"Reusable creator campaigns, immutable agreements, submission review and exact wallet settlement.",visibility:"public",kind:"reference",route:"/docs/tech/creator-operations",tags:["creators","marketing","payments"],body:`# Canonical creator operations
2
+
3
+ The creator-operations subpath owns provider-neutral creator business contracts.
4
+ lib.creator-operations-runtime implements campaign transitions, immutable acceptance,
5
+ submission review, incremental cumulative accrual, wallet reservations and settlement.
6
+ integration.creator-persistence provides transactional SQL state and immutable history.
7
+ module.creator-operations binds eleven operations into the shared REST/MCP registry.
8
+
9
+ Money has explicit currency/scale. Accepted terms and ledger credits are immutable.
10
+ Repeated view observations pay only the newly earned difference. Exact tiered CPM
11
+ arithmetic is compared against Hirly's source, while application migration remains
12
+ unqualified. Unknown transfers keep reservations until definitive reconciliation.
13
+
14
+ provider-payments/creator-settlement adapts existing Stripe/PayPal marketplace
15
+ capabilities and verified manual evidence. Minor-unit conversion rejects fractional
16
+ or out-of-range values. Qualified host bindings authorize exact recipients, amount,
17
+ tenant/workspace and account; package presence does not grant payment authority.
18
+
19
+ The September 2026 ownership amendment permits reusable business engines without
20
+ sharing application databases. Existing Hirly operations remain unchanged until an
21
+ explicit adapter migration. Manager, training and other creator features remain in
22
+ the full parity program rather than being certified by these financial tests.
23
+ `};
File without changes
@@ -0,0 +1 @@
1
+ import{z as t}from"zod";import{CreatorDigestSchema as o,CreatorIdSchema as e,CreatorRecordBase as a,CreatorUnitsSchema as r}from"./common.js";export const CreatorSubmissionSchema=t.strictObject({...a,campaignId:e,creatorId:e,agreementId:e,mode:t.enum(["draft_first","post_first"]),assetRevisionRef:e,contentDigest:o,state:t.enum(["submitted","changes_requested","approved","rejected","disputed"]),publicationRef:e.optional(),reviewReceiptRef:e.optional(),acceptedViews:r}),CreatorAccrualSchema=t.strictObject({...a,revision:t.literal(1),campaignId:e,creatorId:e,submissionId:e,agreementId:e,termsDigest:o,observationRef:e,acceptedViews:r,amountUnits:r,authorityReceiptRef:e});
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";import{CreatorIdSchema as t,CreatorScopeSchema as r}from"./common.js";export const CreatorTrainingCourseSchema=e.strictObject({id:t,scope:r,revision:e.number().int().positive(),locales:e.array(e.enum(["en","fr","es"])).min(1),modules:e.array(e.strictObject({id:t,quizIds:e.array(t),eventKeys:e.array(t)})).min(1)}).superRefine((o,s)=>{const a=new Set,i=new Set;for(const n of o.modules){if(a.has(n.id))s.addIssue({code:"custom",message:"Duplicate module."});a.add(n.id);for(const d of n.quizIds){if(i.has(d))s.addIssue({code:"custom",message:"Duplicate quiz."});i.add(d)}if(new Set(n.eventKeys).size!==n.eventKeys.length)s.addIssue({code:"custom",message:"Duplicate progress event."})}}),CreatorTrainingProgressSchema=e.strictObject({courseId:t,courseRevision:e.number().int().positive(),stateVersion:e.number().int().nonnegative(),completedModules:e.number().int().nonnegative(),totalModules:e.number().int().positive(),completionRatio:e.number().min(0).max(1),completedModuleIds:e.array(t),remainingModuleIds:e.array(t),staleModuleIds:e.array(t),basis:e.literal("recorded_module_completion")}).superRefine((o,s)=>{const i=[o.completedModuleIds,o.remainingModuleIds,o.staleModuleIds].flat();if(new Set(i).size!==i.length)s.addIssue({code:"custom",message:"Progress module groups must be distinct."});if(o.completedModules!==o.completedModuleIds.length||o.totalModules!==o.completedModuleIds.length+o.remainingModuleIds.length)s.addIssue({code:"custom",message:"Progress counts do not match module lists."});if(o.completionRatio!==o.completedModules/o.totalModules)s.addIssue({code:"custom",message:"Progress ratio does not match counts."})});
@@ -0,0 +1 @@
1
+ import{fromZod as t}from"@lssm/lib.schema";import{z as p}from"zod";import{defineCommand as e}from"../operations/index.js";import{CreatorIdSchema as a,CreatorScopeSchema as c}from"./common.js";import{CreatorTrainingStateSchema as o,CreatorTrainingUpdateSchema as s}from"./training.js";const n=(i,r)=>({key:i,version:"1.0.0",title:r,description:r,goal:r,context:"Authenticated creator/course authority precedes transactional training state and exact request replay.",domain:"creator-operations",owners:["platform.creators"],tags:["creator","training"],stability:"experimental"});export const CreatorTrainingOpenCommand=e({meta:n("creator-operations.training.open","Open or initialize creator training"),io:{input:t(p.strictObject({scope:c,creatorId:a,courseId:a}),{name:"CreatorTrainingOpenInputV1"}),output:t(o,{name:"CreatorTrainingOpenOutputV1"})},policy:{auth:"user"},execution:{effects:["read","write"]},transport:{rest:{method:"POST",path:"/creator-operations/training/open"},mcp:{toolName:"creator_training_open"}}}),CreatorTrainingUpdateCommand=e({meta:n("creator-operations.training.update","Update authorized creator training progress"),io:{input:t(s,{name:"CreatorTrainingUpdateInputV1"}),output:t(o,{name:"CreatorTrainingUpdateOutputV1"})},policy:{auth:"user"},execution:{effects:["write"]},transport:{rest:{method:"POST",path:"/creator-operations/training/update"},mcp:{toolName:"creator_training_update"}}}),creatorTrainingOperations=[CreatorTrainingOpenCommand,CreatorTrainingUpdateCommand];
@@ -0,0 +1 @@
1
+ import{fromZod as t}from"@lssm/lib.schema";import{z as r}from"zod";import{defineQuery as o}from"../operations/index.js";import{CreatorIdSchema as e,CreatorScopeSchema as i}from"./common.js";import{CreatorTrainingProgressSchema as a}from"./training-course.js";export const CreatorTrainingProgressQuery=o({meta:{key:"creator-operations.training.progress",version:"1.0.0",title:"Read creator training progress",description:"Read authorized course-revision progress without initializing state.",goal:"Show recorded creator progress and stale module references.",context:"Missing training state remains explicitly not started; no XP or qualification is inferred.",domain:"creator-operations",owners:["platform.creators"],tags:["creator","training"],stability:"experimental"},io:{input:t(r.strictObject({scope:i,creatorId:e,courseId:e}),{name:"CreatorTrainingProgressInputV1"}),output:t(r.discriminatedUnion("status",[r.strictObject({status:r.literal("not_started")}),r.strictObject({status:r.literal("recorded"),progress:a})]),{name:"CreatorTrainingProgressOutputV1"})},policy:{auth:"user"},execution:{effects:["read"]},transport:{rest:{method:"POST",path:"/creator-operations/training/progress"},mcp:{toolName:"creator_training_progress"}}});
@@ -0,0 +1 @@
1
+ import{fromZod as e}from"@lssm/lib.schema";import{z as t}from"zod";import{defineCommand as r}from"../operations/index.js";import{CreatorTrainingStateSchema as o}from"./training.js";import{CreatorQuizAttemptReceiptSchema as a,CreatorQuizCompletionInputSchema as i}from"./training-quiz.js";export const CreatorQuizCompleteCommand=r({meta:{key:"creator-operations.training.quiz.complete",version:"1.0.0",title:"Score and record a creator quiz completion",description:"Score answers with an authorized private key and apply the recorded result to training progress.",goal:"Prevent client-supplied score claims from updating training.",context:"Quiz attempts and training updates are separately durable stages with deterministic replay.",domain:"creator-operations",owners:["@platform/creators"],tags:["creator","training"],stability:"experimental"},io:{input:e(i,{name:"CreatorQuizCompleteInputV1"}),output:e(t.strictObject({attempt:a,state:o}),{name:"CreatorQuizCompleteOutputV1"})},policy:{auth:"user"},execution:{effects:["read","write"]},transport:{rest:{method:"POST",path:"/creator-operations/training/quiz/complete"},mcp:{toolName:"creator_training_quiz_complete"}},acceptance:{scenarios:[{key:"server-scored-completion",given:["An enrolled creator submits answers for an authorized quiz revision"],when:["The quiz completion command runs"],then:["Answers are scored server-side","The durable result determines the training update","No private answer key is returned"]}]}});
@@ -0,0 +1 @@
1
+ import{fromZod as t}from"@lssm/lib.schema";import{z as e}from"zod";import{defineQuery as o}from"../operations/index.js";import{CreatorIdSchema as r,CreatorScopeSchema as i}from"./common.js";import{CreatorTrainingQuizViewSchema as a}from"./training-quiz-view.js";export const CreatorQuizReadInputSchema=e.strictObject({scope:i,creatorId:r,courseId:r,quizId:r,revision:e.number().int().positive(),locale:e.enum(["en","fr","es"])}),CreatorQuizReadQuery=o({meta:{key:"creator-operations.training.quiz.get",version:"1.0.0",title:"Read learner-facing creator quiz",description:"Read authorized versioned quiz questions without scoring keys.",goal:"Serve safe quiz content to enrolled creators.",context:"Host loader authorizes creator/course enrollment and returns only public fields.",domain:"creator-operations",owners:["@platform/creators"],tags:["creator","training"],stability:"experimental"},io:{input:t(CreatorQuizReadInputSchema,{name:"CreatorQuizReadInputV1"}),output:t(a,{name:"CreatorQuizReadOutputV1"})},policy:{auth:"user"},execution:{effects:["read"]},transport:{rest:{method:"POST",path:"/creator-operations/training/quiz/get"},mcp:{toolName:"creator_training_quiz_get"}}});
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";import{CreatorIdSchema as t}from"./common.js";export const CreatorTrainingQuizViewSchema=e.strictObject({id:t,moduleId:t,revision:e.number().int().positive(),title:e.string().min(1).max(1000),passPercent:e.number().min(0).max(100),questions:e.array(e.strictObject({id:t,prompt:e.string().min(1).max(1e4),options:e.array(e.strictObject({id:t,label:e.string().min(1).max(4000)})).min(1)})).min(1)}).superRefine((n,s)=>{if(new Set(n.questions.map((i)=>i.id)).size!==n.questions.length)s.addIssue({code:"custom",message:"Duplicate question."});for(const i of n.questions)if(new Set(i.options.map((o)=>o.id)).size!==i.options.length)s.addIssue({code:"custom",message:"Duplicate option."})});
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";import{CreatorIdSchema as t,CreatorScopeSchema as s}from"./common.js";export const CreatorTrainingQuizKeySchema=e.strictObject({id:t,moduleId:t,revision:e.number().int().positive(),passPercent:e.number().min(0).max(100),questions:e.array(e.strictObject({id:t,optionIds:e.array(t).min(1),correctOptionId:t})).min(1)}).superRefine((o,n)=>{const i=new Set;for(const r of o.questions){if(i.has(r.id)||new Set(r.optionIds).size!==r.optionIds.length||!r.optionIds.includes(r.correctOptionId))n.addIssue({code:"custom",message:"Invalid or duplicate quiz key."});i.add(r.id)}}),CreatorQuizAttemptInputSchema=e.strictObject({scope:s,creatorId:t,courseId:t,quizId:t,quizRevision:e.number().int().positive(),attemptId:t,answers:e.record(t,t)}),CreatorQuizAttemptReceiptSchema=e.strictObject({input:CreatorQuizAttemptInputSchema,moduleId:t,result:e.strictObject({score:e.number().int().min(0).max(100),passed:e.boolean(),total:e.number().int().positive(),correct:e.number().int().nonnegative(),quizId:t,quizRevision:e.number().int().positive()}),scoredAt:e.iso.datetime(),keyEvidenceRef:t}).superRefine((o,n)=>{const i=o.result;if(i.quizId!==o.input.quizId||i.quizRevision!==o.input.quizRevision||i.correct>i.total||i.score!==Math.round(i.correct/i.total*100))n.addIssue({code:"custom",message:"Quiz receipt result binding mismatch."})}),CreatorQuizCompletionInputSchema=e.strictObject({attempt:CreatorQuizAttemptInputSchema,expectedTrainingVersion:e.number().int().positive()});
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";import{CreatorScopeSchema as i}from"./common.js";const t=e.string().trim().min(1).max(200).refine((r)=>!["__proto__","constructor","prototype"].includes(r));export const CreatorTrainingEventSchema=e.discriminatedUnion("type",[e.strictObject({type:e.literal("locale_set"),locale:e.enum(["en","fr","es"])}),e.strictObject({type:e.literal("module_viewed"),moduleId:t}),e.strictObject({type:e.literal("quiz_recorded"),quizId:t,moduleId:t,passed:e.boolean()}),e.strictObject({type:e.literal("micro_event_recorded"),moduleId:t,eventKey:t,occurredAt:e.iso.datetime()}),e.strictObject({type:e.literal("welcome_acknowledged")}),e.strictObject({type:e.literal("completion_feedback_acknowledged")}),e.strictObject({type:e.literal("reset_explanation_acknowledged")})]),CreatorTrainingStateSchema=e.strictObject({courseId:t,locale:e.enum(["en","fr","es"]),completedModuleIds:e.array(t),quizPassed:e.record(t,e.boolean()),progressEvents:e.record(t,e.record(t,e.number().finite())),lastModuleId:t.nullable(),welcomeAcknowledgedAt:e.iso.datetime().nullable(),completionFeedbackAcknowledgedAt:e.iso.datetime().nullable(),resetExplanationRequired:e.boolean(),version:e.number().int().nonnegative(),updatedAt:e.iso.datetime()}),CreatorTrainingUpdateSchema=e.strictObject({scope:i,creatorId:t,courseId:t,requestId:t,expectedVersion:e.number().int().positive(),event:CreatorTrainingEventSchema}),CreatorTrainingImportSchema=e.strictObject({scope:i,creatorId:t,sourceRef:t,sourceRecordRef:t,evidenceRef:t,state:CreatorTrainingStateSchema.refine((r)=>r.version>0)}),CreatorTrainingLegacyReceiptSchema=e.strictObject({scope:i,creatorId:t,requestId:t,sourceRef:t,evidenceRef:t,state:CreatorTrainingStateSchema});
@@ -0,0 +1 @@
1
+ import{z as e}from"zod";import{CreatorIdSchema as t,CreatorMoneyUnitSchema as i,CreatorRecordBase as o,CreatorUnitsSchema as r}from"./common.js";export const CreatorLedgerEntrySchema=e.strictObject({...o,revision:e.literal(1),creatorId:t,unit:i,sourceRef:t,direction:e.enum(["credit","debit"]),amountUnits:r,reason:e.enum(["accrual","settlement","funded_bonus","reversal"]),authorityReceiptRef:t}),CreatorPayoutSchema=e.strictObject({...o,creatorId:t,unit:i,rail:e.enum(["stripe","paypal","manual"]),destinationRef:t,amountUnits:r.refine((a)=>BigInt(a)>0n),state:e.enum(["reserved","submitting","unknown","paid","failed","cancelled"]),authorityReceiptRef:t,providerReceiptRef:t.optional()}).superRefine((a,n)=>{if(["paid","failed"].includes(a.state)&&!a.providerReceiptRef)n.addIssue({code:"custom",message:"Definitive settlement outcomes require provider evidence."})}),CreatorWalletSchema=e.strictObject({creatorId:t,unit:i,creditedUnits:r,debitedUnits:r,reservedUnits:r,availableUnits:r});
@@ -0,0 +1 @@
1
+ import{defineEvent as o}from"../events.js";import{SupportAiPromotionProjectionModel as t,SupportAiRollbackDrillProjectionModel as i}from"./ai-outcome-evaluation-output-schemas.js";import{SupportAiEvaluationCompletedProjectionModel as r,SupportAiEvaluationProjectionModel as a}from"./ai-outcome-evaluation-projection-schemas.js";const e={version:"1.0.0",domain:"customer-support",owners:["platform.support"],tags:["support","ai","evaluation"],stability:"experimental"};export const SupportAiEvaluationRequestedEvent=o({meta:{...e,key:"support.ai.outcome-learning.evaluation.requested",title:"AI outcome evaluation requested",description:"A frozen AI outcome cohort was requested."},payload:a,pii:[]}),SupportAiEvaluationCompletedEvent=o({meta:{...e,key:"support.ai.outcome-learning.evaluation.completed",title:"AI outcome evaluation completed",description:"A frozen AI outcome cohort was evaluated."},payload:r,pii:[]}),SupportAiPromotionChangedEvent=o({meta:{...e,key:"support.ai.outcome-learning.promotion.changed",title:"AI outcome promotion changed",description:"An AI policy promotion changed under revision fencing."},payload:t,pii:[]}),SupportAiRollbackDrillRecordedEvent=o({meta:{...e,key:"support.ai.outcome-learning.rollback-drill.recorded",title:"AI rollback drill recorded",description:"An authority-verified rollback drill was recorded."},payload:i,pii:[]}),supportAiOutcomeEvaluationEvents=[SupportAiEvaluationRequestedEvent,SupportAiEvaluationCompletedEvent,SupportAiPromotionChangedEvent,SupportAiRollbackDrillRecordedEvent];
@@ -0,0 +1 @@
1
+ import{defineCommand as r,defineQuery as i}from"../operations/index.js";import{SupportAiEvaluationOutputModel as n,SupportAiEvaluationRequestOutputModel as u,SupportAiPromotionOutputModel as a,SupportAiRollbackDrillOutputModel as p}from"./ai-outcome-evaluation-output-schemas.js";import{SupportAiCurrentPromotionInputModel as l,SupportAiCurrentPromotionOutputModel as s,SupportAiEvaluationGetInputModel as c,SupportAiEvaluationGetOutputModel as m,SupportAiPromotionHistoryInputModel as d,SupportAiPromotionHistoryOutputModel as v}from"./ai-outcome-evaluation-query-schemas.js";import{SupportAiEvaluationExecuteInputModel as A,SupportAiEvaluationRequestInputModel as S,SupportAiPromotionInputModel as f,SupportAiRollbackDrillInputModel as y}from"./ai-outcome-evaluation-schemas.js";import{supportOperationErrors as o}from"./operation-schemas.js";const t={version:"1.0.0",domain:"customer-support",owners:["platform.support"],tags:["support","ai","evaluation"],stability:"experimental"},e={auth:"internal",pii:[]};export const SupportAiEvaluationRequestCommand=r({meta:{...t,key:"support.ai.outcome-learning.evaluation.request",title:"Request frozen AI outcome evaluation",description:"Freeze an adjudicated AI outcome cohort for evaluation.",goal:"Evaluate promotion safety from immutable evidence",context:"Scope derives from the authenticated SupportOS grant."},io:{input:S,output:u,errors:o},policy:e}),SupportAiEvaluationExecuteCommand=r({meta:{...t,key:"support.ai.outcome-learning.evaluation.execute",title:"Execute frozen AI outcome evaluation",description:"Evaluate a frozen cohort under a fenced durable job.",goal:"Produce immutable threshold evidence",context:"Only the SupportOS worker executes this command."},io:{input:A,output:n,errors:o},policy:e}),SupportAiRollbackDrillRecordCommand=r({meta:{...t,key:"support.ai.outcome-learning.rollback-drill.record",title:"Record verified AI rollback drill",description:"Record an authority-verified successful rollback drill.",goal:"Require proven reversibility before promotion",context:"The verifier owns drill execution truth."},io:{input:y,output:p,errors:o},policy:e}),SupportAiPromotionMutateCommand=r({meta:{...t,key:"support.ai.outcome-learning.promotion.mutate",title:"Mutate AI outcome promotion",description:"Revision-fenced promotion, supersession, or rollback.",goal:"Promote only qualified and reversible AI behavior",context:"L3 and L4 require fresh Connect authorization."},io:{input:f,output:a,errors:o},policy:e}),SupportAiEvaluationGetQuery=i({meta:{...t,key:"support.ai.outcome-learning.evaluation.get",title:"Get AI outcome evaluation",description:"Read one frozen evaluation without raw content.",goal:"Inspect immutable evaluation evidence",context:"Scope derives from the authenticated SupportOS grant."},io:{input:c,output:m,errors:o},policy:e}),SupportAiCurrentPromotionGetQuery=i({meta:{...t,key:"support.ai.outcome-learning.promotion.get-current",title:"Get current AI outcome promotion",description:"Read the exact action, policy, and risk-tier promotion head.",goal:"Inspect current governed promotion state",context:"The server returns a snapshot watermark."},io:{input:l,output:s,errors:o},policy:e}),SupportAiPromotionHistoryQuery=i({meta:{...t,key:"support.ai.outcome-learning.promotion.list-history",title:"List AI outcome promotion history",description:"Read bounded promotion history at a frozen watermark.",goal:"Audit promotion and rollback transitions",context:"Cursors are bound to action, policy, risk tier, and watermark."},io:{input:d,output:v,errors:o},policy:e}),supportAiOutcomeEvaluationOperations=[SupportAiEvaluationRequestCommand,SupportAiEvaluationExecuteCommand,SupportAiRollbackDrillRecordCommand,SupportAiPromotionMutateCommand,SupportAiEvaluationGetQuery,SupportAiCurrentPromotionGetQuery,SupportAiPromotionHistoryQuery];
@@ -0,0 +1 @@
1
+ import{EnumType as i,ScalarTypeEnum as o}from"@lssm/lib.schema";import{SupportAiEvaluationCompletedProjectionModel as b,SupportAiEvaluationProjectionModel as y}from"./ai-outcome-evaluation-projection-schemas.js";import{validateAiEvaluationRefs as O}from"./ai-outcome-evaluation-schemas.js";import{SUPPORT_AI_OUTCOME_ACTIONS as g,SUPPORT_AI_OUTCOME_RISK_TIERS as v}from"./ai-outcome-learning.js";import{issue as R,ReportingStrictSchema as s,validIso as p}from"./reporting-schema-primitives.js";const t=()=>({type:o.ID(),isOptional:!1}),d=()=>({type:o.ID(),isOptional:!0}),D=()=>({type:o.Int_unsecure(),isOptional:!1}),c=()=>({type:o.NonEmptyString(),isOptional:!1}),E={drillRef:t(),action:{type:new i("SupportAiRollbackDrillAction",[...g]),isOptional:!1},policyRef:t(),riskTier:{type:new i("SupportAiRollbackDrillRisk",[...v]),isOptional:!1},startingArtifactRevisionRef:t(),startingArtifactDigest:t(),restoredArtifactRevisionRef:t(),restoredArtifactDigest:t(),succeeded:{type:o.Boolean(),isOptional:!1},executedAt:c(),recordedAt:c(),evidenceExpiresAt:c(),evidenceRef:t()};export const SupportAiRollbackDrillProjectionModel=new s({name:"SupportAiRollbackDrillProjectionV1",fields:E},(e,r)=>{O(e,r);if(!p(e.executedAt)||!p(e.recordedAt)||!p(e.evidenceExpiresAt)||Date.parse(String(e.executedAt))>Date.parse(String(e.recordedAt))||Date.parse(String(e.recordedAt))>=Date.parse(String(e.evidenceExpiresAt))||Date.parse(String(e.evidenceExpiresAt))-Date.parse(String(e.recordedAt))>2592000000)R(r,"recordedAt","drill timestamps must be authoritative")});const x={promotionRef:t(),evaluationRef:t(),action:{type:new i("SupportAiPromotionProjectionAction",[...g]),isOptional:!1},policyRef:t(),riskTier:{type:new i("SupportAiPromotionProjectionRisk",[...v]),isOptional:!1},state:{type:new i("SupportAiPromotionState",["active","superseded","rolled-back"]),isOptional:!1},mutation:{type:new i("SupportAiPromotionProjectionMutation",["promote","supersede","rollback"]),isOptional:!1},previousState:{type:new i("SupportAiPromotionPreviousState",["active"]),isOptional:!0},previousRevision:{type:o.Int_unsecure(),isOptional:!0},revision:D(),evidenceExpiresAt:c(),supersedesPromotionRef:d(),revisedPromotionRef:d(),revisedPromotionRevision:{type:o.Int_unsecure(),isOptional:!0},fromArtifactRevisionRef:d(),fromArtifactDigest:d(),targetArtifactRevisionRef:t(),targetArtifactDigest:t(),authorizationReceiptRef:t(),recordedAt:c()};export const SupportAiPromotionProjectionModel=new s({name:"SupportAiPromotionProjectionV1",fields:x},(e,r)=>{O(e,r);const a=e.mutation==="promote",n=e.mutation==="supersede",l=e.mutation==="rollback",A=n&&e.state==="superseded",f=e.previousState!==void 0,m=e.fromArtifactRevisionRef!==void 0,u=e.revisedPromotionRef!==void 0;if(a&&e.state!=="active"||n&&!["active","superseded"].includes(String(e.state))||l&&e.state!=="rolled-back"||a===f||f!==(e.previousRevision!==void 0)||a===m||m!==(e.fromArtifactDigest!==void 0)||n!==Boolean(e.supersedesPromotionRef)||n!==u||u!==(e.revisedPromotionRevision!==void 0)||n&&e.revisedPromotionRef!==e.supersedesPromotionRef||!Number.isSafeInteger(e.revision)||Number(e.revision)<1||f&&!Number.isSafeInteger(e.previousRevision)||n&&!A&&(Number(e.revision)!==1||e.promotionRef===e.revisedPromotionRef)||A&&(e.promotionRef!==e.revisedPromotionRef||Number(e.revision)!==Number(e.revisedPromotionRevision))||l&&Number(e.previousRevision)+1!==Number(e.revision)||u&&(!Number.isSafeInteger(e.revisedPromotionRevision)||Number(e.revisedPromotionRevision)!==Number(e.previousRevision)+1)||m&&e.fromArtifactDigest===e.targetArtifactDigest)R(r,"mutation","promotion transition chain is inconsistent");const S=Date.parse(String(e.recordedAt)),P=Date.parse(String(e.evidenceExpiresAt));if(!p(e.recordedAt)||!p(e.evidenceExpiresAt)||!(S<P)||P-S>2592000000)R(r,"evidenceExpiresAt","promotion evidence must be fresh")}),SupportAiEvaluationRequestOutputModel=new s({name:"SupportAiEvaluationRequestOutputV1",fields:{resourceRef:t(),receiptRef:t(),eventRef:t(),projection:{type:y,isOptional:!1}}},()=>{}),SupportAiEvaluationOutputModel=new s({name:"SupportAiEvaluationOutputV1",fields:{resourceRef:t(),receiptRef:t(),eventRef:t(),projection:{type:b,isOptional:!1}}},()=>{}),SupportAiPromotionOutputModel=new s({name:"SupportAiPromotionOutputV1",fields:{resourceRef:t(),receiptRef:t(),eventRef:t(),projection:{type:SupportAiPromotionProjectionModel,isOptional:!1}}},()=>{}),SupportAiRollbackDrillOutputModel=new s({name:"SupportAiRollbackDrillOutputV1",fields:{resourceRef:t(),receiptRef:t(),eventRef:t(),projection:{type:SupportAiRollbackDrillProjectionModel,isOptional:!1}}},()=>{});
@@ -0,0 +1 @@
1
+ import{EnumType as l,ScalarTypeEnum as f}from"@lssm/lib.schema";import{boundedAiEvaluationInteger as p,validateAiEvaluationRefs as S}from"./ai-outcome-evaluation-schemas.js";import{SUPPORT_AI_OUTCOME_ACTIONS as E,SUPPORT_AI_OUTCOME_RISK_TIERS as T}from"./ai-outcome-learning.js";import{issue as r,ReportingStrictSchema as g,validIso as b}from"./reporting-schema-primitives.js";const _=new l("SupportAiEvaluationProjectionAction",[...E]),y=new l("SupportAiEvaluationProjectionRisk",[...T]),N=new l("SupportAiEvaluationCompletedStatus",["passed","failed"]),n=(t=!1)=>({type:f.ID(),isOptional:t}),o=()=>({type:f.Int_unsecure(),isOptional:!1}),a=()=>({type:f.NonEmptyString(),isOptional:!1}),O=()=>({type:f.ID(),isOptional:!1,isArray:!0}),A={evaluationRef:n(),action:{type:_,isOptional:!1},policyRef:n(),riskTier:{type:y,isOptional:!1},cohortFrom:a(),cohortTo:a(),minimumObservationMs:o(),rollbackDrillReceiptRef:n(),minimumExamples:o(),minimumSafeRatioBps:o(),minimumGroundedRatioBps:o(),maximumCriticalFailures:o(),evidenceRefs:O(),revision:o(),evaluationJobRef:n(),evaluationEffectIdempotencyKey:n(),cohortSnapshotRef:n(),cohortDigest:n(),cohortCommitFenceRef:n(),outcomeFactWatermarkRef:n(),cohortRunCount:o(),cohortAdjudicationCount:o(),runRecordedThrough:a(),adjudicationRecordedThrough:a(),observationThrough:a(),evidenceExpiresAt:a(),requestedAt:a()};export const SupportAiEvaluationProjectionModel=new g({name:"SupportAiEvaluationRequestedProjectionV1",fields:{...A,status:{type:new l("SupportAiEvaluationPendingStatus",["pending"]),isOptional:!1}}},R);const j={...A,status:{type:N,isOptional:!1},exampleCount:o(),safeCount:o(),groundedCount:o(),criticalFailureCount:o(),correctionCount:o(),reopenCount:o(),slaBreachCount:o(),csatNegativeCount:o(),policyViolationCount:o(),inputTokens:o(),outputTokens:o(),costMicros:o(),evaluatedAt:a(),evaluationEvidenceRef:n()};export const SupportAiEvaluationCompletedProjectionModel=new g({name:"SupportAiEvaluationCompletedProjectionV1",fields:j},(t,e)=>{R(t,e);const d=900719925474;for(const i of["exampleCount","safeCount","groundedCount","criticalFailureCount","correctionCount","reopenCount","slaBreachCount","csatNegativeCount","policyViolationCount"])if(!p(t[i],0,d))r(e,i,`${i} must be an exact bounded integer`);for(const i of["inputTokens","outputTokens"])if(!p(t[i],0,1000000000000))r(e,i,`${i} must be bounded`);if(!p(t.costMicros,0,1000000000000000)||!b(t.evaluatedAt)||Date.parse(String(t.evaluatedAt))<Date.parse(String(t.requestedAt))||Date.parse(String(t.evaluatedAt))>=Date.parse(String(t.evidenceExpiresAt)))r(e,"evaluatedAt","completed evidence must be bounded and timestamped");const s=Number(t.exampleCount),c=s>=Number(t.minimumExamples)&&Number(t.safeCount)*1e4>=s*Number(t.minimumSafeRatioBps)&&Number(t.groundedCount)*1e4>=s*Number(t.minimumGroundedRatioBps)&&Number(t.criticalFailureCount)<=Number(t.maximumCriticalFailures);if(s!==Number(t.cohortAdjudicationCount)||Number(t.cohortAdjudicationCount)>Number(t.cohortRunCount)||["safeCount","groundedCount","criticalFailureCount","correctionCount","reopenCount","slaBreachCount","csatNegativeCount","policyViolationCount"].some((i)=>Number(t[i])>s))r(e,"exampleCount","adjudication counts cannot exceed examples");if(t.status==="passed"!==c)r(e,"status","status must exactly match frozen thresholds")});function R(t,e){S(t,e);for(const u of["runRecordedThrough","adjudicationRecordedThrough","observationThrough","evidenceExpiresAt","requestedAt"])if(!b(t[u]))r(e,u,`${u} must be ISO`);if(!p(t.revision,1,Number.MAX_SAFE_INTEGER))r(e,"revision","revision must be positive");const d=Date.parse(String(t.requestedAt)),s=Date.parse(String(t.evidenceExpiresAt)),c=Date.parse(String(t.observationThrough)),i=Date.parse(String(t.cohortFrom)),m=Date.parse(String(t.cohortTo)),C=Date.parse(String(t.runRecordedThrough)),h=Date.parse(String(t.adjudicationRecordedThrough));if(!(i<m)||m+Number(t.minimumObservationMs)>c||m>C||C>c||m>h||h>c||!(s>d)||s-d>2592000000||c>d)r(e,"evidenceExpiresAt","DB time bounds are inconsistent");for(const u of["cohortRunCount","cohortAdjudicationCount"])if(!p(t[u],0,900719925474))r(e,u,`${u} must be an exact bounded integer`)}
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as p}from"@lssm/lib.schema";import{SupportAiPromotionProjectionModel as u}from"./ai-outcome-evaluation-output-schemas.js";import{SupportAiEvaluationCompletedProjectionModel as a,SupportAiEvaluationProjectionModel as l}from"./ai-outcome-evaluation-projection-schemas.js";import{boundedAiEvaluationInteger as m,SupportAiEvaluationActionType as d,SupportAiEvaluationRiskType as c,validateAiEvaluationRefs as r}from"./ai-outcome-evaluation-schemas.js";import{issue as n,ReportingStrictSchema as e}from"./reporting-schema-primitives.js";const o=(t=!1)=>({type:p.ID(),isOptional:t}),f={evaluationRef:o()};export const SupportAiEvaluationGetInputModel=new e({name:"SupportAiEvaluationGetInputV1",fields:f},r);const y={pending:{type:l,isOptional:!0},completed:{type:a,isOptional:!0}};export const SupportAiEvaluationGetOutputModel=new e({name:"SupportAiEvaluationGetOutputV1",fields:y},(t,i)=>{if(t.pending===void 0===(t.completed===void 0))n(i,"pending","exactly one evaluation projection is required")});const s={action:{type:d,isOptional:!1},policyRef:o(),riskTier:{type:c,isOptional:!1}};export const SupportAiCurrentPromotionInputModel=new e({name:"SupportAiCurrentPromotionInputV1",fields:s},r);const A={watermarkRef:o(),promotion:{type:u,isOptional:!0}};export const SupportAiCurrentPromotionOutputModel=new e({name:"SupportAiCurrentPromotionOutputV1",fields:A},r);const S={...s,watermarkRef:o(!0),cursor:o(!0),limit:{type:p.Int_unsecure(),isOptional:!1}};export const SupportAiPromotionHistoryInputModel=new e({name:"SupportAiPromotionHistoryInputV1",fields:S},(t,i)=>{r(t,i);if(!m(t.limit,1,100))n(i,"limit","history limit must be 1..100");if(t.cursor===void 0!==(t.watermarkRef===void 0))n(i,"cursor","cursor must be bound to its frozen watermark")});const O={items:{type:u,isOptional:!1,isArray:!0},watermarkRef:o(),nextCursor:o(!0)};export const SupportAiPromotionHistoryOutputModel=new e({name:"SupportAiPromotionHistoryOutputV1",fields:O},r);