@contractspec/example.agent-console 1.56.1 → 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 +211 -277
  2. package/.turbo/turbo-prebuild.log +1 -0
  3. package/CHANGELOG.md +36 -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 -7
  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 +40 -55
  112. package/dist/handlers/agent.handlers.d.ts +121 -121
  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 -9
  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 -9
  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 -7
  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 -9
  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 -9
  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 -9
  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 +657 -119
  335. package/tsdown.config.js +1 -2
  336. package/.turbo/turbo-build$colon$bundle.log +0 -280
  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,401 +1,396 @@
1
- import * as _contractspec_lib_schema579 from "@contractspec/lib.schema";
2
-
3
- //#region src/agent/agent.schema.d.ts
4
1
  /**
5
2
  * AI agent configuration schema.
6
3
  */
7
- declare const AgentModel: _contractspec_lib_schema579.SchemaModel<{
8
- id: {
9
- type: _contractspec_lib_schema579.FieldType<string, string>;
10
- isOptional: false;
11
- };
12
- organizationId: {
13
- type: _contractspec_lib_schema579.FieldType<string, string>;
14
- isOptional: false;
15
- };
16
- name: {
17
- type: _contractspec_lib_schema579.FieldType<string, string>;
18
- isOptional: false;
19
- };
20
- slug: {
21
- type: _contractspec_lib_schema579.FieldType<string, string>;
22
- isOptional: false;
23
- };
24
- description: {
25
- type: _contractspec_lib_schema579.FieldType<string, string>;
26
- isOptional: true;
27
- };
28
- status: {
29
- type: _contractspec_lib_schema579.EnumType<[string, string, string, string]>;
30
- isOptional: false;
31
- };
32
- modelProvider: {
33
- type: _contractspec_lib_schema579.EnumType<[string, string, string, string, string]>;
34
- isOptional: false;
35
- };
36
- modelName: {
37
- type: _contractspec_lib_schema579.FieldType<string, string>;
38
- isOptional: false;
39
- };
40
- modelConfig: {
41
- type: _contractspec_lib_schema579.FieldType<Record<string, unknown>, Record<string, unknown>>;
42
- isOptional: true;
43
- };
44
- systemPrompt: {
45
- type: _contractspec_lib_schema579.FieldType<string, string>;
46
- isOptional: false;
47
- };
48
- userPromptTemplate: {
49
- type: _contractspec_lib_schema579.FieldType<string, string>;
50
- isOptional: true;
51
- };
52
- toolIds: {
53
- type: _contractspec_lib_schema579.FieldType<string, string>;
54
- isArray: true;
55
- isOptional: true;
56
- };
57
- toolChoice: {
58
- type: _contractspec_lib_schema579.EnumType<[string, string, string]>;
59
- isOptional: false;
60
- defaultValue: string;
61
- };
62
- maxIterations: {
63
- type: _contractspec_lib_schema579.FieldType<number, number>;
64
- isOptional: false;
65
- defaultValue: number;
66
- };
67
- maxTokensPerRun: {
68
- type: _contractspec_lib_schema579.FieldType<number, number>;
69
- isOptional: true;
70
- };
71
- timeoutMs: {
72
- type: _contractspec_lib_schema579.FieldType<number, number>;
73
- isOptional: false;
74
- defaultValue: number;
75
- };
76
- version: {
77
- type: _contractspec_lib_schema579.FieldType<string, string>;
78
- isOptional: false;
79
- };
80
- tags: {
81
- type: _contractspec_lib_schema579.FieldType<string, string>;
82
- isArray: true;
83
- isOptional: true;
84
- };
85
- createdAt: {
86
- type: _contractspec_lib_schema579.FieldType<Date, string>;
87
- isOptional: false;
88
- };
89
- updatedAt: {
90
- type: _contractspec_lib_schema579.FieldType<Date, string>;
91
- isOptional: false;
92
- };
4
+ export declare const AgentModel: import("@contractspec/lib.schema").SchemaModel<{
5
+ id: {
6
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
7
+ isOptional: false;
8
+ };
9
+ organizationId: {
10
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
11
+ isOptional: false;
12
+ };
13
+ name: {
14
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
15
+ isOptional: false;
16
+ };
17
+ slug: {
18
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
19
+ isOptional: false;
20
+ };
21
+ description: {
22
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
23
+ isOptional: true;
24
+ };
25
+ status: {
26
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
27
+ isOptional: false;
28
+ };
29
+ modelProvider: {
30
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string]>;
31
+ isOptional: false;
32
+ };
33
+ modelName: {
34
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
35
+ isOptional: false;
36
+ };
37
+ modelConfig: {
38
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
39
+ isOptional: true;
40
+ };
41
+ systemPrompt: {
42
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
43
+ isOptional: false;
44
+ };
45
+ userPromptTemplate: {
46
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
47
+ isOptional: true;
48
+ };
49
+ toolIds: {
50
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
51
+ isArray: true;
52
+ isOptional: true;
53
+ };
54
+ toolChoice: {
55
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
56
+ isOptional: false;
57
+ defaultValue: string;
58
+ };
59
+ maxIterations: {
60
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
61
+ isOptional: false;
62
+ defaultValue: number;
63
+ };
64
+ maxTokensPerRun: {
65
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
66
+ isOptional: true;
67
+ };
68
+ timeoutMs: {
69
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
70
+ isOptional: false;
71
+ defaultValue: number;
72
+ };
73
+ version: {
74
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
75
+ isOptional: false;
76
+ };
77
+ tags: {
78
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
79
+ isArray: true;
80
+ isOptional: true;
81
+ };
82
+ createdAt: {
83
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
84
+ isOptional: false;
85
+ };
86
+ updatedAt: {
87
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
88
+ isOptional: false;
89
+ };
93
90
  }>;
