@contractspec/example.agent-console 1.57.0 → 1.58.0

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 (386) hide show
  1. package/.turbo/turbo-build.log +210 -278
  2. package/.turbo/turbo-prebuild.log +1 -0
  3. package/CHANGELOG.md +16 -0
  4. package/dist/agent/agent.entity.d.ts +35 -40
  5. package/dist/agent/agent.entity.d.ts.map +1 -1
  6. package/dist/agent/agent.entity.js +124 -132
  7. package/dist/agent/agent.enum.d.ts +3 -8
  8. package/dist/agent/agent.enum.d.ts.map +1 -1
  9. package/dist/agent/agent.enum.js +22 -30
  10. package/dist/agent/agent.event.d.ts +105 -111
  11. package/dist/agent/agent.event.d.ts.map +1 -1
  12. package/dist/agent/agent.event.js +107 -200
  13. package/dist/agent/agent.handler.d.ts +74 -77
  14. package/dist/agent/agent.handler.d.ts.map +1 -1
  15. package/dist/agent/agent.handler.js +293 -75
  16. package/dist/agent/agent.operation.d.ts +424 -430
  17. package/dist/agent/agent.operation.d.ts.map +1 -1
  18. package/dist/agent/agent.operation.js +728 -478
  19. package/dist/agent/agent.presentation.d.ts +3 -8
  20. package/dist/agent/agent.presentation.d.ts.map +1 -1
  21. package/dist/agent/agent.presentation.js +275 -84
  22. package/dist/agent/agent.schema.d.ts +371 -376
  23. package/dist/agent/agent.schema.d.ts.map +1 -1
  24. package/dist/agent/agent.schema.js +209 -399
  25. package/dist/agent/agent.test-spec.d.ts +2 -7
  26. package/dist/agent/agent.test-spec.d.ts.map +1 -1
  27. package/dist/agent/agent.test-spec.js +56 -62
  28. package/dist/agent/index.d.ts +11 -8
  29. package/dist/agent/index.d.ts.map +1 -0
  30. package/dist/agent/index.js +1245 -9
  31. package/dist/agent.capability.d.ts +1 -6
  32. package/dist/agent.capability.d.ts.map +1 -1
  33. package/dist/agent.capability.js +17 -20
  34. package/dist/agent.feature.d.ts +7 -6
  35. package/dist/agent.feature.d.ts.map +1 -1
  36. package/dist/agent.feature.js +117 -303
  37. package/dist/browser/agent/agent.entity.js +127 -0
  38. package/dist/browser/agent/agent.enum.js +25 -0
  39. package/dist/browser/agent/agent.event.js +116 -0
  40. package/dist/browser/agent/agent.handler.js +301 -0
  41. package/dist/browser/agent/agent.operation.js +735 -0
  42. package/dist/browser/agent/agent.presentation.js +279 -0
  43. package/dist/browser/agent/agent.schema.js +215 -0
  44. package/dist/browser/agent/agent.test-spec.js +58 -0
  45. package/dist/browser/agent/index.js +1244 -0
  46. package/dist/browser/agent.capability.js +16 -0
  47. package/dist/browser/agent.feature.js +118 -0
  48. package/dist/browser/docs/agent-console.docblock.js +93 -0
  49. package/dist/browser/docs/index.js +93 -0
  50. package/dist/browser/example.js +42 -0
  51. package/dist/browser/handlers/agent.handlers.js +252 -0
  52. package/dist/browser/handlers/index.js +799 -0
  53. package/dist/browser/index.js +5895 -0
  54. package/dist/browser/presentations/index.js +684 -0
  55. package/dist/browser/run/index.js +1350 -0
  56. package/dist/browser/run/run.entity.js +160 -0
  57. package/dist/browser/run/run.enum.js +34 -0
  58. package/dist/browser/run/run.event.js +213 -0
  59. package/dist/browser/run/run.handler.js +254 -0
  60. package/dist/browser/run/run.operation.js +667 -0
  61. package/dist/browser/run/run.presentation.js +220 -0
  62. package/dist/browser/run/run.schema.js +179 -0
  63. package/dist/browser/run/run.test-spec.js +58 -0
  64. package/dist/browser/seeders/index.js +21 -0
  65. package/dist/browser/shared/index.js +334 -0
  66. package/dist/browser/shared/mock-agents.js +82 -0
  67. package/dist/browser/shared/mock-runs.js +108 -0
  68. package/dist/browser/shared/mock-tools.js +146 -0
  69. package/dist/browser/shared/overlay-types.js +0 -0
  70. package/dist/browser/tool/index.js +946 -0
  71. package/dist/browser/tool/tool.entity.js +90 -0
  72. package/dist/browser/tool/tool.enum.js +26 -0
  73. package/dist/browser/tool/tool.event.js +99 -0
  74. package/dist/browser/tool/tool.handler.js +223 -0
  75. package/dist/browser/tool/tool.operation.js +482 -0
  76. package/dist/browser/tool/tool.presentation.js +185 -0
  77. package/dist/browser/tool/tool.schema.js +141 -0
  78. package/dist/browser/tool/tool.test-spec.js +58 -0
  79. package/dist/browser/ui/AgentDashboard.js +1607 -0
  80. package/dist/browser/ui/AgentRunList.js +250 -0
  81. package/dist/browser/ui/AgentToolRegistry.js +212 -0
  82. package/dist/browser/ui/hooks/index.js +271 -0
  83. package/dist/browser/ui/hooks/useAgentList.js +55 -0
  84. package/dist/browser/ui/hooks/useAgentMutations.js +76 -0
  85. package/dist/browser/ui/hooks/useRunList.js +55 -0
  86. package/dist/browser/ui/hooks/useToolList.js +85 -0
  87. package/dist/browser/ui/index.js +2080 -0
  88. package/dist/browser/ui/modals/AgentActionsModal.js +304 -0
  89. package/dist/browser/ui/modals/CreateAgentModal.js +229 -0
  90. package/dist/browser/ui/modals/index.js +532 -0
  91. package/dist/browser/ui/overlays/demo-overlays.js +64 -0
  92. package/dist/browser/ui/overlays/index.js +64 -0
  93. package/dist/browser/ui/renderers/agent-list.markdown.js +55 -0
  94. package/dist/browser/ui/renderers/agent-list.renderer.js +180 -0
  95. package/dist/browser/ui/renderers/dashboard.markdown.js +117 -0
  96. package/dist/browser/ui/renderers/index.js +446 -0
  97. package/dist/browser/ui/renderers/run-list.markdown.js +45 -0
  98. package/dist/browser/ui/renderers/tool-registry.markdown.js +53 -0
  99. package/dist/browser/ui/views/AgentListView.js +165 -0
  100. package/dist/browser/ui/views/RunListView.js +247 -0
  101. package/dist/browser/ui/views/ToolRegistryView.js +209 -0
  102. package/dist/browser/ui/views/index.js +619 -0
  103. package/dist/docs/agent-console.docblock.d.ts +2 -1
  104. package/dist/docs/agent-console.docblock.d.ts.map +1 -0
  105. package/dist/docs/agent-console.docblock.js +45 -64
  106. package/dist/docs/index.d.ts +2 -1
  107. package/dist/docs/index.d.ts.map +1 -0
  108. package/dist/docs/index.js +94 -1
  109. package/dist/example.d.ts +2 -6
  110. package/dist/example.d.ts.map +1 -1
  111. package/dist/example.js +41 -55
  112. package/dist/handlers/agent.handlers.d.ts +121 -120
  113. package/dist/handlers/agent.handlers.d.ts.map +1 -1
  114. package/dist/handlers/agent.handlers.js +235 -245
  115. package/dist/handlers/index.d.ts +8 -5
  116. package/dist/handlers/index.d.ts.map +1 -0
  117. package/dist/handlers/index.js +799 -5
  118. package/dist/index.d.ts +26 -48
  119. package/dist/index.d.ts.map +1 -0
  120. package/dist/index.js +5896 -50
  121. package/dist/node/agent/agent.entity.js +127 -0
  122. package/dist/node/agent/agent.enum.js +25 -0
  123. package/dist/node/agent/agent.event.js +116 -0
  124. package/dist/node/agent/agent.handler.js +301 -0
  125. package/dist/node/agent/agent.operation.js +735 -0
  126. package/dist/node/agent/agent.presentation.js +279 -0
  127. package/dist/node/agent/agent.schema.js +215 -0
  128. package/dist/node/agent/agent.test-spec.js +58 -0
  129. package/dist/node/agent/index.js +1244 -0
  130. package/dist/node/agent.capability.js +16 -0
  131. package/dist/node/agent.feature.js +118 -0
  132. package/dist/node/docs/agent-console.docblock.js +93 -0
  133. package/dist/node/docs/index.js +93 -0
  134. package/dist/node/example.js +42 -0
  135. package/dist/node/handlers/agent.handlers.js +252 -0
  136. package/dist/node/handlers/index.js +799 -0
  137. package/dist/node/index.js +5895 -0
  138. package/dist/node/presentations/index.js +684 -0
  139. package/dist/node/run/index.js +1350 -0
  140. package/dist/node/run/run.entity.js +160 -0
  141. package/dist/node/run/run.enum.js +34 -0
  142. package/dist/node/run/run.event.js +213 -0
  143. package/dist/node/run/run.handler.js +254 -0
  144. package/dist/node/run/run.operation.js +667 -0
  145. package/dist/node/run/run.presentation.js +220 -0
  146. package/dist/node/run/run.schema.js +179 -0
  147. package/dist/node/run/run.test-spec.js +58 -0
  148. package/dist/node/seeders/index.js +21 -0
  149. package/dist/node/shared/index.js +334 -0
  150. package/dist/node/shared/mock-agents.js +82 -0
  151. package/dist/node/shared/mock-runs.js +108 -0
  152. package/dist/node/shared/mock-tools.js +146 -0
  153. package/dist/node/shared/overlay-types.js +0 -0
  154. package/dist/node/tool/index.js +946 -0
  155. package/dist/node/tool/tool.entity.js +90 -0
  156. package/dist/node/tool/tool.enum.js +26 -0
  157. package/dist/node/tool/tool.event.js +99 -0
  158. package/dist/node/tool/tool.handler.js +223 -0
  159. package/dist/node/tool/tool.operation.js +482 -0
  160. package/dist/node/tool/tool.presentation.js +185 -0
  161. package/dist/node/tool/tool.schema.js +141 -0
  162. package/dist/node/tool/tool.test-spec.js +58 -0
  163. package/dist/node/ui/AgentDashboard.js +1607 -0
  164. package/dist/node/ui/AgentRunList.js +250 -0
  165. package/dist/node/ui/AgentToolRegistry.js +212 -0
  166. package/dist/node/ui/hooks/index.js +271 -0
  167. package/dist/node/ui/hooks/useAgentList.js +55 -0
  168. package/dist/node/ui/hooks/useAgentMutations.js +76 -0
  169. package/dist/node/ui/hooks/useRunList.js +55 -0
  170. package/dist/node/ui/hooks/useToolList.js +85 -0
  171. package/dist/node/ui/index.js +2080 -0
  172. package/dist/node/ui/modals/AgentActionsModal.js +304 -0
  173. package/dist/node/ui/modals/CreateAgentModal.js +229 -0
  174. package/dist/node/ui/modals/index.js +532 -0
  175. package/dist/node/ui/overlays/demo-overlays.js +64 -0
  176. package/dist/node/ui/overlays/index.js +64 -0
  177. package/dist/node/ui/renderers/agent-list.markdown.js +55 -0
  178. package/dist/node/ui/renderers/agent-list.renderer.js +180 -0
  179. package/dist/node/ui/renderers/dashboard.markdown.js +117 -0
  180. package/dist/node/ui/renderers/index.js +446 -0
  181. package/dist/node/ui/renderers/run-list.markdown.js +45 -0
  182. package/dist/node/ui/renderers/tool-registry.markdown.js +53 -0
  183. package/dist/node/ui/views/AgentListView.js +165 -0
  184. package/dist/node/ui/views/RunListView.js +247 -0
  185. package/dist/node/ui/views/ToolRegistryView.js +209 -0
  186. package/dist/node/ui/views/index.js +619 -0
  187. package/dist/presentations/index.d.ts +9 -4
  188. package/dist/presentations/index.d.ts.map +1 -0
  189. package/dist/presentations/index.js +684 -4
  190. package/dist/run/index.d.ts +11 -8
  191. package/dist/run/index.d.ts.map +1 -0
  192. package/dist/run/index.js +1351 -9
  193. package/dist/run/run.entity.d.ts +55 -60
  194. package/dist/run/run.entity.d.ts.map +1 -1
  195. package/dist/run/run.entity.js +155 -199
  196. package/dist/run/run.enum.d.ts +4 -9
  197. package/dist/run/run.enum.d.ts.map +1 -1
  198. package/dist/run/run.enum.js +30 -40
  199. package/dist/run/run.event.d.ts +255 -261
  200. package/dist/run/run.event.d.ts.map +1 -1
  201. package/dist/run/run.event.js +198 -418
  202. package/dist/run/run.handler.d.ts +169 -172
  203. package/dist/run/run.handler.d.ts.map +1 -1
  204. package/dist/run/run.handler.js +246 -74
  205. package/dist/run/run.operation.d.ts +658 -664
  206. package/dist/run/run.operation.d.ts.map +1 -1
  207. package/dist/run/run.operation.js +659 -617
  208. package/dist/run/run.presentation.d.ts +2 -7
  209. package/dist/run/run.presentation.d.ts.map +1 -1
  210. package/dist/run/run.presentation.js +217 -61
  211. package/dist/run/run.schema.d.ts +367 -372
  212. package/dist/run/run.schema.d.ts.map +1 -1
  213. package/dist/run/run.schema.js +172 -330
  214. package/dist/run/run.test-spec.d.ts +2 -7
  215. package/dist/run/run.test-spec.d.ts.map +1 -1
  216. package/dist/run/run.test-spec.js +56 -62
  217. package/dist/seeders/index.d.ts +4 -8
  218. package/dist/seeders/index.d.ts.map +1 -1
  219. package/dist/seeders/index.js +19 -17
  220. package/dist/shared/index.d.ts +7 -4
  221. package/dist/shared/index.d.ts.map +1 -0
  222. package/dist/shared/index.js +334 -4
  223. package/dist/shared/mock-agents.d.ts +77 -80
  224. package/dist/shared/mock-agents.d.ts.map +1 -1
  225. package/dist/shared/mock-agents.js +82 -93
  226. package/dist/shared/mock-runs.d.ts +107 -110
  227. package/dist/shared/mock-runs.d.ts.map +1 -1
  228. package/dist/shared/mock-runs.js +108 -117
  229. package/dist/shared/mock-tools.d.ts +217 -220
  230. package/dist/shared/mock-tools.d.ts.map +1 -1
  231. package/dist/shared/mock-tools.js +146 -180
  232. package/dist/shared/overlay-types.d.ts +25 -28
  233. package/dist/shared/overlay-types.d.ts.map +1 -1
  234. package/dist/shared/overlay-types.js +1 -0
  235. package/dist/tool/index.d.ts +11 -8
  236. package/dist/tool/index.d.ts.map +1 -0
  237. package/dist/tool/index.js +947 -9
  238. package/dist/tool/tool.entity.d.ts +23 -28
  239. package/dist/tool/tool.entity.d.ts.map +1 -1
  240. package/dist/tool/tool.entity.js +87 -101
  241. package/dist/tool/tool.enum.d.ts +3 -8
  242. package/dist/tool/tool.enum.d.ts.map +1 -1
  243. package/dist/tool/tool.enum.js +23 -31
  244. package/dist/tool/tool.event.d.ts +84 -90
  245. package/dist/tool/tool.event.d.ts.map +1 -1
  246. package/dist/tool/tool.event.js +92 -151
  247. package/dist/tool/tool.handler.d.ts +266 -269
  248. package/dist/tool/tool.handler.d.ts.map +1 -1
  249. package/dist/tool/tool.handler.js +213 -76
  250. package/dist/tool/tool.operation.d.ts +359 -365
  251. package/dist/tool/tool.operation.d.ts.map +1 -1
  252. package/dist/tool/tool.operation.js +477 -400
  253. package/dist/tool/tool.presentation.d.ts +2 -7
  254. package/dist/tool/tool.presentation.d.ts.map +1 -1
  255. package/dist/tool/tool.presentation.js +182 -61
  256. package/dist/tool/tool.schema.d.ts +196 -201
  257. package/dist/tool/tool.schema.d.ts.map +1 -1
  258. package/dist/tool/tool.schema.js +137 -231
  259. package/dist/tool/tool.test-spec.d.ts +2 -7
  260. package/dist/tool/tool.test-spec.d.ts.map +1 -1
  261. package/dist/tool/tool.test-spec.js +56 -62
  262. package/dist/ui/AgentDashboard.d.ts +1 -6
  263. package/dist/ui/AgentDashboard.d.ts.map +1 -1
  264. package/dist/ui/AgentDashboard.js +1598 -410
  265. package/dist/ui/AgentRunList.d.ts +7 -2
  266. package/dist/ui/AgentRunList.d.ts.map +1 -0
  267. package/dist/ui/AgentRunList.js +249 -3
  268. package/dist/ui/AgentToolRegistry.d.ts +7 -2
  269. package/dist/ui/AgentToolRegistry.d.ts.map +1 -0
  270. package/dist/ui/AgentToolRegistry.js +211 -3
  271. package/dist/ui/hooks/index.d.ts +8 -6
  272. package/dist/ui/hooks/index.d.ts.map +1 -0
  273. package/dist/ui/hooks/index.js +270 -6
  274. package/dist/ui/hooks/useAgentList.d.ts +21 -25
  275. package/dist/ui/hooks/useAgentList.d.ts.map +1 -1
  276. package/dist/ui/hooks/useAgentList.js +52 -62
  277. package/dist/ui/hooks/useAgentMutations.d.ts +22 -25
  278. package/dist/ui/hooks/useAgentMutations.d.ts.map +1 -1
  279. package/dist/ui/hooks/useAgentMutations.js +73 -120
  280. package/dist/ui/hooks/useRunList.d.ts +17 -21
  281. package/dist/ui/hooks/useRunList.d.ts.map +1 -1
  282. package/dist/ui/hooks/useRunList.js +52 -62
  283. package/dist/ui/hooks/useToolList.d.ts +32 -36
  284. package/dist/ui/hooks/useToolList.d.ts.map +1 -1
  285. package/dist/ui/hooks/useToolList.js +82 -92
  286. package/dist/ui/index.d.ts +9 -24
  287. package/dist/ui/index.d.ts.map +1 -0
  288. package/dist/ui/index.js +2081 -24
  289. package/dist/ui/modals/AgentActionsModal.d.ts +11 -24
  290. package/dist/ui/modals/AgentActionsModal.d.ts.map +1 -1
  291. package/dist/ui/modals/AgentActionsModal.js +300 -257
  292. package/dist/ui/modals/CreateAgentModal.d.ts +12 -21
  293. package/dist/ui/modals/CreateAgentModal.d.ts.map +1 -1
  294. package/dist/ui/modals/CreateAgentModal.js +226 -210
  295. package/dist/ui/modals/index.d.ts +3 -3
  296. package/dist/ui/modals/index.d.ts.map +1 -0
  297. package/dist/ui/modals/index.js +532 -3
  298. package/dist/ui/overlays/demo-overlays.d.ts +10 -8
  299. package/dist/ui/overlays/demo-overlays.d.ts.map +1 -1
  300. package/dist/ui/overlays/demo-overlays.js +63 -71
  301. package/dist/ui/overlays/index.d.ts +2 -2
  302. package/dist/ui/overlays/index.d.ts.map +1 -0
  303. package/dist/ui/overlays/index.js +65 -3
  304. package/dist/ui/renderers/agent-list.markdown.d.ts +9 -8
  305. package/dist/ui/renderers/agent-list.markdown.d.ts.map +1 -1
  306. package/dist/ui/renderers/agent-list.markdown.js +55 -50
  307. package/dist/ui/renderers/agent-list.renderer.d.ts +5 -6
  308. package/dist/ui/renderers/agent-list.renderer.d.ts.map +1 -1
  309. package/dist/ui/renderers/agent-list.renderer.js +179 -17
  310. package/dist/ui/renderers/dashboard.markdown.d.ts +9 -8
  311. package/dist/ui/renderers/dashboard.markdown.d.ts.map +1 -1
  312. package/dist/ui/renderers/dashboard.markdown.js +115 -97
  313. package/dist/ui/renderers/index.d.ts +9 -6
  314. package/dist/ui/renderers/index.d.ts.map +1 -0
  315. package/dist/ui/renderers/index.js +446 -6
  316. package/dist/ui/renderers/run-list.markdown.d.ts +9 -8
  317. package/dist/ui/renderers/run-list.markdown.d.ts.map +1 -1
  318. package/dist/ui/renderers/run-list.markdown.js +42 -40
  319. package/dist/ui/renderers/tool-registry.markdown.d.ts +9 -8
  320. package/dist/ui/renderers/tool-registry.markdown.d.ts.map +1 -1
  321. package/dist/ui/renderers/tool-registry.markdown.js +52 -53
  322. package/dist/ui/views/AgentListView.d.ts +1 -6
  323. package/dist/ui/views/AgentListView.d.ts.map +1 -1
  324. package/dist/ui/views/AgentListView.js +161 -88
  325. package/dist/ui/views/RunListView.d.ts +4 -11
  326. package/dist/ui/views/RunListView.d.ts.map +1 -1
  327. package/dist/ui/views/RunListView.js +237 -154
  328. package/dist/ui/views/ToolRegistryView.d.ts +4 -11
  329. package/dist/ui/views/ToolRegistryView.d.ts.map +1 -1
  330. package/dist/ui/views/ToolRegistryView.js +205 -92
  331. package/dist/ui/views/index.d.ts +7 -4
  332. package/dist/ui/views/index.d.ts.map +1 -0
  333. package/dist/ui/views/index.js +619 -4
  334. package/package.json +656 -118
  335. package/tsdown.config.js +1 -2
  336. package/.turbo/turbo-build$colon$bundle.log +0 -285
  337. package/dist/agent/agent.entity.js.map +0 -1
  338. package/dist/agent/agent.enum.js.map +0 -1
  339. package/dist/agent/agent.event.js.map +0 -1
  340. package/dist/agent/agent.handler.js.map +0 -1
  341. package/dist/agent/agent.operation.js.map +0 -1
  342. package/dist/agent/agent.presentation.js.map +0 -1
  343. package/dist/agent/agent.schema.js.map +0 -1
  344. package/dist/agent/agent.test-spec.js.map +0 -1
  345. package/dist/agent.capability.js.map +0 -1
  346. package/dist/agent.feature.js.map +0 -1
  347. package/dist/docs/agent-console.docblock.js.map +0 -1
  348. package/dist/example.js.map +0 -1
  349. package/dist/handlers/agent.handlers.js.map +0 -1
  350. package/dist/run/run.entity.js.map +0 -1
  351. package/dist/run/run.enum.js.map +0 -1
  352. package/dist/run/run.event.js.map +0 -1
  353. package/dist/run/run.handler.js.map +0 -1
  354. package/dist/run/run.operation.js.map +0 -1
  355. package/dist/run/run.presentation.js.map +0 -1
  356. package/dist/run/run.schema.js.map +0 -1
  357. package/dist/run/run.test-spec.js.map +0 -1
  358. package/dist/seeders/index.js.map +0 -1
  359. package/dist/shared/mock-agents.js.map +0 -1
  360. package/dist/shared/mock-runs.js.map +0 -1
  361. package/dist/shared/mock-tools.js.map +0 -1
  362. package/dist/tool/tool.entity.js.map +0 -1
  363. package/dist/tool/tool.enum.js.map +0 -1
  364. package/dist/tool/tool.event.js.map +0 -1
  365. package/dist/tool/tool.handler.js.map +0 -1
  366. package/dist/tool/tool.operation.js.map +0 -1
  367. package/dist/tool/tool.presentation.js.map +0 -1
  368. package/dist/tool/tool.schema.js.map +0 -1
  369. package/dist/tool/tool.test-spec.js.map +0 -1
  370. package/dist/ui/AgentDashboard.js.map +0 -1
  371. package/dist/ui/hooks/useAgentList.js.map +0 -1
  372. package/dist/ui/hooks/useAgentMutations.js.map +0 -1
  373. package/dist/ui/hooks/useRunList.js.map +0 -1
  374. package/dist/ui/hooks/useToolList.js.map +0 -1
  375. package/dist/ui/modals/AgentActionsModal.js.map +0 -1
  376. package/dist/ui/modals/CreateAgentModal.js.map +0 -1
  377. package/dist/ui/overlays/demo-overlays.js.map +0 -1
  378. package/dist/ui/renderers/agent-list.markdown.js.map +0 -1
  379. package/dist/ui/renderers/agent-list.renderer.js.map +0 -1
  380. package/dist/ui/renderers/dashboard.markdown.js.map +0 -1
  381. package/dist/ui/renderers/run-list.markdown.js.map +0 -1
  382. package/dist/ui/renderers/tool-registry.markdown.js.map +0 -1
  383. package/dist/ui/views/AgentListView.js.map +0 -1
  384. package/dist/ui/views/RunListView.js.map +0 -1
  385. package/dist/ui/views/ToolRegistryView.js.map +0 -1
  386. package/tsconfig.tsbuildinfo +0 -1
