@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,187 @@
1
+ import{compareVersions as p}from"compare-versions";const o=(e,s)=>`${e}.v${s}`;export class CapabilityRegistry{items=new Map;surfaceIndex=null;register(e){const s=o(e.meta.key,e.meta.version);if(this.items.has(s))throw Error(`Duplicate capability ${s}`);this.items.set(s,e);this.surfaceIndex=null;return this}list(){return[...this.items.values()]}get(e,s){if(s!=null)return this.items.get(o(e,s));let i;for(const t of this.items.values()){if(t.meta.key!==e)continue;if(!i||p(t.meta.version,i.meta.version)>0)i=t}return i}satisfies(e,s){if(e.optional)return!0;if(s?.some((t)=>c(t,e)))return!0;const i=e.version?this.get(e.key,e.version):this.get(e.key);if(!i)return!1;if(e.kind&&i.meta.kind!==e.kind)return!1;if(e.version!=null&&i.meta.version!==e.version)return!1;return!0}buildSurfaceIndex(){if(this.surfaceIndex)return this.surfaceIndex;this.surfaceIndex=new Map;for(const e of this.items.values()){const s=o(e.meta.key,e.meta.version);for(const i of e.provides??[]){const t=`${i.surface}:${i.key}`;if(!this.surfaceIndex.has(t))this.surfaceIndex.set(t,new Set);this.surfaceIndex.get(t)?.add(s)}}return this.surfaceIndex}getOperationsFor(e,s){const i=this.get(e,s);if(!i)return[];return i.provides?.filter((t)=>t.surface==="operation").map((t)=>t.key)??[]}getEventsFor(e,s){const i=this.get(e,s);if(!i)return[];return i.provides?.filter((t)=>t.surface==="event").map((t)=>t.key)??[]}getPresentationsFor(e,s){const i=this.get(e,s);if(!i)return[];return i.provides?.filter((t)=>t.surface==="presentation").map((t)=>t.key)??[]}getVisualScenariosFor(e,s){const i=this.get(e,s);if(!i)return[];return i.provides?.filter((t)=>t.surface==="visual-scenario").map((t)=>t.key)??[]}getWorkflowsFor(e,s){const i=this.get(e,s);if(!i)return[];return i.provides?.filter((t)=>t.surface==="workflow").map((t)=>t.key)??[]}getResourcesFor(e,s){const i=this.get(e,s);if(!i)return[];return i.provides?.filter((t)=>t.surface==="resource").map((t)=>t.key)??[]}indexBySurface(e){const s=this.buildSurfaceIndex(),i=new Map,t=`${e}:`;for(const[a,r]of s)if(a.startsWith(t))i.set(a,r);return i}getCapabilitiesForOperation(e){const i=this.buildSurfaceIndex().get(`operation:${e}`);if(!i)return[];return[...i].map((t)=>{const a=this.items.get(t);return{key:a?.meta.key??"",version:a?.meta.version??""}})}getCapabilitiesForEvent(e){const i=this.buildSurfaceIndex().get(`event:${e}`);if(!i)return[];return[...i].map((t)=>{const a=this.items.get(t);return{key:a?.meta.key??"",version:a?.meta.version??""}})}getCapabilitiesForPresentation(e){const i=this.buildSurfaceIndex().get(`presentation:${e}`);if(!i)return[];return[...i].map((t)=>{const a=this.items.get(t);return{key:a?.meta.key??"",version:a?.meta.version??""}})}getCapabilitiesForVisualScenario(e){const i=this.buildSurfaceIndex().get(`visual-scenario:${e}`);if(!i)return[];return[...i].map((t)=>{const a=this.items.get(t);return{key:a?.meta.key??"",version:a?.meta.version??""}})}getAncestors(e,s){const i=[],t=new Set;let a=this.get(e,s);while(a?.extends){const r=o(a.extends.key,a.extends.version);if(t.has(r))break;t.add(r);const n=this.get(a.extends.key,a.extends.version);if(!n)break;i.push(n);a=n}return i}getEffectiveRequirements(e,s){const i=this.get(e,s);if(!i)return[];const t=this.getAncestors(e,s),a=new Map;for(const r of[...t].reverse())for(const n of r.requires??[])a.set(n.key,n);for(const r of i.requires??[])a.set(r.key,r);return[...a.values()]}getEffectiveSurfaces(e,s){const i=this.get(e,s);if(!i)return[];const t=this.getAncestors(e,s),a=[];for(const r of[...t].reverse())a.push(...r.provides??[]);a.push(...i.provides??[]);return a}}function c(e,s){if(e.key!==s.key)return!1;if(s.version!=null&&e.version!==s.version)return!1;return!0}export function capabilityKey(e){return o(e.meta.key,e.meta.version)}export function defineCapability(e){return e}export const tech_contracts_capabilities_DocBlocks=[{id:"docs.tech.contracts.capabilities",title:"CapabilitySpec Overview",summary:"Capability specs define what a module provides (operations, events, presentations) and requires (dependencies). They enable bidirectional linking, inheritance, runtime enforcement, and automated validation.",kind:"reference",visibility:"public",route:"/docs/tech/contracts/capabilities",tags:["tech","contracts","capabilities"],body:`# CapabilitySpec Overview
2
+
3
+ ## Purpose
4
+
5
+ Capabilities are **module interfaces** that define:
6
+ 1. What operations, events, and presentations a module exposes (\`provides\`)
7
+ 2. What other capabilities it depends on (\`requires\`)
8
+ 3. Inheritance hierarchies via \`extends\`
9
+
10
+ They enable:
11
+ - **Bidirectional linking**: Specs reference capabilities, capabilities list their specs
12
+ - **Dependency validation**: Features can't install without satisfying requirements
13
+ - **Runtime enforcement**: Check capabilities before executing operations
14
+ - **Inheritance**: Build capability hierarchies with shared requirements
15
+
16
+ ## Schema
17
+
18
+ \`\`\`ts
19
+ export interface CapabilitySpec {
20
+ meta: CapabilityMeta; // ownership metadata + { key, version, kind }
21
+ extends?: CapabilityRef; // NEW: inherit from parent capability
22
+ provides?: CapabilitySurfaceRef[]; // surfaces this capability exposes
23
+ requires?: CapabilityRequirement[];// capabilities that must exist
24
+ }
25
+ \`\`\`
26
+
27
+ ### Bidirectional Linking
28
+
29
+ Operations, events, and presentations can now declare their capability:
30
+
31
+ \`\`\`ts
32
+ // In OperationSpec
33
+ {
34
+ meta: { key: 'payments.charge.create', ... },
35
+ capability: { key: 'payments', version: '1.0.0' }, // Links to capability
36
+ io: { ... }
37
+ }
38
+
39
+ // In CapabilitySpec
40
+ {
41
+ meta: { key: 'payments', version: '1.0.0', ... },
42
+ provides: [
43
+ { surface: 'operation', key: 'payments.charge.create' }
44
+ ]
45
+ }
46
+ \`\`\`
47
+
48
+ Validation ensures both sides match via \`validateCapabilityConsistency()\`.
49
+
50
+ ## Registry Query Methods
51
+
52
+ The \`CapabilityRegistry\` now provides rich query capabilities:
53
+
54
+ \`\`\`ts
55
+ // Forward lookups: Capability → Specs
56
+ registry.getOperationsFor('payments'); // ['payments.charge.create', ...]
57
+ registry.getEventsFor('payments'); // ['payments.charge.succeeded', ...]
58
+ registry.getPresentationsFor('payments'); // ['payments.dashboard', ...]
59
+
60
+ // Reverse lookups: Spec → Capabilities
61
+ registry.getCapabilitiesForOperation('payments.charge.create');
62
+ registry.getCapabilitiesForEvent('payments.charge.succeeded');
63
+ registry.getCapabilitiesForPresentation('payments.dashboard');
64
+
65
+ // Inheritance
66
+ registry.getAncestors('payments.stripe'); // Parent chain
67
+ registry.getEffectiveRequirements('payments.stripe'); // Includes inherited
68
+ registry.getEffectiveSurfaces('payments.stripe'); // Includes inherited
69
+ \`\`\`
70
+
71
+ ## Inheritance
72
+
73
+ Capabilities can extend other capabilities:
74
+
75
+ \`\`\`ts
76
+ // Base capability
77
+ defineCapability({
78
+ meta: { key: 'payments.base', version: '1.0.0', ... },
79
+ requires: [{ key: 'auth', version: '1.0.0' }],
80
+ provides: [{ surface: 'operation', key: 'payments.list' }]
81
+ });
82
+
83
+ // Child capability inherits requirements
84
+ defineCapability({
85
+ meta: { key: 'payments.stripe', version: '1.0.0', ... },
86
+ extends: { key: 'payments.base', version: '1.0.0' },
87
+ requires: [{ key: 'encryption', version: '1.0.0' }], // Added
88
+ provides: [{ surface: 'operation', key: 'payments.stripe.charge' }]
89
+ });
90
+
91
+ // getEffectiveRequirements('payments.stripe') returns:
92
+ // [{ key: 'auth', ... }, { key: 'encryption', ... }]
93
+ \`\`\`
94
+
95
+ ## Runtime Enforcement
96
+
97
+ Use \`CapabilityContext\` for opt-in runtime checks:
98
+
99
+ \`\`\`ts
100
+
101
+ // Create context from user's enabled capabilities
102
+ const ctx = createCapabilityContext(user.capabilities);
103
+
104
+ // Check capability
105
+ if (ctx.hasCapability('payments')) {
106
+ // User can access payments features
107
+ }
108
+
109
+ // Assert capability (throws if missing)
110
+ ctx.requireCapability('payments');
111
+
112
+ // Guard an operation
113
+ assertCapabilityForOperation(ctx, paymentOperation);
114
+
115
+ // Filter operations by enabled capabilities
116
+ const allowedOps = filterOperationsByCapability(ctx, allOperations);
117
+ \`\`\`
118
+
119
+ ## Validation
120
+
121
+ Validate bidirectional consistency between capabilities and specs:
122
+
123
+ \`\`\`ts
124
+
125
+ const result = validateCapabilityConsistency({
126
+ capabilities: capabilityRegistry,
127
+ operations: operationRegistry,
128
+ events: eventRegistry,
129
+ presentations: presentationRegistry,
130
+ });
131
+
132
+ if (!result.valid) {
133
+ console.error('Validation errors:', result.errors);
134
+ }
135
+
136
+ // Find specs without capability assignment (informational)
137
+ const orphans = findOrphanSpecs({ capabilities, operations });
138
+ \`\`\`
139
+
140
+ ## Feature Integration
141
+
142
+ During \`installFeature()\`:
143
+ 1. \`provides\` capabilities must exist in the registry
144
+ 2. \`requires\` must be satisfied by registered capabilities or local \`provides\`
145
+ 3. Referenced operations/events/presentations must exist
146
+
147
+ ## Authoring Guidelines
148
+
149
+ 1. **Register capabilities first** before referencing them in features
150
+ 2. **Use bidirectional linking** - set \`capability\` on specs and list them in \`provides\`
151
+ 3. **Version consciously** - bump versions on breaking changes
152
+ 4. **Document dependencies** with \`reason\` strings
153
+ 5. **Use inheritance** for capability families with shared requirements
154
+ 6. **Validate during CI** with \`validateCapabilityConsistency()\`
155
+
156
+ ## Error Handling
157
+
158
+ \`\`\`ts
159
+
160
+ try {
161
+ ctx.requireCapability('premium-features');
162
+ } catch (err) {
163
+ if (err instanceof CapabilityMissingError) {
164
+ console.log('Missing:', err.capabilityKey);
165
+ console.log('Required version:', err.requiredVersion);
166
+ }
167
+ }
168
+ \`\`\`
169
+
170
+ ## API Reference
171
+
172
+ ### Types
173
+ - \`CapabilitySpec\` - Capability definition
174
+ - \`CapabilityRef\` - Reference to a capability (key + version)
175
+ - \`CapabilitySurfaceRef\` - Reference to a provided surface
176
+ - \`CapabilityRequirement\` - Dependency requirement
177
+ - \`CapabilityContext\` - Runtime capability context
178
+ - \`CapabilityValidationResult\` - Validation result
179
+
180
+ ### Functions
181
+ - \`defineCapability(spec)\` - Define a capability spec
182
+ - \`createCapabilityContext(caps)\` - Create runtime context
183
+ - \`validateCapabilityConsistency(deps)\` - Validate bidirectional links
184
+ - \`findOrphanSpecs(deps)\` - Find specs without capability assignment
185
+ - \`assertCapabilityForOperation/Event/Presentation(ctx, spec)\` - Guards
186
+ - \`filterOperationsByCapability(ctx, ops)\` - Filter by enabled capabilities
187
+ `}];
File without changes
@@ -0,0 +1 @@
1
+ export class CapabilityMissingError extends Error{capabilityKey;requiredVersion;constructor(i,t){const e=t?`.v${t}`:"";super(`Missing required capability: ${i}${e}`);this.name="CapabilityMissingError";this.capabilityKey=i;this.requiredVersion=t}}class s{capabilities;capabilityVersions;constructor(i){const t=new Set,e=new Map;for(const a of i){t.add(a.key);e.set(a.key,a.version)}this.capabilities=t;this.capabilityVersions=e}hasCapability(i,t){if(!this.capabilities.has(i))return!1;if(t!=null)return this.capabilityVersions.get(i)===t;return!0}requireCapability(i,t){if(!this.hasCapability(i,t))throw new CapabilityMissingError(i,t)}hasAllCapabilities(i){return i.every((t)=>this.capabilities.has(t))}hasAnyCapability(i){return i.some((t)=>this.capabilities.has(t))}getMatchingCapabilities(i){if(!i.includes("*"))return this.capabilities.has(i)?[i]:[];const t=i.replace(/[.+^${}()|[\]\\]/g,"\\$&").replace(/\*/g,".*"),e=new RegExp(`^${t}$`);return[...this.capabilities].filter((a)=>e.test(a))}}export function createCapabilityContext(i){return new s(i)}export function createEmptyCapabilityContext(){return new s([])}export function createBypassCapabilityContext(i){return new s(i)}
File without changes
@@ -0,0 +1 @@
1
+ import{CapabilityMissingError as n}from"./context.js";export function checkCapabilityForOperation(e,t){if(!t.capability)return{allowed:!0};const{key:i,version:a}=t.capability;if(e.hasCapability(i,a))return{allowed:!0};return{allowed:!1,missingCapability:{key:i,version:a},reason:`Operation "${t.meta.key}" requires capability "${i}.v${a}"`}}export function assertCapabilityForOperation(e,t){const i=checkCapabilityForOperation(e,t);if(!i.allowed&&i.missingCapability)throw new n(i.missingCapability.key,i.missingCapability.version)}export function checkCapabilityForEvent(e,t){if(!t.capability)return{allowed:!0};const{key:i,version:a}=t.capability;if(e.hasCapability(i,a))return{allowed:!0};return{allowed:!1,missingCapability:{key:i,version:a},reason:`Event "${t.meta.key}" requires capability "${i}.v${a}"`}}export function assertCapabilityForEvent(e,t){const i=checkCapabilityForEvent(e,t);if(!i.allowed&&i.missingCapability)throw new n(i.missingCapability.key,i.missingCapability.version)}export function checkCapabilityForPresentation(e,t){if(!t.capability)return{allowed:!0};const{key:i,version:a}=t.capability;if(e.hasCapability(i,a))return{allowed:!0};return{allowed:!1,missingCapability:{key:i,version:a},reason:`Presentation "${t.meta.key}" requires capability "${i}.v${a}"`}}export function assertCapabilityForPresentation(e,t){const i=checkCapabilityForPresentation(e,t);if(!i.allowed&&i.missingCapability)throw new n(i.missingCapability.key,i.missingCapability.version)}export function filterOperationsByCapability(e,t){return t.filter((i)=>checkCapabilityForOperation(e,i).allowed)}export function filterEventsByCapability(e,t){return t.filter((i)=>checkCapabilityForEvent(e,i).allowed)}export function filterPresentationsByCapability(e,t){return t.filter((i)=>checkCapabilityForPresentation(e,i).allowed)}
@@ -0,0 +1 @@
1
+ export*from"./agent-workflow.js";export*from"./capabilities.js";export*from"./context.js";export*from"./guards.js";export*from"./meeting-recorder.js";export*from"./openbanking.js";export*from"./validation.js";
@@ -0,0 +1 @@
1
+ export*from"./agent-workflow.js";export*from"./capabilities.js";export*from"./context.js";export*from"./guards.js";export*from"./meeting-recorder.js";export*from"./openbanking.js";export*from"./validation.js";
File without changes
@@ -0,0 +1 @@
1
+ import{StabilityEnum as e}from"../ownership.js";const r=["platform.integrations"],i=["meeting-recorder","transcripts","integrations"];export const meetingRecorderMeetingsReadCapability={meta:{key:"meeting-recorder.meetings.read",version:"1.0.0",kind:"integration",title:"Meeting Recorder Meetings (Read)",description:"Provides read-only access to recorded meetings and their metadata.",domain:"integrations",owners:[...r],tags:[...i,"meetings"],stability:e.Experimental},provides:[{surface:"operation",key:"meeting-recorder.meetings.list",version:"1.0.0",description:"List meetings available from the recorder provider."},{surface:"operation",key:"meeting-recorder.meetings.get",version:"1.0.0",description:"Fetch detailed metadata for a specific meeting."}]},meetingRecorderTranscriptsReadCapability={meta:{key:"meeting-recorder.transcripts.read",version:"1.0.0",kind:"integration",title:"Meeting Recorder Transcripts (Read)",description:"Enables retrieval of transcripts for recorded meetings from external providers.",domain:"integrations",owners:[...r],tags:[...i,"transcripts"],stability:e.Experimental},provides:[{surface:"operation",key:"meeting-recorder.transcripts.get",version:"1.0.0",description:"Fetch the transcript for a specific meeting recording."},{surface:"operation",key:"meeting-recorder.transcripts.sync",version:"1.0.0",description:"Trigger a transcript sync from the recorder provider."}]},meetingRecorderWebhooksCapability={meta:{key:"meeting-recorder.webhooks",version:"1.0.0",kind:"integration",title:"Meeting Recorder Webhooks",description:"Allows processing of webhook events for meeting transcript readiness.",domain:"integrations",owners:[...r],tags:[...i,"webhooks"],stability:e.Experimental},provides:[{surface:"operation",key:"meeting-recorder.webhooks.ingest",version:"1.0.0",description:"Ingest and verify meeting recorder webhook payloads."}]};export function registerMeetingRecorderCapabilities(t){return t.register(meetingRecorderMeetingsReadCapability).register(meetingRecorderTranscriptsReadCapability).register(meetingRecorderWebhooksCapability)}
File without changes
@@ -0,0 +1 @@
1
+ import{StabilityEnum as n}from"../ownership.js";const e=["platform.finance"],a=["open-banking","finance"];export const openBankingAccountsReadCapability={meta:{key:"openbanking.accounts.read",version:"1.0.0",kind:"integration",title:"Open Banking Accounts (Read)",description:"Provides read-only access to linked bank accounts, including account summaries and metadata.",domain:"finance",owners:[...e],tags:[...a],stability:n.Experimental},provides:[{surface:"operation",key:"openbanking.accounts.list",version:"1.0.0",description:"List bank accounts linked to a Powens open banking connection."},{surface:"operation",key:"openbanking.accounts.get",version:"1.0.0",description:"Retrieve the canonical bank account record for a specific account."},{surface:"operation",key:"openbanking.accounts.sync",version:"1.0.0",description:"Trigger a refresh of bank account metadata from the open banking provider."}]},openBankingTransactionsReadCapability={meta:{key:"openbanking.transactions.read",version:"1.0.0",kind:"integration",title:"Open Banking Transactions (Read)",description:"Enables retrieval of transaction history for linked bank accounts via open banking providers.",domain:"finance",owners:[...e],tags:[...a,"transactions"],stability:n.Experimental},provides:[{surface:"operation",key:"openbanking.transactions.list",version:"1.0.0",description:"List transactions for a given bank account with optional date filtering."},{surface:"operation",key:"openbanking.transactions.sync",version:"1.0.0",description:"Synchronise transactions from the open banking provider into the canonical ledger."}]},openBankingBalancesReadCapability={meta:{key:"openbanking.balances.read",version:"1.0.0",kind:"integration",title:"Open Banking Balances (Read)",description:"Allows querying of current and available balances for linked bank accounts via open banking providers.",domain:"finance",owners:[...e],tags:[...a,"balances"],stability:n.Experimental},provides:[{surface:"operation",key:"openbanking.balances.get",version:"1.0.0",description:"Retrieve the latest known balances for a specified bank account."},{surface:"operation",key:"openbanking.balances.refresh",version:"1.0.0",description:"Force a balance refresh from the open banking provider."}]};export function registerOpenBankingCapabilities(i){return i.register(openBankingAccountsReadCapability).register(openBankingTransactionsReadCapability).register(openBankingBalancesReadCapability)}
File without changes
@@ -0,0 +1 @@
1
+ export function validateCapabilityConsistency(e){const a=[],t=[];for(const i of e.capabilities.list()){const s=`${i.meta.key}.v${i.meta.version}`;for(const n of i.provides??[])if(!o(e,n.surface,n.key))a.push({type:"missing_surface_spec",message:`Capability "${s}" provides ${n.surface} "${n.key}" but spec not found`,capabilityKey:s,surface:n.surface,specKey:n.key})}if(e.operations){for(const i of e.operations.list())if(i.capability){const s=e.capabilities.get(i.capability.key,i.capability.version);if(!s)a.push({type:"capability_not_found",message:`Operation "${i.meta.key}" references capability "${i.capability.key}.v${i.capability.version}" but capability not found`,specKey:i.meta.key,capabilityKey:`${i.capability.key}.v${i.capability.version}`,surface:"operation"});else if(!s.provides?.some((r)=>r.surface==="operation"&&r.key===i.meta.key))a.push({type:"surface_not_in_provides",message:`Operation "${i.meta.key}" claims capability "${i.capability.key}.v${i.capability.version}" but not in capability's provides`,specKey:i.meta.key,capabilityKey:`${i.capability.key}.v${i.capability.version}`,surface:"operation"})}}if(e.events){for(const i of e.events.list())if(i.capability){const s=e.capabilities.get(i.capability.key,i.capability.version);if(!s)a.push({type:"capability_not_found",message:`Event "${i.meta.key}" references capability "${i.capability.key}.v${i.capability.version}" but capability not found`,specKey:i.meta.key,capabilityKey:`${i.capability.key}.v${i.capability.version}`,surface:"event"});else if(!s.provides?.some((r)=>r.surface==="event"&&r.key===i.meta.key))a.push({type:"surface_not_in_provides",message:`Event "${i.meta.key}" claims capability "${i.capability.key}.v${i.capability.version}" but not in capability's provides`,specKey:i.meta.key,capabilityKey:`${i.capability.key}.v${i.capability.version}`,surface:"event"})}}if(e.presentations){for(const i of e.presentations.list())if(i.capability){const s=e.capabilities.get(i.capability.key,i.capability.version);if(!s)a.push({type:"capability_not_found",message:`Presentation "${i.meta.key}" references capability "${i.capability.key}.v${i.capability.version}" but capability not found`,specKey:i.meta.key,capabilityKey:`${i.capability.key}.v${i.capability.version}`,surface:"presentation"});else if(!s.provides?.some((r)=>r.surface==="presentation"&&r.key===i.meta.key))a.push({type:"surface_not_in_provides",message:`Presentation "${i.meta.key}" claims capability "${i.capability.key}.v${i.capability.version}" but not in capability's provides`,specKey:i.meta.key,capabilityKey:`${i.capability.key}.v${i.capability.version}`,surface:"presentation"})}}return{valid:a.length===0,errors:a,warnings:t}}function o(e,a,t){switch(a){case"operation":return e.operations?.has(t)??!0;case"event":return e.events?.has(t)??!0;case"presentation":return e.presentations?.has(t)??!0;case"workflow":case"resource":return!0;default:return!0}}export function findOrphanSpecs(e){const a={operations:[],events:[],presentations:[]};if(e.operations){for(const t of e.operations.list())if(!t.capability)a.operations.push(t.meta.key)}if(e.events){for(const t of e.events.list())if(!t.capability)a.events.push(t.meta.key)}if(e.presentations){for(const t of e.presentations.list())if(!t.capability)a.presentations.push(t.meta.key)}return a}
@@ -0,0 +1,16 @@
1
+ import*as a from"zod";export const CLI_COMMAND_PACK_SCHEMA_VERSION=1,CliCommandNameSchema=a.string().trim().min(1).regex(/^[a-z0-9][a-z0-9:-]*$/),CliCommandPackSpecSchema=a.object({schemaVersion:a.literal(CLI_COMMAND_PACK_SCHEMA_VERSION),id:a.string().trim().min(1),version:a.string().trim().min(1),commands:a.array(CliCommandNameSchema).min(1),extends:a.array(CliCommandNameSchema).optional()}),CliCommandPackMetadataSchema=a.object({entry:a.string().trim().min(1),spec:CliCommandPackSpecSchema}),CliCommandPackDiscoveryConfigSchema=a.object({include:a.array(a.string().trim().min(1)).optional(),exclude:a.array(a.string().trim().min(1)).optional()}),CliCommandPackDocBlock={id:"docs.tech.contracts.cli-command-packs",title:"CLI command packs",summary:"Portable metadata and consumer discovery controls for ContractSpec CLI command packs.",kind:"reference",visibility:"public",route:"/docs/tech/contracts/cli-command-packs",tags:["cli","command-pack","configuration"],body:`## CLI command packs
2
+
3
+ Published command packs expose \`contractspec.commandPack\` metadata containing a module entry and a \`CliCommandPackSpec\`. The CLI discovers only direct consumer dependencies with that metadata.
4
+
5
+ Consumers can constrain discovery with \`.contractsrc.json\`:
6
+
7
+ \`\`\`json
8
+ {
9
+ "commandPacks": {
10
+ "include": ["@lssm/integration.cli-contractspec-ai"],
11
+ "exclude": ["@lssm/integration.cli-contractspec-examples"]
12
+ }
13
+ }
14
+ \`\`\`
15
+
16
+ Exclusion wins when a package appears in both lists. Runtime registration and conflict handling are owned by \`@lssm/lib.cli-runtime\`.`};
@@ -0,0 +1 @@
1
+ export*from"./command-pack.js";
@@ -0,0 +1 @@
1
+ export const COMPANYOS_PRODUCTION_AUTH_TOPOLOGY={webOrigin:"https://www.companyos.run",apiOrigin:"https://api.companyos.run",cookieDomain:".companyos.run",defaultPostLoginPath:"/companyos"};export function resolveCompanyOsPostLoginUrl(n){if(!n.startsWith("/")||n.startsWith("//")||/[\\\u0000-\u001f\u007f]/.test(n))throw Error("companyos_post_login_path_invalid");const i=new URL(n,COMPANYOS_PRODUCTION_AUTH_TOPOLOGY.webOrigin);if(i.origin!==COMPANYOS_PRODUCTION_AUTH_TOPOLOGY.webOrigin)throw Error("companyos_post_login_path_invalid");return i.toString()}export function defineCompanyOsPreviewAuthTopology(n){const i=(e)=>{const o=new URL(e);if(o.protocol!=="https:"||o.username||o.password||o.pathname!=="/"||o.search||o.hash||e!==o.origin||o.hostname==="companyos.run"||o.hostname.endsWith(".companyos.run")||o.hostname==="lssm.co"||o.hostname.endsWith(".lssm.co")||o.hostname==="lssm.tech"||o.hostname.endsWith(".lssm.tech"))throw Error("companyos_preview_origin_invalid");return o.origin},r=i(n.webOrigin);return Object.freeze({schemaVersion:"1",profile:"preview-v1",webOrigin:r,upstreamApiOrigin:i(n.upstreamApiOrigin),authOrigin:r,cookiePrefix:"companyos-preview",crossSubDomainCookies:!1})}
@@ -0,0 +1 @@
1
+ export const COMPANYOS_REQUIRED_BOOKING_SURFACES=Object.freeze([Object.freeze({kind:"organization",organizationSlug:"lssm",handle:"lssm",displayName:"LSSM",email:"tboutron@lssm.co"}),Object.freeze({kind:"organization",organizationSlug:"companyos",handle:"companyos",displayName:"CompanyOS",email:"tboutron@lssm.co"}),Object.freeze({kind:"organization",organizationSlug:"hirly",handle:"hirly",displayName:"Hirly",email:"theo@tryhirly.com"}),Object.freeze({kind:"individual",organizationSlug:"lssm",handle:"theo",displayName:"Théo Boutron",email:"tboutron@lssm.co"}),Object.freeze({kind:"individual",organizationSlug:"hirly",handle:"antoine",displayName:"Antoine",email:"antoine@tryhirly.com"}),Object.freeze({kind:"individual",organizationSlug:"hirly",handle:"younes",displayName:"Younes",email:"younes@tryhirly.com"})]),COMPANYOS_BOOKING_SURFACE_POLICY=Object.freeze({personalSurfaceCount:3,organizationSurfaceCount:3,destination:"owned_live",sharedWorkspaceCalendarForMembers:!0,canonicalEmbedOrigins:Object.freeze(["https://www.companyos.run"]),publicProfilePath:"/u/:handle",publicBookingPath:"/book/:token",activationPath:"/api/companyos/operator/booking-surfaces/activate",activationAuthentication:"dedicated_bearer",activationReplay:"idempotent"});
@@ -0,0 +1 @@
1
+ export const COMPANYOS_CALENDAR_INTELLIGENCE_VERSION="2.5.0",COMPANYOS_CALENDAR_INTELLIGENCE_GOOGLE_SCOPES=Object.freeze(["https://www.googleapis.com/auth/calendar.events.freebusy","https://www.googleapis.com/auth/calendar.events.owned","https://www.googleapis.com/auth/calendar.calendarlist.readonly","https://www.googleapis.com/auth/calendar.events.readonly"]),COMPANYOS_CALENDAR_INTELLIGENCE_COMPATIBILITY=Object.freeze({intent:"additive-minor",priorWorkspacePreferences:"unsupported",workspaceBookingCalendars:"permanently-excluded",unconfiguredRecipients:"setup-required-no-delivery",oauthConsent:"personal-reauthorization-required",omnichannelPreferences:"email-default-with-durable-in-app-fallback",providerAcceptance:"not-delivery-confirmation",queueAdmission:"not-provider-acceptance"}),COMPANYOS_CALENDAR_INTELLIGENCE_POLICY=Object.freeze({defaultTimezone:"Europe/Paris",defaultLocale:"en",morningRecapLocalTime:"07:00",morningRecapCatchUpMinutes:180,meetingPreparationLeadMinutes:60,eventReadWindowHours:36,maximumEventsPerPerson:40,maximumGraphFactsPerWorkspace:8,durableContentRetention:"P90D-policy-overridable",durableEvidence:"digest-delivery-model-evidence-refs-only",declinedEvents:"excluded",allDayEvents:"recap-only",operatorReplayPath:"/api/companyos/operator/calendar-intelligence/run"}),companyOsCalendarIntelligenceComposition=Object.freeze({source:{provider:"google-calendar",ownership:"recipient-personal-context-only",workspaceBookingFallback:"forbidden",graphScope:"explicit-calendar-to-authorized-workspace-mapping",scopes:COMPANYOS_CALENDAR_INTELLIGENCE_GOOGLE_SCOPES},delivery:{recipients:"exactly-one-authenticated-companyos-user",eventAttendees:"context-only-never-envelope-recipients",morning:"one-cross-workspace-routed-delivery-per-person-local-date",preparation:"one-routed-delivery-per-person-provider-event-occurrence",preview:"current-user-personal-pipeline-non-production",routing:"communication-os-prepared-and-persisted-before-effect",dispatch:"communication-os-durable-outbox-with-provider-idempotency",queueAdmission:"recorded-separately-from-provider-acceptance",fallback:"durable-in-app-terminal",providerAcceptance:"recorded-separately-from-delivery-confirmation"},composition:{deterministic:["recipient","subject","preheader","time","attendees","location","join-link"],ai:"schema-validated-evidence-bound-untrusted-input",fallback:"field-by-field-deterministic"},persistence:{eventContent:"canonical-communication-message-only",emailBodies:"communication-os-policy-retention",evidence:"digest-delivery-model-evidence-refs-only"}});
@@ -0,0 +1 @@
1
+ import{fromZod as r}from"@lssm/lib.schema";import{z as e}from"zod";import{defineQuery as a}from"../operations/index.js";import{COMPANYOS_CAPABILITY as n,COMPANYOS_DOMAIN as o,COMPANYOS_OWNERS as t,COMPANYOS_STABILITY as i,COMPANYOS_TAGS as s}from"./constants.js";export const PersonalMicrosoftCalendarSchema=e.object({displayName:e.string().max(1024),primary:e.boolean(),canReadBusy:e.boolean(),canOwnWrites:e.boolean(),supportsTeams:e.boolean(),busyCalendarRef:e.string().regex(/^busy-calendar:[a-f0-9]{64}$/),writeCalendarRef:e.string().regex(/^write-calendar:[a-f0-9]{64}$/).optional()}).strict(),PersonalMicrosoftCalendarsResultSchema=e.object({calendars:e.array(PersonalMicrosoftCalendarSchema).max(1000)}).strict(),PersonalMicrosoftCalendarsQuery=a({meta:{key:"calendar-intelligence.personal-microsoft-calendars.list",version:"1.0.0",title:"List personal Microsoft calendars",description:"Discover calendars for the authenticated personal Microsoft connection.",goal:"Offer explicit busy-calendar and write-target selection without exposing credentials.",context:"Verified provider identity and current personal authority are required; enumeration does not select calendars or enable planning.",domain:o,owners:[...t],tags:[...s,"calendar","microsoft"],stability:i},capability:{...n},io:{input:r(e.object({}).strict(),{name:"PersonalMicrosoftCalendarsInput"}),output:r(PersonalMicrosoftCalendarsResultSchema,{name:"PersonalMicrosoftCalendarsOutput"}),errors:{MICROSOFT_CALENDAR_UNAVAILABLE:{description:"Microsoft calendars are unavailable.",http:503,when:"Credentials, provider discovery or identity proof is unavailable."},PERSONAL_CONTEXT_REQUIRED:{description:"An enabled personal context is required.",http:409,when:"Personal owner cannot be resolved."},FORBIDDEN:{description:"Current authority no longer permits access.",http:403,when:"Session or owner reproof fails."}}},acceptance:{scenarios:[{key:"private-owner-discovery",given:["A current personal Microsoft connection"],when:["The owner lists calendars"],then:["Only opaque calendar references and capabilities are returned","No calendar is selected and no scheduling effect occurs"]}]},policy:{auth:"user",pii:["calendars.displayName"]}});
@@ -0,0 +1 @@
1
+ export const COMPANYOS_PERSONAL_MICROSOFT_HTTP_CATALOG=[{key:"calendar-intelligence.personal-microsoft-oauth.start",version:"1.1.0",method:"POST",path:"/api/v2/opa/personal-calendar/microsoft/authorize"},{key:"calendar-intelligence.personal-microsoft-oauth.complete",version:"1.2.0",method:"GET",path:"/api/v2/opa/personal-calendar/microsoft/callback"},{key:"calendar-intelligence.personal-microsoft-calendars.list",version:"1.0.0",method:"GET",path:"/api/v2/opa/personal-calendar/microsoft/calendars"},{key:"calendar-intelligence.personal-microsoft-selection.read",version:"1.0.0",method:"GET",path:"/api/v2/opa/personal-calendar/microsoft/selection"},{key:"calendar-intelligence.personal-microsoft-selection.save",version:"1.0.0",method:"POST",path:"/api/v2/opa/personal-calendar/microsoft/selection"},{key:"calendar-intelligence.personal-microsoft-calendar.disconnect",version:"1.0.0",method:"POST",path:"/api/v2/opa/personal-calendar/microsoft/disconnect"}];
@@ -0,0 +1 @@
1
+ import{fromZod as o}from"@lssm/lib.schema";import{z as e}from"zod";import{defineCommand as n,defineQuery as c}from"../operations/index.js";import{COMPANYOS_CAPABILITY as a,COMPANYOS_DOMAIN as d,COMPANYOS_OWNERS as l,COMPANYOS_STABILITY as p,COMPANYOS_TAGS as m}from"./constants.js";export const PersonalMicrosoftCalendarSelectionSchema=e.object({expectedSelectionDigest:e.string().regex(/^sha256:[a-f0-9]{64}$/),selections:e.array(e.object({calendarRef:e.string().regex(/^busy-calendar:[a-f0-9]{64}$/),workspaceIds:e.array(e.string().min(1).max(160)).max(20)}).strict()).max(100),writeCalendarRef:e.string().regex(/^write-calendar:[a-f0-9]{64}$/).optional(),requireTeams:e.boolean()}).strict().superRefine((t,i)=>{if(new Set(t.selections.map((r)=>r.calendarRef)).size!==t.selections.length)i.addIssue({code:"custom",message:"DUPLICATE_CALENDAR_SELECTION"});if(t.selections.some((r)=>new Set(r.workspaceIds).size!==r.workspaceIds.length))i.addIssue({code:"custom",message:"DUPLICATE_WORKSPACE_MAPPING"});if((t.writeCalendarRef||t.requireTeams)&&!t.selections.length)i.addIssue({code:"custom",message:"WRITE_TARGET_REQUIRES_SELECTED_CALENDAR"});if(t.requireTeams&&!t.writeCalendarRef)i.addIssue({code:"custom",message:"TEAMS_REQUIRES_WRITE_TARGET"})}),PersonalMicrosoftCalendarSelectionResultSchema=e.object({selectionDigest:e.string().regex(/^sha256:[a-f0-9]{64}$/),selections:e.array(e.object({calendarRef:e.string().regex(/^busy-calendar:[a-f0-9]{64}$/),workspaceIds:e.array(e.string().min(1).max(160)).max(20),designatedWriteTarget:e.boolean()}).strict()).max(100)}).strict();const s={version:"1.0.0",domain:d,owners:[...l],stability:p,tags:[...m,"calendar","microsoft"],goal:"Persist explicit personal calendar choices without overwriting concurrent edits.",context:"Owner and authorized workspace mappings are rederived server-side. Selection does not qualify provider execution."};export const PersonalMicrosoftCalendarSelectionRead=c({meta:{...s,version:"1.0.0",key:"calendar-intelligence.personal-microsoft-selection.read",title:"Read personal Microsoft calendar selection",description:"Read persisted choices and their current concurrency digest."},capability:{...a},io:{input:o(e.object({}).strict(),{name:"PersonalMicrosoftSelectionReadInput"}),output:o(PersonalMicrosoftCalendarSelectionResultSchema,{name:"PersonalMicrosoftSelectionReadOutput"})},policy:{auth:"user",pii:[]}}),PersonalMicrosoftCalendarSelectionSave=n({meta:{...s,version:"1.0.0",key:"calendar-intelligence.personal-microsoft-selection.save",title:"Save personal Microsoft calendar selection",description:"Save verified calendar choices only against the expected persisted digest."},capability:{...a},io:{input:o(PersonalMicrosoftCalendarSelectionSchema,{name:"PersonalMicrosoftSelectionSaveInput"}),output:o(e.object({selected:e.number().int().min(0).max(100)}).strict(),{name:"PersonalMicrosoftSelectionSaveOutput"}),errors:{MICROSOFT_SELECTION_INVALID:{description:"Review calendar choices and write target.",http:422,when:"Selection fails current provider capability or input validation."},MICROSOFT_SELECTION_CONFLICT:{description:"Reload calendar choices before saving again.",http:409,when:"The persisted selection digest changed."}}},policy:{auth:"user",pii:[]}});
@@ -0,0 +1 @@
1
+ import{fromZod as n}from"@lssm/lib.schema";import{z as e}from"zod";import{defineCommand as i,defineQuery as c}from"../operations/index.js";import{COMPANYOS_CAPABILITY as t,COMPANYOS_DOMAIN as d,COMPANYOS_OWNERS as l,COMPANYOS_STABILITY as p,COMPANYOS_TAGS as g}from"./constants.js";export const CalendarPrivateDraftPreviewRequestSchema=e.object({idempotencyKey:e.string().min(1).max(128),kind:e.enum(["morning-recap","meeting-preparation"]),locale:e.enum(["en","fr","es"])}).strict(),CalendarPrivateDraftPreviewResultSchema=e.object({state:e.literal("draft"),content:e.string().min(1).max(12000),sourceRefs:e.array(e.string().min(1)),delivered:e.literal(!1)}).strict(),CALENDAR_PRIVATE_DRAFT_PREVIEW_CONTRACT={version:"1.1.0",errors:{consumed:"briefing_draft_command_consumed",unavailable:"briefing_draft_unavailable"},operation:"companyos.calendar_intelligence.draft_preview",path:"/api/companyos/opa/briefings/draft-preview",method:"POST",scope:"selected-private-calendars",invariants:["Authenticated explicit human command authorizes only this bounded private draft.","Independent model-bound processing consent and current policy are required before and after generation.","No sender, Work mutation or calendar write is available.","Source references identify authorized calendar inputs; model facts retain existing citation validation."]},CalendarPrivateProcessingConsentCommandSchema=e.object({expectedRevision:e.number().int().nonnegative(),state:e.enum(["granted","revoked"]),bindingDigest:e.string().regex(/^sha256:[a-f0-9]{64}$/),scopeRefs:e.array(e.string().min(1).max(256)).max(200)}).strict(),COMPANYOS_PRIVATE_BRIEFING_HTTP_CATALOG=[CALENDAR_PRIVATE_DRAFT_PREVIEW_CONTRACT,{version:"1.0.0",operation:"companyos.calendar_intelligence.processing_consent.read",method:"GET",path:"/api/companyos/opa/briefings/processing-consent"},{version:"1.0.0",operation:"companyos.calendar_intelligence.processing_consent.save",method:"POST",path:"/api/companyos/opa/briefings/processing-consent"}];const o=e.object({owner:e.object({personalTenantId:e.string(),userId:e.string()}),revision:e.number().int(),state:e.enum(["granted","revoked"]),bindingDigest:e.string(),scopeRefs:e.array(e.string())});export const CalendarPrivateProcessingSettingsSchema=e.object({consent:o.nullable(),binding:e.object({provider:e.string(),model:e.string(),region:e.string()}).passthrough().nullable(),bindingDigest:e.string().nullable(),availableScopeRefs:e.array(e.string())});const a=(s,r)=>({key:s,title:r,version:"1.0.0",description:r,goal:"Private calendar intelligence with explicit processing consent and no delivery.",context:"Owner and execution evidence are derived from the authenticated session.",domain:d,owners:[...l],tags:[...g,"calendar","briefing"],stability:p});export const PersonalBriefingDraftGenerateCommand=i({meta:a("companyos.calendar_intelligence.draft_preview","Generate Private Calendar Draft"),capability:{...t},io:{input:n(CalendarPrivateDraftPreviewRequestSchema,{name:"PersonalBriefingDraftInput"}),output:n(CalendarPrivateDraftPreviewResultSchema,{name:"PersonalBriefingDraftResult"})},acceptance:{scenarios:[{key:"private-draft-only",given:["An authenticated owner explicitly consents to the current model and source scopes"],when:["The owner requests a draft"],then:["Current policy, input and consent are rechecked before and after generation","The validated result is a private draft and no email or Work mutation occurs"]},{key:"revoked-or-stale-authority",given:["Consent, policy, inputs or model binding change during generation"],when:["The result is checked"],then:["The result is rejected","The consumed command identity does not trigger duplicate generation"]}],examples:[{key:"synthetic-private-draft",input:{idempotencyKey:"example:draft",kind:"morning-recap",locale:"en"},output:{state:"draft",content:"Synthetic private draft for review.",sourceRefs:["calendar:example"],delivered:!1}}]},policy:{auth:"user",pii:[]}}),PersonalBriefingProcessingConsentReadQuery=c({meta:a("companyos.calendar_intelligence.processing_consent.read","Read Personal Processing Consent"),capability:{...t},io:{input:n(e.object({}).strict(),{name:"PersonalProcessingConsentReadInput"}),output:n(CalendarPrivateProcessingSettingsSchema,{name:"PersonalProcessingConsentSettings"})},acceptance:{scenarios:[{key:"owner-scoped-settings",given:["The requester has a current personal context"],when:["Processing settings are read"],then:["Only that owner consent and currently available source scopes are returned","Unavailable generation does not prevent reading existing consent for revocation"]}],examples:[{key:"unconfigured",input:{},output:{consent:null,binding:null,bindingDigest:null,availableScopeRefs:[]}}]},policy:{auth:"user",pii:[]}}),PersonalBriefingProcessingConsentSaveCommand=i({meta:a("companyos.calendar_intelligence.processing_consent.save","Save Personal Processing Consent"),capability:{...t},io:{input:n(CalendarPrivateProcessingConsentCommandSchema,{name:"PersonalProcessingConsentSaveInput"}),output:n(o,{name:"PersonalProcessingConsentRecord"})},acceptance:{scenarios:[{key:"explicit-grant",given:["The owner explicitly selects the current binding and available scopes"],when:["Consent is granted at the expected revision"],then:["A new owner-scoped consent revision is saved","A stale revision or changed binding is rejected"]},{key:"independent-revocation",given:["The owner has existing consent and the provider is unavailable"],when:["The owner revokes at the expected revision"],then:["Consent becomes revoked without requiring provider access"]}],examples:[{key:"revoke",input:{expectedRevision:1,state:"revoked",bindingDigest:"sha256:"+"a".repeat(64),scopeRefs:["calendar:example"]},output:{owner:{personalTenantId:"example-personal",userId:"example-user"},revision:2,state:"revoked",bindingDigest:"sha256:"+"a".repeat(64),scopeRefs:["calendar:example"]}}]},policy:{auth:"user",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineCommand as o}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as r,COMPANYOS_DOMAIN as i,COMPANYOS_OWNERS as n,COMPANYOS_STABILITY as a,COMPANYOS_TAGS as s}from"../constants.js";const p=new t({name:"CompanyOsAutonomousWorkOrderTransitionInput",fields:{tenantId:{type:e.ID(),isOptional:!1},workOrderId:{type:e.ID(),isOptional:!1},transition:{type:e.String_unsecure(),isOptional:!1},actorRef:{type:e.String_unsecure(),isOptional:!1},workRef:{type:e.String_unsecure(),isOptional:!1},graphNodeRefs:{type:e.String_unsecure(),isOptional:!1,isArray:!0},graphEdgeRefs:{type:e.String_unsecure(),isOptional:!1,isArray:!0},safety:{type:e.JSONObject(),isOptional:!1},evidenceRefIds:{type:e.String_unsecure(),isOptional:!1,isArray:!0}}}),u=new t({name:"CompanyOsAutonomousWorkOrderTransitionOutput",fields:{workOrderId:{type:e.ID(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1},transitionedAt:{type:e.DateTime(),isOptional:!1},stateNodeRef:{type:e.String_unsecure(),isOptional:!1},evidenceReceiptRef:{type:e.String_unsecure(),isOptional:!1}}});export const AutonomousWorkOrderTransitionCommand=o({meta:{key:"workOrder.transition",title:"Transition Autonomous Work Order",version:"1.0.0",description:"Advance an Autonomous Work Order through graph-visible policy, approval, execution, surface-render, adaptation, and evidence-export states.",goal:"Make high-impact work-order state transitions auditable as ontology graph projections.",context:"Every transition carries actor/work graph refs, safety refs, and evidence receipts so CompanyOS graph queries can expose the state machine without local ontology duplication.",domain:i,owners:[...n],tags:[...s,"work-order","ontology","projection"],stability:a},capability:{...r},io:{input:p,output:u,errors:{SAFETY_REFS_INCOMPLETE:{description:"High-impact transition is missing policy, authority, approval/refusal, audit, redaction, replay/evidence, risk, or timestamp refs.",http:409,when:"transition crosses a mutation/order boundary without complete safety refs."}}},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as a}from"@lssm/lib.schema";import{defineCommand as i}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as t,COMPANYOS_DOMAIN as n,COMPANYOS_OWNERS as s,COMPANYOS_STABILITY as r,COMPANYOS_TAGS as o}from"../constants.js";export const ManagedBuilderReadinessEvaluationModel=new a({name:"ManagedBuilderReadinessEvaluation",fields:{evaluationId:{type:e.ID(),isOptional:!1},correlationId:{type:e.ID(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1},checkedAt:{type:e.DateTime(),isOptional:!1},blockers:{type:e.String_unsecure(),isOptional:!1,isArray:!0},evidence:{type:e.JSONObject(),isOptional:!1}}});const l=new a({name:"CompanyOsBuilderReadinessEvaluateInput",fields:{tenantId:{type:e.ID(),isOptional:!1},sessionId:{type:e.ID(),isOptional:!1},correlationId:{type:e.ID(),isOptional:!0},providerCredentialRef:{type:e.String_unsecure(),isOptional:!0},webhookSigningRef:{type:e.String_unsecure(),isOptional:!0}}}),d=new a({name:"CompanyOsBuilderReadinessEvaluateOutput",fields:{evaluation:{type:ManagedBuilderReadinessEvaluationModel,isOptional:!1}}});export const BuilderReadinessEvaluateCommand=i({meta:{key:"builder.readiness.evaluate",title:"Evaluate Managed Builder Readiness",version:"1.0.0",description:"Evaluate Managed CompanyOS Builder readiness and produce a typed live/degraded/blocker outcome.",goal:"Fail closed when provider or webhook prerequisites are missing while preserving evidence for Builder release capsules.",context:"Part of the Managed CompanyOS Builder closure. This operation is distinct from agent/workflow operations and only reports Builder readiness evidence.",domain:n,owners:[...s],tags:[...o,"builder","readiness","evidence"],stability:r},capability:{...t},io:{input:l,output:d,errors:{RAW_CREDENTIAL_REJECTED:{description:"Raw-looking provider credentials are rejected; pass a typed providerCredentialRef instead.",http:422,when:"providerCredentialRef contains a secret-like token instead of a typed ref."}}},policy:{auth:"admin",pii:[],escalate:"human_review"}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineCommand as i}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as n,COMPANYOS_DOMAIN as o,COMPANYOS_OWNERS as a,COMPANYOS_STABILITY as s,COMPANYOS_TAGS as r}from"../constants.js";const c=new t({name:"CompanyOsContextSetActiveInput",fields:{contextRef:{type:e.ID(),isOptional:!1},teamRef:{type:e.ID(),isOptional:!0},workspaceRef:{type:e.ID(),isOptional:!0},authorityToken:{type:e.String_unsecure(),isOptional:!1},idempotencyKey:{type:e.ID(),isOptional:!1}}}),p=new t({name:"CompanyOsContextSetActiveOutput",fields:{activeContextRef:{type:e.ID(),isOptional:!1},activeTeamRef:{type:e.ID(),isOptional:!0},activeWorkspaceRef:{type:e.ID(),isOptional:!0},authorityToken:{type:e.String_unsecure(),isOptional:!1},authorityVersion:{type:e.Int_unsecure(),isOptional:!1},switchedAt:{type:e.DateTime(),isOptional:!1},invalidatedCacheDigests:{type:e.String_unsecure(),isOptional:!1,isArray:!0},replayed:{type:e.Boolean(),isOptional:!1}}});export const ContextSetActiveCommand=i({meta:{key:"context.set-active",title:"Set Active CompanyOS Context",version:"1.0.0",description:"Atomically select an authorized personal or company context and optional nested team and workspace.",goal:"Provide one CAS-protected authority transition for personal, multi-company, team, and workspace selection.",context:"The server verifies the signed one-use authority token, resolves opaque references from the token projection, locks the Better Auth session row, revalidates organization, team, grant, and workspace versions, then updates active organization, active team, active workspace, and session authority version in one transaction. The nonce is consumed and one audit event is committed atomically. Physical tenant identifiers are never accepted.",domain:o,owners:[...a],tags:[...r,"context","team","workspace","authority"],stability:s},capability:{...n},io:{input:c,output:p,errors:{SESSION_REQUIRED:{description:"A current authenticated session is required.",http:401,when:"The session is absent, expired, or revoked."},CONTEXT_MEMBERSHIP_REQUIRED:{description:"The current user cannot access the selected context.",http:403,when:"Organization membership, binding, or canonical grant validation fails."},TEAM_MEMBERSHIP_REQUIRED:{description:"The current user cannot access the selected team.",http:403,when:"Team ownership, membership, or canonical team grant validation fails."},WORKSPACE_ACCESS_REQUIRED:{description:"The selected workspace is not authorized.",http:403,when:"Workspace ownership or team-workspace grant validation fails."},STALE_AUTHORITY_TOKEN:{description:"The one-use context authority token is stale.",http:409,when:"The token is expired, consumed, cross-session, or binds stale authority versions."},CONTEXT_CONFLICT:{description:"Context authority changed during the transition.",http:409,when:"Commit-time revalidation differs from the selected tuple."},RATE_LIMITED:{description:"Context switching was attempted too often.",http:429,when:"The bounded per-session context switch rate is exceeded."},AUTHORITY_STORE_UNAVAILABLE:{description:"Current context authority cannot be updated.",http:503,when:"The identity, grant, token, audit, or workspace store is unavailable."}}},policy:{auth:"user",pii:[]},sideEffects:{audit:["context.activeChanged"]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineCommand as i}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as a,COMPANYOS_DOMAIN as n,COMPANYOS_OWNERS as o,COMPANYOS_STABILITY as p,COMPANYOS_TAGS as s}from"../constants.js";import{CompanyOsDurableMutationReceiptModel as r,CompanyOsServerDerivedAuthorityModel as c}from"../production-semantics.js";const d=new t({name:"CompanyOsDecisionPacketAttestInput",fields:{tenantId:{type:e.ID(),isOptional:!1},workspaceId:{type:e.ID(),isOptional:!1},decisionPacketId:{type:e.ID(),isOptional:!1},attesterPrincipalId:{type:e.ID(),isOptional:!1},attesterRole:{type:e.String_unsecure(),isOptional:!1},statement:{type:e.String_unsecure(),isOptional:!1},evidenceReceiptId:{type:e.ID(),isOptional:!1},replayPacketId:{type:e.ID(),isOptional:!1},idempotencyKey:{type:e.ID(),isOptional:!1}}}),l=new t({name:"CompanyOsDecisionPacketAttestOutput",fields:{attestationId:{type:e.ID(),isOptional:!1},decisionPacketId:{type:e.ID(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1},evidenceReceiptOperationKey:{type:e.String_unsecure(),isOptional:!1},replayPacketOperationKey:{type:e.String_unsecure(),isOptional:!1},attestedAt:{type:e.DateTime(),isOptional:!0},idempotentReplay:{type:e.Boolean(),isOptional:!1}}});export const DecisionPacketAttestCommand=i({meta:{key:"decisionPacket.attest",title:"Attest Design Partner Decision Packet",version:"1.0.0",description:"Record an expert attestation on a design-partner decision packet.",goal:"Require an expert-only attestation while preserving receipt and replay refs from evidence.get-receipt and replay.get-packet.",context:"This additive command complements specialOps.reviewCard.decide and specialOps.weeklyReport.approve: those existing human gates remain the review/approval seams, while this operation records expert attestation by reference only. It does not authorize provider, AI, or production dispatch.",domain:n,owners:[...o],tags:[...s,"design-partner","decision-packet","attest"],stability:p},capability:{...a},io:{input:d,output:l,errors:{DECISION_PACKET_NOT_FOUND:{description:"No decision packet matched the supplied id in the caller scope.",http:404,when:"decisionPacketId does not resolve in tenant/workspace scope."},ATTESTATION_NOT_EXPERT:{description:"Only an expert role may attest a decision packet.",http:403,when:"attesterRole is not expert."}}},policy:{auth:"admin",pii:[]},sideEffects:{audit:["decisionPacket.attested"]}});const y=new t({name:"CompanyOsDecisionPacketAttestV2Input",fields:{tenantId:{type:e.ID(),isOptional:!1},workspaceId:{type:e.ID(),isOptional:!1},scenarioId:{type:e.ID(),isOptional:!1},decisionPacketId:{type:e.ID(),isOptional:!1},decisionPacketVersionId:{type:e.ID(),isOptional:!1},statement:{type:e.String_unsecure(),isOptional:!1},idempotencyKey:{type:e.ID(),isOptional:!1}}}),O=new t({name:"CompanyOsDecisionPacketAttestV2Output",fields:{tenantId:{type:e.ID(),isOptional:!1},workspaceId:{type:e.ID(),isOptional:!1},scenarioId:{type:e.ID(),isOptional:!1},decisionPacketId:{type:e.ID(),isOptional:!1},decisionPacketVersionId:{type:e.ID(),isOptional:!1},attestationId:{type:e.ID(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1},authority:{type:c,isOptional:!1},receipt:{type:r,isOptional:!1},attestedAt:{type:e.DateTime(),isOptional:!1}}});export const DecisionPacketAttestCommandV2=i({meta:{...DecisionPacketAttestCommand.meta,key:"decisionPacket.attest",version:"2.0.0",description:"Durably record an expert attestation using authority derived only from the verified server session.",goal:"Commit one packet-version attestation, audit event, idempotency receipt, and evidence outbox intent atomically.",context:"Principal, role, evidence receipt, replay packet, and correlation identifiers are server-derived. The client supplies only resource scope, packet version, statement, and idempotency key. Client idempotency keys are server-namespaced by exact packet version and verified principal; duplicate submissions from that authority return the original durable receipt; projection may remain recorded_evidence_pending.",tags:[...s,"design-partner","decision-packet","attest","production-v2"]},capability:{...a},io:{input:y,output:O,errors:{DECISION_PACKET_NOT_FOUND:{description:"No decision packet version matched the server-validated caller scope.",http:404,when:"Packet/version is unknown or not visible in tenant/workspace/scenario."},ATTESTATION_NOT_EXPERT:{description:"Server-derived authority does not carry the expert-reviewer capability.",http:403,when:"Verified session membership is not an expert reviewer."},TENANT_DISABLED:{description:"The server-owned tenant kill switch disables governed mutations.",http:403,when:"Verified session tenant is disabled by the API authority."},PACKET_VERSION_STALE:{description:"The requested packet version is no longer current.",http:409,when:"A newer governed packet version exists in the same scope."}}},policy:{auth:"admin",pii:[]},sideEffects:{audit:["decisionPacket.attested"]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineCommand as i}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as a,COMPANYOS_DOMAIN as o,COMPANYOS_OWNERS as p,COMPANYOS_STABILITY as r,COMPANYOS_TAGS as n}from"../constants.js";import{CompanyOsDurableMutationReceiptModel as s,CompanyOsServerDerivedAuthorityModel as c}from"../production-semantics.js";const d=new t({name:"CompanyOsDecisionPacketFounderApproveInput",fields:{tenantId:{type:e.ID(),isOptional:!1},workspaceId:{type:e.ID(),isOptional:!1},decisionPacketId:{type:e.ID(),isOptional:!1},approverPrincipalId:{type:e.ID(),isOptional:!1},approverRole:{type:e.String_unsecure(),isOptional:!1},statement:{type:e.String_unsecure(),isOptional:!1},approvalSourceOperationKey:{type:e.String_unsecure(),isOptional:!1},evidenceReceiptId:{type:e.ID(),isOptional:!1},replayPacketId:{type:e.ID(),isOptional:!1},idempotencyKey:{type:e.ID(),isOptional:!1}}}),l=new t({name:"CompanyOsDecisionPacketFounderApproveOutput",fields:{approvalId:{type:e.ID(),isOptional:!1},decisionPacketId:{type:e.ID(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1},evidenceReceiptOperationKey:{type:e.String_unsecure(),isOptional:!1},replayPacketOperationKey:{type:e.String_unsecure(),isOptional:!1},approvedAt:{type:e.DateTime(),isOptional:!0},idempotentReplay:{type:e.Boolean(),isOptional:!1}}});export const DecisionPacketFounderApproveCommand=i({meta:{key:"decisionPacket.founderApprove",title:"Founder Approve Design Partner Decision Packet",version:"1.0.0",description:"Record founder approval on a design-partner decision packet.",goal:"Require explicit founder approval before a design-partner readiness state can be marked ready, while keeping production dispatch out of scope.",context:"This additive command references specialOps.reviewCard.decide and specialOps.weeklyReport.approve as existing human approval seams, and reuses evidence.get-receipt plus replay.get-packet refs instead of introducing a new receipt/replay system. Approval is a design-partner checkpoint only, not a production readiness claim.",domain:o,owners:[...p],tags:[...n,"design-partner","decision-packet","founder-approval"],stability:r},capability:{...a},io:{input:d,output:l,errors:{DECISION_PACKET_NOT_FOUND:{description:"No decision packet matched the supplied id in the caller scope.",http:404,when:"decisionPacketId does not resolve in tenant/workspace scope."},APPROVAL_NOT_FOUNDER:{description:"Only a founder role may approve a decision packet.",http:403,when:"approverRole is not founder."}}},policy:{auth:"admin",pii:[]},sideEffects:{audit:["decisionPacket.founderApproved"]}});const u=new t({name:"CompanyOsDecisionPacketFounderApproveV2Input",fields:{tenantId:{type:e.ID(),isOptional:!1},workspaceId:{type:e.ID(),isOptional:!1},scenarioId:{type:e.ID(),isOptional:!1},decisionPacketId:{type:e.ID(),isOptional:!1},decisionPacketVersionId:{type:e.ID(),isOptional:!1},statement:{type:e.String_unsecure(),isOptional:!1},idempotencyKey:{type:e.ID(),isOptional:!1}}}),y=new t({name:"CompanyOsDecisionPacketFounderApproveV2Output",fields:{tenantId:{type:e.ID(),isOptional:!1},workspaceId:{type:e.ID(),isOptional:!1},scenarioId:{type:e.ID(),isOptional:!1},decisionPacketId:{type:e.ID(),isOptional:!1},decisionPacketVersionId:{type:e.ID(),isOptional:!1},acceptedExpertAttestationId:{type:e.ID(),isOptional:!1},approvalId:{type:e.ID(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1},authority:{type:c,isOptional:!1},receipt:{type:s,isOptional:!1},approvedAt:{type:e.DateTime(),isOptional:!1}}});export const DecisionPacketFounderApproveCommandV2=i({meta:{...DecisionPacketFounderApproveCommand.meta,key:"decisionPacket.founderApprove",version:"2.0.0",description:"Durably record founder approval after an accepted expert attestation on the exact scoped packet version.",goal:"Bind founder approval to server-derived founder authority and the accepted expert attestation while atomically committing its durable receipt and evidence intent.",context:"Principal, role, prerequisite attestation, evidence receipt, replay packet, and correlation identifiers are server-derived. The operation rejects an unattested or stale packet version. Client idempotency keys are server-namespaced by exact packet version and verified principal, then return the original durable receipt for idempotent replays; evidence may remain recorded_evidence_pending.",tags:[...n,"design-partner","decision-packet","founder-approval","production-v2"]},capability:{...a},io:{input:u,output:y,errors:{DECISION_PACKET_NOT_FOUND:{description:"No decision packet version matched the server-validated caller scope.",http:404,when:"Packet/version is unknown or not visible in tenant/workspace/scenario."},APPROVAL_NOT_FOUNDER:{description:"Server-derived authority does not carry the founder-approver capability.",http:403,when:"Verified session membership is not a founder approver."},TENANT_DISABLED:{description:"The server-owned tenant kill switch disables governed mutations.",http:403,when:"Verified session tenant is disabled by the API authority."},EXPERT_ATTESTATION_REQUIRED:{description:"Founder approval requires an accepted expert attestation on the exact packet version.",http:409,when:"No accepted expert attestation exists in the same scope and version."},PACKET_VERSION_STALE:{description:"The requested packet version is no longer current.",http:409,when:"A newer governed packet version exists in the same scope."}}},policy:{auth:"admin",pii:[]},sideEffects:{audit:["decisionPacket.founderApproved"]}});
@@ -0,0 +1 @@
1
+ export*from"./autonomousWorkOrderTransition.command.js";export*from"./builderReadinessEvaluate.command.js";export*from"./contextSetActive.command.js";export*from"./decisionPacketAttest.command.js";export*from"./decisionPacketFounderApprove.command.js";export*from"./integrationConfigureByok.command.js";export*from"./integrationConfigureManaged.command.js";export*from"./onboardingPreferencesComplete.command.js";export*from"./organizationSetActive.command.js";export*from"./personalBriefingCalendarsSelect.command.js";export*from"./personalBriefingDeliveryRetry.command.js";export*from"./personalBriefingGoogleOAuthComplete.command.js";export*from"./personalBriefingGoogleOAuthStart.command.js";export*from"./personalBriefingMicrosoftDisconnect.command.js";export*from"./personalBriefingMicrosoftOAuthComplete.command.js";export*from"./personalBriefingMicrosoftOAuthStart.command.js";export*from"./personalBriefingPreferencesUpdate.command.js";export*from"./personalBriefingPreviewSend.command.js";export*from"./personalContextDisable.command.js";export*from"./personalContextEnsure.command.js";export*from"./personalDailyOperationCreate.command.js";export*from"./personalDailyOperationTransition.command.js";export*from"./personaPreviewSet.command.js";export*from"./reviewCardDecide.command.js";export*from"./shellPreferencesUpdate.command.js";export*from"./tenantOnboard.command.js";export*from"./tenantUpdate.command.js";export*from"./weeklyReportApprove.command.js";export*from"./workflowStart.command.js";
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as t}from"@lssm/lib.schema";import{defineCommand as n}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as i,COMPANYOS_DOMAIN as r,COMPANYOS_OWNERS as o,COMPANYOS_STABILITY as a,COMPANYOS_TAGS as s}from"../constants.js";const p=new t({name:"CompanyOsIntegrationConfigureByokInput",fields:{tenantId:{type:e.ID(),isOptional:!1},providerKey:{type:e.String_unsecure(),isOptional:!1},secretRefId:{type:e.String_unsecure(),isOptional:!1}}}),u=new t({name:"CompanyOsIntegrationConfigureByokOutput",fields:{integrationId:{type:e.ID(),isOptional:!1},providerKey:{type:e.String_unsecure(),isOptional:!1},credentialRef:{type:e.String_unsecure(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1}}});export const IntegrationConfigureByokCommand=n({meta:{key:"integration.configure-byok",title:"Configure BYOK Integration",version:"1.0.0",description:"Configure a Managed CompanyOS integration using a customer-supplied secret reference (BYOK).",goal:"Honor enterprise BYOK without storing raw secret material in the contract layer.",context:"`secretRefId` resolves through `lib.auth-os` secret store; raw secrets never enter operation arguments.",domain:r,owners:[...o],tags:[...s,"integration","byok"],stability:a},capability:{...i},io:{input:p,output:u,errors:{SECRET_REF_INVALID:{description:"The supplied secret reference is missing or unreadable.",http:422,when:"secretRefId does not resolve in the tenant secret store."},PROVIDER_NOT_AVAILABLE:{description:"Provider is not enabled for BYOK configuration.",http:422,when:"providerKey is not in the BYOK-eligible catalog."}}},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as n}from"@lssm/lib.schema";import{defineCommand as t}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as a,COMPANYOS_DOMAIN as i,COMPANYOS_OWNERS as o,COMPANYOS_STABILITY as r,COMPANYOS_TAGS as s}from"../constants.js";const p=new n({name:"CompanyOsIntegrationConfigureManagedInput",fields:{tenantId:{type:e.ID(),isOptional:!1},providerKey:{type:e.String_unsecure(),isOptional:!1},options:{type:e.JSONObject(),isOptional:!0}}}),g=new n({name:"CompanyOsIntegrationConfigureManagedOutput",fields:{integrationId:{type:e.ID(),isOptional:!1},providerKey:{type:e.String_unsecure(),isOptional:!1},credentialRef:{type:e.String_unsecure(),isOptional:!1},status:{type:e.String_unsecure(),isOptional:!1}}});export const IntegrationConfigureManagedCommand=t({meta:{key:"integration.configure-managed",title:"Configure Managed Integration",version:"1.0.0",description:"Configure a Managed CompanyOS integration whose secrets are provisioned by the platform.",goal:"Bind a managed credential to a tenant integration without exposing the secret to callers.",context:"Reuses platform-issued credentials; never accepts raw secret material in arguments.",domain:i,owners:[...o],tags:[...s,"integration","managed"],stability:r},capability:{...a},io:{input:p,output:g,errors:{PROVIDER_NOT_AVAILABLE:{description:"Provider is not enabled for managed configuration.",http:422,when:"providerKey is not in the managed marketplace catalog."},TENANT_NOT_FOUND:{description:"The referenced tenant does not exist.",http:404,when:"tenantId cannot be resolved in the managed control-plane."}}},policy:{auth:"admin",pii:[]}});
@@ -0,0 +1,8 @@
1
+ import{defineCommand as e}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as n,COMPANYOS_DOMAIN as r,COMPANYOS_OWNERS as o,COMPANYOS_STABILITY as t,COMPANYOS_TAGS as i}from"../constants.js";import{CompanyOsOnboardingPreferencesCompleteInputModel as s,CompanyOsOnboardingPreferencesCompleteOutputModel as a}from"../shell-preferences.js";export const CompanyOsOnboardingPreferencesCompleteDocBlock={id:"docs.tech.companyos.onboarding-preferences.complete",title:"Complete CompanyOS onboarding preferences",summary:"Persists tenant-bound experience preferences for the authenticated user with optimistic concurrency and idempotent replay.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/onboarding-preferences-complete",tags:["companyos","onboarding","preferences","concurrency"],body:`# Complete CompanyOS onboarding preferences
2
+
3
+ The browser supplies only a bounded preference patch, the last observed
4
+ tenant-scoped experience revision, and an idempotency key. The host derives the
5
+ user and tenant from the authenticated session. It stores one preference
6
+ document per user and tenant, rejects cross-tenant selectors, and replays only
7
+ the exact command within the same derived scope.
8
+ `},CompanyOsOnboardingPreferencesCompleteCommand=e({meta:{key:"companyos.onboardingPreferences.complete",title:"Complete CompanyOS Onboarding Preferences",version:"1.0.0",description:"Persist the authenticated user’s tenant-bound CompanyOS experience preferences.",goal:"Make onboarding durable without accepting user or tenant authority from the browser.",context:"The server derives user and tenant scope from the verified session, validates the preference patch, and applies one compare-and-swap write with exact idempotent replay.",domain:r,owners:[...o],tags:[...i,"onboarding","preferences","concurrency"],stability:t},capability:{...n},io:{input:s,output:a,errors:{SESSION_REQUIRED:{description:"A current authenticated session is required.",http:401,when:"The session is absent, expired, or revoked."},ONBOARDING_PREFERENCES_CONFLICT:{description:"The tenant-scoped preferences changed or the idempotency key was reused with different input.",http:409,when:"Revision or exact replay binding fails."},INVALID_ONBOARDING_PREFERENCES:{description:"The requested experience preference patch is invalid.",http:422,when:"A preference value, revision, or idempotency key is invalid."},ONBOARDING_PREFERENCES_UNAVAILABLE:{description:"Durable onboarding preference storage is unavailable.",http:503,when:"The tenant-bound preference repository cannot be reached."}}},policy:{auth:"user",pii:[]}});
@@ -0,0 +1 @@
1
+ import{ScalarTypeEnum as t,SchemaModel as e}from"@lssm/lib.schema";import{defineCommand as i}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as a,COMPANYOS_DOMAIN as n,COMPANYOS_OWNERS as o,COMPANYOS_STABILITY as r,COMPANYOS_TAGS as s}from"../constants.js";const c=new e({name:"CompanyOsOrganizationSetActiveInput",fields:{organizationId:{type:t.ID(),isOptional:!1}}}),h=new e({name:"CompanyOsOrganizationSetActiveOutput",fields:{activeOrganizationId:{type:t.ID(),isOptional:!1},authorityVersion:{type:t.Int_unsecure(),isOptional:!1},authorityToken:{type:t.String_unsecure(),isOptional:!1},switchedAt:{type:t.DateTime(),isOptional:!1}}});export const OrganizationSetActiveCommand=i({meta:{key:"organization.set-active",title:"Set Active Organization",version:"1.0.0",description:"Set the authenticated session active organization after current membership verification.",goal:"Provide one server-verified organization switch contract and a version token for rejecting stale in-flight mutations.",context:"The organization id is an assertion only. The server validates current membership, updates the Better Auth session, propagates every distinct provider Set-Cookie value, disables cached authority reads for post-write canonical revalidation, and returns authoritative state with the canonical composite authorityToken. A server-owned database trigger records organization.activeChanged atomically only when the active organization changes; audit failure rolls back the transition. The legacy numeric authorityVersion remains for compatibility and tenantId is never accepted as a storage-boundary selector.",domain:n,owners:[...o],tags:[...s,"organization","membership","authority"],stability:r},capability:{...a},io:{input:c,output:h,errors:{ORGANIZATION_MEMBERSHIP_REQUIRED:{description:"The authenticated principal is not a current member of the requested organization.",http:403,when:"Direct membership revalidation fails before or after the provider write."},AUTHORITY_VERSION_CONFLICT:{description:"Organization authority changed while the selection was being committed.",http:409,when:"Post-write canonical authority does not match the verified provider session."},AUTHORITY_STORE_UNAVAILABLE:{description:"Current organization authority cannot be verified.",http:503,when:"The authoritative session, membership, or atomic audit store is unavailable."}}},policy:{auth:"user",pii:[]},sideEffects:{audit:["organization.activeChanged"]}});
@@ -0,0 +1,7 @@
1
+ import{defineCommand as e}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as o,COMPANYOS_DOMAIN as r,COMPANYOS_OWNERS as t,COMPANYOS_STABILITY as s,COMPANYOS_TAGS as n}from"../constants.js";import{CompanyOsPersonaPreviewSetInputModel as a,CompanyOsPersonaPreviewSetOutputModel as i}from"../shell-preferences.js";export const CompanyOsPersonaPreviewSetDocBlock={id:"docs.tech.companyos.persona-preview.set",title:"Set CompanyOS persona preview",summary:"Sets or clears a server-authorized, session-scoped presentation-only persona preview.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/persona-preview-set",tags:["companyos","persona","rolemorph","session"],body:`# Set CompanyOS persona preview
2
+
3
+ This additive v1 command stores an authorized view persona in the current
4
+ session only. It never changes the actual authorization persona or grants
5
+ capabilities; presentation and actions remain the intersection of the actual
6
+ subject and the selected preview. Passing null exits preview mode.
7
+ `},CompanyOsPersonaPreviewSetCommand=e({meta:{key:"companyos.personaPreview.set",title:"Set CompanyOS Persona Preview",version:"1.0.0",description:"Set or clear a server-authorized presentation-only RoleMorph persona preview.",goal:"Let authorized operators preview a narrower persona without changing their real authorization.",context:"The server derives the actual persona and allowed preview personas from the authenticated session and current authority. The preview is stored only in that session, clears when the session expires or context changes, and may narrow presentation and actions but never expand the actual subject’s capabilities. The server returns a valid current-route destination or persona home.",domain:r,owners:[...t],tags:[...n,"persona","rolemorph","session"],stability:s},capability:{...o},io:{input:a,output:i,errors:{SESSION_REQUIRED:{description:"A current authenticated session is required.",http:401,when:"The session is absent, expired, or revoked."},PERSONA_PREVIEW_FORBIDDEN:{description:"The current subject cannot use persona preview.",http:403,when:"The current authorization does not permit any persona preview."},INVALID_PERSONA_PREVIEW:{description:"The requested preview persona is unavailable.",http:422,when:"personaId is malformed or is not in the server-authorized availablePersonaIds."}}},policy:{auth:"user",pii:[]},sideEffects:{audit:["companyos.personaPreview.updated"]}});
@@ -0,0 +1,12 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as a}from"@lssm/lib.schema";import{docRef as r}from"../../docs/registry.js";import{defineCommand as n}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as t,COMPANYOS_DOMAIN as s,COMPANYOS_OWNERS as i,COMPANYOS_STABILITY as o,COMPANYOS_TAGS as l}from"../constants.js";const c=new a({name:"CompanyOsPersonalBriefingCalendarsSelectInput",fields:{selections:{type:e.JSONObject(),isOptional:!1,isArray:!0}}});export const PersonalBriefingCalendarsSelectDocBlock={id:"docs.tech.companyos.calendar-intelligence.personal-calendars.select",title:"Select personal briefing calendars",summary:"Selects calendars owned by the current user and maps each to currently authorized workspaces.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/calendar-intelligence/personal-calendars-select",tags:["companyos","calendar-intelligence","oauth","authorization"],body:`# Personal calendar selection
2
+
3
+ Every calendar reference is re-enumerated from the authenticated user’s Google
4
+ grant. Every selected calendar requires at least one explicit workspace mapping,
5
+ and every mapping is revalidated against current CompanyOS membership.
6
+
7
+ Workspace booking resources are permanently excluded from this operation.
8
+
9
+ Compatibility intent: **breaking major** in
10
+ \`companyos.calendar-intelligence@3.0.0\`. A successful selection returns the
11
+ server-derived delivery rollout state alongside setup readiness.
12
+ `};const d=new a({name:"CompanyOsPersonalBriefingCalendarsSelectOutput",fields:{selected:{type:e.Int_unsecure(),isOptional:!1},setupState:{type:e.String_unsecure(),isOptional:!1},rolloutState:{type:e.String_unsecure(),isOptional:!1}}});export const PersonalBriefingCalendarsSelectCommand=n({meta:{key:"calendar-intelligence.personal-calendars.select",title:"Select Personal Briefing Calendars",version:"3.0.0",description:"Select personal Google calendars and explicit authorized workspace mappings.",goal:"Bound event reads to recipient-owned grants and graph reads to current workspace authority.",context:"Calendar refs are verified against the user's OAuth grant. Workspace tenancy is server-resolved from active grants.",domain:s,owners:[...i],tags:[...l,"calendar","briefing","authorization"],stability:o,docId:[r(PersonalBriefingCalendarsSelectDocBlock.id)]},capability:{...t},io:{input:c,output:d,errors:{CALENDAR_SELECTION_REJECTED:{description:"A calendar is unreadable, unowned, or lacks a mapping.",http:422,when:"Provider ownership or the bounded selection schema fails."},WORKSPACE_MAPPING_FORBIDDEN:{description:"A mapped workspace is not currently authorized.",http:403,when:"The current user lacks an enabled workspace grant."}}},policy:{auth:"user",pii:[]},sideEffects:{audit:["calendar-intelligence.personal-calendars.selected"]}});
@@ -0,0 +1,8 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as r}from"@lssm/lib.schema";import{docRef as i}from"../../docs/registry.js";import{defineCommand as t}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as n,COMPANYOS_DOMAIN as a,COMPANYOS_OWNERS as o,COMPANYOS_STABILITY as l,COMPANYOS_TAGS as s}from"../constants.js";const d=new r({name:"CompanyOsPersonalBriefingDeliveryRetryInput",fields:{deliveryId:{type:e.String_unsecure(),isOptional:!1}}}),c=new r({name:"CompanyOsPersonalBriefingDeliveryRetryOutput",fields:{accepted:{type:e.Boolean(),isOptional:!1},delivered:{type:e.Boolean(),isOptional:!1},kind:{type:e.String_unsecure(),isOptional:!1}}});export const PersonalBriefingDeliveryRetryDocBlock={id:"docs.tech.companyos.calendar-intelligence.delivery.retry",title:"Retry a personal briefing delivery",summary:"Retries one failed or stale delivery owned by the authenticated recipient.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/calendar-intelligence/delivery-retry",tags:["companyos","calendar-intelligence","briefings","recovery"],body:`# Retry personal briefing delivery
2
+
3
+ The opaque delivery identifier is resolved inside the authenticated user's
4
+ personal tenant. Delivered, suppressed, fresh in-flight, exhausted, and
5
+ cross-user records cannot be retried. The same idempotency key and bounded
6
+ personal calendar pipeline are reused; no recipient or calendar authority is
7
+ accepted from the browser.
8
+ `},PersonalBriefingDeliveryRetryCommand=t({meta:{key:"calendar-intelligence.personal-delivery.retry",title:"Retry Personal Briefing Delivery",version:"2.1.0",description:"Retry one recoverable personal briefing delivery for the current user.",goal:"Give recipients a safe, visible recovery path for failed delivery.",context:"Identity, recipient, personal tenant, calendars, and workspace authority are derived server-side.",domain:a,owners:[...o],tags:[...s,"calendar","briefing","recovery"],stability:l,docId:[i(PersonalBriefingDeliveryRetryDocBlock.id)]},capability:{...n},io:{input:d,output:c,errors:{BRIEFING_DELIVERY_NOT_RETRYABLE:{description:"The delivery is absent, healthy, terminal, or exhausted.",http:409,when:"No recipient-owned recoverable delivery matches the opaque id."}}},policy:{auth:"user",pii:[]},sideEffects:{audit:["calendar-intelligence.personal-delivery.retried"]}});
@@ -0,0 +1,6 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as o}from"@lssm/lib.schema";import{docRef as t}from"../../docs/registry.js";import{defineCommand as n}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as a,COMPANYOS_DOMAIN as r,COMPANYOS_OWNERS as i,COMPANYOS_STABILITY as s,COMPANYOS_TAGS as l}from"../constants.js";const c=new o({name:"CompanyOsPersonalBriefingGoogleOAuthCompleteInput",fields:{authorizationCode:{type:e.String_unsecure(),isOptional:!1},state:{type:e.String_unsecure(),isOptional:!1}}}),p=new o({name:"CompanyOsPersonalBriefingGoogleOAuthCompleteOutput",fields:{connected:{type:e.Boolean(),isOptional:!1},redirectUrl:{type:e.String_unsecure(),isOptional:!1}}});export const PersonalBriefingGoogleOAuthCompleteDocBlock={id:"docs.tech.companyos.calendar-intelligence.google-oauth.complete",title:"Complete personal Google Calendar authorization",summary:"Completes signed OAuth state for the same authenticated CompanyOS user.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/calendar-intelligence/google-oauth-complete",tags:["companyos","calendar-intelligence","google-calendar","oauth"],body:`# Complete personal Google Calendar OAuth
2
+
3
+ Signed provider state must resolve to the current user’s personal context and
4
+ server-derived account reference. A mismatched user, tenant, account, state, or
5
+ session is rejected before a personal source is materialized.
6
+ `},PersonalBriefingGoogleOAuthCompleteCommand=n({meta:{key:"calendar-intelligence.personal-google-oauth.complete",title:"Complete Personal Google Calendar OAuth",version:"2.0.0",description:"Complete recipient-owned Google Calendar authorization for Briefings 2.0.",goal:"Persist a personal source only after signed-state and session ownership agree.",context:"Provider code and state are transient; tokens are stored in the existing encrypted OAuth vault.",domain:r,owners:[...i],tags:[...l,"calendar","briefing","oauth"],stability:s,docId:[t(PersonalBriefingGoogleOAuthCompleteDocBlock.id)]},capability:{...a},io:{input:c,output:p,errors:{GOOGLE_OAUTH_REJECTED:{description:"OAuth completion does not match current user authority.",http:400,when:"Signed state, account reference, tenant, session, or code fails."},VERIFIED_EMAIL_REQUIRED:{description:"The current CompanyOS user has no verified email.",http:422,when:"Delivery identity cannot be resolved after OAuth exchange."}}},policy:{auth:"user",pii:["authorizationCode"]},sideEffects:{audit:["calendar-intelligence.personal-google-oauth.completed"]}});
@@ -0,0 +1,6 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as o}from"@lssm/lib.schema";import{docRef as t}from"../../docs/registry.js";import{defineCommand as a}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as n,COMPANYOS_DOMAIN as r,COMPANYOS_OWNERS as i,COMPANYOS_STABILITY as l,COMPANYOS_TAGS as s}from"../constants.js";const c=new o({name:"CompanyOsPersonalBriefingGoogleOAuthStartInput",fields:{reconnect:{type:e.Boolean(),isOptional:!1}}}),d=new o({name:"CompanyOsPersonalBriefingGoogleOAuthStartOutput",fields:{authorizationUrl:{type:e.String_unsecure(),isOptional:!1}}});export const PersonalBriefingGoogleOAuthStartDocBlock={id:"docs.tech.companyos.calendar-intelligence.google-oauth.start",title:"Start personal Google Calendar authorization",summary:"Starts OAuth for the authenticated user’s non-shareable personal CompanyOS context.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/calendar-intelligence/google-oauth-start",tags:["companyos","calendar-intelligence","google-calendar","oauth"],body:`# Start personal Google Calendar OAuth
2
+
3
+ The account reference, user, owner, and personal tenant are server-derived.
4
+ The operation never accepts browser-provided identity selectors and never
5
+ authorizes a workspace booking calendar as a personal source.
6
+ `},PersonalBriefingGoogleOAuthStartCommand=a({meta:{key:"calendar-intelligence.personal-google-oauth.start",title:"Start Personal Google Calendar OAuth",version:"2.0.0",description:"Start recipient-owned Google Calendar authorization for Briefings 2.0.",goal:"Bind Google consent to exactly one authenticated CompanyOS user.",context:"The personal context and opaque account reference are derived server-side.",domain:r,owners:[...i],tags:[...s,"calendar","briefing","oauth"],stability:l,docId:[t(PersonalBriefingGoogleOAuthStartDocBlock.id)]},capability:{...n},io:{input:c,output:d,errors:{PERSONAL_CONTEXT_REQUIRED:{description:"The current user has no enabled personal context.",http:409,when:"Personal context resolution fails closed."},GOOGLE_OAUTH_UNAVAILABLE:{description:"Google Calendar authorization is unavailable.",http:503,when:"OAuth environment or durable state cannot be initialized."}}},policy:{auth:"user",pii:[]},sideEffects:{audit:["calendar-intelligence.personal-google-oauth.started"]}});
@@ -0,0 +1,5 @@
1
+ import{ScalarTypeEnum as o,SchemaModel as e}from"@lssm/lib.schema";import{docRef as n}from"../../docs/registry.js";import{defineCommand as t}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as r,COMPANYOS_DOMAIN as i,COMPANYOS_OWNERS as c,COMPANYOS_STABILITY as a,COMPANYOS_TAGS as s}from"../constants.js";const l=new e({name:"CompanyOsPersonalBriefingMicrosoftDisconnectInput",fields:{}}),d=new e({name:"PersonalMicrosoftDisconnectOutput",fields:{disconnected:{type:o.Boolean(),isOptional:!1}}});export const PersonalBriefingMicrosoftDisconnectDocBlock={id:"docs.tech.companyos.calendar-intelligence.microsoft-calendar.disconnect",title:"Disconnect personal Microsoft Calendar",summary:"Revokes local credentials and disables only the current personal Microsoft connection.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/calendar-intelligence/microsoft-calendar-disconnect",tags:["companyos","calendar-intelligence","microsoft-calendar","oauth"],body:`# Disconnect personal Microsoft Calendar
2
+
3
+ The account reference, user, owner, and personal tenant are server-derived.
4
+ The operation deletes local account credentials and pending authorization state, disables the personal source, and preserves Google data. It does not claim to revoke consent in Microsoft itself. No provider network request is required.
5
+ `},PersonalBriefingMicrosoftDisconnectCommand=t({meta:{key:"calendar-intelligence.personal-microsoft-calendar.disconnect",title:"Disconnect Personal Microsoft Calendar",version:"1.0.0",description:"Disconnect the current personal Microsoft account without provider or encryption-key availability.",goal:"Stop local Microsoft calendar access while preserving other providers and the verified account pin.",context:"The personal context and opaque account reference are derived server-side.",domain:i,owners:[...c],tags:[...s,"calendar","briefing","oauth"],stability:a,docId:[n(PersonalBriefingMicrosoftDisconnectDocBlock.id)]},capability:{...r},io:{input:l,output:d,errors:{PERSONAL_CONTEXT_REQUIRED:{description:"Set up an enabled personal context before connecting.",http:409,when:"No unique enabled personal owner is available."},FORBIDDEN:{description:"The current session no longer authorizes this connection.",http:403,when:"Session or owner reproof fails."},MICROSOFT_CALENDAR_UNAVAILABLE:{description:"Microsoft local disconnection is unavailable.",http:503,when:"Local storage or owner authorization cannot be verified."}}},acceptance:{scenarios:[{key:"personal-owner-bound",given:["An authenticated user has an enabled personal context and configured Microsoft provider"],when:["The user completes the requested connection step"],then:["The exact personal owner is rechecked before commit","No provider credential is returned to the browser"]}]},policy:{auth:"user",pii:[]}});
@@ -0,0 +1,9 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as o}from"@lssm/lib.schema";import{docRef as t}from"../../docs/registry.js";import{defineCommand as n}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as r,COMPANYOS_DOMAIN as i,COMPANYOS_OWNERS as s,COMPANYOS_STABILITY as a,COMPANYOS_TAGS as c}from"../constants.js";const l=new o({name:"CompanyOsPersonalBriefingMicrosoftOAuthCompleteInput",fields:{code:{type:e.String_unsecure(),isOptional:!1},state:{type:e.String_unsecure(),isOptional:!1},session_state:{type:e.String_unsecure(),isOptional:!0}}}),p=new o({name:"CompanyOsPersonalBriefingMicrosoftOAuthCompleteOutput",fields:{connected:{type:e.Boolean(),isOptional:!1}}});export const PersonalBriefingMicrosoftOAuthCompleteDocBlock={id:"docs.tech.companyos.calendar-intelligence.microsoft-oauth.complete",title:"Complete personal Microsoft Calendar authorization",summary:"Completes opaque one-use OAuth state for the same authenticated CompanyOS user.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/calendar-intelligence/microsoft-oauth-complete",tags:["companyos","calendar-intelligence","microsoft-calendar","oauth"],body:`# Complete personal Microsoft Calendar OAuth
2
+
3
+ Opaque one-use provider state must resolve to the current user’s personal context and
4
+ server-derived account reference. A mismatched user, tenant, account, state, or
5
+ session is rejected before credentials are persisted.
6
+ Successful HTML browser callbacks return HTTP 303 to the configured CompanyOS
7
+ settings origin and fixed path, without forwarding callback parameters. JSON
8
+ clients retain the connected boolean response. No caller return URL is accepted.
9
+ `},PersonalBriefingMicrosoftOAuthCompleteCommand=n({meta:{key:"calendar-intelligence.personal-microsoft-oauth.complete",title:"Complete Personal Microsoft Calendar OAuth",version:"1.2.0",description:"Complete recipient-owned Microsoft Calendar authorization for personal connection setup. Calendar discovery is a separate operation.",goal:"Persist a personal credential only after one-use-state and session ownership agree.",context:"Provider code and state are transient; tokens are stored in the owner-bound encrypted Microsoft OAuth vault.",domain:i,owners:[...s],tags:[...c,"calendar","briefing","oauth"],stability:a,docId:[t(PersonalBriefingMicrosoftOAuthCompleteDocBlock.id)]},capability:{...r},io:{input:l,output:p,errors:{PERSONAL_CONTEXT_REQUIRED:{description:"Set up an enabled personal context before connecting.",http:409,when:"No unique enabled personal owner is available."},FORBIDDEN:{description:"The current session no longer authorizes this connection.",http:403,when:"Session or owner reproof fails."},MICROSOFT_OAUTH_REJECTED:{description:"Restart Microsoft connection setup.",http:400,when:"Callback, one-use state, or verifier is invalid or expired."},MICROSOFT_CALENDAR_UNAVAILABLE:{description:"Microsoft connection could not be completed.",http:503,when:"Configuration, state, provider identity, or owner reproof fails closed."}}},acceptance:{scenarios:[{key:"personal-owner-bound",given:["An authenticated user has an enabled personal context and configured Microsoft provider"],when:["The user completes the requested connection step"],then:["The exact personal owner is rechecked before commit","No provider credential is returned to the browser"]}]},policy:{auth:"user",pii:["code","state"]}});
@@ -0,0 +1,6 @@
1
+ import{ScalarTypeEnum as o,SchemaModel as e}from"@lssm/lib.schema";import{docRef as t}from"../../docs/registry.js";import{defineCommand as n}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as r,COMPANYOS_DOMAIN as a,COMPANYOS_OWNERS as i,COMPANYOS_STABILITY as s,COMPANYOS_TAGS as c}from"../constants.js";const l=new e({name:"CompanyOsPersonalBriefingMicrosoftOAuthStartInput",fields:{}}),d=new e({name:"CompanyOsPersonalBriefingMicrosoftOAuthStartOutput",fields:{authorizationUrl:{type:o.String_unsecure(),isOptional:!1}}});export const PersonalBriefingMicrosoftOAuthStartDocBlock={id:"docs.tech.companyos.calendar-intelligence.microsoft-oauth.start",title:"Start personal Microsoft Calendar authorization",summary:"Starts OAuth for the authenticated user’s non-shareable personal CompanyOS context.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/calendar-intelligence/microsoft-oauth-start",tags:["companyos","calendar-intelligence","microsoft-calendar","oauth"],body:`# Start personal Microsoft Calendar OAuth
2
+
3
+ The account reference, user, owner, and personal tenant are server-derived.
4
+ The operation never accepts browser-provided identity selectors and never
5
+ authorizes a workspace booking calendar as a personal source.
6
+ `},PersonalBriefingMicrosoftOAuthStartCommand=n({meta:{key:"calendar-intelligence.personal-microsoft-oauth.start",title:"Start Personal Microsoft Calendar OAuth",version:"1.1.0",description:"Start recipient-owned Microsoft Calendar authorization for personal connection setup. Calendar discovery is a separate operation.",goal:"Bind Microsoft consent to exactly one authenticated CompanyOS user.",context:"The personal context and opaque account reference are derived server-side.",domain:a,owners:[...i],tags:[...c,"calendar","briefing","oauth"],stability:s,docId:[t(PersonalBriefingMicrosoftOAuthStartDocBlock.id)]},capability:{...r},io:{input:l,output:d,errors:{PERSONAL_CONTEXT_REQUIRED:{description:"Set up an enabled personal context before connecting.",http:409,when:"No unique enabled personal owner is available."},FORBIDDEN:{description:"The current session no longer authorizes this connection.",http:403,when:"Session or owner reproof fails."},MICROSOFT_OAUTH_REJECTED:{description:"Restart Microsoft connection setup.",http:400,when:"Callback, one-use state, or verifier is invalid or expired."},MICROSOFT_CALENDAR_UNAVAILABLE:{description:"Microsoft Calendar authorization is unavailable.",http:503,when:"OAuth environment or durable state cannot be initialized."}}},acceptance:{scenarios:[{key:"personal-owner-bound",given:["An authenticated user has an enabled personal context and configured Microsoft provider"],when:["The user completes the requested connection step"],then:["The exact personal owner is rechecked before commit","No provider credential is returned to the browser"]}]},policy:{auth:"user",pii:[]}});
@@ -0,0 +1,11 @@
1
+ import{ScalarTypeEnum as e,SchemaModel as n}from"@lssm/lib.schema";import{docRef as r}from"../../docs/registry.js";import{defineCommand as i}from"../../operations/index.js";import{COMPANYOS_CAPABILITY as t,COMPANYOS_DOMAIN as a,COMPANYOS_OWNERS as o,COMPANYOS_STABILITY as s,COMPANYOS_TAGS as l}from"../constants.js";const p=new n({name:"CompanyOsPersonalBriefingPreferencesUpdateInput",fields:{locale:{type:e.String_unsecure(),isOptional:!1},timezone:{type:e.String_unsecure(),isOptional:!1},morningTime:{type:e.String_unsecure(),isOptional:!1},preparationLeadMinutes:{type:e.Int_unsecure(),isOptional:!1},morningEnabled:{type:e.Boolean(),isOptional:!1},preparationEnabled:{type:e.Boolean(),isOptional:!1},graphEnrichmentEnabled:{type:e.Boolean(),isOptional:!1},deliveryChannels:{type:e.String_unsecure(),isOptional:!1,isArray:!0}}});export const PersonalBriefingPreferencesUpdateDocBlock={id:"docs.tech.companyos.calendar-intelligence.personal-preferences.update",title:"Update personal briefing preferences",summary:"Updates only the authenticated user’s locale, timezone, cadence, enablement, and delivery channels.",kind:"reference",visibility:"internal",route:"/docs/tech/companyos/calendar-intelligence/personal-preferences-update",tags:["companyos","calendar-intelligence","briefings","privacy"],body:`# Personal briefing preferences
2
+
3
+ The server derives the user, personal context, and verified delivery address.
4
+ Browser payloads cannot select another user, tenant, owner, or recipient.
5
+
6
+ Compatibility intent: **additive minor** in
7
+ \`companyos.calendar-intelligence@3.1.0\`. The server derives delivery rollout
8
+ from setup readiness and the two delivery toggles. Workspace briefing
9
+ preferences are not read or migrated into the personal delivery runtime. The
10
+ durable in-app route is mandatory and the user may additionally select email.
11
+ `};const c=new n({name:"CompanyOsPersonalBriefingPreferencesUpdateOutput",fields:{updated:{type:e.Boolean(),isOptional:!1},setupState:{type:e.String_unsecure(),isOptional:!1},rolloutState:{type:e.String_unsecure(),isOptional:!1}}});export const PersonalBriefingPreferencesUpdateCommand=i({meta:{key:"calendar-intelligence.personal-preferences.update",title:"Update Personal Briefing Preferences",version:"3.1.0",description:"Update locale, timezone, cadence, enablement, and delivery channels for recipient-owned briefings.",goal:"Give each recipient explicit control without accepting user, tenant, or owner identifiers.",context:"The server derives the personal context and verified delivery address from the authenticated session.",domain:a,owners:[...o],tags:[...l,"calendar","briefing","preferences"],stability:s,docId:[r(PersonalBriefingPreferencesUpdateDocBlock.id)]},capability:{...t},io:{input:p,output:c,errors:{INVALID_PREFERENCES:{description:"Locale, timezone, cadence, or enablement is invalid.",http:422,when:"The bounded preference schema does not validate."},VERIFIED_EMAIL_REQUIRED:{description:"The current user has no verified delivery address.",http:422,when:"No current verified CompanyOS email can be resolved."}}},policy:{auth:"user",pii:[]},sideEffects:{audit:["calendar-intelligence.personal-preferences.updated"]}});