94
91
  /**
95
92
  * Summary of an agent for list views.
96
93
  */
97
- declare const AgentSummaryModel: _contractspec_lib_schema579.SchemaModel<{
98
- id: {
99
- type: _contractspec_lib_schema579.FieldType<string, string>;
100
- isOptional: false;
101
- };
102
- name: {
103
- type: _contractspec_lib_schema579.FieldType<string, string>;
104
- isOptional: false;
105
- };
106
- slug: {
107
- type: _contractspec_lib_schema579.FieldType<string, string>;
108
- isOptional: false;
109
- };
110
- description: {
111
- type: _contractspec_lib_schema579.FieldType<string, string>;
112
- isOptional: true;
113
- };
114
- status: {
115
- type: _contractspec_lib_schema579.EnumType<[string, string, string, string]>;
116
- isOptional: false;
117
- };
118
- modelProvider: {
119
- type: _contractspec_lib_schema579.EnumType<[string, string, string, string, string]>;
120
- isOptional: false;
121
- };
122
- modelName: {
123
- type: _contractspec_lib_schema579.FieldType<string, string>;
124
- isOptional: false;
125
- };
126
- version: {
127
- type: _contractspec_lib_schema579.FieldType<string, string>;
128
- isOptional: false;
129
- };
130
- createdAt: {
131
- type: _contractspec_lib_schema579.FieldType<Date, string>;
132
- isOptional: false;
133
- };
94
+ export declare const AgentSummaryModel: import("@contractspec/lib.schema").SchemaModel<{
95
+ id: {
96
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
97
+ isOptional: false;
98
+ };
99
+ name: {
100
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
101
+ isOptional: false;
102
+ };
103
+ slug: {
104
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
105
+ isOptional: false;
106
+ };
107
+ description: {
108
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
109
+ isOptional: true;
110
+ };
111
+ status: {
112
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
113
+ isOptional: false;
114
+ };
115
+ modelProvider: {
116
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string]>;
117
+ isOptional: false;
118
+ };
119
+ modelName: {
120
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
121
+ isOptional: false;
122
+ };
123
+ version: {
124
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
125
+ isOptional: false;
126
+ };
127
+ createdAt: {
128
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
129
+ isOptional: false;
130
+ };
134
131
  }>;