@@ -1,411 +1,405 @@
1
- import * as _contractspec_lib_contracts0 from "@contractspec/lib.contracts";
2
- import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
3
-
4
- //#region src/tool/tool.operation.d.ts
5
1
  /**
6
2
  * CreateToolCommand - Creates a new tool definition.
7
3
  */
8
- declare const CreateToolCommand: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
9
- organizationId: {
10
- type: _contractspec_lib_schema0.FieldType<string, string>;
11
- isOptional: false;
12
- };
13
- name: {
14
- type: _contractspec_lib_schema0.FieldType<string, string>;
15
- isOptional: false;
16
- };
17
- slug: {
18
- type: _contractspec_lib_schema0.FieldType<string, string>;
19
- isOptional: false;
20
- };
21
- description: {
22
- type: _contractspec_lib_schema0.FieldType<string, string>;
23
- isOptional: false;
24
- };
25
- category: {
26
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string, string, string]>;
27
- isOptional: true;
28
- };
29
- parametersSchema: {
30
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
31
- isOptional: false;
32
- };
33
- outputSchema: {
34
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
35
- isOptional: true;
36
- };
37
- implementationType: {
38
- type: _contractspec_lib_schema0.EnumType<[string, string, string]>;
39
- isOptional: false;
40
- };
41
- implementationConfig: {
42
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
43
- isOptional: false;
44
- };
45
- maxInvocationsPerMinute: {
46
- type: _contractspec_lib_schema0.FieldType<number, number>;
47
- isOptional: true;
48
- };
49
- timeoutMs: {
50
- type: _contractspec_lib_schema0.FieldType<number, number>;
51
- isOptional: true;
52
- };
53
- tags: {
54
- type: _contractspec_lib_schema0.FieldType<string, string>;
55
- isArray: true;
56
- isOptional: true;
57
- };
58
- }>, _contractspec_lib_schema0.SchemaModel<{
59
- id: {
60
- type: _contractspec_lib_schema0.FieldType<string, string>;
61
- isOptional: false;
62
- };
63
- name: {
64
- type: _contractspec_lib_schema0.FieldType<string, string>;
65
- isOptional: false;
66
- };
67
- slug: {
68
- type: _contractspec_lib_schema0.FieldType<string, string>;
69
- isOptional: false;
70
- };
71
- status: {
72
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
73
- isOptional: false;
74
- };
75
- }>, {
76
- key: string;
77
- version: string;
78
- stability: string;
79
- owners: "@agent-console-team"[];
80
- tags: string[];
81
- when: string;
82
- payload: _contractspec_lib_schema0.SchemaModel<{
83
- id: {
84
- type: _contractspec_lib_schema0.FieldType<string, string>;
85
- isOptional: false;
4
+ export declare const CreateToolCommand: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
5
+ organizationId: {
6
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
7
+ isOptional: false;
86
8
  };
87
9
  name: {
88
- type: _contractspec_lib_schema0.FieldType<string, string>;
89
- isOptional: false;
10
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
11
+ isOptional: false;
90
12
  };
91
13
  slug: {
92
- type: _contractspec_lib_schema0.FieldType<string, string>;
93
- isOptional: false;
14
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
15
+ isOptional: false;
94
16
  };
95
17
  description: {
96
- type: _contractspec_lib_schema0.FieldType<string, string>;
97
- isOptional: false;
18
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
19
+ isOptional: false;
98
20
  };
99
21
  category: {
100
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string, string, string]>;
101
- isOptional: false;
22
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string, string]>;
23
+ isOptional: true;
102
24
  };
103
- status: {
104
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
105
- isOptional: false;
25
+ parametersSchema: {
26
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
27
+ isOptional: false;
106
28
  };
107
- version: {
108
- type: _contractspec_lib_schema0.FieldType<string, string>;
109
- isOptional: false;
29
+ outputSchema: {
30
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
31
+ isOptional: true;
110
32
  };
111
- createdAt: {
112
- type: _contractspec_lib_schema0.FieldType<Date, string>;
113
- isOptional: false;
33
+ implementationType: {
34
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
35
+ isOptional: false;
36
+ };
37
+ implementationConfig: {
38
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
39
+ isOptional: false;
40
+ };
41
+ maxInvocationsPerMinute: {
42
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
43
+ isOptional: true;
44
+ };
45
+ timeoutMs: {
46
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
47
+ isOptional: true;
114
48
  };
115
- }>;
49
+ tags: {
50
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
51
+ isArray: true;
52
+ isOptional: true;
53
+ };
54
+ }>, import("@contractspec/lib.schema").SchemaModel<{
55
+ id: {
56
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
57
+ isOptional: false;
58
+ };
59
+ name: {
60
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
61
+ isOptional: false;
62
+ };
63
+ slug: {
64
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
65
+ isOptional: false;
66
+ };
67
+ status: {
68
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
69
+ isOptional: false;
70
+ };
71
+ }>, {
72
+ key: string;
73
+ version: string;
74
+ stability: string;
75
+ owners: "@agent-console-team"[];
76
+ tags: string[];
77
+ when: string;
78
+ payload: import("@contractspec/lib.schema").SchemaModel<{
79
+ id: {
80
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
81
+ isOptional: false;
82
+ };
83
+ name: {
84
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
85
+ isOptional: false;
86
+ };
87
+ slug: {
88
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
89
+ isOptional: false;
90
+ };
91
+ description: {
92
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
93
+ isOptional: false;
94
+ };
95
+ category: {
96
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string, string]>;
97
+ isOptional: false;
98
+ };
99
+ status: {
100
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
101
+ isOptional: false;
102
+ };
103
+ version: {
104
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
105
+ isOptional: false;
106
+ };
107
+ createdAt: {
108
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
109
+ isOptional: false;
110
+ };
111
+ }>;
116
112
  }[]>;
117
113
  /**
118
114
  * UpdateToolCommand - Updates an existing tool.
119
115
  */
120
- declare const UpdateToolCommand: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
121
- toolId: {
122
- type: _contractspec_lib_schema0.FieldType<string, string>;
123
- isOptional: false;
124
- };
125
- name: {
126
- type: _contractspec_lib_schema0.FieldType<string, string>;
127
- isOptional: true;
128
- };
129
- description: {
130
- type: _contractspec_lib_schema0.FieldType<string, string>;
131
- isOptional: true;
132
- };
133
- status: {
134
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
135
- isOptional: true;
136
- };
137
- parametersSchema: {
138
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
139
- isOptional: true;
140
- };
141
- outputSchema: {
142
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
143
- isOptional: true;
144
- };
145
- implementationConfig: {
146
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
147
- isOptional: true;
148
- };
149
- maxInvocationsPerMinute: {
150
- type: _contractspec_lib_schema0.FieldType<number, number>;
151
- isOptional: true;
152
- };
153
- timeoutMs: {
154
- type: _contractspec_lib_schema0.FieldType<number, number>;
155
- isOptional: true;
156
- };
157
- tags: {
158
- type: _contractspec_lib_schema0.FieldType<string, string>;
159
- isArray: true;
160
- isOptional: true;
161
- };
162
- }>, _contractspec_lib_schema0.SchemaModel<{
163
- id: {
164
- type: _contractspec_lib_schema0.FieldType<string, string>;
165
- isOptional: false;
166
- };
167
- name: {
168
- type: _contractspec_lib_schema0.FieldType<string, string>;
169
- isOptional: false;
170
- };
171
- status: {
172
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
173
- isOptional: false;
174
- };
175
- updatedAt: {
176
- type: _contractspec_lib_schema0.FieldType<Date, string>;
177
- isOptional: false;
178
- };
116
+ export declare const UpdateToolCommand: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
117
+ toolId: {
118
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
119
+ isOptional: false;
120
+ };
121
+ name: {
122
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
123
+ isOptional: true;
124
+ };
125
+ description: {
126
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
127
+ isOptional: true;
128
+ };
129
+ status: {
130
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
131
+ isOptional: true;
132
+ };
133
+ parametersSchema: {
134
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
135
+ isOptional: true;
136
+ };
137
+ outputSchema: {
138
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
139
+ isOptional: true;
140
+ };
141
+ implementationConfig: {
142
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
143
+ isOptional: true;
144
+ };
145
+ maxInvocationsPerMinute: {
146
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
147
+ isOptional: true;
148
+ };
149
+ timeoutMs: {
150
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
151
+ isOptional: true;
152
+ };
153
+ tags: {
154
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
155
+ isArray: true;
156
+ isOptional: true;
157
+ };
158
+ }>, import("@contractspec/lib.schema").SchemaModel<{
159
+ id: {
160
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
161
+ isOptional: false;
162
+ };
163
+ name: {
164
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
165
+ isOptional: false;
166
+ };
167
+ status: {
168
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
169
+ isOptional: false;
170
+ };
171
+ updatedAt: {
172
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
173
+ isOptional: false;
174
+ };
179
175
  }>, {
180
- key: string;
181
- version: string;
182
- stability: string;
183
- owners: "@agent-console-team"[];
184
- tags: string[];
185
- when: string;
186
- payload: _contractspec_lib_schema0.SchemaModel<{
176
+ key: string;
177
+ version: string;
178
+ stability: string;
179
+ owners: "@agent-console-team"[];
180
+ tags: string[];
181
+ when: string;
182
+ payload: import("@contractspec/lib.schema").SchemaModel<{
183
+ id: {
184
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
185
+ isOptional: false;
186
+ };
187
+ name: {
188
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
189
+ isOptional: false;
190
+ };
191
+ slug: {
192
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
193
+ isOptional: false;
194
+ };
195
+ description: {
196
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
197
+ isOptional: false;
198
+ };
199
+ category: {
200
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string, string]>;
201
+ isOptional: false;
202
+ };
203
+ status: {
204
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
205
+ isOptional: false;
206
+ };
207
+ version: {
208
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
209
+ isOptional: false;
210
+ };
211
+ createdAt: {
212
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
213
+ isOptional: false;
214
+ };
215
+ }>;
216
+ }[]>;
217
+ /**
218
+ * GetToolQuery - Retrieves a tool by ID.
219
+ */
220
+ export declare const GetToolQuery: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
221
+ toolId: {
222
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
223
+ isOptional: false;
224
+ };
225
+ }>, import("@contractspec/lib.schema").SchemaModel<{
187
226
  id: {
188
- type: _contractspec_lib_schema0.FieldType<string, string>;
189
- isOptional: false;
227
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
228
+ isOptional: false;
229
+ };
230
+ organizationId: {
231
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
232
+ isOptional: false;
190
233
  };
191
234
  name: {
192
- type: _contractspec_lib_schema0.FieldType<string, string>;
193
- isOptional: false;
235
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
236
+ isOptional: false;
194
237
  };
195
238
  slug: {
196
- type: _contractspec_lib_schema0.FieldType<string, string>;
197
- isOptional: false;
239
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
240
+ isOptional: false;
198
241
  };
199
242
  description: {
200
- type: _contractspec_lib_schema0.FieldType<string, string>;
201
- isOptional: false;
243
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
244
+ isOptional: false;
202
245
  };
203
246
  category: {
204
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string, string, string]>;
205
- isOptional: false;
247
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string, string]>;
248
+ isOptional: false;
206
249
  };
