@invect/ui 0.0.1

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 (419) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +77 -0
  3. package/dist/Invect-CWpIwZ5F.js +92738 -0
  4. package/dist/Invect.d.ts +25 -0
  5. package/dist/InvectShell.d.ts +14 -0
  6. package/dist/api/agent-tools.api.d.ts +1 -0
  7. package/dist/api/client.d.ts +207 -0
  8. package/dist/api/credentials.api.d.ts +47 -0
  9. package/dist/api/executions.api.d.ts +43 -0
  10. package/dist/api/flows.api.d.ts +100 -0
  11. package/dist/api/index.d.ts +9 -0
  12. package/dist/api/node-data.api.d.ts +66 -0
  13. package/dist/api/query-keys.d.ts +22 -0
  14. package/dist/api/triggers.api.d.ts +44 -0
  15. package/dist/api/types.d.ts +147 -0
  16. package/dist/api/use-flow-run-stream.d.ts +12 -0
  17. package/dist/assets/invect-branding.d.ts +4 -0
  18. package/dist/assets/provider-icons/index.d.ts +8 -0
  19. package/dist/babel-C9OtljFZ.js +9721 -0
  20. package/dist/components/PageLayout.d.ts +17 -0
  21. package/dist/components/chat/ChatInput.d.ts +17 -0
  22. package/dist/components/chat/ChatMessageList.d.ts +14 -0
  23. package/dist/components/chat/ChatModelSelector.d.ts +11 -0
  24. package/dist/components/chat/ChatPanel.d.ts +19 -0
  25. package/dist/components/chat/ChatPromptOverlay.d.ts +13 -0
  26. package/dist/components/chat/ChatProviderSelector.d.ts +9 -0
  27. package/dist/components/chat/ChatSettingsPanel.d.ts +11 -0
  28. package/dist/components/chat/InlineCredentialSetup.d.ts +9 -0
  29. package/dist/components/chat/MarkdownRenderer.d.ts +7 -0
  30. package/dist/components/chat/chat-memory.d.ts +21 -0
  31. package/dist/components/chat/chat.store.d.ts +416 -0
  32. package/dist/components/chat/index.d.ts +5 -0
  33. package/dist/components/chat/use-chat.d.ts +28 -0
  34. package/dist/components/credentials/CreateCredentialModal.d.ts +13 -0
  35. package/dist/components/credentials/CredentialDetailDialog.d.ts +17 -0
  36. package/dist/components/credentials/EditCredentialModal.d.ts +11 -0
  37. package/dist/components/credentials/OAuth2ConnectButton.d.ts +38 -0
  38. package/dist/components/credentials/OAuth2ProviderSelector.d.ts +15 -0
  39. package/dist/components/credentials/credential-utils.d.ts +12 -0
  40. package/dist/components/credentials/index.d.ts +9 -0
  41. package/dist/components/dashboard/FailedRunsAlert.d.ts +3 -0
  42. package/dist/components/dashboard/FlowCard.d.ts +7 -0
  43. package/dist/components/dashboard/RecentActivityTable.d.ts +9 -0
  44. package/dist/components/dashboard/StatCard.d.ts +10 -0
  45. package/dist/components/dashboard/index.d.ts +5 -0
  46. package/dist/components/dashboard/status-helpers.d.ts +5 -0
  47. package/dist/components/flow-editor/ActionsSidebar.d.ts +2 -0
  48. package/dist/components/flow-editor/FlowEditor.d.ts +21 -0
  49. package/dist/components/flow-editor/FlowHeader.d.ts +9 -0
  50. package/dist/components/flow-editor/FlowLayout.d.ts +24 -0
  51. package/dist/components/flow-editor/ModeSwitcher.d.ts +7 -0
  52. package/dist/components/flow-editor/NodeSidebar.d.ts +24 -0
  53. package/dist/components/flow-editor/RunControls.d.ts +12 -0
  54. package/dist/components/flow-editor/ToolConfigPanel.d.ts +16 -0
  55. package/dist/components/flow-editor/ValidationPanel.d.ts +5 -0
  56. package/dist/components/flow-editor/flow-editor.store.d.ts +1 -0
  57. package/dist/components/flow-editor/index.d.ts +6 -0
  58. package/dist/components/flow-editor/inline-edit.d.ts +10 -0
  59. package/dist/components/flow-editor/node-config-panel/ConfigFieldWithTemplate.d.ts +26 -0
  60. package/dist/components/flow-editor/node-config-panel/CredentialCombobox.d.ts +21 -0
  61. package/dist/components/flow-editor/node-config-panel/CredentialsSection.d.ts +19 -0
  62. package/dist/components/flow-editor/node-config-panel/DroppableInput.d.ts +20 -0
  63. package/dist/components/flow-editor/node-config-panel/DynamicSelectField.d.ts +22 -0
  64. package/dist/components/flow-editor/node-config-panel/JsonPreviewPanel.d.ts +25 -0
  65. package/dist/components/flow-editor/node-config-panel/NodeConfigPanel.d.ts +14 -0
  66. package/dist/components/flow-editor/node-config-panel/NodeConfigPanelHeader.d.ts +15 -0
  67. package/dist/components/flow-editor/node-config-panel/ParametersSection.d.ts +16 -0
  68. package/dist/components/flow-editor/node-config-panel/SearchableSelectField.d.ts +17 -0
  69. package/dist/components/flow-editor/node-config-panel/SwitchCasesField.d.ts +18 -0
  70. package/dist/components/flow-editor/node-config-panel/hooks/index.d.ts +2 -0
  71. package/dist/components/flow-editor/node-config-panel/hooks/use-node-config-panel-state.d.ts +24 -0
  72. package/dist/components/flow-editor/node-config-panel/hooks/use-node-execution.d.ts +46 -0
  73. package/dist/components/flow-editor/node-config-panel/hooks/use-upstream-slots.d.ts +16 -0
  74. package/dist/components/flow-editor/node-config-panel/panels/AgentToolsPanel.d.ts +18 -0
  75. package/dist/components/flow-editor/node-config-panel/panels/ConfigurationPanel.d.ts +49 -0
  76. package/dist/components/flow-editor/node-config-panel/panels/DataMapperPane.d.ts +40 -0
  77. package/dist/components/flow-editor/node-config-panel/panels/InputPanel.d.ts +49 -0
  78. package/dist/components/flow-editor/node-config-panel/panels/OutputPanel.d.ts +7 -0
  79. package/dist/components/flow-editor/node-config-panel/panels/index.d.ts +4 -0
  80. package/dist/components/flow-editor/node-config-panel/types.d.ts +19 -0
  81. package/dist/components/flow-editor/node-config-panel/use-node-config-panel-store.d.ts +49 -0
  82. package/dist/components/flow-editor/node-config-panel/use-node-config-state.d.ts +26 -0
  83. package/dist/components/flow-editor/node-config-panel/use-run-node.d.ts +16 -0
  84. package/dist/components/flow-editor/node-config-panel/utils.d.ts +9 -0
  85. package/dist/components/flow-editor/serialize-to-sdk.d.ts +20 -0
  86. package/dist/components/flow-editor/toolbar-context.d.ts +2 -0
  87. package/dist/components/flow-editor/use-copy-paste.d.ts +7 -0
  88. package/dist/components/flow-editor/use-copy-paste.types.d.ts +38 -0
  89. package/dist/components/flow-editor/use-flow-editor.d.ts +44 -0
  90. package/dist/components/flow-runs-table/FlowRunsTable.d.ts +6 -0
  91. package/dist/components/flow-runs-table/index.d.ts +1 -0
  92. package/dist/components/flow-viewer/FlowRunsView.d.ts +7 -0
  93. package/dist/components/flow-viewer/FlowStatusView.d.ts +21 -0
  94. package/dist/components/flow-viewer/RunSelector.d.ts +13 -0
  95. package/dist/components/flow-viewer/RunsSidebar.d.ts +14 -0
  96. package/dist/components/flow-viewer/agent-tool-executions-list.d.ts +7 -0
  97. package/dist/components/flow-viewer/index.d.ts +1 -0
  98. package/dist/components/flow-viewer/logs-panel.d.ts +18 -0
  99. package/dist/components/flow-viewer/use-execution-log-data.d.ts +113 -0
  100. package/dist/components/graph/BatchFlowEdge.d.ts +33 -0
  101. package/dist/components/graph/LayoutSelector.d.ts +9 -0
  102. package/dist/components/graph/index.d.ts +47 -0
  103. package/dist/components/graph/styleUtils.d.ts +124 -0
  104. package/dist/components/nodes/AgentConfigPanel.d.ts +24 -0
  105. package/dist/components/nodes/AgentNode.d.ts +8 -0
  106. package/dist/components/nodes/AgentToolsBox.d.ts +41 -0
  107. package/dist/components/nodes/NodeAppendix.d.ts +19 -0
  108. package/dist/components/nodes/NodeStatusIndicator.d.ts +30 -0
  109. package/dist/components/nodes/NodeViewContext.d.ts +18 -0
  110. package/dist/components/nodes/ToolParamField.d.ts +28 -0
  111. package/dist/components/nodes/ToolSelectorModal.d.ts +80 -0
  112. package/dist/components/nodes/ToolSelectorParts.d.ts +30 -0
  113. package/dist/components/nodes/UniversalNode.d.ts +2 -0
  114. package/dist/components/nodes/createContextAwareNodes.d.ts +6 -0
  115. package/dist/components/nodes/index.d.ts +22 -0
  116. package/dist/components/nodes/nodeRegistry.d.ts +13 -0
  117. package/dist/components/nodes/withNodeContext.d.ts +7 -0
  118. package/dist/components/shared/InvectLoader.d.ts +8 -0
  119. package/dist/components/shared/InvectLogo.d.ts +9 -0
  120. package/dist/components/shared/ProviderIcon.d.ts +23 -0
  121. package/dist/components/side-menu/side-menu.d.ts +4 -0
  122. package/dist/components/sidebar/BaseSidebar.d.ts +17 -0
  123. package/dist/components/sidebar/index.d.ts +1 -0
  124. package/dist/components/triggers/CronPreview.d.ts +12 -0
  125. package/dist/components/triggers/index.d.ts +1 -0
  126. package/dist/components/ui/alert-dialog.d.ts +18 -0
  127. package/dist/components/ui/badge.d.ts +9 -0
  128. package/dist/components/ui/button.d.ts +13 -0
  129. package/dist/components/ui/card.d.ts +9 -0
  130. package/dist/components/ui/codemirror-js-editor.d.ts +25 -0
  131. package/dist/components/ui/codemirror-json-editor.d.ts +18 -0
  132. package/dist/components/ui/codemirror-nunjucks-editor.d.ts +13 -0
  133. package/dist/components/ui/codemirror-vscode-theme.d.ts +24 -0
  134. package/dist/components/ui/collapsible.d.ts +6 -0
  135. package/dist/components/ui/command.d.ts +18 -0
  136. package/dist/components/ui/dialog.d.ts +18 -0
  137. package/dist/components/ui/dropdown-menu.d.ts +25 -0
  138. package/dist/components/ui/empty-state.d.ts +21 -0
  139. package/dist/components/ui/input.d.ts +3 -0
  140. package/dist/components/ui/label.d.ts +4 -0
  141. package/dist/components/ui/popover.d.ts +10 -0
  142. package/dist/components/ui/resizable.d.ts +8 -0
  143. package/dist/components/ui/scroll-area.d.ts +5 -0
  144. package/dist/components/ui/select.d.ts +18 -0
  145. package/dist/components/ui/separator.d.ts +4 -0
  146. package/dist/components/ui/slider.d.ts +4 -0
  147. package/dist/components/ui/switch.d.ts +3 -0
  148. package/dist/components/ui/table.d.ts +10 -0
  149. package/dist/components/ui/textarea.d.ts +3 -0
  150. package/dist/components/ui/tooltip.d.ts +7 -0
  151. package/dist/components/ui/tree-view.d.ts +107 -0
  152. package/dist/contexts/AgentToolCallbacksContext.d.ts +23 -0
  153. package/dist/contexts/ApiContext.d.ts +11 -0
  154. package/dist/contexts/FlowDataContext.d.ts +9 -0
  155. package/dist/contexts/NodeRegistryContext.d.ts +14 -0
  156. package/dist/contexts/PluginRegistryContext.d.ts +39 -0
  157. package/dist/contexts/ThemeProvider.d.ts +18 -0
  158. package/dist/contexts/ValidationContext.d.ts +22 -0
  159. package/dist/demo/DemoInvect.d.ts +11 -0
  160. package/dist/demo/FlowViewer.d.ts +31 -0
  161. package/dist/demo/demo-api-client.d.ts +33 -0
  162. package/dist/demo/index.d.ts +6 -0
  163. package/dist/demo/sample-data.d.ts +1538 -0
  164. package/dist/demo.d.ts +2 -0
  165. package/dist/demo.js +2774 -0
  166. package/dist/estree-ClbRfS-1.js +7076 -0
  167. package/dist/fonts/geist-cyrillic-wght-normal.woff2 +0 -0
  168. package/dist/fonts/geist-latin-ext-wght-normal.woff2 +0 -0
  169. package/dist/fonts/geist-latin-wght-normal.woff2 +0 -0
  170. package/dist/fonts/iosevka-latin-400-normal.woff2 +0 -0
  171. package/dist/hooks/index.d.ts +1 -0
  172. package/dist/hooks/use-document-title.d.ts +1 -0
  173. package/dist/hooks/use-flow-data.d.ts +22 -0
  174. package/dist/hooks/use-invect-portal-class.d.ts +21 -0
  175. package/dist/hooks/useFlowEditorStore.d.ts +1 -0
  176. package/dist/index.css +3 -0
  177. package/dist/index.d.ts +22 -0
  178. package/dist/index.js +717 -0
  179. package/dist/lib/utils.d.ts +2 -0
  180. package/dist/prettier.d.ts +13 -0
  181. package/dist/routes/all-flow-runs.d.ts +5 -0
  182. package/dist/routes/credentials.d.ts +5 -0
  183. package/dist/routes/flow-route-layout.d.ts +19 -0
  184. package/dist/routes/flow-runs.d.ts +5 -0
  185. package/dist/routes/flow.d.ts +5 -0
  186. package/dist/routes/home.d.ts +5 -0
  187. package/dist/services/index.d.ts +1 -0
  188. package/dist/standalone-C3Df7W52.js +3463 -0
  189. package/dist/stores/executionViewStore.d.ts +64 -0
  190. package/dist/stores/flow-editor.store.d.ts +137 -0
  191. package/dist/stores/flowEditorStore.d.ts +1 -0
  192. package/dist/stores/index.d.ts +2 -0
  193. package/dist/stores/uiStore.d.ts +45 -0
  194. package/dist/types/agent-tools.types.d.ts +53 -0
  195. package/dist/types/index.d.ts +2 -0
  196. package/dist/types/node-definition.types.d.ts +85 -0
  197. package/dist/types/plugin.types.d.ts +100 -0
  198. package/dist/utils/credentialBranding.d.ts +8 -0
  199. package/dist/utils/credentialFiltering.d.ts +20 -0
  200. package/dist/utils/flowTransformations.d.ts +16 -0
  201. package/dist/utils/layoutUtils.d.ts +23 -0
  202. package/dist/utils/nodeReferenceUtils.d.ts +37 -0
  203. package/dist/vendor.d.ts +5 -0
  204. package/package.json +130 -0
  205. package/src/.DS_Store +0 -0
  206. package/src/Invect.tsx +229 -0
  207. package/src/InvectShell.tsx +55 -0
  208. package/src/api/agent-tools.api.ts +23 -0
  209. package/src/api/client.ts +899 -0
  210. package/src/api/credentials.api.ts +197 -0
  211. package/src/api/executions.api.ts +228 -0
  212. package/src/api/flows.api.ts +195 -0
  213. package/src/api/index.ts +17 -0
  214. package/src/api/node-data.api.ts +167 -0
  215. package/src/api/query-keys.ts +44 -0
  216. package/src/api/triggers.api.ts +120 -0
  217. package/src/api/types.ts +212 -0
  218. package/src/api/use-flow-run-stream.ts +206 -0
  219. package/src/app.css +560 -0
  220. package/src/assets/.DS_Store +0 -0
  221. package/src/assets/favicon.ico +0 -0
  222. package/src/assets/fonts/geist-cyrillic-wght-normal.woff2 +0 -0
  223. package/src/assets/fonts/geist-latin-ext-wght-normal.woff2 +0 -0
  224. package/src/assets/fonts/geist-latin-wght-normal.woff2 +0 -0
  225. package/src/assets/fonts/iosevka-latin-400-normal.woff2 +0 -0
  226. package/src/assets/invect-branding.ts +51 -0
  227. package/src/assets/provider-icons/anthropic.svg +1 -0
  228. package/src/assets/provider-icons/anthropic_light.svg +1 -0
  229. package/src/assets/provider-icons/github.svg +1 -0
  230. package/src/assets/provider-icons/github_light.svg +1 -0
  231. package/src/assets/provider-icons/gmail.svg +1 -0
  232. package/src/assets/provider-icons/google_calendar.svg +1 -0
  233. package/src/assets/provider-icons/google_docs.svg +1 -0
  234. package/src/assets/provider-icons/google_drive.svg +1 -0
  235. package/src/assets/provider-icons/google_sheets.svg +1 -0
  236. package/src/assets/provider-icons/index.ts +55 -0
  237. package/src/assets/provider-icons/linear.svg +1 -0
  238. package/src/assets/provider-icons/openai.svg +1 -0
  239. package/src/assets/provider-icons/postgres.svg +1 -0
  240. package/src/assets/provider-icons/slack.svg +1 -0
  241. package/src/assets/small-loader-dark.svg +22 -0
  242. package/src/assets/small-loader-light.svg +22 -0
  243. package/src/assets/small.svg +7 -0
  244. package/src/components/.DS_Store +0 -0
  245. package/src/components/PageLayout.tsx +55 -0
  246. package/src/components/chat/ChatInput.tsx +115 -0
  247. package/src/components/chat/ChatMessageList.tsx +788 -0
  248. package/src/components/chat/ChatModelSelector.tsx +208 -0
  249. package/src/components/chat/ChatPanel.tsx +243 -0
  250. package/src/components/chat/ChatPromptOverlay.tsx +150 -0
  251. package/src/components/chat/ChatProviderSelector.tsx +135 -0
  252. package/src/components/chat/ChatSettingsPanel.tsx +277 -0
  253. package/src/components/chat/InlineCredentialSetup.tsx +343 -0
  254. package/src/components/chat/MarkdownRenderer.tsx +140 -0
  255. package/src/components/chat/chat-memory.ts +88 -0
  256. package/src/components/chat/chat.store.ts +479 -0
  257. package/src/components/chat/index.ts +5 -0
  258. package/src/components/chat/use-chat.ts +473 -0
  259. package/src/components/credentials/CreateCredentialModal.tsx +609 -0
  260. package/src/components/credentials/CredentialDetailDialog.tsx +882 -0
  261. package/src/components/credentials/EditCredentialModal.tsx +399 -0
  262. package/src/components/credentials/OAuth2ConnectButton.tsx +288 -0
  263. package/src/components/credentials/OAuth2ProviderSelector.tsx +360 -0
  264. package/src/components/credentials/credential-utils.ts +99 -0
  265. package/src/components/credentials/index.ts +10 -0
  266. package/src/components/dashboard/FailedRunsAlert.tsx +67 -0
  267. package/src/components/dashboard/FlowCard.tsx +64 -0
  268. package/src/components/dashboard/RecentActivityTable.tsx +92 -0
  269. package/src/components/dashboard/StatCard.tsx +32 -0
  270. package/src/components/dashboard/index.ts +5 -0
  271. package/src/components/dashboard/status-helpers.tsx +102 -0
  272. package/src/components/flow-editor/ActionsSidebar.tsx +503 -0
  273. package/src/components/flow-editor/FlowEditor.tsx +1002 -0
  274. package/src/components/flow-editor/FlowHeader.tsx +87 -0
  275. package/src/components/flow-editor/FlowLayout.tsx +117 -0
  276. package/src/components/flow-editor/ModeSwitcher.tsx +49 -0
  277. package/src/components/flow-editor/NodeSidebar.tsx +343 -0
  278. package/src/components/flow-editor/RunControls.tsx +109 -0
  279. package/src/components/flow-editor/ToolConfigPanel.tsx +434 -0
  280. package/src/components/flow-editor/ValidationPanel.tsx +167 -0
  281. package/src/components/flow-editor/flow-editor.store.ts +2 -0
  282. package/src/components/flow-editor/index.ts +6 -0
  283. package/src/components/flow-editor/inline-edit.tsx +111 -0
  284. package/src/components/flow-editor/node-config-panel/ConfigFieldWithTemplate.tsx +334 -0
  285. package/src/components/flow-editor/node-config-panel/CredentialCombobox.tsx +217 -0
  286. package/src/components/flow-editor/node-config-panel/CredentialsSection.tsx +154 -0
  287. package/src/components/flow-editor/node-config-panel/DroppableInput.tsx +45 -0
  288. package/src/components/flow-editor/node-config-panel/DynamicSelectField.tsx +223 -0
  289. package/src/components/flow-editor/node-config-panel/JsonPreviewPanel.tsx +134 -0
  290. package/src/components/flow-editor/node-config-panel/NodeConfigPanel.tsx +650 -0
  291. package/src/components/flow-editor/node-config-panel/NodeConfigPanelHeader.tsx +91 -0
  292. package/src/components/flow-editor/node-config-panel/ParametersSection.tsx +144 -0
  293. package/src/components/flow-editor/node-config-panel/SearchableSelectField.tsx +126 -0
  294. package/src/components/flow-editor/node-config-panel/SwitchCasesField.tsx +212 -0
  295. package/src/components/flow-editor/node-config-panel/hooks/index.ts +2 -0
  296. package/src/components/flow-editor/node-config-panel/hooks/use-node-config-panel-state.ts +284 -0
  297. package/src/components/flow-editor/node-config-panel/hooks/use-node-execution.ts +287 -0
  298. package/src/components/flow-editor/node-config-panel/hooks/use-upstream-slots.ts +310 -0
  299. package/src/components/flow-editor/node-config-panel/panels/AgentToolsPanel.tsx +837 -0
  300. package/src/components/flow-editor/node-config-panel/panels/ConfigurationPanel.tsx +383 -0
  301. package/src/components/flow-editor/node-config-panel/panels/DataMapperPane.tsx +456 -0
  302. package/src/components/flow-editor/node-config-panel/panels/InputPanel.tsx +338 -0
  303. package/src/components/flow-editor/node-config-panel/panels/OutputPanel.tsx +109 -0
  304. package/src/components/flow-editor/node-config-panel/panels/index.ts +4 -0
  305. package/src/components/flow-editor/node-config-panel/types.ts +20 -0
  306. package/src/components/flow-editor/node-config-panel/use-node-config-panel-store.ts +283 -0
  307. package/src/components/flow-editor/node-config-panel/use-node-config-state.ts +172 -0
  308. package/src/components/flow-editor/node-config-panel/use-run-node.ts +147 -0
  309. package/src/components/flow-editor/node-config-panel/utils.ts +73 -0
  310. package/src/components/flow-editor/serialize-to-sdk.ts +204 -0
  311. package/src/components/flow-editor/toolbar-context.ts +9 -0
  312. package/src/components/flow-editor/use-copy-paste.ts +575 -0
  313. package/src/components/flow-editor/use-copy-paste.types.ts +35 -0
  314. package/src/components/flow-editor/use-flow-editor.ts +241 -0
  315. package/src/components/flow-runs-table/FlowRunsTable.tsx +631 -0
  316. package/src/components/flow-runs-table/index.ts +1 -0
  317. package/src/components/flow-viewer/FlowRunsView.tsx +268 -0
  318. package/src/components/flow-viewer/FlowStatusView.tsx +351 -0
  319. package/src/components/flow-viewer/RunSelector.tsx +422 -0
  320. package/src/components/flow-viewer/RunsSidebar.tsx +125 -0
  321. package/src/components/flow-viewer/agent-tool-executions-list.tsx +298 -0
  322. package/src/components/flow-viewer/index.ts +1 -0
  323. package/src/components/flow-viewer/logs-panel.tsx +567 -0
  324. package/src/components/flow-viewer/use-execution-log-data.ts +374 -0
  325. package/src/components/graph/BatchFlowEdge.tsx +229 -0
  326. package/src/components/graph/LayoutSelector.tsx +42 -0
  327. package/src/components/graph/index.ts +61 -0
  328. package/src/components/graph/styleUtils.ts +375 -0
  329. package/src/components/nodes/.DS_Store +0 -0
  330. package/src/components/nodes/AgentConfigPanel.tsx +1033 -0
  331. package/src/components/nodes/AgentNode.tsx +298 -0
  332. package/src/components/nodes/AgentToolsBox.tsx +193 -0
  333. package/src/components/nodes/NodeAppendix.tsx +98 -0
  334. package/src/components/nodes/NodeStatusIndicator.tsx +74 -0
  335. package/src/components/nodes/NodeViewContext.tsx +45 -0
  336. package/src/components/nodes/ToolParamField.tsx +282 -0
  337. package/src/components/nodes/ToolSelectorModal.tsx +648 -0
  338. package/src/components/nodes/ToolSelectorParts.tsx +505 -0
  339. package/src/components/nodes/UniversalNode.tsx +356 -0
  340. package/src/components/nodes/createContextAwareNodes.ts +19 -0
  341. package/src/components/nodes/index.ts +45 -0
  342. package/src/components/nodes/nodeRegistry.ts +50 -0
  343. package/src/components/nodes/withNodeContext.tsx +55 -0
  344. package/src/components/shared/InvectLoader.tsx +59 -0
  345. package/src/components/shared/InvectLogo.tsx +59 -0
  346. package/src/components/shared/ProviderIcon.tsx +115 -0
  347. package/src/components/side-menu/side-menu.tsx +267 -0
  348. package/src/components/sidebar/BaseSidebar.tsx +148 -0
  349. package/src/components/sidebar/index.ts +1 -0
  350. package/src/components/triggers/CronPreview.tsx +243 -0
  351. package/src/components/triggers/index.ts +1 -0
  352. package/src/components/ui/alert-dialog.tsx +152 -0
  353. package/src/components/ui/badge.tsx +39 -0
  354. package/src/components/ui/button.tsx +58 -0
  355. package/src/components/ui/card.tsx +75 -0
  356. package/src/components/ui/codemirror-js-editor.tsx +432 -0
  357. package/src/components/ui/codemirror-json-editor.tsx +816 -0
  358. package/src/components/ui/codemirror-nunjucks-editor.tsx +451 -0
  359. package/src/components/ui/codemirror-vscode-theme.ts +243 -0
  360. package/src/components/ui/collapsible.tsx +12 -0
  361. package/src/components/ui/command.tsx +162 -0
  362. package/src/components/ui/dialog.tsx +140 -0
  363. package/src/components/ui/dropdown-menu.tsx +232 -0
  364. package/src/components/ui/empty-state.tsx +93 -0
  365. package/src/components/ui/input.tsx +26 -0
  366. package/src/components/ui/label.tsx +19 -0
  367. package/src/components/ui/popover.tsx +53 -0
  368. package/src/components/ui/resizable.tsx +61 -0
  369. package/src/components/ui/scroll-area.tsx +56 -0
  370. package/src/components/ui/select.tsx +179 -0
  371. package/src/components/ui/separator.tsx +26 -0
  372. package/src/components/ui/slider.tsx +58 -0
  373. package/src/components/ui/switch.tsx +22 -0
  374. package/src/components/ui/table.tsx +90 -0
  375. package/src/components/ui/textarea.tsx +23 -0
  376. package/src/components/ui/tooltip.tsx +54 -0
  377. package/src/components/ui/tree-view.tsx +574 -0
  378. package/src/contexts/AgentToolCallbacksContext.tsx +31 -0
  379. package/src/contexts/ApiContext.tsx +51 -0
  380. package/src/contexts/FlowDataContext.tsx +21 -0
  381. package/src/contexts/NodeRegistryContext.tsx +54 -0
  382. package/src/contexts/PluginRegistryContext.tsx +182 -0
  383. package/src/contexts/ThemeProvider.tsx +106 -0
  384. package/src/contexts/ValidationContext.tsx +122 -0
  385. package/src/demo/DemoInvect.tsx +42 -0
  386. package/src/demo/FlowViewer.tsx +294 -0
  387. package/src/demo/demo-api-client.ts +246 -0
  388. package/src/demo/index.ts +28 -0
  389. package/src/demo/sample-data.ts +1980 -0
  390. package/src/hooks/index.ts +1 -0
  391. package/src/hooks/use-document-title.ts +8 -0
  392. package/src/hooks/use-flow-data.ts +144 -0
  393. package/src/hooks/use-invect-portal-class.ts +27 -0
  394. package/src/hooks/useFlowEditorStore.ts +2 -0
  395. package/src/index.ts +70 -0
  396. package/src/lib/utils.ts +6 -0
  397. package/src/prettier.d.ts +13 -0
  398. package/src/routes/all-flow-runs.tsx +27 -0
  399. package/src/routes/credentials.tsx +362 -0
  400. package/src/routes/flow-route-layout.tsx +113 -0
  401. package/src/routes/flow-runs.tsx +22 -0
  402. package/src/routes/flow.tsx +22 -0
  403. package/src/routes/home.tsx +282 -0
  404. package/src/services/index.ts +6 -0
  405. package/src/stores/executionViewStore.ts +211 -0
  406. package/src/stores/flow-editor.store.ts +738 -0
  407. package/src/stores/flowEditorStore.ts +2 -0
  408. package/src/stores/index.ts +10 -0
  409. package/src/stores/uiStore.ts +189 -0
  410. package/src/types/agent-tools.types.ts +64 -0
  411. package/src/types/index.ts +5 -0
  412. package/src/types/node-definition.types.ts +104 -0
  413. package/src/types/plugin.types.ts +123 -0
  414. package/src/utils/credentialBranding.ts +116 -0
  415. package/src/utils/credentialFiltering.ts +68 -0
  416. package/src/utils/flowTransformations.ts +137 -0
  417. package/src/utils/layoutUtils.ts +127 -0
  418. package/src/utils/nodeReferenceUtils.ts +135 -0
  419. package/src/vendor.d.ts +7 -0