135
132
  /**
136
133
  * Tool reference in agent context.
137
134
  */
138
- declare const AgentToolRefModel: _contractspec_lib_schema579.SchemaModel<{
139
- id: {
140
- type: _contractspec_lib_schema579.FieldType<string, string>;
141
- isOptional: false;
142
- };
143
- name: {
144
- type: _contractspec_lib_schema579.FieldType<string, string>;
145
- isOptional: false;
146
- };
147
- slug: {
148
- type: _contractspec_lib_schema579.FieldType<string, string>;
149
- isOptional: false;
150
- };
151
- description: {
152
- type: _contractspec_lib_schema579.FieldType<string, string>;
153
- isOptional: false;
154
- };
155
- category: {
156
- type: _contractspec_lib_schema579.FieldType<string, string>;
157
- isOptional: false;
158
- };
135
+ export declare const AgentToolRefModel: import("@contractspec/lib.schema").SchemaModel<{
136
+ id: {
137
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
138
+ isOptional: false;
139
+ };
140
+ name: {
141
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
142
+ isOptional: false;
143
+ };
144
+ slug: {
145
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
146
+ isOptional: false;
147
+ };
148
+ description: {
149
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
150
+ isOptional: false;
151
+ };
152
+ category: {
153
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
154
+ isOptional: false;
155
+ };
159
156
  }>;
160
157
  /**
161
158
  * Agent with associated tools.
162
159
  */
163
- declare const AgentWithToolsModel: _contractspec_lib_schema579.SchemaModel<{
164
- id: {
165
- type: _contractspec_lib_schema579.FieldType<string, string>;
166
- isOptional: false;
167
- };
168
- organizationId: {
169
- type: _contractspec_lib_schema579.FieldType<string, string>;
170
- isOptional: false;
171
- };
172
- name: {
173
- type: _contractspec_lib_schema579.FieldType<string, string>;
174
- isOptional: false;
175
- };
176
- slug: {
177
- type: _contractspec_lib_schema579.FieldType<string, string>;
178
- isOptional: false;
179
- };
180
- description: {
181
- type: _contractspec_lib_schema579.FieldType<string, string>;
182
- isOptional: true;
183
- };
184
- status: {
185
- type: _contractspec_lib_schema579.EnumType<[string, string, string, string]>;
186
- isOptional: false;
187
- };
188
- modelProvider: {
189
- type: _contractspec_lib_schema579.EnumType<[string, string, string, string, string]>;
190
- isOptional: false;
191
- };
192
- modelName: {
193
- type: _contractspec_lib_schema579.FieldType<string, string>;
194
- isOptional: false;
195
- };
196
- modelConfig: {
197
- type: _contractspec_lib_schema579.FieldType<Record<string, unknown>, Record<string, unknown>>;
198
- isOptional: true;
199
- };
200
- systemPrompt: {
201
- type: _contractspec_lib_schema579.FieldType<string, string>;
202
- isOptional: false;
203
- };
204
- userPromptTemplate: {
205
- type: _contractspec_lib_schema579.FieldType<string, string>;
206
- isOptional: true;
207
- };
208
- toolIds: {
209
- type: _contractspec_lib_schema579.FieldType<string, string>;
210
- isArray: true;
211
- isOptional: true;
212
- };
213
- toolChoice: {
214
- type: _contractspec_lib_schema579.EnumType<[string, string, string]>;
215
- isOptional: false;
216
- };
217
- maxIterations: {
218
- type: _contractspec_lib_schema579.FieldType<number, number>;
219
- isOptional: false;
220
- };
221
- maxTokensPerRun: {
222
- type: _contractspec_lib_schema579.FieldType<number, number>;
223
- isOptional: true;
224
- };
225
- timeoutMs: {
226
- type: _contractspec_lib_schema579.FieldType<number, number>;
227
- isOptional: false;
228
- };
229
- version: {
230
- type: _contractspec_lib_schema579.FieldType<string, string>;
231
- isOptional: false;
232
- };
233
- tags: {
234
- type: _contractspec_lib_schema579.FieldType<string, string>;
235
- isArray: true;
236
- isOptional: true;
237
- };
238
- createdAt: {
239
- type: _contractspec_lib_schema579.FieldType<Date, string>;
240
- isOptional: false;
241
- };
242
- updatedAt: {
243
- type: _contractspec_lib_schema579.FieldType<Date, string>;
244
- isOptional: false;
245
- };
246
- tools: {
247
- type: _contractspec_lib_schema579.SchemaModel<{
248
- id: {
249
- type: _contractspec_lib_schema579.FieldType<string, string>;
250
- isOptional: false;
251
- };
252
- name: {
253
- type: _contractspec_lib_schema579.FieldType<string, string>;
254
- isOptional: false;
255
- };
256
- slug: {
257
- type: _contractspec_lib_schema579.FieldType<string, string>;
258
- isOptional: false;
259
- };
260
- description: {
261
- type: _contractspec_lib_schema579.FieldType<string, string>;
262
- isOptional: false;
263
- };
264
- category: {
265
- type: _contractspec_lib_schema579.FieldType<string, string>;
266
- isOptional: false;
267
- };
268
- }>;
269
- isArray: true;
270
- isOptional: true;
271
- };
160
+ export declare const AgentWithToolsModel: import("@contractspec/lib.schema").SchemaModel<{
161
+ id: {
162
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
163
+ isOptional: false;
164
+ };
165
+ organizationId: {
166
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
167
+ isOptional: false;
168
+ };
169
+ name: {
170
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
171
+ isOptional: false;
172
+ };
173
+ slug: {
174
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
175
+ isOptional: false;
176
+ };
177
+ description: {
178
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
179
+ isOptional: true;
180
+ };
181
+ status: {
182
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
183
+ isOptional: false;
184
+ };
185
+ modelProvider: {
186
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string]>;
187
+ isOptional: false;
188
+ };
189
+ modelName: {
190
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
191
+ isOptional: false;
192
+ };
193
+ modelConfig: {
194
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
195
+ isOptional: true;
196
+ };
197
+ systemPrompt: {
198
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
199
+ isOptional: false;
200
+ };
201
+ userPromptTemplate: {
202
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
203
+ isOptional: true;
204
+ };
205
+ toolIds: {
206
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
207
+ isArray: true;
208
+ isOptional: true;
209
+ };
210
+ toolChoice: {
211
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
212
+ isOptional: false;
213
+ };
214
+ maxIterations: {
215
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
216
+ isOptional: false;
217
+ };
218
+ maxTokensPerRun: {
219
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
220
+ isOptional: true;
221
+ };
222
+ timeoutMs: {
223
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
224
+ isOptional: false;
225
+ };
226
+ version: {
227
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
228
+ isOptional: false;
229
+ };
230
+ tags: {
231
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
232
+ isArray: true;
233
+ isOptional: true;
234
+ };
235
+ createdAt: {
236
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
237
+ isOptional: false;
238
+ };
239
+ updatedAt: {
240
+ type: import("@contractspec/lib.schema").FieldType<Date, string>;
241
+ isOptional: false;
242
+ };
243
+ tools: {
244
+ type: import("@contractspec/lib.schema").SchemaModel<{
245
+ id: {
246
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
247
+ isOptional: false;
248
+ };
249
+ name: {
250
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
251
+ isOptional: false;
252
+ };
253
+ slug: {
254
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
255
+ isOptional: false;
256
+ };
257
+ description: {
258
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
259
+ isOptional: false;
260
+ };
261
+ category: {
262
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
263
+ isOptional: false;
264
+ };
265
+ }>;
266
+ isArray: true;
267
+ isOptional: true;
268
+ };
272
269
  }>;
273
270
  /**
274
271
  * Input for creating an agent.
275
272
  */
276
- declare const CreateAgentInputModel: _contractspec_lib_schema579.SchemaModel<{
277
- organizationId: {
278
- type: _contractspec_lib_schema579.FieldType<string, string>;
279
- isOptional: false;
280
- };
281
- name: {
282
- type: _contractspec_lib_schema579.FieldType<string, string>;
283
- isOptional: false;
284
- };
285
- slug: {
286
- type: _contractspec_lib_schema579.FieldType<string, string>;
287
- isOptional: false;
288
- };
289
- description: {
290
- type: _contractspec_lib_schema579.FieldType<string, string>;
291
- isOptional: true;
292
- };
293
- modelProvider: {
294
- type: _contractspec_lib_schema579.EnumType<[string, string, string, string, string]>;
295
- isOptional: false;
296
- };
297
- modelName: {
298
- type: _contractspec_lib_schema579.FieldType<string, string>;
299
- isOptional: false;
300
- };
301
- modelConfig: {
302
- type: _contractspec_lib_schema579.FieldType<Record<string, unknown>, Record<string, unknown>>;
303
- isOptional: true;
304
- };
305
- systemPrompt: {
306
- type: _contractspec_lib_schema579.FieldType<string, string>;
307
- isOptional: false;
308
- };
309
- userPromptTemplate: {
310
- type: _contractspec_lib_schema579.FieldType<string, string>;
311
- isOptional: true;
312
- };
313
- toolIds: {
314
- type: _contractspec_lib_schema579.FieldType<string, string>;
315
- isArray: true;
316
- isOptional: true;
317
- };
318
- toolChoice: {
319
- type: _contractspec_lib_schema579.EnumType<[string, string, string]>;
320
- isOptional: true;
321
- };
322
- maxIterations: {
323
- type: _contractspec_lib_schema579.FieldType<number, number>;
324
- isOptional: true;
325
- };
326
- maxTokensPerRun: {
327
- type: _contractspec_lib_schema579.FieldType<number, number>;
328
- isOptional: true;
329
- };
330
- timeoutMs: {
331
- type: _contractspec_lib_schema579.FieldType<number, number>;
332
- isOptional: true;
333
- };
334
- tags: {
335
- type: _contractspec_lib_schema579.FieldType<string, string>;
336
- isArray: true;
337
- isOptional: true;
338
- };
273
+ export declare const CreateAgentInputModel: import("@contractspec/lib.schema").SchemaModel<{
274
+ organizationId: {
275
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
276
+ isOptional: false;
277
+ };
278
+ name: {
279
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
280
+ isOptional: false;
281
+ };
282
+ slug: {
283
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
284
+ isOptional: false;
285
+ };
286
+ description: {
287
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
288
+ isOptional: true;
289
+ };
290
+ modelProvider: {
291
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string, string]>;
292
+ isOptional: false;
293
+ };
294
+ modelName: {
295
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
296
+ isOptional: false;
297
+ };
298
+ modelConfig: {
299
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
300
+ isOptional: true;
301
+ };
302
+ systemPrompt: {
303
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
304
+ isOptional: false;
305
+ };
306
+ userPromptTemplate: {
307
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
308
+ isOptional: true;
309
+ };
310
+ toolIds: {
311
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
312
+ isArray: true;
313
+ isOptional: true;
314
+ };
315
+ toolChoice: {
316
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
317
+ isOptional: true;
318
+ };
319
+ maxIterations: {
320
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
321
+ isOptional: true;
322
+ };
323
+ maxTokensPerRun: {
324
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
325
+ isOptional: true;
326
+ };
327
+ timeoutMs: {
328
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
329
+ isOptional: true;
330
+ };
331
+ tags: {
332
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
333
+ isArray: true;
334
+ isOptional: true;
335
+ };
339
336
  }>;
340
337
  /**
341
338
  * Input for updating an agent.
342
339
  */
343
- declare const UpdateAgentInputModel: _contractspec_lib_schema579.SchemaModel<{
344
- agentId: {
345
- type: _contractspec_lib_schema579.FieldType<string, string>;
346
- isOptional: false;
347
- };
348
- name: {
349
- type: _contractspec_lib_schema579.FieldType<string, string>;
350
- isOptional: true;
351
- };
352
- description: {
353
- type: _contractspec_lib_schema579.FieldType<string, string>;
354
- isOptional: true;
355
- };
356
- status: {
357
- type: _contractspec_lib_schema579.EnumType<[string, string, string, string]>;
358
- isOptional: true;
359
- };
360
- modelConfig: {
361
- type: _contractspec_lib_schema579.FieldType<Record<string, unknown>, Record<string, unknown>>;
362
- isOptional: true;
363
- };
364
- systemPrompt: {
365
- type: _contractspec_lib_schema579.FieldType<string, string>;
366
- isOptional: true;
367
- };
368
- userPromptTemplate: {
369
- type: _contractspec_lib_schema579.FieldType<string, string>;
370
- isOptional: true;
371
- };
372
- toolIds: {
373
- type: _contractspec_lib_schema579.FieldType<string, string>;
374
- isArray: true;
375
- isOptional: true;
376
- };
377
- toolChoice: {
378
- type: _contractspec_lib_schema579.EnumType<[string, string, string]>;
379
- isOptional: true;
380
- };
381
- maxIterations: {
382
- type: _contractspec_lib_schema579.FieldType<number, number>;
383
- isOptional: true;
384
- };
385
- maxTokensPerRun: {
386
- type: _contractspec_lib_schema579.FieldType<number, number>;
387
- isOptional: true;
388
- };
389
- timeoutMs: {
390
- type: _contractspec_lib_schema579.FieldType<number, number>;
391
- isOptional: true;
392
- };
393
- tags: {
394
- type: _contractspec_lib_schema579.FieldType<string, string>;
395
- isArray: true;
396
- isOptional: true;
397
- };
340
+ export declare const UpdateAgentInputModel: import("@contractspec/lib.schema").SchemaModel<{
341
+ agentId: {
342
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
343
+ isOptional: false;
344
+ };
345
+ name: {
346
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
347
+ isOptional: true;
348
+ };
349
+ description: {
350
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
351
+ isOptional: true;
352
+ };
353
+ status: {
354
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string, string]>;
355
+ isOptional: true;
356
+ };
357
+ modelConfig: {
358
+ type: import("@contractspec/lib.schema").FieldType<Record<string, unknown>, Record<string, unknown>>;
359
+ isOptional: true;
360
+ };
361
+ systemPrompt: {
362
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
363
+ isOptional: true;
364
+ };
365
+ userPromptTemplate: {
366
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
367
+ isOptional: true;
368
+ };
369
+ toolIds: {
370
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
371
+ isArray: true;
372
+ isOptional: true;
373
+ };
374
+ toolChoice: {
375
+ type: import("@contractspec/lib.schema").EnumType<[string, string, string]>;
376
+ isOptional: true;
377
+ };
378
+ maxIterations: {
379
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
380
+ isOptional: true;
381
+ };
382
+ maxTokensPerRun: {
383
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
384
+ isOptional: true;
385
+ };
386
+ timeoutMs: {
387
+ type: import("@contractspec/lib.schema").FieldType<number, number>;
388
+ isOptional: true;
389
+ };
390
+ tags: {
391
+ type: import("@contractspec/lib.schema").FieldType<string, string>;
392
+ isArray: true;
393
+ isOptional: true;
394
+ };
398
395
  }>;
399
- //#endregion
400
- export { AgentModel, AgentSummaryModel, AgentToolRefModel, AgentWithToolsModel, CreateAgentInputModel, UpdateAgentInputModel };
401
396
  //# sourceMappingURL=agent.schema.d.ts.map