207
250
  status: {
208
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
209
- isOptional: false;
251
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
252
+ isOptional: false;
253
+ };
254
+ parametersSchema: {
255
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
256
+ isOptional: false;
257
+ };
258
+ outputSchema: {
259
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
260
+ isOptional: true;
261
+ };
262
+ implementationType: {
263
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
264
+ isOptional: false;
265
+ };
266
+ implementationConfig: {
267
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
268
+ isOptional: false;
269
+ };
270
+ maxInvocationsPerMinute: {
271
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
272
+ isOptional: true;
273
+ };
274
+ timeoutMs: {
275
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
276
+ isOptional: false;
277
+ defaultValue: number;
210
278
  };
211
279
  version: {
212
- type: _contractspec_lib_schema0.FieldType<string, string>;
213
- isOptional: false;
280
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
281
+ isOptional: false;
282
+ };
283
+ tags: {
284
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
285
+ isArray: true;
286
+ isOptional: true;
214
287
  };
215
288
  createdAt: {
216
- type: _contractspec_lib_schema0.FieldType<Date, string>;
217
- isOptional: false;
289
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
290
+ isOptional: false;
291
+ };
292
+ updatedAt: {
293
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
294
+ isOptional: false;
218
295
  };
219
- }>;
220
- }[]>;
221
- /**
222
- * GetToolQuery - Retrieves a tool by ID.
223
- */
224
- declare const GetToolQuery: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
225
- toolId: {
226
- type: _contractspec_lib_schema0.FieldType<string, string>;
227
- isOptional: false;
228
- };
229
- }>, _contractspec_lib_schema0.SchemaModel<{
230
- id: {
231
- type: _contractspec_lib_schema0.FieldType<string, string>;
232
- isOptional: false;
233
- };
234
- organizationId: {
235
- type: _contractspec_lib_schema0.FieldType<string, string>;
236
- isOptional: false;
237
- };
238
- name: {
239
- type: _contractspec_lib_schema0.FieldType<string, string>;
240
- isOptional: false;
241
- };
242
- slug: {
243
- type: _contractspec_lib_schema0.FieldType<string, string>;
244
- isOptional: false;
245
- };
246
- description: {
247
- type: _contractspec_lib_schema0.FieldType<string, string>;
248
- isOptional: false;
249
- };
250
- category: {
251
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string, string, string]>;
252
- isOptional: false;
253
- };
254
- status: {
255
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
256
- isOptional: false;
257
- };
258
- parametersSchema: {
259
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
260
- isOptional: false;
261
- };
262
- outputSchema: {
263
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
264
- isOptional: true;
265
- };
266
- implementationType: {
267
- type: _contractspec_lib_schema0.EnumType<[string, string, string]>;
268
- isOptional: false;
269
- };
270
- implementationConfig: {
271
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
272
- isOptional: false;
273
- };
274
- maxInvocationsPerMinute: {
275
- type: _contractspec_lib_schema0.FieldType<number, number>;
276
- isOptional: true;
277
- };
278
- timeoutMs: {
279
- type: _contractspec_lib_schema0.FieldType<number, number>;
280
- isOptional: false;
281
- defaultValue: number;
282
- };
283
- version: {
284
- type: _contractspec_lib_schema0.FieldType<string, string>;
285
- isOptional: false;
286
- };
287
- tags: {
288
- type: _contractspec_lib_schema0.FieldType<string, string>;
289
- isArray: true;
290
- isOptional: true;
291
- };
292
- createdAt: {
293
- type: _contractspec_lib_schema0.FieldType<Date, string>;
294
- isOptional: false;
295
- };
296
- updatedAt: {
297
- type: _contractspec_lib_schema0.FieldType<Date, string>;
298
- isOptional: false;
299
- };
300
296
  }>, undefined>;