@@ -0,0 +1,1538 @@
1
+ import { DemoData } from './demo-api-client';
2
+ import { NodeDefinition } from '../types/node-definition.types';
3
+ import { ReactFlowNodeData } from '@invect/core/types';
4
+ import { Node, Edge } from '@xyflow/react';
5
+ export declare const sampleNodeDefinitions: NodeDefinition[];
6
+ export declare const simpleFlowNodes: Node<ReactFlowNodeData>[];
7
+ export declare const simpleFlowEdges: Edge[];
8
+ export declare const branchingFlowNodes: Node<ReactFlowNodeData>[];
9
+ export declare const branchingFlowEdges: Edge[];
10
+ /** Agent tool definitions for the showcase flow's Investigate Ticket agent node */
11
+ export declare const showcaseAgentTools: Array<{
12
+ id: string;
13
+ name: string;
14
+ description: string;
15
+ category: string;
16
+ provider?: {
17
+ id: string;
18
+ name: string;
19
+ icon: string;
20
+ };
21
+ }>;
22
+ export declare const showcaseFlowNodes: Node<ReactFlowNodeData>[];
23
+ export declare const showcaseFlowEdges: Edge[];
24
+ export declare const showcaseFlowRun: {
25
+ id: string;
26
+ flowId: string;
27
+ flowVersion: number;
28
+ status: string;
29
+ inputs: {
30
+ action: string;
31
+ type: string;
32
+ data: {
33
+ id: string;
34
+ identifier: string;
35
+ title: string;
36
+ description: string;
37
+ priority: number;
38
+ state: {
39
+ name: string;
40
+ };
41
+ team: {
42
+ key: string;
43
+ name: string;
44
+ };
45
+ creator: {
46
+ name: string;
47
+ email: string;
48
+ };
49
+ labels: {
50
+ name: string;
51
+ }[];
52
+ url: string;
53
+ createdAt: string;
54
+ };
55
+ };
56
+ outputs: {
57
+ create_fix_pr: {
58
+ id: number;
59
+ number: number;
60
+ html_url: string;
61
+ title: string;
62
+ state: string;
63
+ head: {
64
+ ref: string;
65
+ };
66
+ base: {
67
+ ref: string;
68
+ };
69
+ created_at: string;
70
+ };
71
+ update_linear_ticket: {
72
+ id: string;
73
+ identifier: string;
74
+ state: {
75
+ name: string;
76
+ };
77
+ };
78
+ };
79
+ error: undefined;
80
+ startedAt: string;
81
+ completedAt: string;
82
+ duration: number;
83
+ triggerType: string;
84
+ triggerNodeId: string;
85
+ triggerData: {
86
+ source: string;
87
+ event: string;
88
+ };
89
+ };
90
+ export declare const showcaseNodeExecutions: ({
91
+ id: string;
92
+ flowRunId: string;
93
+ nodeId: string;
94
+ nodeType: string;
95
+ status: string;
96
+ inputs: {
97
+ linear_webhook?: undefined;
98
+ investigation_agent?: undefined;
99
+ route_by_issue_type?: undefined;
100
+ create_fix_pr?: undefined;
101
+ };
102
+ outputs: {
103
+ nodeType: string;
104
+ data: {
105
+ variables: {
106
+ output: {
107
+ value: {
108
+ id: string;
109
+ identifier: string;
110
+ title: string;
111
+ description: string;
112
+ priority: number;
113
+ state: {
114
+ name: string;
115
+ };
116
+ team: {
117
+ key: string;
118
+ name: string;
119
+ };
120
+ creator: {
121
+ name: string;
122
+ email: string;
123
+ };
124
+ labels: {
125
+ name: string;
126
+ }[];
127
+ url: string;
128
+ createdAt: string;
129
+ };
130
+ type: "object";
131
+ };
132
+ bug?: undefined;
133
+ };
134
+ metadata?: undefined;
135
+ };
136
+ };
137
+ startedAt: string;
138
+ completedAt: string;
139
+ duration: number;
140
+ retryCount: number;
141
+ } | {
142
+ id: string;
143
+ flowRunId: string;
144
+ nodeId: string;
145
+ nodeType: string;
146
+ status: string;
147
+ inputs: {
148
+ linear_webhook: {
149
+ id: string;
150
+ identifier: string;
151
+ title: string;
152
+ description: string;
153
+ priority: number;
154
+ state: {
155
+ name: string;
156
+ };
157
+ team: {
158
+ key: string;
159
+ name: string;
160
+ };
161
+ creator: {
162
+ name: string;
163
+ email: string;
164
+ };
165
+ labels: {
166
+ name: string;
167
+ }[];
168
+ url: string;
169
+ createdAt: string;
170
+ };
171
+ investigation_agent?: undefined;
172
+ route_by_issue_type?: undefined;
173
+ create_fix_pr?: undefined;
174
+ };
175
+ outputs: {
176
+ nodeType: string;
177
+ data: {
178
+ variables: {
179
+ output: {
180
+ value: {
181
+ finalResponse: string;
182
+ toolResults: ({
183
+ toolId: string;
184
+ toolName: string;
185
+ input: {
186
+ query: string;
187
+ project?: undefined;
188
+ logGroup?: undefined;
189
+ startTime?: undefined;
190
+ endTime?: undefined;
191
+ owner?: undefined;
192
+ repo?: undefined;
193
+ path?: undefined;
194
+ };
195
+ output: {
196
+ rows: {
197
+ failed_count: number;
198
+ affected_customers: number;
199
+ }[];
200
+ rowCount: number;
201
+ issues?: undefined;
202
+ results?: undefined;
203
+ totalResults?: undefined;
204
+ content?: undefined;
205
+ sha?: undefined;
206
+ size?: undefined;
207
+ path?: undefined;
208
+ };
209
+ error: undefined;
210
+ success: boolean;
211
+ iteration: number;
212
+ executionTimeMs: number;
213
+ } | {
214
+ toolId: string;
215
+ toolName: string;
216
+ input: {
217
+ query: string;
218
+ project: string;
219
+ logGroup?: undefined;
220
+ startTime?: undefined;
221
+ endTime?: undefined;
222
+ owner?: undefined;
223
+ repo?: undefined;
224
+ path?: undefined;
225
+ };
226
+ output: {
227
+ issues: {
228
+ id: string;
229
+ title: string;
230
+ count: number;
231
+ firstSeen: string;
232
+ lastSeen: string;
233
+ level: string;
234
+ culprit: string;
235
+ }[];
236
+ rows?: undefined;
237
+ rowCount?: undefined;
238
+ results?: undefined;
239
+ totalResults?: undefined;
240
+ content?: undefined;
241
+ sha?: undefined;
242
+ size?: undefined;
243
+ path?: undefined;
244
+ };
245
+ error: undefined;
246
+ success: boolean;
247
+ iteration: number;
248
+ executionTimeMs: number;
249
+ } | {
250
+ toolId: string;
251
+ toolName: string;
252
+ input: {
253
+ logGroup: string;
254
+ query: string;
255
+ startTime: string;
256
+ endTime: string;
257
+ project?: undefined;
258
+ owner?: undefined;
259
+ repo?: undefined;
260
+ path?: undefined;
261
+ };
262
+ output: {
263
+ results: {
264
+ timestamp: string;
265
+ message: string;
266
+ }[];
267
+ totalResults: number;
268
+ rows?: undefined;
269
+ rowCount?: undefined;
270
+ issues?: undefined;
271
+ content?: undefined;
272
+ sha?: undefined;
273
+ size?: undefined;
274
+ path?: undefined;
275
+ };
276
+ error: undefined;
277
+ success: boolean;
278
+ iteration: number;
279
+ executionTimeMs: number;
280
+ } | {
281
+ toolId: string;
282
+ toolName: string;
283
+ input: {
284
+ query: string;
285
+ project?: undefined;
286
+ logGroup?: undefined;
287
+ startTime?: undefined;
288
+ endTime?: undefined;
289
+ owner?: undefined;
290
+ repo?: undefined;
291
+ path?: undefined;
292
+ };
293
+ output: {
294
+ results: {
295
+ id: string;
296
+ title: string;
297
+ url: string;
298
+ snippet: string;
299
+ }[];
300
+ rows?: undefined;
301
+ rowCount?: undefined;
302
+ issues?: undefined;
303
+ totalResults?: undefined;
304
+ content?: undefined;
305
+ sha?: undefined;
306
+ size?: undefined;
307
+ path?: undefined;
308
+ };
309
+ error: undefined;
310
+ success: boolean;
311
+ iteration: number;
312
+ executionTimeMs: number;
313
+ } | {
314
+ toolId: string;
315
+ toolName: string;
316
+ input: {
317
+ owner: string;
318
+ repo: string;
319
+ path: string;
320
+ query?: undefined;
321
+ project?: undefined;
322
+ logGroup?: undefined;
323
+ startTime?: undefined;
324
+ endTime?: undefined;
325
+ };
326
+ output: {
327
+ content: string;
328
+ sha: string;
329
+ size: number;
330
+ path: string;
331
+ rows?: undefined;
332
+ rowCount?: undefined;
333
+ issues?: undefined;
334
+ results?: undefined;
335
+ totalResults?: undefined;
336
+ };
337
+ error: undefined;
338
+ success: boolean;
339
+ iteration: number;
340
+ executionTimeMs: number;
341
+ })[];
342
+ iterations: number;
343
+ finishReason: string;
344
+ id?: undefined;
345
+ identifier?: undefined;
346
+ state?: undefined;
347
+ updatedAt?: undefined;
348
+ };
349
+ type: "object";
350
+ };
351
+ bug?: undefined;
352
+ };
353
+ metadata: {
354
+ model: string;
355
+ provider: string;
356
+ totalToolCalls: number;
357
+ iterations: number;
358
+ };
359
+ };
360
+ };
361
+ startedAt: string;
362
+ completedAt: string;
363
+ duration: number;
364
+ retryCount: number;
365
+ } | {
366
+ id: string;
367
+ flowRunId: string;
368
+ nodeId: string;
369
+ nodeType: string;
370
+ status: string;
371
+ inputs: {
372
+ investigation_agent: {
373
+ summary: string;
374
+ root_cause: string;
375
+ severity: string;
376
+ issue_type: string;
377
+ recommended_action: string;
378
+ affected_customers: number;
379
+ failed_transactions: number;
380
+ estimated_revenue_impact: string;
381
+ };
382
+ linear_webhook?: undefined;
383
+ route_by_issue_type?: undefined;
384
+ create_fix_pr?: undefined;
385
+ };
386
+ outputs: {
387
+ nodeType: string;
388
+ data: {
389
+ variables: {
390
+ bug: {
391
+ value: {
392
+ summary: string;
393
+ root_cause: string;
394
+ severity: string;
395
+ issue_type: string;
396
+ recommended_action: string;
397
+ affected_customers: number;
398
+ failed_transactions: number;
399
+ estimated_revenue_impact: string;
400
+ };
401
+ type: "object";
402
+ };
403
+ output?: undefined;
404
+ };
405
+ metadata: {
406
+ matchedCase: string;
407
+ matchedLabel: string;
408
+ matchMode: string;
409
+ caseResults: {
410
+ slug: string;
411
+ label: string;
412
+ matched: boolean;
413
+ }[];
414
+ };
415
+ };
416
+ };
417
+ startedAt: string;
418
+ completedAt: string;
419
+ duration: number;
420
+ retryCount: number;
421
+ } | {
422
+ id: string;
423
+ flowRunId: string;
424
+ nodeId: string;
425
+ nodeType: string;
426
+ status: string;
427
+ inputs: {
428
+ route_by_issue_type: {
429
+ summary: string;
430
+ root_cause: string;
431
+ severity: string;
432
+ issue_type: string;
433
+ recommended_action: string;
434
+ affected_customers: number;
435
+ failed_transactions: number;
436
+ estimated_revenue_impact: string;
437
+ };
438
+ linear_webhook?: undefined;
439
+ investigation_agent?: undefined;
440
+ create_fix_pr?: undefined;
441
+ };
442
+ outputs: {
443
+ nodeType: string;
444
+ data: {
445
+ variables: {
446
+ output: {
447
+ value: {
448
+ id: number;
449
+ number: number;
450
+ html_url: string;
451
+ title: string;
452
+ state: string;
453
+ head: {
454
+ ref: string;
455
+ };
456
+ base: {
457
+ ref: string;
458
+ };
459
+ created_at: string;
460
+ };
461
+ type: "object";
462
+ };
463
+ bug?: undefined;
464
+ };
465
+ metadata?: undefined;
466
+ };
467
+ };
468
+ startedAt: string;
469
+ completedAt: string;
470
+ duration: number;
471
+ retryCount: number;
472
+ } | {
473
+ id: string;
474
+ flowRunId: string;
475
+ nodeId: string;
476
+ nodeType: string;
477
+ status: string;
478
+ inputs: {
479
+ linear_webhook?: undefined;
480
+ investigation_agent?: undefined;
481
+ route_by_issue_type?: undefined;
482
+ create_fix_pr?: undefined;
483
+ };
484
+ outputs: undefined;
485
+ startedAt: string;
486
+ completedAt: string;
487
+ duration: number;
488
+ retryCount: number;
489
+ } | {
490
+ id: string;
491
+ flowRunId: string;
492
+ nodeId: string;
493
+ nodeType: string;
494
+ status: string;
495
+ inputs: {
496
+ create_fix_pr: {
497
+ id: number;
498
+ number: number;
499
+ html_url: string;
500
+ title: string;
501
+ state: string;
502
+ head: {
503
+ ref: string;
504
+ };
505
+ base: {
506
+ ref: string;
507
+ };
508
+ created_at: string;
509
+ };
510
+ linear_webhook?: undefined;
511
+ investigation_agent?: undefined;
512
+ route_by_issue_type?: undefined;
513
+ };
514
+ outputs: {
515
+ nodeType: string;
516
+ data: {
517
+ variables: {
518
+ output: {
519
+ value: {
520
+ id: string;
521
+ identifier: string;
522
+ state: {
523
+ name: string;
524
+ };
525
+ updatedAt: string;
526
+ finalResponse?: undefined;
527
+ toolResults?: undefined;
528
+ iterations?: undefined;
529
+ finishReason?: undefined;
530
+ };
531
+ type: "object";
532
+ };
533
+ bug?: undefined;
534
+ };
535
+ metadata?: undefined;
536
+ };
537
+ };
538
+ startedAt: string;
539
+ completedAt: string;
540
+ duration: number;
541
+ retryCount: number;
542
+ })[];
543
+ export declare const sampleCredentials: ({
544
+ id: string;
545
+ name: string;
546
+ type: "llm";
547
+ authType: "apiKey";
548
+ description: string;
549
+ isActive: boolean;
550
+ userId: string;
551
+ isShared: boolean;
552
+ config: {
553
+ apiKey: string;
554
+ connectionString?: undefined;
555
+ oauth2Provider?: undefined;
556
+ accessToken?: undefined;
557
+ refreshToken?: undefined;
558
+ tokenType?: undefined;
559
+ scope?: undefined;
560
+ expiresAt?: undefined;
561
+ token?: undefined;
562
+ accessKeyId?: undefined;
563
+ secretAccessKey?: undefined;
564
+ region?: undefined;
565
+ service?: undefined;
566
+ paramName?: undefined;
567
+ };
568
+ lastUsedAt: string;
569
+ createdAt: string;
570
+ updatedAt: string;
571
+ } | {
572
+ id: string;
573
+ name: string;
574
+ type: "database";
575
+ authType: "connectionString";
576
+ description: string;
577
+ isActive: boolean;
578
+ userId: string;
579
+ isShared: boolean;
580
+ config: {
581
+ connectionString: string;
582
+ apiKey?: undefined;
583
+ oauth2Provider?: undefined;
584
+ accessToken?: undefined;
585
+ refreshToken?: undefined;
586
+ tokenType?: undefined;
587
+ scope?: undefined;
588
+ expiresAt?: undefined;
589
+ token?: undefined;
590
+ accessKeyId?: undefined;
591
+ secretAccessKey?: undefined;
592
+ region?: undefined;
593
+ service?: undefined;
594
+ paramName?: undefined;
595
+ };
596
+ lastUsedAt: string;
597
+ createdAt: string;
598
+ updatedAt: string;
599
+ } | {
600
+ id: string;
601
+ name: string;
602
+ type: "http-api";
603
+ authType: "oauth2";
604
+ description: string;
605
+ isActive: boolean;
606
+ userId: string;
607
+ isShared: boolean;
608
+ config: {
609
+ oauth2Provider: string;
610
+ accessToken: string;
611
+ refreshToken: string;
612
+ tokenType: string;
613
+ scope: string;
614
+ expiresAt: string;
615
+ apiKey?: undefined;
616
+ connectionString?: undefined;
617
+ token?: undefined;
618
+ accessKeyId?: undefined;
619
+ secretAccessKey?: undefined;
620
+ region?: undefined;
621
+ service?: undefined;
622
+ paramName?: undefined;
623
+ };
624
+ lastUsedAt: string;
625
+ createdAt: string;
626
+ updatedAt: string;
627
+ } | {
628
+ id: string;
629
+ name: string;
630
+ type: "http-api";
631
+ authType: "oauth2";
632
+ description: string;
633
+ isActive: boolean;
634
+ userId: string;
635
+ isShared: boolean;
636
+ config: {
637
+ oauth2Provider: string;
638
+ accessToken: string;
639
+ tokenType: string;
640
+ scope: string;
641
+ apiKey?: undefined;
642
+ connectionString?: undefined;
643
+ refreshToken?: undefined;
644
+ expiresAt?: undefined;
645
+ token?: undefined;
646
+ accessKeyId?: undefined;
647
+ secretAccessKey?: undefined;
648
+ region?: undefined;
649
+ service?: undefined;
650
+ paramName?: undefined;
651
+ };
652
+ lastUsedAt: string;
653
+ createdAt: string;
654
+ updatedAt: string;
655
+ } | {
656
+ id: string;
657
+ name: string;
658
+ type: "http-api";
659
+ authType: "bearer";
660
+ description: string;
661
+ isActive: boolean;
662
+ userId: string;
663
+ isShared: boolean;
664
+ config: {
665
+ token: string;
666
+ apiKey?: undefined;
667
+ connectionString?: undefined;
668
+ oauth2Provider?: undefined;
669
+ accessToken?: undefined;
670
+ refreshToken?: undefined;
671
+ tokenType?: undefined;
672
+ scope?: undefined;
673
+ expiresAt?: undefined;
674
+ accessKeyId?: undefined;
675
+ secretAccessKey?: undefined;
676
+ region?: undefined;
677
+ service?: undefined;
678
+ paramName?: undefined;
679
+ };
680
+ lastUsedAt: string;
681
+ createdAt: string;
682
+ updatedAt: string;
683
+ } | {
684
+ id: string;
685
+ name: string;
686
+ type: "http-api";
687
+ authType: "awsSigV4";
688
+ description: string;
689
+ isActive: boolean;
690
+ userId: string;
691
+ isShared: boolean;
692
+ config: {
693
+ accessKeyId: string;
694
+ secretAccessKey: string;
695
+ region: string;
696
+ service: string;
697
+ apiKey?: undefined;
698
+ connectionString?: undefined;
699
+ oauth2Provider?: undefined;
700
+ accessToken?: undefined;
701
+ refreshToken?: undefined;
702
+ tokenType?: undefined;
703
+ scope?: undefined;
704
+ expiresAt?: undefined;
705
+ token?: undefined;
706
+ paramName?: undefined;
707
+ };
708
+ lastUsedAt: string;
709
+ createdAt: string;
710
+ updatedAt: string;
711
+ } | {
712
+ id: string;
713
+ name: string;
714
+ type: "http-api";
715
+ authType: "apiKey";
716
+ description: string;
717
+ isActive: boolean;
718
+ userId: string;
719
+ isShared: boolean;
720
+ config: {
721
+ apiKey: string;
722
+ paramName: string;
723
+ connectionString?: undefined;
724
+ oauth2Provider?: undefined;
725
+ accessToken?: undefined;
726
+ refreshToken?: undefined;
727
+ tokenType?: undefined;
728
+ scope?: undefined;
729
+ expiresAt?: undefined;
730
+ token?: undefined;
731
+ accessKeyId?: undefined;
732
+ secretAccessKey?: undefined;
733
+ region?: undefined;
734
+ service?: undefined;
735
+ };
736
+ lastUsedAt: string;
737
+ createdAt: string;
738
+ updatedAt: string;
739
+ })[];
740
+ export declare const sampleChatMessages: ({
741
+ id: string;
742
+ flowId: string;
743
+ role: "user";
744
+ content: string;
745
+ toolMeta: null;
746
+ createdAt: string;
747
+ } | {
748
+ id: string;
749
+ flowId: string;
750
+ role: "tool";
751
+ content: string;
752
+ toolMeta: {
753
+ toolName: string;
754
+ args: {
755
+ summary: string;
756
+ steps: {
757
+ index: number;
758
+ title: string;
759
+ status: string;
760
+ }[];
761
+ query?: undefined;
762
+ type?: undefined;
763
+ name?: undefined;
764
+ referenceId?: undefined;
765
+ actionId?: undefined;
766
+ nodeId?: undefined;
767
+ credentialId?: undefined;
768
+ model?: undefined;
769
+ taskPrompt?: undefined;
770
+ systemPrompt?: undefined;
771
+ maxIterations?: undefined;
772
+ stopCondition?: undefined;
773
+ toolId?: undefined;
774
+ params?: undefined;
775
+ sourceId?: undefined;
776
+ targetId?: undefined;
777
+ sourceHandle?: undefined;
778
+ inputs?: undefined;
779
+ };
780
+ result: {
781
+ success: boolean;
782
+ data: {
783
+ planSet: boolean;
784
+ actions?: undefined;
785
+ nodeId?: undefined;
786
+ type?: undefined;
787
+ name?: undefined;
788
+ credentials?: undefined;
789
+ configured?: undefined;
790
+ instanceId?: undefined;
791
+ toolId?: undefined;
792
+ edgeId?: undefined;
793
+ isValid?: undefined;
794
+ errors?: undefined;
795
+ warnings?: undefined;
796
+ updated?: undefined;
797
+ flowRunId?: undefined;
798
+ status?: undefined;
799
+ duration?: undefined;
800
+ outputs?: undefined;
801
+ };
802
+ };
803
+ status: string;
804
+ startedAt: number;
805
+ durationMs: number;
806
+ };
807
+ createdAt: string;
808
+ } | {
809
+ id: string;
810
+ flowId: string;
811
+ role: "tool";
812
+ content: string;
813
+ toolMeta: {
814
+ toolName: string;
815
+ args: {
816
+ query: string;
817
+ summary?: undefined;
818
+ steps?: undefined;
819
+ type?: undefined;
820
+ name?: undefined;
821
+ referenceId?: undefined;
822
+ actionId?: undefined;
823
+ nodeId?: undefined;
824
+ credentialId?: undefined;
825
+ model?: undefined;
826
+ taskPrompt?: undefined;
827
+ systemPrompt?: undefined;
828
+ maxIterations?: undefined;
829
+ stopCondition?: undefined;
830
+ toolId?: undefined;
831
+ params?: undefined;
832
+ sourceId?: undefined;
833
+ targetId?: undefined;
834
+ sourceHandle?: undefined;
835
+ inputs?: undefined;
836
+ };
837
+ result: {
838
+ success: boolean;
839
+ data: {
840
+ actions: {
841
+ id: string;
842
+ name: string;
843
+ provider: string;
844
+ }[];
845
+ planSet?: undefined;
846
+ nodeId?: undefined;
847
+ type?: undefined;
848
+ name?: undefined;
849
+ credentials?: undefined;
850
+ configured?: undefined;
851
+ instanceId?: undefined;
852
+ toolId?: undefined;
853
+ edgeId?: undefined;
854
+ isValid?: undefined;
855
+ errors?: undefined;
856
+ warnings?: undefined;
857
+ updated?: undefined;
858
+ flowRunId?: undefined;
859
+ status?: undefined;
860
+ duration?: undefined;
861
+ outputs?: undefined;
862
+ };
863
+ };
864
+ status: string;
865
+ startedAt: number;
866
+ durationMs: number;
867
+ };
868
+ createdAt: string;
869
+ } | {
870
+ id: string;
871
+ flowId: string;
872
+ role: "tool";
873
+ content: string;
874
+ toolMeta: {
875
+ toolName: string;
876
+ args: {
877
+ type: string;
878
+ name: string;
879
+ referenceId: string;
880
+ summary?: undefined;
881
+ steps?: undefined;
882
+ query?: undefined;
883
+ actionId?: undefined;
884
+ nodeId?: undefined;
885
+ credentialId?: undefined;
886
+ model?: undefined;
887
+ taskPrompt?: undefined;
888
+ systemPrompt?: undefined;
889
+ maxIterations?: undefined;
890
+ stopCondition?: undefined;
891
+ toolId?: undefined;
892
+ params?: undefined;
893
+ sourceId?: undefined;
894
+ targetId?: undefined;
895
+ sourceHandle?: undefined;
896
+ inputs?: undefined;
897
+ };
898
+ result: {
899
+ success: boolean;
900
+ data: {
901
+ nodeId: string;
902
+ type: string;
903
+ name: string;
904
+ planSet?: undefined;
905
+ actions?: undefined;
906
+ credentials?: undefined;
907
+ configured?: undefined;
908
+ instanceId?: undefined;
909
+ toolId?: undefined;
910
+ edgeId?: undefined;
911
+ isValid?: undefined;
912
+ errors?: undefined;
913
+ warnings?: undefined;
914
+ updated?: undefined;
915
+ flowRunId?: undefined;
916
+ status?: undefined;
917
+ duration?: undefined;
918
+ outputs?: undefined;
919
+ };
920
+ };
921
+ status: string;
922
+ startedAt: number;
923
+ durationMs: number;
924
+ };
925
+ createdAt: string;
926
+ } | {
927
+ id: string;
928
+ flowId: string;
929
+ role: "tool";
930
+ content: string;
931
+ toolMeta: {
932
+ toolName: string;
933
+ args: {
934
+ actionId: string;
935
+ summary?: undefined;
936
+ steps?: undefined;
937
+ query?: undefined;
938
+ type?: undefined;
939
+ name?: undefined;
940
+ referenceId?: undefined;
941
+ nodeId?: undefined;
942
+ credentialId?: undefined;
943
+ model?: undefined;
944
+ taskPrompt?: undefined;
945
+ systemPrompt?: undefined;
946
+ maxIterations?: undefined;
947
+ stopCondition?: undefined;
948
+ toolId?: undefined;
949
+ params?: undefined;
950
+ sourceId?: undefined;
951
+ targetId?: undefined;
952
+ sourceHandle?: undefined;
953
+ inputs?: undefined;
954
+ };
955
+ result: {
956
+ success: boolean;
957
+ data: {
958
+ credentials: {
959
+ id: string;
960
+ name: string;
961
+ type: string;
962
+ }[];
963
+ planSet?: undefined;
964
+ actions?: undefined;
965
+ nodeId?: undefined;
966
+ type?: undefined;
967
+ name?: undefined;
968
+ configured?: undefined;
969
+ instanceId?: undefined;
970
+ toolId?: undefined;
971
+ edgeId?: undefined;
972
+ isValid?: undefined;
973
+ errors?: undefined;
974
+ warnings?: undefined;
975
+ updated?: undefined;
976
+ flowRunId?: undefined;
977
+ status?: undefined;
978
+ duration?: undefined;
979
+ outputs?: undefined;
980
+ };
981
+ };
982
+ status: string;
983
+ startedAt: number;
984
+ durationMs: number;
985
+ };
986
+ createdAt: string;
987
+ } | {
988
+ id: string;
989
+ flowId: string;
990
+ role: "tool";
991
+ content: string;
992
+ toolMeta: {
993
+ toolName: string;
994
+ args: {
995
+ nodeId: string;
996
+ credentialId: string;
997
+ model: string;
998
+ taskPrompt: string;
999
+ systemPrompt: string;
1000
+ maxIterations: number;
1001
+ stopCondition: string;
1002
+ summary?: undefined;
1003
+ steps?: undefined;
1004
+ query?: undefined;
1005
+ type?: undefined;
1006
+ name?: undefined;
1007
+ referenceId?: undefined;
1008
+ actionId?: undefined;
1009
+ toolId?: undefined;
1010
+ params?: undefined;
1011
+ sourceId?: undefined;
1012
+ targetId?: undefined;
1013
+ sourceHandle?: undefined;
1014
+ inputs?: undefined;
1015
+ };
1016
+ result: {
1017
+ success: boolean;
1018
+ data: {
1019
+ configured: boolean;
1020
+ planSet?: undefined;
1021
+ actions?: undefined;
1022
+ nodeId?: undefined;
1023
+ type?: undefined;
1024
+ name?: undefined;
1025
+ credentials?: undefined;
1026
+ instanceId?: undefined;
1027
+ toolId?: undefined;
1028
+ edgeId?: undefined;
1029
+ isValid?: undefined;
1030
+ errors?: undefined;
1031
+ warnings?: undefined;
1032
+ updated?: undefined;
1033
+ flowRunId?: undefined;
1034
+ status?: undefined;
1035
+ duration?: undefined;
1036
+ outputs?: undefined;
1037
+ };
1038
+ };
1039
+ status: string;
1040
+ startedAt: number;
1041
+ durationMs: number;
1042
+ };
1043
+ createdAt: string;
1044
+ } | {
1045
+ id: string;
1046
+ flowId: string;
1047
+ role: "tool";
1048
+ content: string;
1049
+ toolMeta: {
1050
+ toolName: string;
1051
+ args: {
1052
+ nodeId: string;
1053
+ toolId: string;
1054
+ name: string;
1055
+ summary?: undefined;
1056
+ steps?: undefined;
1057
+ query?: undefined;
1058
+ type?: undefined;
1059
+ referenceId?: undefined;
1060
+ actionId?: undefined;
1061
+ credentialId?: undefined;
1062
+ model?: undefined;
1063
+ taskPrompt?: undefined;
1064
+ systemPrompt?: undefined;
1065
+ maxIterations?: undefined;
1066
+ stopCondition?: undefined;
1067
+ params?: undefined;
1068
+ sourceId?: undefined;
1069
+ targetId?: undefined;
1070
+ sourceHandle?: undefined;
1071
+ inputs?: undefined;
1072
+ };
1073
+ result: {
1074
+ success: boolean;
1075
+ data: {
1076
+ instanceId: string;
1077
+ toolId: string;
1078
+ planSet?: undefined;
1079
+ actions?: undefined;
1080
+ nodeId?: undefined;
1081
+ type?: undefined;
1082
+ name?: undefined;
1083
+ credentials?: undefined;
1084
+ configured?: undefined;
1085
+ edgeId?: undefined;
1086
+ isValid?: undefined;
1087
+ errors?: undefined;
1088
+ warnings?: undefined;
1089
+ updated?: undefined;
1090
+ flowRunId?: undefined;
1091
+ status?: undefined;
1092
+ duration?: undefined;
1093
+ outputs?: undefined;
1094
+ };
1095
+ };
1096
+ status: string;
1097
+ startedAt: number;
1098
+ durationMs: number;
1099
+ };
1100
+ createdAt: string;
1101
+ } | {
1102
+ id: string;
1103
+ flowId: string;
1104
+ role: "assistant";
1105
+ content: string;
1106
+ toolMeta: null;
1107
+ createdAt: string;
1108
+ } | {
1109
+ id: string;
1110
+ flowId: string;
1111
+ role: "tool";
1112
+ content: string;
1113
+ toolMeta: {
1114
+ toolName: string;
1115
+ args: {
1116
+ type: string;
1117
+ name: string;
1118
+ referenceId: string;
1119
+ params: {
1120
+ matchMode: string;
1121
+ cases: {
1122
+ slug: string;
1123
+ label: string;
1124
+ expression: string;
1125
+ }[];
1126
+ };
1127
+ summary?: undefined;
1128
+ steps?: undefined;
1129
+ query?: undefined;
1130
+ actionId?: undefined;
1131
+ nodeId?: undefined;
1132
+ credentialId?: undefined;
1133
+ model?: undefined;
1134
+ taskPrompt?: undefined;
1135
+ systemPrompt?: undefined;
1136
+ maxIterations?: undefined;
1137
+ stopCondition?: undefined;
1138
+ toolId?: undefined;
1139
+ sourceId?: undefined;
1140
+ targetId?: undefined;
1141
+ sourceHandle?: undefined;
1142
+ inputs?: undefined;
1143
+ };
1144
+ result: {
1145
+ success: boolean;
1146
+ data: {
1147
+ nodeId: string;
1148
+ type: string;
1149
+ planSet?: undefined;
1150
+ actions?: undefined;
1151
+ name?: undefined;
1152
+ credentials?: undefined;
1153
+ configured?: undefined;
1154
+ instanceId?: undefined;
1155
+ toolId?: undefined;
1156
+ edgeId?: undefined;
1157
+ isValid?: undefined;
1158
+ errors?: undefined;
1159
+ warnings?: undefined;
1160
+ updated?: undefined;
1161
+ flowRunId?: undefined;
1162
+ status?: undefined;
1163
+ duration?: undefined;
1164
+ outputs?: undefined;
1165
+ };
1166
+ };
1167
+ status: string;
1168
+ startedAt: number;
1169
+ durationMs: number;
1170
+ };
1171
+ createdAt: string;
1172
+ } | {
1173
+ id: string;
1174
+ flowId: string;
1175
+ role: "tool";
1176
+ content: string;
1177
+ toolMeta: {
1178
+ toolName: string;
1179
+ args: {
1180
+ type: string;
1181
+ name: string;
1182
+ referenceId: string;
1183
+ summary?: undefined;
1184
+ steps?: undefined;
1185
+ query?: undefined;
1186
+ actionId?: undefined;
1187
+ nodeId?: undefined;
1188
+ credentialId?: undefined;
1189
+ model?: undefined;
1190
+ taskPrompt?: undefined;
1191
+ systemPrompt?: undefined;
1192
+ maxIterations?: undefined;
1193
+ stopCondition?: undefined;
1194
+ toolId?: undefined;
1195
+ params?: undefined;
1196
+ sourceId?: undefined;
1197
+ targetId?: undefined;
1198
+ sourceHandle?: undefined;
1199
+ inputs?: undefined;
1200
+ };
1201
+ result: {
1202
+ success: boolean;
1203
+ data: {
1204
+ nodeId: string;
1205
+ planSet?: undefined;
1206
+ actions?: undefined;
1207
+ type?: undefined;
1208
+ name?: undefined;
1209
+ credentials?: undefined;
1210
+ configured?: undefined;
1211
+ instanceId?: undefined;
1212
+ toolId?: undefined;
1213
+ edgeId?: undefined;
1214
+ isValid?: undefined;
1215
+ errors?: undefined;
1216
+ warnings?: undefined;
1217
+ updated?: undefined;
1218
+ flowRunId?: undefined;
1219
+ status?: undefined;
1220
+ duration?: undefined;
1221
+ outputs?: undefined;
1222
+ };
1223
+ };
1224
+ status: string;
1225
+ startedAt: number;
1226
+ durationMs: number;
1227
+ };
1228
+ createdAt: string;
1229
+ } | {
1230
+ id: string;
1231
+ flowId: string;
1232
+ role: "tool";
1233
+ content: string;
1234
+ toolMeta: {
1235
+ toolName: string;
1236
+ args: {
1237
+ sourceId: string;
1238
+ targetId: string;
1239
+ summary?: undefined;
1240
+ steps?: undefined;
1241
+ query?: undefined;
1242
+ type?: undefined;
1243
+ name?: undefined;
1244
+ referenceId?: undefined;
1245
+ actionId?: undefined;
1246
+ nodeId?: undefined;
1247
+ credentialId?: undefined;
1248
+ model?: undefined;
1249
+ taskPrompt?: undefined;
1250
+ systemPrompt?: undefined;
1251
+ maxIterations?: undefined;
1252
+ stopCondition?: undefined;
1253
+ toolId?: undefined;
1254
+ params?: undefined;
1255
+ sourceHandle?: undefined;
1256
+ inputs?: undefined;
1257
+ };
1258
+ result: {
1259
+ success: boolean;
1260
+ data: {
1261
+ edgeId: string;
1262
+ planSet?: undefined;
1263
+ actions?: undefined;
1264
+ nodeId?: undefined;
1265
+ type?: undefined;
1266
+ name?: undefined;
1267
+ credentials?: undefined;
1268
+ configured?: undefined;
1269
+ instanceId?: undefined;
1270
+ toolId?: undefined;
1271
+ isValid?: undefined;
1272
+ errors?: undefined;
1273
+ warnings?: undefined;
1274
+ updated?: undefined;
1275
+ flowRunId?: undefined;
1276
+ status?: undefined;
1277
+ duration?: undefined;
1278
+ outputs?: undefined;
1279
+ };
1280
+ };
1281
+ status: string;
1282
+ startedAt: number;
1283
+ durationMs: number;
1284
+ };
1285
+ createdAt: string;
1286
+ } | {
1287
+ id: string;
1288
+ flowId: string;
1289
+ role: "tool";
1290
+ content: string;
1291
+ toolMeta: {
1292
+ toolName: string;
1293
+ args: {
1294
+ sourceId: string;
1295
+ targetId: string;
1296
+ sourceHandle: string;
1297
+ summary?: undefined;
1298
+ steps?: undefined;
1299
+ query?: undefined;
1300
+ type?: undefined;
1301
+ name?: undefined;
1302
+ referenceId?: undefined;
1303
+ actionId?: undefined;
1304
+ nodeId?: undefined;
1305
+ credentialId?: undefined;
1306
+ model?: undefined;
1307
+ taskPrompt?: undefined;
1308
+ systemPrompt?: undefined;
1309
+ maxIterations?: undefined;
1310
+ stopCondition?: undefined;
1311
+ toolId?: undefined;
1312
+ params?: undefined;
1313
+ inputs?: undefined;
1314
+ };
1315
+ result: {
1316
+ success: boolean;
1317
+ data: {
1318
+ edgeId: string;
1319
+ planSet?: undefined;
1320
+ actions?: undefined;
1321
+ nodeId?: undefined;
1322
+ type?: undefined;
1323
+ name?: undefined;
1324
+ credentials?: undefined;
1325
+ configured?: undefined;
1326
+ instanceId?: undefined;
1327
+ toolId?: undefined;
1328
+ isValid?: undefined;
1329
+ errors?: undefined;
1330
+ warnings?: undefined;
1331
+ updated?: undefined;
1332
+ flowRunId?: undefined;
1333
+ status?: undefined;
1334
+ duration?: undefined;
1335
+ outputs?: undefined;
1336
+ };
1337
+ };
1338
+ status: string;
1339
+ startedAt: number;
1340
+ durationMs: number;
1341
+ };
1342
+ createdAt: string;
1343
+ } | {
1344
+ id: string;
1345
+ flowId: string;
1346
+ role: "tool";
1347
+ content: string;
1348
+ toolMeta: {
1349
+ toolName: string;
1350
+ args: {
1351
+ summary?: undefined;
1352
+ steps?: undefined;
1353
+ query?: undefined;
1354
+ type?: undefined;
1355
+ name?: undefined;
1356
+ referenceId?: undefined;
1357
+ actionId?: undefined;
1358
+ nodeId?: undefined;
1359
+ credentialId?: undefined;
1360
+ model?: undefined;
1361
+ taskPrompt?: undefined;
1362
+ systemPrompt?: undefined;
1363
+ maxIterations?: undefined;
1364
+ stopCondition?: undefined;
1365
+ toolId?: undefined;
1366
+ params?: undefined;
1367
+ sourceId?: undefined;
1368
+ targetId?: undefined;
1369
+ sourceHandle?: undefined;
1370
+ inputs?: undefined;
1371
+ };
1372
+ result: {
1373
+ success: boolean;
1374
+ data: {
1375
+ isValid: boolean;
1376
+ errors: never[];
1377
+ warnings: never[];
1378
+ planSet?: undefined;
1379
+ actions?: undefined;
1380
+ nodeId?: undefined;
1381
+ type?: undefined;
1382
+ name?: undefined;
1383
+ credentials?: undefined;
1384
+ configured?: undefined;
1385
+ instanceId?: undefined;
1386
+ toolId?: undefined;
1387
+ edgeId?: undefined;
1388
+ updated?: undefined;
1389
+ flowRunId?: undefined;
1390
+ status?: undefined;
1391
+ duration?: undefined;
1392
+ outputs?: undefined;
1393
+ };
1394
+ };
1395
+ status: string;
1396
+ startedAt: number;
1397
+ durationMs: number;
1398
+ };
1399
+ createdAt: string;
1400
+ } | {
1401
+ id: string;
1402
+ flowId: string;
1403
+ role: "tool";
1404
+ content: string;
1405
+ toolMeta: {
1406
+ toolName: string;
1407
+ args: {
1408
+ steps: {
1409
+ index: number;
1410
+ status: string;
1411
+ }[];
1412
+ summary?: undefined;
1413
+ query?: undefined;
1414
+ type?: undefined;
1415
+ name?: undefined;
1416
+ referenceId?: undefined;
1417
+ actionId?: undefined;
1418
+ nodeId?: undefined;
1419
+ credentialId?: undefined;
1420
+ model?: undefined;
1421
+ taskPrompt?: undefined;
1422
+ systemPrompt?: undefined;
1423
+ maxIterations?: undefined;
1424
+ stopCondition?: undefined;
1425
+ toolId?: undefined;
1426
+ params?: undefined;
1427
+ sourceId?: undefined;
1428
+ targetId?: undefined;
1429
+ sourceHandle?: undefined;
1430
+ inputs?: undefined;
1431
+ };
1432
+ result: {
1433
+ success: boolean;
1434
+ data: {
1435
+ updated: boolean;
1436
+ planSet?: undefined;
1437
+ actions?: undefined;
1438
+ nodeId?: undefined;
1439
+ type?: undefined;
1440
+ name?: undefined;
1441
+ credentials?: undefined;
1442
+ configured?: undefined;
1443
+ instanceId?: undefined;
1444
+ toolId?: undefined;
1445
+ edgeId?: undefined;
1446
+ isValid?: undefined;
1447
+ errors?: undefined;
1448
+ warnings?: undefined;
1449
+ flowRunId?: undefined;
1450
+ status?: undefined;
1451
+ duration?: undefined;
1452
+ outputs?: undefined;
1453
+ };
1454
+ };
1455
+ status: string;
1456
+ startedAt: number;
1457
+ durationMs: number;
1458
+ };
1459
+ createdAt: string;
1460
+ } | {
1461
+ id: string;
1462
+ flowId: string;
1463
+ role: "tool";
1464
+ content: string;
1465
+ toolMeta: {
1466
+ toolName: string;
1467
+ args: {
1468
+ inputs: {
1469
+ action: string;
1470
+ type: string;
1471
+ data: {
1472
+ id: string;
1473
+ identifier: string;
1474
+ title: string;
1475
+ priority: number;
1476
+ team: {
1477
+ key: string;
1478
+ };
1479
+ labels: {
1480
+ name: string;
1481
+ }[];
1482
+ };
1483
+ };
1484
+ summary?: undefined;
1485
+ steps?: undefined;
1486
+ query?: undefined;
1487
+ type?: undefined;
1488
+ name?: undefined;
1489
+ referenceId?: undefined;
1490
+ actionId?: undefined;
1491
+ nodeId?: undefined;
1492
+ credentialId?: undefined;
1493
+ model?: undefined;
1494
+ taskPrompt?: undefined;
1495
+ systemPrompt?: undefined;
1496
+ maxIterations?: undefined;
1497
+ stopCondition?: undefined;
1498
+ toolId?: undefined;
1499
+ params?: undefined;
1500
+ sourceId?: undefined;
1501
+ targetId?: undefined;
1502
+ sourceHandle?: undefined;
1503
+ };
1504
+ result: {
1505
+ success: boolean;
1506
+ data: {
1507
+ flowRunId: string;
1508
+ status: string;
1509
+ duration: number;
1510
+ outputs: {
1511
+ fix_pr: {
1512
+ number: number;
1513
+ html_url: string;
1514
+ };
1515
+ };
1516
+ planSet?: undefined;
1517
+ actions?: undefined;
1518
+ nodeId?: undefined;
1519
+ type?: undefined;
1520
+ name?: undefined;
1521
+ credentials?: undefined;
1522
+ configured?: undefined;
1523
+ instanceId?: undefined;
1524
+ toolId?: undefined;
1525
+ edgeId?: undefined;
1526
+ isValid?: undefined;
1527
+ errors?: undefined;
1528
+ warnings?: undefined;
1529
+ updated?: undefined;
1530
+ };
1531
+ };
1532
+ status: string;
1533
+ startedAt: number;
1534
+ durationMs: number;
1535
+ };
1536
+ createdAt: string;
1537
+ })[];
1538
+ export declare const sampleDemoData: DemoData;