301
297
  /**
302
298
  * ListToolsQuery - Lists tools for an organization.
303
299
  */
304
- declare const ListToolsQuery: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
305
- organizationId: {
306
- type: _contractspec_lib_schema0.FieldType<string, string>;
307
- isOptional: false;
308
- };
309
- category: {
310
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string, string, string]>;
311
- isOptional: true;
312
- };
313
- status: {
314
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
315
- isOptional: true;
316
- };
317
- search: {
318
- type: _contractspec_lib_schema0.FieldType<string, string>;
319
- isOptional: true;
320
- };
321
- limit: {
322
- type: _contractspec_lib_schema0.FieldType<number, number>;
323
- isOptional: true;
324
- defaultValue: number;
325
- };
326
- offset: {
327
- type: _contractspec_lib_schema0.FieldType<number, number>;
328
- isOptional: true;
329
- defaultValue: number;
330
- };
331
- }>, _contractspec_lib_schema0.SchemaModel<{
332
- items: {
333
- type: _contractspec_lib_schema0.SchemaModel<{
334
- id: {
335
- type: _contractspec_lib_schema0.FieldType<string, string>;
336
- isOptional: false;
337
- };
338
- name: {
339
- type: _contractspec_lib_schema0.FieldType<string, string>;
340
- isOptional: false;
341
- };
342
- slug: {
343
- type: _contractspec_lib_schema0.FieldType<string, string>;
344
- isOptional: false;
345
- };
346
- description: {
347
- type: _contractspec_lib_schema0.FieldType<string, string>;
348
- isOptional: false;
349
- };
350
- category: {
351
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string, string, string]>;
352
- isOptional: false;
353
- };
354
- status: {
355
- type: _contractspec_lib_schema0.EnumType<[string, string, string, string]>;
356
- isOptional: false;
357
- };
358
- version: {
359
- type: _contractspec_lib_schema0.FieldType<string, string>;
360
- isOptional: false;
361
- };
362
- createdAt: {
363
- type: _contractspec_lib_schema0.FieldType<Date, string>;
364
- isOptional: false;
365
- };
366
- }>;
367
- isArray: true;
368
- isOptional: false;
369
- };
370
- total: {
371
- type: _contractspec_lib_schema0.FieldType<number, number>;
372
- isOptional: false;
373
- };
374
- hasMore: {
375
- type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
376
- isOptional: false;
377
- };
300
+ export declare const ListToolsQuery: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
301
+ organizationId: {
302
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
303
+ isOptional: false;
304
+ };
305
+ category: {
306
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string, string]>;
307
+ isOptional: true;
308
+ };
309
+ status: {
310
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
311
+ isOptional: true;
312
+ };
313
+ search: {
314
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
315
+ isOptional: true;
316
+ };
317
+ limit: {
318
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
319
+ isOptional: true;
320
+ defaultValue: number;
321
+ };
322
+ offset: {
323
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
324
+ isOptional: true;
325
+ defaultValue: number;
326
+ };
327
+ }>, import("@contractspec/lib.schema").SchemaModel<{
328
+ items: {
329
+ type: import("@contractspec/lib.schema").SchemaModel<{
330
+ id: {
331
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
332
+ isOptional: false;
333
+ };
334
+ name: {
335
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
336
+ isOptional: false;
337
+ };
338
+ slug: {
339
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
340
+ isOptional: false;
341
+ };
342
+ description: {
343
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
344
+ isOptional: false;
345
+ };
346
+ category: {
347
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string, string]>;
348
+ isOptional: false;
349
+ };
350
+ status: {
351
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
352
+ isOptional: false;
353
+ };
354
+ version: {
355
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
356
+ isOptional: false;
357
+ };
358
+ createdAt: {
359
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
360
+ isOptional: false;
361
+ };
362
+ }>;
363
+ isArray: true;
364
+ isOptional: false;
365
+ };
366
+ total: {
367
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
368
+ isOptional: false;
369
+ };
370
+ hasMore: {
371
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
372
+ isOptional: false;
373
+ };
378
374
  }>, undefined>;
379
375
  /**
380
376
  * TestToolCommand - Tests a tool with sample input.
381
377
  */
382
- declare const TestToolCommand: _contractspec_lib_contracts0.OperationSpec<_contractspec_lib_schema0.SchemaModel<{
383
- toolId: {
384
- type: _contractspec_lib_schema0.FieldType<string, string>;
385
- isOptional: false;
386
- };
387
- testInput: {
388
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
389
- isOptional: false;
390
- };
391
- }>, _contractspec_lib_schema0.SchemaModel<{
392
- success: {
393
- type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
394
- isOptional: false;
395
- };
396
- output: {
397
- type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
398
- isOptional: true;
399
- };
400
- error: {
401
- type: _contractspec_lib_schema0.FieldType<string, string>;
402
- isOptional: true;
403
- };
404
- durationMs: {
405
- type: _contractspec_lib_schema0.FieldType<number, number>;
406
- isOptional: false;
407
- };
378
+ export declare const TestToolCommand: import("@contractspec/lib.contracts").OperationSpec<import("@contractspec/lib.schema").SchemaModel<{
379
+ toolId: {
380
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
381
+ isOptional: false;
382
+ };
383
+ testInput: {
384
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
385
+ isOptional: false;
386
+ };
387
+ }>, import("@contractspec/lib.schema").SchemaModel<{
388
+ success: {
389
+ type: import("@contractspec/lib.schema").FieldType<boolean, boolean>;
390
+ isOptional: false;
391
+ };
392
+ output: {
393
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
394
+ isOptional: true;
395
+ };
396
+ error: {
397
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
398
+ isOptional: true;
399
+ };
400
+ durationMs: {
401
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
402
+ isOptional: false;
403
+ };
408
404
  }>, undefined>;
409
- //#endregion
410
- export { CreateToolCommand, GetToolQuery, ListToolsQuery, TestToolCommand, UpdateToolCommand };
411
405
  //# sourceMappingURL=tool.operation.d.ts.map