sea-dev 1.0.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 (784) hide show
  1. package/.claude/tasks/README.md +89 -0
  2. package/.cursor/rules/commits.mdc +31 -0
  3. package/.cursor/rules/general.mdc +84 -0
  4. package/.github/workflows/ci-cd.yml +141 -0
  5. package/CLAUDE.md +337 -0
  6. package/README.md +129 -0
  7. package/apps/api/.prettierignore +6 -0
  8. package/apps/api/.prettierrc.js +3 -0
  9. package/apps/api/dotenvx-safe.sh +11 -0
  10. package/apps/api/eslint.config.mjs +3 -0
  11. package/apps/api/package.json +58 -0
  12. package/apps/api/src/clients/posthog.ts +25 -0
  13. package/apps/api/src/dal/submission.ts +59 -0
  14. package/apps/api/src/errors.ts +55 -0
  15. package/apps/api/src/index.ts +21 -0
  16. package/apps/api/src/lib/channel.ts +28 -0
  17. package/apps/api/src/lib/config.ts +9 -0
  18. package/apps/api/src/lib/fmt.test.ts +9 -0
  19. package/apps/api/src/lib/fmt.ts +62 -0
  20. package/apps/api/src/lib/invariant.ts +23 -0
  21. package/apps/api/src/middleware/auth.ts +66 -0
  22. package/apps/api/src/routes/index.ts +20 -0
  23. package/apps/api/src/routes/v2/chat/handlers.ts +693 -0
  24. package/apps/api/src/routes/v2/chat/index.ts +257 -0
  25. package/apps/api/src/routes/v2/chat/schemas.ts +43 -0
  26. package/apps/api/src/routes/v2/deals/handlers.ts +64 -0
  27. package/apps/api/src/routes/v2/deals/index.ts +88 -0
  28. package/apps/api/src/routes/v2/deals/schemas.ts +38 -0
  29. package/apps/api/src/routes/v2/forms/handlers.ts +415 -0
  30. package/apps/api/src/routes/v2/forms/index.ts +382 -0
  31. package/apps/api/src/routes/v2/forms/schemas.ts +243 -0
  32. package/apps/api/src/routes/v2/index.ts +19 -0
  33. package/apps/api/src/routes/v2/pipelines/handlers.ts +261 -0
  34. package/apps/api/src/routes/v2/pipelines/index.ts +224 -0
  35. package/apps/api/src/routes/v2/pipelines/schemas.ts +173 -0
  36. package/apps/api/src/routes/v2/submissions/handlers.ts +555 -0
  37. package/apps/api/src/routes/v2/submissions/index.ts +366 -0
  38. package/apps/api/src/routes/v2/submissions/schemas.ts +233 -0
  39. package/apps/api/src/routes/v2/workflows/handlers.ts +81 -0
  40. package/apps/api/src/routes/v2/workflows/index.ts +88 -0
  41. package/apps/api/src/routes/v2/workflows/schemas.ts +40 -0
  42. package/apps/api/src/server.ts +146 -0
  43. package/apps/api/src/static/favicon.ico +0 -0
  44. package/apps/api/src/types/api.ts +14 -0
  45. package/apps/api/src/types/result.ts +3 -0
  46. package/apps/api/tsconfig.json +22 -0
  47. package/apps/api/vite.config.ts +28 -0
  48. package/apps/api/vitest.config.ts +14 -0
  49. package/apps/conversion-worker/Dockerfile +59 -0
  50. package/apps/conversion-worker/package.json +31 -0
  51. package/apps/conversion-worker/src/lib/config.ts +7 -0
  52. package/apps/conversion-worker/src/main.ts +22 -0
  53. package/apps/conversion-worker/src/workflows/convert-pptx.ts +116 -0
  54. package/apps/conversion-worker/tsconfig.json +27 -0
  55. package/apps/conversion-worker/vite.config.ts +33 -0
  56. package/apps/main/.prettierignore +6 -0
  57. package/apps/main/.prettierrc.js +3 -0
  58. package/apps/main/CLAUDE.md +245 -0
  59. package/apps/main/Procfile +1 -0
  60. package/apps/main/README.md +193 -0
  61. package/apps/main/db-tests.jsonl +116 -0
  62. package/apps/main/dotenvx-safe.sh +11 -0
  63. package/apps/main/drizzle/meta/_journal.json +1 -0
  64. package/apps/main/drizzle.config.ts +25 -0
  65. package/apps/main/eslint.config.mjs +3 -0
  66. package/apps/main/generate-routes.mjs +5 -0
  67. package/apps/main/package.json +131 -0
  68. package/apps/main/playwright.config.ts +23 -0
  69. package/apps/main/postcss.config.ts +5 -0
  70. package/apps/main/public/bg-dark.svg +10 -0
  71. package/apps/main/public/bg.svg +10 -0
  72. package/apps/main/public/favicon.ico +0 -0
  73. package/apps/main/run.sh +146 -0
  74. package/apps/main/scripts/browser.ts +14 -0
  75. package/apps/main/scripts/db-test-cov.ts +277 -0
  76. package/apps/main/scripts/login.ts +78 -0
  77. package/apps/main/scripts/repl.ts +61 -0
  78. package/apps/main/src/_foo.ts +31 -0
  79. package/apps/main/src/_tests/db.test.ts +19 -0
  80. package/apps/main/src/_tests/mock-db.ts +60 -0
  81. package/apps/main/src/client.tsx +13 -0
  82. package/apps/main/src/clients/loops.ts +13 -0
  83. package/apps/main/src/clients/polar.ts +12 -0
  84. package/apps/main/src/clients/posthog.ts +12 -0
  85. package/apps/main/src/components/chat/chat-context.tsx +99 -0
  86. package/apps/main/src/components/chat/chat-messages.tsx +184 -0
  87. package/apps/main/src/components/chat/chat-status.tsx +140 -0
  88. package/apps/main/src/components/chat/chat.tsx +458 -0
  89. package/apps/main/src/components/chat/citation-modal.tsx +54 -0
  90. package/apps/main/src/components/cta.tsx +21 -0
  91. package/apps/main/src/components/data-display/derived.tsx +40 -0
  92. package/apps/main/src/components/data-display/group-single.tsx +57 -0
  93. package/apps/main/src/components/data-display/group-table.tsx +165 -0
  94. package/apps/main/src/components/data-display/group-wrapper.tsx +54 -0
  95. package/apps/main/src/components/data-display/item.tsx +678 -0
  96. package/apps/main/src/components/error.tsx +45 -0
  97. package/apps/main/src/components/forms/error.tsx +22 -0
  98. package/apps/main/src/components/grid.tsx +7 -0
  99. package/apps/main/src/components/header/container.tsx +73 -0
  100. package/apps/main/src/components/header/header-bar.tsx +102 -0
  101. package/apps/main/src/components/modals/copy-display.tsx +37 -0
  102. package/apps/main/src/components/modals/copy-form.tsx +152 -0
  103. package/apps/main/src/components/modals/duplicate-workflow.tsx +89 -0
  104. package/apps/main/src/components/modals/field-correction.tsx +323 -0
  105. package/apps/main/src/components/modals/form-viewer.tsx +126 -0
  106. package/apps/main/src/components/modals/modals.tsx +44 -0
  107. package/apps/main/src/components/modals/new-deal.tsx +78 -0
  108. package/apps/main/src/components/modals/new-form.tsx +133 -0
  109. package/apps/main/src/components/modals/new-pipeline.tsx +70 -0
  110. package/apps/main/src/components/modals/new-submission.tsx +321 -0
  111. package/apps/main/src/components/modals/new-workflow.tsx +342 -0
  112. package/apps/main/src/components/modals/transformation-sources-modal.tsx +157 -0
  113. package/apps/main/src/components/modals/view-report.tsx +193 -0
  114. package/apps/main/src/components/not-found.tsx +14 -0
  115. package/apps/main/src/components/search/search-bar.tsx +178 -0
  116. package/apps/main/src/components/sheet-selector.tsx +135 -0
  117. package/apps/main/src/components/side-panel/doc-list.tsx +480 -0
  118. package/apps/main/src/components/sidebar/admin-sidebar.tsx +75 -0
  119. package/apps/main/src/components/sidebar/app-sidebar.tsx +417 -0
  120. package/apps/main/src/components/sidebar/model-select.tsx +134 -0
  121. package/apps/main/src/components/sidebar/settings-sidebar.tsx +132 -0
  122. package/apps/main/src/components/sidebar/sidebar-right.tsx +22 -0
  123. package/apps/main/src/components/sidebar/stop-impersonate.tsx +21 -0
  124. package/apps/main/src/components/svg/loading.tsx +33 -0
  125. package/apps/main/src/components/theme-selector.tsx +43 -0
  126. package/apps/main/src/components/unsaved-badge.tsx +19 -0
  127. package/apps/main/src/components/upload/file-upload.tsx +354 -0
  128. package/apps/main/src/fns/submission-groups.ts +28 -0
  129. package/apps/main/src/fns/submission-items.ts +11 -0
  130. package/apps/main/src/global-middleware.ts +16 -0
  131. package/apps/main/src/hooks/use-update-state.ts +18 -0
  132. package/apps/main/src/lib/auth-client.ts +16 -0
  133. package/apps/main/src/lib/auth.test.ts +359 -0
  134. package/apps/main/src/lib/auth.ts +144 -0
  135. package/apps/main/src/lib/billing.ts +23 -0
  136. package/apps/main/src/lib/config-iso.ts +76 -0
  137. package/apps/main/src/lib/config.ts +61 -0
  138. package/apps/main/src/lib/excel.ts +16 -0
  139. package/apps/main/src/lib/feedback-cache.ts +70 -0
  140. package/apps/main/src/lib/logger.ts +44 -0
  141. package/apps/main/src/lib/models.ts +22 -0
  142. package/apps/main/src/lib/not-found.ts +17 -0
  143. package/apps/main/src/lib/pdf.ts +16 -0
  144. package/apps/main/src/lib/tabularize.ts +54 -0
  145. package/apps/main/src/lib/utils.ts +10 -0
  146. package/apps/main/src/lib/zfd.ts +217 -0
  147. package/apps/main/src/middleware.ts +55 -0
  148. package/apps/main/src/routeTree.gen.ts +1255 -0
  149. package/apps/main/src/router.tsx +24 -0
  150. package/apps/main/src/routes/__root.tsx +92 -0
  151. package/apps/main/src/routes/_authed/_app/(dashboard)/index.tsx +227 -0
  152. package/apps/main/src/routes/_authed/_app/agents/$agentId/config.tsx +224 -0
  153. package/apps/main/src/routes/_authed/_app/agents/$agentId/index.tsx +206 -0
  154. package/apps/main/src/routes/_authed/_app/agents/-components/agent-actions-menu.tsx +94 -0
  155. package/apps/main/src/routes/_authed/_app/agents/-components/agent-artifacts.tsx +153 -0
  156. package/apps/main/src/routes/_authed/_app/agents/-components/agent-chat.tsx +220 -0
  157. package/apps/main/src/routes/_authed/_app/agents/-components/agent-history-menu.tsx +81 -0
  158. package/apps/main/src/routes/_authed/_app/agents/-components/agent-model-select.tsx +84 -0
  159. package/apps/main/src/routes/_authed/_app/agents/-components/agent-relevant-items.tsx +226 -0
  160. package/apps/main/src/routes/_authed/_app/agents/-components/agent-upload-button.tsx +298 -0
  161. package/apps/main/src/routes/_authed/_app/agents/-components/context-modal.tsx +187 -0
  162. package/apps/main/src/routes/_authed/_app/agents/-fns.ts +560 -0
  163. package/apps/main/src/routes/_authed/_app/agents/index.tsx +65 -0
  164. package/apps/main/src/routes/_authed/_app/deals/$dealId/$subId/-components/citation-tree.tsx +268 -0
  165. package/apps/main/src/routes/_authed/_app/deals/$dealId/$subId.tsx +655 -0
  166. package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/doc-loading.tsx +37 -0
  167. package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/share-link.tsx +42 -0
  168. package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/submission-card.tsx +89 -0
  169. package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/submission-filter.tsx +193 -0
  170. package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/submissions.tsx +36 -0
  171. package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/summary.tsx +82 -0
  172. package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/upload-doc.tsx +120 -0
  173. package/apps/main/src/routes/_authed/_app/deals/$dealId/-fns.ts +653 -0
  174. package/apps/main/src/routes/_authed/_app/deals/$dealId/index.tsx +259 -0
  175. package/apps/main/src/routes/_authed/_app/deals/$dealId/route.tsx +29 -0
  176. package/apps/main/src/routes/_authed/_app/deals/index.tsx +104 -0
  177. package/apps/main/src/routes/_authed/_app/feedback/index.tsx +639 -0
  178. package/apps/main/src/routes/_authed/_app/feedback/insights.tsx +250 -0
  179. package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/-components/blockers-panel.tsx +260 -0
  180. package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/-components/manual-input-panel.tsx +301 -0
  181. package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/-components/submission-selector-modal.tsx +143 -0
  182. package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/-components/upload-doc.tsx +120 -0
  183. package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/index.tsx +1485 -0
  184. package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/-components/dag-view.tsx +296 -0
  185. package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/-components/step-config-modal.tsx +634 -0
  186. package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/index.tsx +911 -0
  187. package/apps/main/src/routes/_authed/_app/pipelines/-fns.ts +510 -0
  188. package/apps/main/src/routes/_authed/_app/pipelines/index.tsx +103 -0
  189. package/apps/main/src/routes/_authed/_app/reports/$reportId.tsx +397 -0
  190. package/apps/main/src/routes/_authed/_app/reports/-fns.ts +11 -0
  191. package/apps/main/src/routes/_authed/_app/reports/index.tsx +22 -0
  192. package/apps/main/src/routes/_authed/_app/route.tsx +48 -0
  193. package/apps/main/src/routes/_authed/_app/submissions/-columns.tsx +161 -0
  194. package/apps/main/src/routes/_authed/_app/submissions/-fns.ts +128 -0
  195. package/apps/main/src/routes/_authed/_app/submissions/index.tsx +190 -0
  196. package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/$formId.tsx +542 -0
  197. package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/-components/derived.tsx +154 -0
  198. package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/-components/field.tsx +369 -0
  199. package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/-components/group.tsx +475 -0
  200. package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/index.tsx +263 -0
  201. package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/route.tsx +33 -0
  202. package/apps/main/src/routes/_authed/_app/workflows/-components/form-card.tsx +315 -0
  203. package/apps/main/src/routes/_authed/_app/workflows/index.tsx +86 -0
  204. package/apps/main/src/routes/_authed/admin/index.tsx +12 -0
  205. package/apps/main/src/routes/_authed/admin/route.tsx +42 -0
  206. package/apps/main/src/routes/_authed/admin/users/-columns.tsx +124 -0
  207. package/apps/main/src/routes/_authed/admin/users/-fns.ts +30 -0
  208. package/apps/main/src/routes/_authed/admin/users/index.tsx +29 -0
  209. package/apps/main/src/routes/_authed/catchNotFound.tsx +114 -0
  210. package/apps/main/src/routes/_authed/redirects/forms.$id.tsx +29 -0
  211. package/apps/main/src/routes/_authed/redirects/submissions.$id.tsx +27 -0
  212. package/apps/main/src/routes/_authed/redirects/workflows.$id.tsx +27 -0
  213. package/apps/main/src/routes/_authed/route.tsx +51 -0
  214. package/apps/main/src/routes/_authed/settings/-components/new-api-key.tsx +85 -0
  215. package/apps/main/src/routes/_authed/settings/-components/new-invite.tsx +100 -0
  216. package/apps/main/src/routes/_authed/settings/analytics.tsx +1710 -0
  217. package/apps/main/src/routes/_authed/settings/billing/-components/price-table.tsx +129 -0
  218. package/apps/main/src/routes/_authed/settings/billing/-fns.ts +76 -0
  219. package/apps/main/src/routes/_authed/settings/billing/index.tsx +119 -0
  220. package/apps/main/src/routes/_authed/settings/embed.tsx +337 -0
  221. package/apps/main/src/routes/_authed/settings/index.tsx +12 -0
  222. package/apps/main/src/routes/_authed/settings/keys.tsx +157 -0
  223. package/apps/main/src/routes/_authed/settings/members.tsx +276 -0
  224. package/apps/main/src/routes/_authed/settings/route.tsx +22 -0
  225. package/apps/main/src/routes/_authed/settings/user.tsx +87 -0
  226. package/apps/main/src/routes/_authed/settings/workspace.tsx +206 -0
  227. package/apps/main/src/routes/_public/-components/sign-in-up.tsx +96 -0
  228. package/apps/main/src/routes/_public/embedded.tsx +57 -0
  229. package/apps/main/src/routes/_public/invite.$inviteId.tsx +143 -0
  230. package/apps/main/src/routes/_public/no-access.tsx +38 -0
  231. package/apps/main/src/routes/_public/no-invite.tsx +39 -0
  232. package/apps/main/src/routes/_public/otp.tsx +103 -0
  233. package/apps/main/src/routes/_public/route.tsx +15 -0
  234. package/apps/main/src/routes/_public/sign-in.tsx +111 -0
  235. package/apps/main/src/routes/_public/sign-up.tsx +114 -0
  236. package/apps/main/src/routes/api/auth/$.ts +11 -0
  237. package/apps/main/src/routes/api/billing/paid.ts +42 -0
  238. package/apps/main/src/routes/api/billing/webhooks.ts +70 -0
  239. package/apps/main/src/routes/api/chat/agent.ts +40 -0
  240. package/apps/main/src/routes/api/chat/key.ts +42 -0
  241. package/apps/main/src/routes/api/chat/member.ts +35 -0
  242. package/apps/main/src/routes/api/test/index.ts +19 -0
  243. package/apps/main/src/server.tsx +6 -0
  244. package/apps/main/src/styles/app.css +23 -0
  245. package/apps/main/src/vite-env.d.ts +7 -0
  246. package/apps/main/test.http +6 -0
  247. package/apps/main/tsconfig.json +17 -0
  248. package/apps/main/vite.config.ts +24 -0
  249. package/apps/main/vitest.config.js +17 -0
  250. package/apps/mcp/README.md +171 -0
  251. package/apps/mcp/eslint.config.mjs +3 -0
  252. package/apps/mcp/package.json +37 -0
  253. package/apps/mcp/src/index.ts +414 -0
  254. package/apps/mcp/tsconfig.json +19 -0
  255. package/apps/mcp/vite.config.ts +22 -0
  256. package/apps/posthog-proxy/index.html +9 -0
  257. package/apps/workers/.prettierignore +7 -0
  258. package/apps/workers/.prettierrc.js +3 -0
  259. package/apps/workers/dotenvx-safe.sh +11 -0
  260. package/apps/workers/eslint.config.mjs +3 -0
  261. package/apps/workers/package.json +65 -0
  262. package/apps/workers/src/lib/config.ts +7 -0
  263. package/apps/workers/src/lib/messages.ts +0 -0
  264. package/apps/workers/src/lib/posthog.ts +25 -0
  265. package/apps/workers/src/main.ts +58 -0
  266. package/apps/workers/src/workflows/extraction.ts +866 -0
  267. package/apps/workers/src/workflows/index.ts +3 -0
  268. package/apps/workers/src/workflows/pipeline-dag.ts +210 -0
  269. package/apps/workers/src/workflows/pipeline-steps.ts +1393 -0
  270. package/apps/workers/tsconfig.json +16 -0
  271. package/apps/workers/vite.config.ts +35 -0
  272. package/docs/CHANGELOG.md +84 -0
  273. package/docs/agent-templates-and-runs.md +859 -0
  274. package/docs/aws-migration-plan.md +267 -0
  275. package/docs/impl-p0-form-builder-improvements.md +683 -0
  276. package/docs/on-prem-deployment-spec.docx +0 -0
  277. package/docs/on-prem-deployment-spec.md +378 -0
  278. package/docs/prd-form-builder-strategy.md +1120 -0
  279. package/docs/widget-ng-apf-packaging-spec.md +43 -0
  280. package/infra/k8s/charts/seadotdev/Chart.yaml +6 -0
  281. package/infra/k8s/charts/seadotdev/templates/_helpers.tpl +27 -0
  282. package/infra/k8s/charts/seadotdev/templates/api-v2.yaml +105 -0
  283. package/infra/k8s/charts/seadotdev/templates/external-secrets.yaml +83 -0
  284. package/infra/k8s/charts/seadotdev/templates/ingress.yaml +54 -0
  285. package/infra/k8s/charts/seadotdev/templates/main-app.yaml +104 -0
  286. package/infra/k8s/charts/seadotdev/templates/workers.yaml +182 -0
  287. package/infra/k8s/charts/seadotdev/values.yaml +143 -0
  288. package/infra/terraform/main.tf +399 -0
  289. package/libs/ai/.prettierignore +2 -0
  290. package/libs/ai/.prettierrc.js +5 -0
  291. package/libs/ai/README.md +139 -0
  292. package/libs/ai/eslint.config.mjs +3 -0
  293. package/libs/ai/package.json +42 -0
  294. package/libs/ai/src/index.ts +5 -0
  295. package/libs/ai/src/models.ts +19 -0
  296. package/libs/ai/src/rag/index.ts +1 -0
  297. package/libs/ai/src/rag/rag.test.ts +99 -0
  298. package/libs/ai/src/rag/rag.ts +510 -0
  299. package/libs/ai/tsconfig.json +21 -0
  300. package/libs/ai/vite.config.ts +38 -0
  301. package/libs/cache/.prettierignore +2 -0
  302. package/libs/cache/eslint.config.mjs +3 -0
  303. package/libs/cache/package.json +35 -0
  304. package/libs/cache/src/feedback.ts +77 -0
  305. package/libs/cache/src/index.ts +2 -0
  306. package/libs/cache/tsconfig.json +19 -0
  307. package/libs/cache/vite.config.ts +36 -0
  308. package/libs/clients/.prettierignore +6 -0
  309. package/libs/clients/eslint.config.mjs +3 -0
  310. package/libs/clients/package.json +59 -0
  311. package/libs/clients/src/azure.ts +249 -0
  312. package/libs/clients/src/gcp.ts +220 -0
  313. package/libs/clients/src/hatchet.ts +86 -0
  314. package/libs/clients/src/index.ts +8 -0
  315. package/libs/clients/src/loops.ts +86 -0
  316. package/libs/clients/src/polar.ts +77 -0
  317. package/libs/clients/src/posthog.ts +55 -0
  318. package/libs/clients/tsconfig.json +19 -0
  319. package/libs/clients/vite.config.ts +35 -0
  320. package/libs/config/.prettierignore +6 -0
  321. package/libs/config/.prettierrc.js +12 -0
  322. package/libs/config/eslint.config.mjs +3 -0
  323. package/libs/config/package.json +50 -0
  324. package/libs/config/src/azure.ts +54 -0
  325. package/libs/config/src/db.ts +18 -0
  326. package/libs/config/src/gcp.ts +53 -0
  327. package/libs/config/src/google.ts +17 -0
  328. package/libs/config/src/hatchet.ts +20 -0
  329. package/libs/config/src/index.ts +108 -0
  330. package/libs/config/src/llm.ts +17 -0
  331. package/libs/config/src/polar.ts +24 -0
  332. package/libs/config/src/util.ts +8 -0
  333. package/libs/config/src/vercel.ts +26 -0
  334. package/libs/config/tsconfig.json +19 -0
  335. package/libs/config/vite.config.ts +34 -0
  336. package/libs/core/.prettierignore +2 -0
  337. package/libs/core/eslint.config.mjs +3 -0
  338. package/libs/core/package.json +59 -0
  339. package/libs/core/src/chat/derived.ts +97 -0
  340. package/libs/core/src/chat/feedback.ts +293 -0
  341. package/libs/core/src/chat/index.ts +6 -0
  342. package/libs/core/src/chat/model.ts +92 -0
  343. package/libs/core/src/chat/prepare-tools.ts +286 -0
  344. package/libs/core/src/chat/prompts.ts +623 -0
  345. package/libs/core/src/chat/stream.ts +311 -0
  346. package/libs/core/src/chat/summarize.ts +168 -0
  347. package/libs/core/src/chat/tools/agent.ts +403 -0
  348. package/libs/core/src/chat/tools/chart-agent.ts +526 -0
  349. package/libs/core/src/chat/tools/chart-helpers/sandbox.ts +47 -0
  350. package/libs/core/src/chat/tools/chart.ts +86 -0
  351. package/libs/core/src/chat/tools/credit-agent.ts +1383 -0
  352. package/libs/core/src/chat/tools/credit.ts +1435 -0
  353. package/libs/core/src/chat/tools/deep-dive-agent.ts +100 -0
  354. package/libs/core/src/chat/tools/deep-dive.ts +141 -0
  355. package/libs/core/src/chat/tools/form.ts +449 -0
  356. package/libs/core/src/chat/tools/helpers.ts +91 -0
  357. package/libs/core/src/chat/tools/index.ts +42 -0
  358. package/libs/core/src/chat/tools/pipeline-artifact.ts +76 -0
  359. package/libs/core/src/chat/tools/report.ts +40 -0
  360. package/libs/core/src/chat/tools/search.ts +390 -0
  361. package/libs/core/src/chat/tools/submission.ts +227 -0
  362. package/libs/core/src/chat/tools/workflow.ts +684 -0
  363. package/libs/core/src/chat/types.ts +3 -0
  364. package/libs/core/src/data-extraction/classification/azure.ts +168 -0
  365. package/libs/core/src/data-extraction/classification/index.ts +1 -0
  366. package/libs/core/src/data-extraction/dal.ts +246 -0
  367. package/libs/core/src/data-extraction/form-structure-extractor.ts +294 -0
  368. package/libs/core/src/data-extraction/index.ts +4 -0
  369. package/libs/core/src/data-extraction/layout/azure.ts +730 -0
  370. package/libs/core/src/data-extraction/layout/excel.ts +180 -0
  371. package/libs/core/src/data-extraction/layout/gcp.ts +1071 -0
  372. package/libs/core/src/data-extraction/layout/index.ts +266 -0
  373. package/libs/core/src/data-extraction/layout/plaintext.ts +45 -0
  374. package/libs/core/src/data-extraction/models.ts +38 -0
  375. package/libs/core/src/data-extraction/pdf-utils.ts +96 -0
  376. package/libs/core/src/data-extraction/structuring/bank-statement.ts +1182 -0
  377. package/libs/core/src/data-extraction/structuring/custom.ts +495 -0
  378. package/libs/core/src/data-extraction/structuring/index.ts +290 -0
  379. package/libs/core/src/data-extraction/structuring/prompts.ts +69 -0
  380. package/libs/core/src/data-extraction/type-guards.ts +110 -0
  381. package/libs/core/src/data-extraction/types.ts +84 -0
  382. package/libs/core/src/data-extraction/utils.ts +31 -0
  383. package/libs/core/src/data-extraction/validation/bank-statement.ts +127 -0
  384. package/libs/core/src/deals.ts +17 -0
  385. package/libs/core/src/documents.ts +152 -0
  386. package/libs/core/src/index.ts +5 -0
  387. package/libs/core/src/pipelines/display.ts +678 -0
  388. package/libs/core/src/pipelines/execute.ts +2342 -0
  389. package/libs/core/src/pipelines/index.ts +4 -0
  390. package/libs/core/src/pipelines/list.ts +12 -0
  391. package/libs/core/src/pipelines/runs.ts +53 -0
  392. package/libs/core/tsconfig.json +20 -0
  393. package/libs/core/vite.config.ts +56 -0
  394. package/libs/dal/.prettierignore +6 -0
  395. package/libs/dal/.prettierrc.js +12 -0
  396. package/libs/dal/eslint.config.mjs +3 -0
  397. package/libs/dal/package.json +57 -0
  398. package/libs/dal/src/_tests/db.test.ts +19 -0
  399. package/libs/dal/src/_tests/mock-db.ts +60 -0
  400. package/libs/dal/src/api-key.test.ts +397 -0
  401. package/libs/dal/src/api-key.ts +110 -0
  402. package/libs/dal/src/billing.ts +23 -0
  403. package/libs/dal/src/conversation.test.ts +655 -0
  404. package/libs/dal/src/conversation.ts +532 -0
  405. package/libs/dal/src/deal.test.ts +45 -0
  406. package/libs/dal/src/deal.ts +87 -0
  407. package/libs/dal/src/defaults-consumer-lending-uk.ts +33 -0
  408. package/libs/dal/src/defaults-consumer-lending-us.ts +33 -0
  409. package/libs/dal/src/defaults-private-credit.ts +57 -0
  410. package/libs/dal/src/defaults-private-equity.ts +51 -0
  411. package/libs/dal/src/defaults-smb-lending-us.ts +1569 -0
  412. package/libs/dal/src/defaults-sme-lending-uk-express.ts +1527 -0
  413. package/libs/dal/src/defaults-sme-lending-uk.ts +1669 -0
  414. package/libs/dal/src/defaults-types.ts +23 -0
  415. package/libs/dal/src/defaults.ts +550 -0
  416. package/libs/dal/src/document.test.ts +70 -0
  417. package/libs/dal/src/document.ts +192 -0
  418. package/libs/dal/src/feedback.ts +255 -0
  419. package/libs/dal/src/form.test.ts +637 -0
  420. package/libs/dal/src/form.ts +1165 -0
  421. package/libs/dal/src/index.ts +20 -0
  422. package/libs/dal/src/invitation.test.ts +746 -0
  423. package/libs/dal/src/invitation.ts +207 -0
  424. package/libs/dal/src/member.test.ts +185 -0
  425. package/libs/dal/src/member.ts +80 -0
  426. package/libs/dal/src/organization.ts +116 -0
  427. package/libs/dal/src/permission.ts +25 -0
  428. package/libs/dal/src/pipeline.test.ts +388 -0
  429. package/libs/dal/src/pipeline.ts +4222 -0
  430. package/libs/dal/src/report.ts +199 -0
  431. package/libs/dal/src/result.ts +16 -0
  432. package/libs/dal/src/search.ts +172 -0
  433. package/libs/dal/src/session.test.ts +110 -0
  434. package/libs/dal/src/session.ts +31 -0
  435. package/libs/dal/src/submission.test.ts +1304 -0
  436. package/libs/dal/src/submission.ts +1396 -0
  437. package/libs/dal/src/tool.ts +159 -0
  438. package/libs/dal/src/user.ts +16 -0
  439. package/libs/dal/src/workflow.test.ts +89 -0
  440. package/libs/dal/src/workflow.ts +262 -0
  441. package/libs/dal/tsconfig.build.json +4 -0
  442. package/libs/dal/tsconfig.json +22 -0
  443. package/libs/dal/vite.config.ts +34 -0
  444. package/libs/db/.prettierignore +6 -0
  445. package/libs/db/.prettierrc.js +12 -0
  446. package/libs/db/eslint.config.mjs +3 -0
  447. package/libs/db/package.json +52 -0
  448. package/libs/db/src/index.ts +24 -0
  449. package/libs/db/src/relations.ts +549 -0
  450. package/libs/db/src/schema.ts +2 -0
  451. package/libs/db/src/schemas/api.ts +35 -0
  452. package/libs/db/src/schemas/conversations.ts +175 -0
  453. package/libs/db/src/schemas/core.ts +359 -0
  454. package/libs/db/src/schemas/documents.ts +181 -0
  455. package/libs/db/src/schemas/feedback.ts +40 -0
  456. package/libs/db/src/schemas/index.ts +26 -0
  457. package/libs/db/src/schemas/organisations.ts +97 -0
  458. package/libs/db/src/schemas/pipelines.ts +440 -0
  459. package/libs/db/src/schemas/users.ts +95 -0
  460. package/libs/db/src/types.ts +190 -0
  461. package/libs/db/src/utils.ts +14 -0
  462. package/libs/db/tsconfig.json +19 -0
  463. package/libs/db/vite.config.ts +31 -0
  464. package/libs/lint/.prettierignore +6 -0
  465. package/libs/lint/eslint.config.mjs +61 -0
  466. package/libs/lint/package.json +29 -0
  467. package/libs/lint/prettier.config.js +12 -0
  468. package/libs/schemas/.prettierignore +6 -0
  469. package/libs/schemas/.prettierrc.js +12 -0
  470. package/libs/schemas/README.md +15 -0
  471. package/libs/schemas/eslint.config.mjs +3 -0
  472. package/libs/schemas/package.json +67 -0
  473. package/libs/schemas/src/core/chat.ts +67 -0
  474. package/libs/schemas/src/core/core-result.ts +15 -0
  475. package/libs/schemas/src/core/data-extraction.ts +184 -0
  476. package/libs/schemas/src/core/layout.ts +478 -0
  477. package/libs/schemas/src/core/pipeline.ts +128 -0
  478. package/libs/schemas/src/core/submission.ts +97 -0
  479. package/libs/schemas/src/db/account.ts +57 -0
  480. package/libs/schemas/src/db/apiKey.ts +57 -0
  481. package/libs/schemas/src/db/context.ts +33 -0
  482. package/libs/schemas/src/db/conversation.ts +65 -0
  483. package/libs/schemas/src/db/deal.ts +42 -0
  484. package/libs/schemas/src/db/document.ts +103 -0
  485. package/libs/schemas/src/db/documentCitation.ts +58 -0
  486. package/libs/schemas/src/db/documentExtraction.ts +69 -0
  487. package/libs/schemas/src/db/fieldCorrection.ts +85 -0
  488. package/libs/schemas/src/db/form.ts +45 -0
  489. package/libs/schemas/src/db/formField.ts +59 -0
  490. package/libs/schemas/src/db/formGroup.ts +42 -0
  491. package/libs/schemas/src/db/impersonation.ts +39 -0
  492. package/libs/schemas/src/db/index.ts +25 -0
  493. package/libs/schemas/src/db/invitation.ts +42 -0
  494. package/libs/schemas/src/db/member.ts +36 -0
  495. package/libs/schemas/src/db/message.ts +58 -0
  496. package/libs/schemas/src/db/organization.ts +62 -0
  497. package/libs/schemas/src/db/session.ts +48 -0
  498. package/libs/schemas/src/db/submission.ts +54 -0
  499. package/libs/schemas/src/db/submissionGroup.ts +36 -0
  500. package/libs/schemas/src/db/submissionItem.ts +33 -0
  501. package/libs/schemas/src/db/submissionItemVersion.ts +70 -0
  502. package/libs/schemas/src/db/user.ts +51 -0
  503. package/libs/schemas/src/db/utils.ts +3 -0
  504. package/libs/schemas/src/db/verification.ts +36 -0
  505. package/libs/schemas/src/db/workflow.ts +42 -0
  506. package/libs/schemas/src/index.ts +10 -0
  507. package/libs/schemas/tsconfig.json +21 -0
  508. package/libs/schemas/vite.config.ts +38 -0
  509. package/libs/ui/.prettierignore +6 -0
  510. package/libs/ui/.prettierrc.js +12 -0
  511. package/libs/ui/components.json +24 -0
  512. package/libs/ui/eslint.config.mjs +3 -0
  513. package/libs/ui/package.json +142 -0
  514. package/libs/ui/src/components/chart-viz/chart.tsx +255 -0
  515. package/libs/ui/src/components/chart-viz/converters.ts +474 -0
  516. package/libs/ui/src/components/chart-viz/dashboard.tsx +146 -0
  517. package/libs/ui/src/components/chart-viz/index.ts +37 -0
  518. package/libs/ui/src/components/chart-viz/markdown.tsx +344 -0
  519. package/libs/ui/src/components/chart-viz/table.tsx +446 -0
  520. package/libs/ui/src/components/chart-viz/theme-context.tsx +70 -0
  521. package/libs/ui/src/components/chart-viz/themes/dark.ts +98 -0
  522. package/libs/ui/src/components/chart-viz/themes/index.ts +69 -0
  523. package/libs/ui/src/components/chart-viz/themes/light.ts +98 -0
  524. package/libs/ui/src/components/chart-viz/themes/tailwind.ts +326 -0
  525. package/libs/ui/src/components/chart-viz/themes/types.ts +99 -0
  526. package/libs/ui/src/components/chart-viz/tool-display.tsx +150 -0
  527. package/libs/ui/src/components/chart-viz/types.ts +95 -0
  528. package/libs/ui/src/components/doc-viewers/excel/index.tsx +431 -0
  529. package/libs/ui/src/components/doc-viewers/excel/themes.ts +160 -0
  530. package/libs/ui/src/components/doc-viewers/image/index.tsx +410 -0
  531. package/libs/ui/src/components/doc-viewers/pdf/index.tsx +258 -0
  532. package/libs/ui/src/components/doc-viewers/pdf/virtualized-pdf.tsx +556 -0
  533. package/libs/ui/src/components/misc/rel-date.tsx +52 -0
  534. package/libs/ui/src/components/misc/styled-link.tsx +2 -0
  535. package/libs/ui/src/components/table/data-table.tsx +546 -0
  536. package/libs/ui/src/components/table/report-table.tsx +305 -0
  537. package/libs/ui/src/components/table/sortable-column.tsx +34 -0
  538. package/libs/ui/src/components/ui/accordion.tsx +62 -0
  539. package/libs/ui/src/components/ui/alert-dialog.tsx +142 -0
  540. package/libs/ui/src/components/ui/alert.tsx +62 -0
  541. package/libs/ui/src/components/ui/artifact.tsx +118 -0
  542. package/libs/ui/src/components/ui/attachments.tsx +388 -0
  543. package/libs/ui/src/components/ui/avatar.tsx +39 -0
  544. package/libs/ui/src/components/ui/badge.tsx +43 -0
  545. package/libs/ui/src/components/ui/breadcrumb.tsx +102 -0
  546. package/libs/ui/src/components/ui/button-group.tsx +78 -0
  547. package/libs/ui/src/components/ui/button.tsx +79 -0
  548. package/libs/ui/src/components/ui/card.tsx +32 -0
  549. package/libs/ui/src/components/ui/carousel.tsx +228 -0
  550. package/libs/ui/src/components/ui/chain-of-thought.tsx +198 -0
  551. package/libs/ui/src/components/ui/checkbox.tsx +27 -0
  552. package/libs/ui/src/components/ui/citation.tsx +34 -0
  553. package/libs/ui/src/components/ui/code-block.tsx +500 -0
  554. package/libs/ui/src/components/ui/collapsible.tsx +19 -0
  555. package/libs/ui/src/components/ui/command.tsx +161 -0
  556. package/libs/ui/src/components/ui/conversation.tsx +90 -0
  557. package/libs/ui/src/components/ui/dialog.tsx +142 -0
  558. package/libs/ui/src/components/ui/dropdown-menu.tsx +246 -0
  559. package/libs/ui/src/components/ui/highlight.tsx +3 -0
  560. package/libs/ui/src/components/ui/hover-card.tsx +36 -0
  561. package/libs/ui/src/components/ui/inline-citation.tsx +251 -0
  562. package/libs/ui/src/components/ui/input-group.tsx +156 -0
  563. package/libs/ui/src/components/ui/input-otp.tsx +78 -0
  564. package/libs/ui/src/components/ui/input.tsx +21 -0
  565. package/libs/ui/src/components/ui/label.tsx +19 -0
  566. package/libs/ui/src/components/ui/model-selector.tsx +174 -0
  567. package/libs/ui/src/components/ui/multisidebar.tsx +750 -0
  568. package/libs/ui/src/components/ui/popover.tsx +43 -0
  569. package/libs/ui/src/components/ui/progress.tsx +28 -0
  570. package/libs/ui/src/components/ui/reasoning.tsx +178 -0
  571. package/libs/ui/src/components/ui/resizable.tsx +49 -0
  572. package/libs/ui/src/components/ui/scroll-area.tsx +54 -0
  573. package/libs/ui/src/components/ui/select.tsx +171 -0
  574. package/libs/ui/src/components/ui/separator.tsx +26 -0
  575. package/libs/ui/src/components/ui/sheet.tsx +128 -0
  576. package/libs/ui/src/components/ui/shimmer.tsx +53 -0
  577. package/libs/ui/src/components/ui/skeleton.tsx +13 -0
  578. package/libs/ui/src/components/ui/sonner.tsx +23 -0
  579. package/libs/ui/src/components/ui/switch.tsx +26 -0
  580. package/libs/ui/src/components/ui/table.tsx +96 -0
  581. package/libs/ui/src/components/ui/tabs.tsx +52 -0
  582. package/libs/ui/src/components/ui/textarea.tsx +41 -0
  583. package/libs/ui/src/components/ui/tool.tsx +209 -0
  584. package/libs/ui/src/components/ui/tooltip.tsx +58 -0
  585. package/libs/ui/src/components/ui/typography.tsx +113 -0
  586. package/libs/ui/src/fonts/manrope-v15-latin-300.woff2 +0 -0
  587. package/libs/ui/src/fonts/manrope-v15-latin-400.woff2 +0 -0
  588. package/libs/ui/src/fonts/manrope-v15-latin-500.woff2 +0 -0
  589. package/libs/ui/src/fonts/manrope-v15-latin-600.woff2 +0 -0
  590. package/libs/ui/src/hooks/use-mobile.ts +19 -0
  591. package/libs/ui/src/lib/utils.ts +6 -0
  592. package/libs/ui/src/styles/fonts.css +35 -0
  593. package/libs/ui/src/styles/style.css +218 -0
  594. package/libs/ui/tsconfig.json +21 -0
  595. package/libs/ui/vite.config.ts +80 -0
  596. package/libs/ui-lit/README.md +245 -0
  597. package/libs/ui-lit/TESTING_GUIDE.md +296 -0
  598. package/libs/ui-lit/eslint.config.mjs +3 -0
  599. package/libs/ui-lit/package.json +41 -0
  600. package/libs/ui-lit/scripts/build-css.js +43 -0
  601. package/libs/ui-lit/src/components/sea-alert.ts +132 -0
  602. package/libs/ui-lit/src/components/sea-button.ts +95 -0
  603. package/libs/ui-lit/src/components/sea-card.ts +113 -0
  604. package/libs/ui-lit/src/components/sea-input.ts +184 -0
  605. package/libs/ui-lit/src/components/sea-spinner.ts +65 -0
  606. package/libs/ui-lit/src/index.ts +15 -0
  607. package/libs/ui-lit/src/lib/utils.ts +6 -0
  608. package/libs/ui-lit/src/styles/tailwind.css +76 -0
  609. package/libs/ui-lit/src/theme.css +66 -0
  610. package/libs/ui-lit/src/theme.ts +79 -0
  611. package/libs/ui-lit/src/vite-env.d.ts +6 -0
  612. package/libs/ui-lit/tailwind.config.ts +50 -0
  613. package/libs/ui-lit/test.html +289 -0
  614. package/libs/ui-lit/tsconfig.json +23 -0
  615. package/libs/ui-lit/vite.config.ts +31 -0
  616. package/libs/ui-lit/vite.css.config.ts +20 -0
  617. package/libs/util/.prettierignore +6 -0
  618. package/libs/util/.prettierrc.js +12 -0
  619. package/libs/util/eslint.config.mjs +3 -0
  620. package/libs/util/package.json +45 -0
  621. package/libs/util/src/billing.ts +10 -0
  622. package/libs/util/src/data-transform.ts +19 -0
  623. package/libs/util/src/encryption.ts +45 -0
  624. package/libs/util/src/fmt.test.ts +9 -0
  625. package/libs/util/src/fmt.ts +71 -0
  626. package/libs/util/src/fuzzy.ts +47 -0
  627. package/libs/util/src/id.ts +24 -0
  628. package/libs/util/src/invariant.ts +31 -0
  629. package/libs/util/src/sub-name.ts +7 -0
  630. package/libs/util/tsconfig.json +19 -0
  631. package/libs/util/vite.config.ts +34 -0
  632. package/package.json +28 -0
  633. package/packages/widget/.prettierignore +6 -0
  634. package/packages/widget/.prettierrc.js +12 -0
  635. package/packages/widget/README.md +95 -0
  636. package/packages/widget/eslint.config.mjs +11 -0
  637. package/packages/widget/openapi-ts.config.ts +8 -0
  638. package/packages/widget/package.json +89 -0
  639. package/packages/widget/postcss.config.mjs +10 -0
  640. package/packages/widget/src/clients/api/client/client.ts +187 -0
  641. package/packages/widget/src/clients/api/client/index.ts +22 -0
  642. package/packages/widget/src/clients/api/client/types.ts +192 -0
  643. package/packages/widget/src/clients/api/client/utils.ts +394 -0
  644. package/packages/widget/src/clients/api/client.gen.ts +18 -0
  645. package/packages/widget/src/clients/api/core/auth.ts +39 -0
  646. package/packages/widget/src/clients/api/core/bodySerializer.ts +74 -0
  647. package/packages/widget/src/clients/api/core/params.ts +132 -0
  648. package/packages/widget/src/clients/api/core/pathSerializer.ts +169 -0
  649. package/packages/widget/src/clients/api/core/types.ts +80 -0
  650. package/packages/widget/src/clients/api/index.ts +3 -0
  651. package/packages/widget/src/clients/api/sdk.gen.ts +805 -0
  652. package/packages/widget/src/clients/api/types.gen.ts +2085 -0
  653. package/packages/widget/src/components/container.tsx +42 -0
  654. package/packages/widget/src/components/data-display.tsx +384 -0
  655. package/packages/widget/src/components/data-viewer.tsx +311 -0
  656. package/packages/widget/src/components/doc-list.tsx +102 -0
  657. package/packages/widget/src/components/field-correction-modal.tsx +265 -0
  658. package/packages/widget/src/components/header.tsx +71 -0
  659. package/packages/widget/src/components/new-submission.tsx +290 -0
  660. package/packages/widget/src/components/sidebar-right.tsx +19 -0
  661. package/packages/widget/src/components/submission-card.tsx +66 -0
  662. package/packages/widget/src/components/submission-page.tsx +75 -0
  663. package/packages/widget/src/components/upload-doc.tsx +241 -0
  664. package/packages/widget/src/components/widget.tsx +101 -0
  665. package/packages/widget/src/index.tsx +167 -0
  666. package/packages/widget/src/lib/config.ts +2 -0
  667. package/packages/widget/src/lib/util.ts +40 -0
  668. package/packages/widget/src/styles/index.css +5 -0
  669. package/packages/widget/src/styles/tw-properties.css +337 -0
  670. package/packages/widget/src/vite-env.d.ts +3 -0
  671. package/packages/widget/tsconfig.app.json +35 -0
  672. package/packages/widget/tsconfig.json +4 -0
  673. package/packages/widget/tsconfig.node.json +24 -0
  674. package/packages/widget/vite.config.ts +116 -0
  675. package/packages/widget-lit/BOTTLENECKS.md +250 -0
  676. package/packages/widget-lit/IMPLEMENTATION_SUMMARY.md +295 -0
  677. package/packages/widget-lit/README.md +232 -0
  678. package/packages/widget-lit/eslint.config.mjs +3 -0
  679. package/packages/widget-lit/package.json +52 -0
  680. package/packages/widget-lit/src/api-client.ts +230 -0
  681. package/packages/widget-lit/src/api-client.ts.backup +218 -0
  682. package/packages/widget-lit/src/components/sea-chat.ts +382 -0
  683. package/packages/widget-lit/src/components/sea-submission-viewer.ts +267 -0
  684. package/packages/widget-lit/src/components/sea-widget.ts +317 -0
  685. package/packages/widget-lit/src/index.ts +48 -0
  686. package/packages/widget-lit/src/react.ts +58 -0
  687. package/packages/widget-lit/src/style.css +47 -0
  688. package/packages/widget-lit/tsconfig.json +24 -0
  689. package/packages/widget-lit/vite.config.ts +29 -0
  690. package/packages/widget-ng/DEVELOPMENT.md +74 -0
  691. package/packages/widget-ng/README.md +657 -0
  692. package/packages/widget-ng/dev.sh +14 -0
  693. package/packages/widget-ng/eslint.config.mjs +24 -0
  694. package/packages/widget-ng/ng-package.json +9 -0
  695. package/packages/widget-ng/package.json +85 -0
  696. package/packages/widget-ng/src/index.ts +45 -0
  697. package/packages/widget-ng/src/lib/components/sea-chat.component.ts +737 -0
  698. package/packages/widget-ng/src/lib/components/sea-data-viewer.component.ts +2240 -0
  699. package/packages/widget-ng/src/lib/components/sea-deal-form-modal.component.ts +702 -0
  700. package/packages/widget-ng/src/lib/components/sea-document-list.component.ts +350 -0
  701. package/packages/widget-ng/src/lib/components/sea-feedback-modal.component.ts +461 -0
  702. package/packages/widget-ng/src/lib/components/sea-file-upload.component.ts +655 -0
  703. package/packages/widget-ng/src/lib/components/sea-model-selection-modal.component.ts +367 -0
  704. package/packages/widget-ng/src/lib/components/sea-new-submission-modal.component.ts +414 -0
  705. package/packages/widget-ng/src/lib/components/sea-pdf-viewer.component.ts +869 -0
  706. package/packages/widget-ng/src/lib/components/sea-submission-card.component.ts +251 -0
  707. package/packages/widget-ng/src/lib/components/sea-widget.component.ts +684 -0
  708. package/packages/widget-ng/src/lib/models/submission.model.ts +170 -0
  709. package/packages/widget-ng/src/lib/pipes/markdown.pipe.ts +57 -0
  710. package/packages/widget-ng/src/lib/services/api-client.service.ts +715 -0
  711. package/packages/widget-ng/src/lib/services/chat.service.ts +330 -0
  712. package/packages/widget-ng/src/lib/services/config.service.ts +107 -0
  713. package/packages/widget-ng/src/web-component.ts +56 -0
  714. package/packages/widget-ng/tsconfig.json +25 -0
  715. package/packages/widget-ng/tsconfig.lib.json +9 -0
  716. package/packages/widget-ng/vite.config.elements.ts +26 -0
  717. package/packages/widget-ng/vitest.config.ts +19 -0
  718. package/packages/widget-ng/vitest.setup.ts +13 -0
  719. package/pnpm-workspace.yaml +18 -0
  720. package/render.yaml +136 -0
  721. package/scripts/README.md +57 -0
  722. package/scripts/package.json +22 -0
  723. package/scripts/python/.python-version +1 -0
  724. package/scripts/python/README.md +3 -0
  725. package/scripts/python/export-org-data.py +693 -0
  726. package/scripts/python/pyproject.toml +29 -0
  727. package/scripts/python/requirements-dev.lock +36 -0
  728. package/scripts/python/requirements.lock +36 -0
  729. package/scripts/python/src/gen.py +297 -0
  730. package/scripts/python/test.py +34 -0
  731. package/scripts/src/fix-storage-provider-mismatch.ts +239 -0
  732. package/scripts/src/sync-render-yaml.ts +290 -0
  733. package/scripts/src/test-chat-stream.ts +300 -0
  734. package/scripts/src/test-reconciliation.ts +230 -0
  735. package/scripts/tsconfig.json +15 -0
  736. package/tests/angular-test-app/.vscode/extensions.json +4 -0
  737. package/tests/angular-test-app/.vscode/launch.json +13 -0
  738. package/tests/angular-test-app/.vscode/tasks.json +24 -0
  739. package/tests/angular-test-app/README.md +59 -0
  740. package/tests/angular-test-app/angular.json +111 -0
  741. package/tests/angular-test-app/clean-start.sh +14 -0
  742. package/tests/angular-test-app/package.json +36 -0
  743. package/tests/angular-test-app/public/favicon.ico +0 -0
  744. package/tests/angular-test-app/src/app/app.component.ts +220 -0
  745. package/tests/angular-test-app/src/app/app.config.ts +5 -0
  746. package/tests/angular-test-app/src/env.d.ts +13 -0
  747. package/tests/angular-test-app/src/index.html +13 -0
  748. package/tests/angular-test-app/src/main.ts +6 -0
  749. package/tests/angular-test-app/src/styles.css +8 -0
  750. package/tests/angular-test-app/tsconfig.app.json +15 -0
  751. package/tests/angular-test-app/tsconfig.json +27 -0
  752. package/tests/crm-viewer-app/API_INTEGRATION_SUMMARY.md +295 -0
  753. package/tests/crm-viewer-app/CURRENT_ASSETS_FIELDS.md +148 -0
  754. package/tests/crm-viewer-app/FIELD_ID_MAPPING.md +206 -0
  755. package/tests/crm-viewer-app/INTEGRATION_GUIDE.md +309 -0
  756. package/tests/crm-viewer-app/README.md +174 -0
  757. package/tests/crm-viewer-app/REAL_API_INTEGRATION.md +240 -0
  758. package/tests/crm-viewer-app/UPDATED_IMPLEMENTATION.md +279 -0
  759. package/tests/crm-viewer-app/angular.json +114 -0
  760. package/tests/crm-viewer-app/package.json +35 -0
  761. package/tests/crm-viewer-app/src/app/app.component.ts +534 -0
  762. package/tests/crm-viewer-app/src/app/citation.service.ts +316 -0
  763. package/tests/crm-viewer-app/src/env.d.ts +16 -0
  764. package/tests/crm-viewer-app/src/index.html +19 -0
  765. package/tests/crm-viewer-app/src/main.ts +7 -0
  766. package/tests/crm-viewer-app/src/styles.css +409 -0
  767. package/tests/crm-viewer-app/src/template.html +2678 -0
  768. package/tests/crm-viewer-app/tsconfig.app.json +15 -0
  769. package/tests/crm-viewer-app/tsconfig.json +27 -0
  770. package/tests/e2e/package.json +17 -0
  771. package/tests/e2e/playwright.config.ts +75 -0
  772. package/tests/e2e/tests/api/health.spec.ts +10 -0
  773. package/tests/e2e/tests/app/example.spec.ts +10 -0
  774. package/tests/widget-test-app/.prettierignore +6 -0
  775. package/tests/widget-test-app/README.md +48 -0
  776. package/tests/widget-test-app/index.html +12 -0
  777. package/tests/widget-test-app/package.json +24 -0
  778. package/tests/widget-test-app/src/App.css +192 -0
  779. package/tests/widget-test-app/src/App.tsx +80 -0
  780. package/tests/widget-test-app/src/main.tsx +9 -0
  781. package/tests/widget-test-app/src/vite-env.d.ts +4 -0
  782. package/tests/widget-test-app/tsconfig.json +25 -0
  783. package/tests/widget-test-app/tsconfig.node.json +11 -0
  784. package/tests/widget-test-app/vite.config.ts +14 -0
@@ -0,0 +1,2085 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type PostV2ChatFormByFormIdData = {
4
+ body: {
5
+ message: {
6
+ role: 'user';
7
+ content: string;
8
+ };
9
+ noRespond?: boolean;
10
+ };
11
+ path: {
12
+ formId: string;
13
+ };
14
+ query?: never;
15
+ url: '/v2/chat/form/{formId}';
16
+ };
17
+
18
+ export type PostV2ChatFormByFormIdResponses = {
19
+ /**
20
+ * Default Response
21
+ */
22
+ 200: unknown;
23
+ };
24
+
25
+ export type PostV2ChatFormByFormIdJsonData = {
26
+ body: {
27
+ message: {
28
+ role: 'user';
29
+ content: string;
30
+ };
31
+ noRespond?: boolean;
32
+ };
33
+ path: {
34
+ formId: string;
35
+ };
36
+ query?: never;
37
+ url: '/v2/chat/form/{formId}/json';
38
+ };
39
+
40
+ export type PostV2ChatFormByFormIdJsonErrors = {
41
+ /**
42
+ * Default Response
43
+ */
44
+ 400: {
45
+ description: string;
46
+ };
47
+ /**
48
+ * Default Response
49
+ */
50
+ 404: {
51
+ description: string;
52
+ };
53
+ /**
54
+ * Default Response
55
+ */
56
+ 500: {
57
+ description: string;
58
+ };
59
+ };
60
+
61
+ export type PostV2ChatFormByFormIdJsonError = PostV2ChatFormByFormIdJsonErrors[keyof PostV2ChatFormByFormIdJsonErrors];
62
+
63
+ export type PostV2ChatFormByFormIdJsonResponses = {
64
+ /**
65
+ * Default Response
66
+ */
67
+ 200: {
68
+ text?: string;
69
+ messages: Array<{
70
+ id: string;
71
+ role: 'user' | 'assistant' | 'system';
72
+ parts: Array<{
73
+ type: string;
74
+ text: string;
75
+ }>;
76
+ createdAt: string;
77
+ }>;
78
+ };
79
+ };
80
+
81
+ export type PostV2ChatFormByFormIdJsonResponse = PostV2ChatFormByFormIdJsonResponses[keyof PostV2ChatFormByFormIdJsonResponses];
82
+
83
+ export type PostV2ChatSubmissionBySubmissionIdData = {
84
+ body: {
85
+ message: {
86
+ role: 'user';
87
+ content: string;
88
+ };
89
+ noRespond?: boolean;
90
+ };
91
+ path: {
92
+ submissionId: string;
93
+ };
94
+ query?: never;
95
+ url: '/v2/chat/submission/{submissionId}';
96
+ };
97
+
98
+ export type PostV2ChatSubmissionBySubmissionIdResponses = {
99
+ /**
100
+ * Default Response
101
+ */
102
+ 200: unknown;
103
+ };
104
+
105
+ export type PostV2ChatSubmissionBySubmissionIdJsonData = {
106
+ body: {
107
+ message: {
108
+ role: 'user';
109
+ content: string;
110
+ };
111
+ noRespond?: boolean;
112
+ };
113
+ path: {
114
+ submissionId: string;
115
+ };
116
+ query?: never;
117
+ url: '/v2/chat/submission/{submissionId}/json';
118
+ };
119
+
120
+ export type PostV2ChatSubmissionBySubmissionIdJsonErrors = {
121
+ /**
122
+ * Default Response
123
+ */
124
+ 400: {
125
+ description: string;
126
+ };
127
+ /**
128
+ * Default Response
129
+ */
130
+ 404: {
131
+ description: string;
132
+ };
133
+ /**
134
+ * Default Response
135
+ */
136
+ 500: {
137
+ description: string;
138
+ };
139
+ };
140
+
141
+ export type PostV2ChatSubmissionBySubmissionIdJsonError = PostV2ChatSubmissionBySubmissionIdJsonErrors[keyof PostV2ChatSubmissionBySubmissionIdJsonErrors];
142
+
143
+ export type PostV2ChatSubmissionBySubmissionIdJsonResponses = {
144
+ /**
145
+ * Default Response
146
+ */
147
+ 200: {
148
+ text?: string;
149
+ messages: Array<{
150
+ id: string;
151
+ role: 'user' | 'assistant' | 'system';
152
+ parts: Array<{
153
+ type: string;
154
+ text: string;
155
+ }>;
156
+ createdAt: string;
157
+ }>;
158
+ };
159
+ };
160
+
161
+ export type PostV2ChatSubmissionBySubmissionIdJsonResponse = PostV2ChatSubmissionBySubmissionIdJsonResponses[keyof PostV2ChatSubmissionBySubmissionIdJsonResponses];
162
+
163
+ export type GetV2DealsData = {
164
+ body?: never;
165
+ path?: never;
166
+ query?: never;
167
+ url: '/v2/deals/';
168
+ };
169
+
170
+ export type GetV2DealsErrors = {
171
+ /**
172
+ * Default Response
173
+ */
174
+ 500: {
175
+ description: string;
176
+ };
177
+ };
178
+
179
+ export type GetV2DealsError = GetV2DealsErrors[keyof GetV2DealsErrors];
180
+
181
+ export type GetV2DealsResponses = {
182
+ /**
183
+ * Default Response
184
+ */
185
+ 200: Array<{
186
+ id: string;
187
+ organizationId: string;
188
+ refId: string;
189
+ name: string;
190
+ hint: string;
191
+ deletedAt: string;
192
+ createdAt: string;
193
+ updatedAt: string;
194
+ }>;
195
+ };
196
+
197
+ export type GetV2DealsResponse = GetV2DealsResponses[keyof GetV2DealsResponses];
198
+
199
+ export type PostV2DealsData = {
200
+ body: {
201
+ name: string;
202
+ refId?: string;
203
+ hint?: string;
204
+ };
205
+ path?: never;
206
+ query?: never;
207
+ url: '/v2/deals/';
208
+ };
209
+
210
+ export type PostV2DealsErrors = {
211
+ /**
212
+ * Default Response
213
+ */
214
+ 500: {
215
+ description: string;
216
+ };
217
+ };
218
+
219
+ export type PostV2DealsError = PostV2DealsErrors[keyof PostV2DealsErrors];
220
+
221
+ export type PostV2DealsResponses = {
222
+ /**
223
+ * Default Response
224
+ */
225
+ 200: {
226
+ id: string;
227
+ organizationId: string;
228
+ refId: string;
229
+ name: string;
230
+ hint: string;
231
+ deletedAt: string;
232
+ createdAt: string;
233
+ updatedAt: string;
234
+ };
235
+ };
236
+
237
+ export type PostV2DealsResponse = PostV2DealsResponses[keyof PostV2DealsResponses];
238
+
239
+ export type PatchV2DealsByDealIdData = {
240
+ body?: {
241
+ name?: string;
242
+ hint?: string;
243
+ refId?: string;
244
+ };
245
+ path: {
246
+ dealId: string;
247
+ };
248
+ query?: never;
249
+ url: '/v2/deals/{dealId}';
250
+ };
251
+
252
+ export type PatchV2DealsByDealIdErrors = {
253
+ /**
254
+ * Default Response
255
+ */
256
+ 400: {
257
+ description: string;
258
+ };
259
+ /**
260
+ * Default Response
261
+ */
262
+ 404: {
263
+ description: string;
264
+ };
265
+ /**
266
+ * Default Response
267
+ */
268
+ 500: {
269
+ description: string;
270
+ };
271
+ };
272
+
273
+ export type PatchV2DealsByDealIdError = PatchV2DealsByDealIdErrors[keyof PatchV2DealsByDealIdErrors];
274
+
275
+ export type PatchV2DealsByDealIdResponses = {
276
+ /**
277
+ * Default Response
278
+ */
279
+ 200: {
280
+ success: boolean;
281
+ };
282
+ };
283
+
284
+ export type PatchV2DealsByDealIdResponse = PatchV2DealsByDealIdResponses[keyof PatchV2DealsByDealIdResponses];
285
+
286
+ export type PutV2DealsByDealIdData = {
287
+ body: {
288
+ name: string;
289
+ hint: string;
290
+ refId?: string;
291
+ };
292
+ path: {
293
+ dealId: string;
294
+ };
295
+ query?: never;
296
+ url: '/v2/deals/{dealId}';
297
+ };
298
+
299
+ export type PutV2DealsByDealIdErrors = {
300
+ /**
301
+ * Default Response
302
+ */
303
+ 400: {
304
+ description: string;
305
+ };
306
+ /**
307
+ * Default Response
308
+ */
309
+ 404: {
310
+ description: string;
311
+ };
312
+ /**
313
+ * Default Response
314
+ */
315
+ 500: {
316
+ description: string;
317
+ };
318
+ };
319
+
320
+ export type PutV2DealsByDealIdError = PutV2DealsByDealIdErrors[keyof PutV2DealsByDealIdErrors];
321
+
322
+ export type PutV2DealsByDealIdResponses = {
323
+ /**
324
+ * Default Response
325
+ */
326
+ 200: {
327
+ success: boolean;
328
+ };
329
+ };
330
+
331
+ export type PutV2DealsByDealIdResponse = PutV2DealsByDealIdResponses[keyof PutV2DealsByDealIdResponses];
332
+
333
+ export type GetV2FormsData = {
334
+ body?: never;
335
+ path?: never;
336
+ query?: never;
337
+ url: '/v2/forms/';
338
+ };
339
+
340
+ export type GetV2FormsErrors = {
341
+ /**
342
+ * Default Response
343
+ */
344
+ 500: {
345
+ description: string;
346
+ };
347
+ };
348
+
349
+ export type GetV2FormsError = GetV2FormsErrors[keyof GetV2FormsErrors];
350
+
351
+ export type GetV2FormsResponses = {
352
+ /**
353
+ * Default Response
354
+ */
355
+ 200: Array<{
356
+ id: string;
357
+ workflowId: string;
358
+ organizationId: string;
359
+ conversationId: string;
360
+ name: string;
361
+ hint: string;
362
+ createdAt: string;
363
+ updatedAt: string;
364
+ }>;
365
+ };
366
+
367
+ export type GetV2FormsResponse = GetV2FormsResponses[keyof GetV2FormsResponses];
368
+
369
+ export type PostV2FormsCreateData = {
370
+ body: {
371
+ workflowId: string;
372
+ name: string;
373
+ hint?: string;
374
+ groups: Array<{
375
+ name: string;
376
+ multi?: boolean;
377
+ hint?: string;
378
+ fields: Array<{
379
+ name: string;
380
+ type?: 'string' | 'string-long' | 'number' | 'boolean' | 'date' | 'email' | 'money' | 'url';
381
+ hint?: string;
382
+ }>;
383
+ }>;
384
+ };
385
+ path?: never;
386
+ query?: never;
387
+ url: '/v2/forms/create';
388
+ };
389
+
390
+ export type PostV2FormsCreateErrors = {
391
+ /**
392
+ * Default Response
393
+ */
394
+ 400: {
395
+ description: string;
396
+ };
397
+ /**
398
+ * Default Response
399
+ */
400
+ 500: {
401
+ description: string;
402
+ };
403
+ };
404
+
405
+ export type PostV2FormsCreateError = PostV2FormsCreateErrors[keyof PostV2FormsCreateErrors];
406
+
407
+ export type PostV2FormsCreateResponses = {
408
+ /**
409
+ * Default Response
410
+ */
411
+ 200: {
412
+ id: string;
413
+ workflowId: string;
414
+ organizationId: string;
415
+ conversationId: string;
416
+ name: string;
417
+ hint: string;
418
+ createdAt: string;
419
+ updatedAt: string;
420
+ deletedAt: string;
421
+ };
422
+ };
423
+
424
+ export type PostV2FormsCreateResponse = PostV2FormsCreateResponses[keyof PostV2FormsCreateResponses];
425
+
426
+ export type DeleteV2FormsByFormIdData = {
427
+ body?: never;
428
+ path: {
429
+ formId: string;
430
+ };
431
+ query?: never;
432
+ url: '/v2/forms/{formId}';
433
+ };
434
+
435
+ export type DeleteV2FormsByFormIdErrors = {
436
+ /**
437
+ * Default Response
438
+ */
439
+ 400: {
440
+ description: string;
441
+ };
442
+ /**
443
+ * Default Response
444
+ */
445
+ 404: {
446
+ description: string;
447
+ };
448
+ /**
449
+ * Default Response
450
+ */
451
+ 500: {
452
+ description: string;
453
+ };
454
+ };
455
+
456
+ export type DeleteV2FormsByFormIdError = DeleteV2FormsByFormIdErrors[keyof DeleteV2FormsByFormIdErrors];
457
+
458
+ export type DeleteV2FormsByFormIdResponses = {
459
+ /**
460
+ * Default Response
461
+ */
462
+ 200: {
463
+ success: boolean;
464
+ };
465
+ };
466
+
467
+ export type DeleteV2FormsByFormIdResponse = DeleteV2FormsByFormIdResponses[keyof DeleteV2FormsByFormIdResponses];
468
+
469
+ export type GetV2FormsByFormIdData = {
470
+ body?: never;
471
+ path: {
472
+ formId: string;
473
+ };
474
+ query?: never;
475
+ url: '/v2/forms/{formId}';
476
+ };
477
+
478
+ export type GetV2FormsByFormIdErrors = {
479
+ /**
480
+ * Default Response
481
+ */
482
+ 400: {
483
+ description: string;
484
+ };
485
+ /**
486
+ * Default Response
487
+ */
488
+ 404: {
489
+ description: string;
490
+ };
491
+ /**
492
+ * Default Response
493
+ */
494
+ 500: {
495
+ description: string;
496
+ };
497
+ };
498
+
499
+ export type GetV2FormsByFormIdError = GetV2FormsByFormIdErrors[keyof GetV2FormsByFormIdErrors];
500
+
501
+ export type GetV2FormsByFormIdResponses = {
502
+ /**
503
+ * Default Response
504
+ */
505
+ 200: {
506
+ id: string;
507
+ workflowId: string;
508
+ organizationId: string;
509
+ conversationId: string;
510
+ name: string;
511
+ hint: string;
512
+ createdAt: string;
513
+ updatedAt: string;
514
+ deletedAt: string;
515
+ };
516
+ };
517
+
518
+ export type GetV2FormsByFormIdResponse = GetV2FormsByFormIdResponses[keyof GetV2FormsByFormIdResponses];
519
+
520
+ export type PatchV2FormsByFormIdData = {
521
+ body?: {
522
+ name?: string;
523
+ hint?: string;
524
+ };
525
+ path: {
526
+ formId: string;
527
+ };
528
+ query?: never;
529
+ url: '/v2/forms/{formId}';
530
+ };
531
+
532
+ export type PatchV2FormsByFormIdErrors = {
533
+ /**
534
+ * Default Response
535
+ */
536
+ 400: {
537
+ description: string;
538
+ };
539
+ /**
540
+ * Default Response
541
+ */
542
+ 404: {
543
+ description: string;
544
+ };
545
+ /**
546
+ * Default Response
547
+ */
548
+ 500: {
549
+ description: string;
550
+ };
551
+ };
552
+
553
+ export type PatchV2FormsByFormIdError = PatchV2FormsByFormIdErrors[keyof PatchV2FormsByFormIdErrors];
554
+
555
+ export type PatchV2FormsByFormIdResponses = {
556
+ /**
557
+ * Default Response
558
+ */
559
+ 200: {
560
+ id: string;
561
+ workflowId: string;
562
+ organizationId: string;
563
+ conversationId: string;
564
+ name: string;
565
+ hint: string;
566
+ createdAt: string;
567
+ updatedAt: string;
568
+ deletedAt: string;
569
+ };
570
+ };
571
+
572
+ export type PatchV2FormsByFormIdResponse = PatchV2FormsByFormIdResponses[keyof PatchV2FormsByFormIdResponses];
573
+
574
+ export type PostV2FormsByFormIdGroupsData = {
575
+ body: {
576
+ name: string;
577
+ multi?: boolean;
578
+ hint?: string;
579
+ order?: number;
580
+ };
581
+ path: {
582
+ formId: string;
583
+ };
584
+ query?: never;
585
+ url: '/v2/forms/{formId}/groups';
586
+ };
587
+
588
+ export type PostV2FormsByFormIdGroupsErrors = {
589
+ /**
590
+ * Default Response
591
+ */
592
+ 400: {
593
+ description: string;
594
+ };
595
+ /**
596
+ * Default Response
597
+ */
598
+ 404: {
599
+ description: string;
600
+ };
601
+ /**
602
+ * Default Response
603
+ */
604
+ 500: {
605
+ description: string;
606
+ };
607
+ };
608
+
609
+ export type PostV2FormsByFormIdGroupsError = PostV2FormsByFormIdGroupsErrors[keyof PostV2FormsByFormIdGroupsErrors];
610
+
611
+ export type PostV2FormsByFormIdGroupsResponses = {
612
+ /**
613
+ * Default Response
614
+ */
615
+ 200: {
616
+ id: string;
617
+ formId: string;
618
+ name: string;
619
+ multi: boolean;
620
+ type: 'custom' | 'bank_statement';
621
+ order: number;
622
+ hint: string;
623
+ createdAt: string;
624
+ updatedAt: string;
625
+ };
626
+ };
627
+
628
+ export type PostV2FormsByFormIdGroupsResponse = PostV2FormsByFormIdGroupsResponses[keyof PostV2FormsByFormIdGroupsResponses];
629
+
630
+ export type DeleteV2FormsByFormIdGroupsByGroupIdData = {
631
+ body?: never;
632
+ path: {
633
+ formId: string;
634
+ groupId: string;
635
+ };
636
+ query?: never;
637
+ url: '/v2/forms/{formId}/groups/{groupId}';
638
+ };
639
+
640
+ export type DeleteV2FormsByFormIdGroupsByGroupIdErrors = {
641
+ /**
642
+ * Default Response
643
+ */
644
+ 400: {
645
+ description: string;
646
+ };
647
+ /**
648
+ * Default Response
649
+ */
650
+ 404: {
651
+ description: string;
652
+ };
653
+ /**
654
+ * Default Response
655
+ */
656
+ 500: {
657
+ description: string;
658
+ };
659
+ };
660
+
661
+ export type DeleteV2FormsByFormIdGroupsByGroupIdError = DeleteV2FormsByFormIdGroupsByGroupIdErrors[keyof DeleteV2FormsByFormIdGroupsByGroupIdErrors];
662
+
663
+ export type DeleteV2FormsByFormIdGroupsByGroupIdResponses = {
664
+ /**
665
+ * Default Response
666
+ */
667
+ 200: {
668
+ success: boolean;
669
+ };
670
+ };
671
+
672
+ export type DeleteV2FormsByFormIdGroupsByGroupIdResponse = DeleteV2FormsByFormIdGroupsByGroupIdResponses[keyof DeleteV2FormsByFormIdGroupsByGroupIdResponses];
673
+
674
+ export type PatchV2FormsByFormIdGroupsByGroupIdData = {
675
+ body?: {
676
+ name?: string;
677
+ multi?: boolean;
678
+ hint?: string;
679
+ order?: number;
680
+ };
681
+ path: {
682
+ formId: string;
683
+ groupId: string;
684
+ };
685
+ query?: never;
686
+ url: '/v2/forms/{formId}/groups/{groupId}';
687
+ };
688
+
689
+ export type PatchV2FormsByFormIdGroupsByGroupIdErrors = {
690
+ /**
691
+ * Default Response
692
+ */
693
+ 400: {
694
+ description: string;
695
+ };
696
+ /**
697
+ * Default Response
698
+ */
699
+ 404: {
700
+ description: string;
701
+ };
702
+ /**
703
+ * Default Response
704
+ */
705
+ 500: {
706
+ description: string;
707
+ };
708
+ };
709
+
710
+ export type PatchV2FormsByFormIdGroupsByGroupIdError = PatchV2FormsByFormIdGroupsByGroupIdErrors[keyof PatchV2FormsByFormIdGroupsByGroupIdErrors];
711
+
712
+ export type PatchV2FormsByFormIdGroupsByGroupIdResponses = {
713
+ /**
714
+ * Default Response
715
+ */
716
+ 200: {
717
+ id: string;
718
+ formId: string;
719
+ name: string;
720
+ multi: boolean;
721
+ type: 'custom' | 'bank_statement';
722
+ order: number;
723
+ hint: string;
724
+ createdAt: string;
725
+ updatedAt: string;
726
+ };
727
+ };
728
+
729
+ export type PatchV2FormsByFormIdGroupsByGroupIdResponse = PatchV2FormsByFormIdGroupsByGroupIdResponses[keyof PatchV2FormsByFormIdGroupsByGroupIdResponses];
730
+
731
+ export type PostV2FormsByFormIdGroupsByGroupIdFieldsData = {
732
+ body: {
733
+ name: string;
734
+ type?: 'string' | 'string-long' | 'number' | 'boolean' | 'date' | 'email' | 'money' | 'url';
735
+ hint?: string;
736
+ order?: number;
737
+ };
738
+ path: {
739
+ formId: string;
740
+ groupId: string;
741
+ };
742
+ query?: never;
743
+ url: '/v2/forms/{formId}/groups/{groupId}/fields';
744
+ };
745
+
746
+ export type PostV2FormsByFormIdGroupsByGroupIdFieldsErrors = {
747
+ /**
748
+ * Default Response
749
+ */
750
+ 400: {
751
+ description: string;
752
+ };
753
+ /**
754
+ * Default Response
755
+ */
756
+ 404: {
757
+ description: string;
758
+ };
759
+ /**
760
+ * Default Response
761
+ */
762
+ 500: {
763
+ description: string;
764
+ };
765
+ };
766
+
767
+ export type PostV2FormsByFormIdGroupsByGroupIdFieldsError = PostV2FormsByFormIdGroupsByGroupIdFieldsErrors[keyof PostV2FormsByFormIdGroupsByGroupIdFieldsErrors];
768
+
769
+ export type PostV2FormsByFormIdGroupsByGroupIdFieldsResponses = {
770
+ /**
771
+ * Default Response
772
+ */
773
+ 200: {
774
+ id: string;
775
+ formGroupId: string;
776
+ name: string;
777
+ type: 'string' | 'string-long' | 'number' | 'boolean' | 'date' | 'email' | 'money' | 'url';
778
+ hint: string;
779
+ order: number;
780
+ createdAt: string;
781
+ updatedAt: string;
782
+ };
783
+ };
784
+
785
+ export type PostV2FormsByFormIdGroupsByGroupIdFieldsResponse = PostV2FormsByFormIdGroupsByGroupIdFieldsResponses[keyof PostV2FormsByFormIdGroupsByGroupIdFieldsResponses];
786
+
787
+ export type DeleteV2FormsByFormIdFieldsByFieldIdData = {
788
+ body?: never;
789
+ path: {
790
+ formId: string;
791
+ fieldId: string;
792
+ };
793
+ query?: never;
794
+ url: '/v2/forms/{formId}/fields/{fieldId}';
795
+ };
796
+
797
+ export type DeleteV2FormsByFormIdFieldsByFieldIdErrors = {
798
+ /**
799
+ * Default Response
800
+ */
801
+ 400: {
802
+ description: string;
803
+ };
804
+ /**
805
+ * Default Response
806
+ */
807
+ 404: {
808
+ description: string;
809
+ };
810
+ /**
811
+ * Default Response
812
+ */
813
+ 500: {
814
+ description: string;
815
+ };
816
+ };
817
+
818
+ export type DeleteV2FormsByFormIdFieldsByFieldIdError = DeleteV2FormsByFormIdFieldsByFieldIdErrors[keyof DeleteV2FormsByFormIdFieldsByFieldIdErrors];
819
+
820
+ export type DeleteV2FormsByFormIdFieldsByFieldIdResponses = {
821
+ /**
822
+ * Default Response
823
+ */
824
+ 200: {
825
+ success: boolean;
826
+ };
827
+ };
828
+
829
+ export type DeleteV2FormsByFormIdFieldsByFieldIdResponse = DeleteV2FormsByFormIdFieldsByFieldIdResponses[keyof DeleteV2FormsByFormIdFieldsByFieldIdResponses];
830
+
831
+ export type PatchV2FormsByFormIdFieldsByFieldIdData = {
832
+ body?: {
833
+ name?: string;
834
+ hint?: string;
835
+ type?: 'string' | 'string-long' | 'number' | 'boolean' | 'date' | 'email' | 'money' | 'url';
836
+ order?: number;
837
+ };
838
+ path: {
839
+ formId: string;
840
+ fieldId: string;
841
+ };
842
+ query?: never;
843
+ url: '/v2/forms/{formId}/fields/{fieldId}';
844
+ };
845
+
846
+ export type PatchV2FormsByFormIdFieldsByFieldIdErrors = {
847
+ /**
848
+ * Default Response
849
+ */
850
+ 400: {
851
+ description: string;
852
+ };
853
+ /**
854
+ * Default Response
855
+ */
856
+ 404: {
857
+ description: string;
858
+ };
859
+ /**
860
+ * Default Response
861
+ */
862
+ 500: {
863
+ description: string;
864
+ };
865
+ };
866
+
867
+ export type PatchV2FormsByFormIdFieldsByFieldIdError = PatchV2FormsByFormIdFieldsByFieldIdErrors[keyof PatchV2FormsByFormIdFieldsByFieldIdErrors];
868
+
869
+ export type PatchV2FormsByFormIdFieldsByFieldIdResponses = {
870
+ /**
871
+ * Default Response
872
+ */
873
+ 200: {
874
+ id: string;
875
+ formGroupId: string;
876
+ name: string;
877
+ type: 'string' | 'string-long' | 'number' | 'boolean' | 'date' | 'email' | 'money' | 'url';
878
+ hint: string;
879
+ order: number;
880
+ createdAt: string;
881
+ updatedAt: string;
882
+ };
883
+ };
884
+
885
+ export type PatchV2FormsByFormIdFieldsByFieldIdResponse = PatchV2FormsByFormIdFieldsByFieldIdResponses[keyof PatchV2FormsByFormIdFieldsByFieldIdResponses];
886
+
887
+ export type PostV2FormsByFormIdGroupsByGroupIdDerivedData = {
888
+ body: {
889
+ name: string;
890
+ prompt?: string;
891
+ };
892
+ path: {
893
+ formId: string;
894
+ groupId: string;
895
+ };
896
+ query?: never;
897
+ url: '/v2/forms/{formId}/groups/{groupId}/derived';
898
+ };
899
+
900
+ export type PostV2FormsByFormIdGroupsByGroupIdDerivedErrors = {
901
+ /**
902
+ * Default Response
903
+ */
904
+ 400: {
905
+ description: string;
906
+ };
907
+ /**
908
+ * Default Response
909
+ */
910
+ 404: {
911
+ description: string;
912
+ };
913
+ /**
914
+ * Default Response
915
+ */
916
+ 500: {
917
+ description: string;
918
+ };
919
+ };
920
+
921
+ export type PostV2FormsByFormIdGroupsByGroupIdDerivedError = PostV2FormsByFormIdGroupsByGroupIdDerivedErrors[keyof PostV2FormsByFormIdGroupsByGroupIdDerivedErrors];
922
+
923
+ export type PostV2FormsByFormIdGroupsByGroupIdDerivedResponses = {
924
+ /**
925
+ * Default Response
926
+ */
927
+ 200: {
928
+ id: string;
929
+ formGroupId: string;
930
+ name: string;
931
+ prompt: string;
932
+ createdAt: string;
933
+ updatedAt: string;
934
+ };
935
+ };
936
+
937
+ export type PostV2FormsByFormIdGroupsByGroupIdDerivedResponse = PostV2FormsByFormIdGroupsByGroupIdDerivedResponses[keyof PostV2FormsByFormIdGroupsByGroupIdDerivedResponses];
938
+
939
+ export type DeleteV2FormsByFormIdDerivedByDerivedIdData = {
940
+ body?: never;
941
+ path: {
942
+ formId: string;
943
+ derivedId: string;
944
+ };
945
+ query?: never;
946
+ url: '/v2/forms/{formId}/derived/{derivedId}';
947
+ };
948
+
949
+ export type DeleteV2FormsByFormIdDerivedByDerivedIdErrors = {
950
+ /**
951
+ * Default Response
952
+ */
953
+ 400: {
954
+ description: string;
955
+ };
956
+ /**
957
+ * Default Response
958
+ */
959
+ 404: {
960
+ description: string;
961
+ };
962
+ /**
963
+ * Default Response
964
+ */
965
+ 500: {
966
+ description: string;
967
+ };
968
+ };
969
+
970
+ export type DeleteV2FormsByFormIdDerivedByDerivedIdError = DeleteV2FormsByFormIdDerivedByDerivedIdErrors[keyof DeleteV2FormsByFormIdDerivedByDerivedIdErrors];
971
+
972
+ export type DeleteV2FormsByFormIdDerivedByDerivedIdResponses = {
973
+ /**
974
+ * Default Response
975
+ */
976
+ 200: {
977
+ success: boolean;
978
+ };
979
+ };
980
+
981
+ export type DeleteV2FormsByFormIdDerivedByDerivedIdResponse = DeleteV2FormsByFormIdDerivedByDerivedIdResponses[keyof DeleteV2FormsByFormIdDerivedByDerivedIdResponses];
982
+
983
+ export type PatchV2FormsByFormIdDerivedByDerivedIdData = {
984
+ body?: {
985
+ name?: string;
986
+ prompt?: string;
987
+ };
988
+ path: {
989
+ formId: string;
990
+ derivedId: string;
991
+ };
992
+ query?: never;
993
+ url: '/v2/forms/{formId}/derived/{derivedId}';
994
+ };
995
+
996
+ export type PatchV2FormsByFormIdDerivedByDerivedIdErrors = {
997
+ /**
998
+ * Default Response
999
+ */
1000
+ 400: {
1001
+ description: string;
1002
+ };
1003
+ /**
1004
+ * Default Response
1005
+ */
1006
+ 404: {
1007
+ description: string;
1008
+ };
1009
+ /**
1010
+ * Default Response
1011
+ */
1012
+ 500: {
1013
+ description: string;
1014
+ };
1015
+ };
1016
+
1017
+ export type PatchV2FormsByFormIdDerivedByDerivedIdError = PatchV2FormsByFormIdDerivedByDerivedIdErrors[keyof PatchV2FormsByFormIdDerivedByDerivedIdErrors];
1018
+
1019
+ export type PatchV2FormsByFormIdDerivedByDerivedIdResponses = {
1020
+ /**
1021
+ * Default Response
1022
+ */
1023
+ 200: {
1024
+ id: string;
1025
+ formGroupId: string;
1026
+ name: string;
1027
+ prompt: string;
1028
+ createdAt: string;
1029
+ updatedAt: string;
1030
+ };
1031
+ };
1032
+
1033
+ export type PatchV2FormsByFormIdDerivedByDerivedIdResponse = PatchV2FormsByFormIdDerivedByDerivedIdResponses[keyof PatchV2FormsByFormIdDerivedByDerivedIdResponses];
1034
+
1035
+ export type GetV2FormsByFormIdFeedbackCorrectionsData = {
1036
+ body?: never;
1037
+ path: {
1038
+ formId: string;
1039
+ };
1040
+ query?: never;
1041
+ url: '/v2/forms/{formId}/feedback/corrections';
1042
+ };
1043
+
1044
+ export type GetV2FormsByFormIdFeedbackCorrectionsErrors = {
1045
+ /**
1046
+ * Default Response
1047
+ */
1048
+ 400: {
1049
+ description: string;
1050
+ };
1051
+ /**
1052
+ * Default Response
1053
+ */
1054
+ 404: {
1055
+ description: string;
1056
+ };
1057
+ /**
1058
+ * Default Response
1059
+ */
1060
+ 500: {
1061
+ description: string;
1062
+ };
1063
+ };
1064
+
1065
+ export type GetV2FormsByFormIdFeedbackCorrectionsError = GetV2FormsByFormIdFeedbackCorrectionsErrors[keyof GetV2FormsByFormIdFeedbackCorrectionsErrors];
1066
+
1067
+ export type GetV2FormsByFormIdFeedbackCorrectionsResponses = {
1068
+ /**
1069
+ * Default Response
1070
+ */
1071
+ 200: {
1072
+ [key: string]: Array<{
1073
+ id: string;
1074
+ submissionItemId: string;
1075
+ extractedValue: unknown;
1076
+ correctedValue: unknown;
1077
+ feedback: string;
1078
+ status: 'pending' | 'addressed';
1079
+ createdAt: string;
1080
+ updatedAt: string;
1081
+ submissionItem: {
1082
+ formFieldId: string;
1083
+ formField: {
1084
+ id: string;
1085
+ name: string;
1086
+ hint: string;
1087
+ };
1088
+ };
1089
+ }>;
1090
+ };
1091
+ };
1092
+
1093
+ export type GetV2FormsByFormIdFeedbackCorrectionsResponse = GetV2FormsByFormIdFeedbackCorrectionsResponses[keyof GetV2FormsByFormIdFeedbackCorrectionsResponses];
1094
+
1095
+ export type PostV2FormsByFormIdFeedbackHintsData = {
1096
+ body: {
1097
+ formFieldId: string;
1098
+ };
1099
+ path: {
1100
+ formId: string;
1101
+ };
1102
+ query?: never;
1103
+ url: '/v2/forms/{formId}/feedback/hints';
1104
+ };
1105
+
1106
+ export type PostV2FormsByFormIdFeedbackHintsErrors = {
1107
+ /**
1108
+ * Default Response
1109
+ */
1110
+ 400: {
1111
+ description: string;
1112
+ };
1113
+ /**
1114
+ * Default Response
1115
+ */
1116
+ 404: {
1117
+ description: string;
1118
+ };
1119
+ /**
1120
+ * Default Response
1121
+ */
1122
+ 500: {
1123
+ description: string;
1124
+ };
1125
+ };
1126
+
1127
+ export type PostV2FormsByFormIdFeedbackHintsError = PostV2FormsByFormIdFeedbackHintsErrors[keyof PostV2FormsByFormIdFeedbackHintsErrors];
1128
+
1129
+ export type PostV2FormsByFormIdFeedbackHintsResponses = {
1130
+ /**
1131
+ * Default Response
1132
+ */
1133
+ 200: {
1134
+ fieldName: string;
1135
+ currentHint: string;
1136
+ improvedHint: string;
1137
+ analysis: string;
1138
+ };
1139
+ };
1140
+
1141
+ export type PostV2FormsByFormIdFeedbackHintsResponse = PostV2FormsByFormIdFeedbackHintsResponses[keyof PostV2FormsByFormIdFeedbackHintsResponses];
1142
+
1143
+ export type PatchV2FormsByFormIdFieldsByFieldIdHintData = {
1144
+ body: {
1145
+ hint: string;
1146
+ };
1147
+ path: {
1148
+ formId: string;
1149
+ fieldId: string;
1150
+ };
1151
+ query?: never;
1152
+ url: '/v2/forms/{formId}/fields/{fieldId}/hint';
1153
+ };
1154
+
1155
+ export type PatchV2FormsByFormIdFieldsByFieldIdHintErrors = {
1156
+ /**
1157
+ * Default Response
1158
+ */
1159
+ 400: {
1160
+ description: string;
1161
+ };
1162
+ /**
1163
+ * Default Response
1164
+ */
1165
+ 404: {
1166
+ description: string;
1167
+ };
1168
+ /**
1169
+ * Default Response
1170
+ */
1171
+ 500: {
1172
+ description: string;
1173
+ };
1174
+ };
1175
+
1176
+ export type PatchV2FormsByFormIdFieldsByFieldIdHintError = PatchV2FormsByFormIdFieldsByFieldIdHintErrors[keyof PatchV2FormsByFormIdFieldsByFieldIdHintErrors];
1177
+
1178
+ export type PatchV2FormsByFormIdFieldsByFieldIdHintResponses = {
1179
+ /**
1180
+ * Default Response
1181
+ */
1182
+ 200: {
1183
+ success: boolean;
1184
+ };
1185
+ };
1186
+
1187
+ export type PatchV2FormsByFormIdFieldsByFieldIdHintResponse = PatchV2FormsByFormIdFieldsByFieldIdHintResponses[keyof PatchV2FormsByFormIdFieldsByFieldIdHintResponses];
1188
+
1189
+ export type GetV2SubmissionsData = {
1190
+ body?: never;
1191
+ path?: never;
1192
+ query: {
1193
+ formId: string;
1194
+ dealId?: string;
1195
+ afterDate?: string;
1196
+ };
1197
+ url: '/v2/submissions/';
1198
+ };
1199
+
1200
+ export type GetV2SubmissionsErrors = {
1201
+ /**
1202
+ * Default Response
1203
+ */
1204
+ 400: {
1205
+ description: string;
1206
+ };
1207
+ /**
1208
+ * Default Response
1209
+ */
1210
+ 500: {
1211
+ description: string;
1212
+ };
1213
+ };
1214
+
1215
+ export type GetV2SubmissionsError = GetV2SubmissionsErrors[keyof GetV2SubmissionsErrors];
1216
+
1217
+ export type GetV2SubmissionsResponses = {
1218
+ /**
1219
+ * Default Response
1220
+ */
1221
+ 200: Array<{
1222
+ id: string;
1223
+ name: string;
1224
+ summary: string;
1225
+ dealId: string;
1226
+ status: 'draft' | 'final';
1227
+ createdAt: string;
1228
+ updatedAt: string;
1229
+ form: {
1230
+ id: string;
1231
+ workflowId: string;
1232
+ name: string;
1233
+ hint: string;
1234
+ createdAt: string;
1235
+ updatedAt: string;
1236
+ workflow: {
1237
+ id: string;
1238
+ slug: string;
1239
+ name: string;
1240
+ hint: string;
1241
+ createdAt: string;
1242
+ updatedAt: string;
1243
+ };
1244
+ };
1245
+ }>;
1246
+ };
1247
+
1248
+ export type GetV2SubmissionsResponse = GetV2SubmissionsResponses[keyof GetV2SubmissionsResponses];
1249
+
1250
+ export type PostV2SubmissionsData = {
1251
+ body: {
1252
+ formId: string;
1253
+ dealId?: string;
1254
+ dealRefId?: string;
1255
+ };
1256
+ path?: never;
1257
+ query?: never;
1258
+ url: '/v2/submissions/';
1259
+ };
1260
+
1261
+ export type PostV2SubmissionsErrors = {
1262
+ /**
1263
+ * Default Response
1264
+ */
1265
+ 400: {
1266
+ description: string;
1267
+ };
1268
+ /**
1269
+ * Default Response
1270
+ */
1271
+ 404: {
1272
+ description: string;
1273
+ };
1274
+ /**
1275
+ * Default Response
1276
+ */
1277
+ 500: {
1278
+ description: string;
1279
+ };
1280
+ };
1281
+
1282
+ export type PostV2SubmissionsError = PostV2SubmissionsErrors[keyof PostV2SubmissionsErrors];
1283
+
1284
+ export type PostV2SubmissionsResponses = {
1285
+ /**
1286
+ * Default Response
1287
+ */
1288
+ 200: {
1289
+ id: string;
1290
+ name: string;
1291
+ summary: string;
1292
+ summarizedAt: string;
1293
+ formId: string;
1294
+ dealId: string;
1295
+ organizationId: string;
1296
+ conversationId: string;
1297
+ status: 'draft' | 'final';
1298
+ deletedAt: string;
1299
+ createdAt: string;
1300
+ updatedAt: string;
1301
+ };
1302
+ };
1303
+
1304
+ export type PostV2SubmissionsResponse = PostV2SubmissionsResponses[keyof PostV2SubmissionsResponses];
1305
+
1306
+ export type GetV2SubmissionsBySubmissionIdStatusData = {
1307
+ body?: never;
1308
+ path: {
1309
+ submissionId: string;
1310
+ };
1311
+ query?: never;
1312
+ url: '/v2/submissions/{submissionId}/status';
1313
+ };
1314
+
1315
+ export type GetV2SubmissionsBySubmissionIdStatusErrors = {
1316
+ /**
1317
+ * Default Response
1318
+ */
1319
+ 400: {
1320
+ description: string;
1321
+ };
1322
+ /**
1323
+ * Default Response
1324
+ */
1325
+ 404: {
1326
+ description: string;
1327
+ };
1328
+ };
1329
+
1330
+ export type GetV2SubmissionsBySubmissionIdStatusError = GetV2SubmissionsBySubmissionIdStatusErrors[keyof GetV2SubmissionsBySubmissionIdStatusErrors];
1331
+
1332
+ export type GetV2SubmissionsBySubmissionIdStatusResponses = {
1333
+ /**
1334
+ * Default Response
1335
+ */
1336
+ 200: {
1337
+ status: 'pending' | 'done';
1338
+ };
1339
+ };
1340
+
1341
+ export type GetV2SubmissionsBySubmissionIdStatusResponse = GetV2SubmissionsBySubmissionIdStatusResponses[keyof GetV2SubmissionsBySubmissionIdStatusResponses];
1342
+
1343
+ export type GetV2SubmissionsBySubmissionIdDataData = {
1344
+ body?: never;
1345
+ path: {
1346
+ submissionId: string;
1347
+ };
1348
+ query?: never;
1349
+ url: '/v2/submissions/{submissionId}/data';
1350
+ };
1351
+
1352
+ export type GetV2SubmissionsBySubmissionIdDataErrors = {
1353
+ /**
1354
+ * Default Response
1355
+ */
1356
+ 400: {
1357
+ description: string;
1358
+ };
1359
+ /**
1360
+ * Default Response
1361
+ */
1362
+ 404: {
1363
+ description: string;
1364
+ };
1365
+ };
1366
+
1367
+ export type GetV2SubmissionsBySubmissionIdDataError = GetV2SubmissionsBySubmissionIdDataErrors[keyof GetV2SubmissionsBySubmissionIdDataErrors];
1368
+
1369
+ export type GetV2SubmissionsBySubmissionIdDataResponses = {
1370
+ /**
1371
+ * Default Response
1372
+ */
1373
+ 200: {
1374
+ submissionId: string;
1375
+ name: string;
1376
+ formId: string;
1377
+ dealId: string;
1378
+ status: 'draft' | 'final';
1379
+ formGroups: Array<{
1380
+ id: string;
1381
+ name: string;
1382
+ multi: boolean;
1383
+ hint: string;
1384
+ fields: Array<{
1385
+ id: string;
1386
+ name: string;
1387
+ hint: string;
1388
+ order: number;
1389
+ }>;
1390
+ }>;
1391
+ groups: Array<{
1392
+ id: string;
1393
+ order: number;
1394
+ formGroupId: string;
1395
+ items: Array<{
1396
+ id: string;
1397
+ formField: {
1398
+ id: string;
1399
+ name: string;
1400
+ hint: string;
1401
+ order: number;
1402
+ };
1403
+ sourceId: string;
1404
+ documentCitationId: string;
1405
+ documentExtractionId: string;
1406
+ value: unknown;
1407
+ }>;
1408
+ }>;
1409
+ documents: Array<{
1410
+ documentId: string;
1411
+ documentExtractionId: string;
1412
+ url: string;
1413
+ urlExpiry: string;
1414
+ name: string;
1415
+ status: 'pending' | 'processing' | 'done' | 'failed';
1416
+ extractionModel: string;
1417
+ extractedData: unknown;
1418
+ citations: Array<{
1419
+ id: string;
1420
+ documentExtractionId: string;
1421
+ path: string;
1422
+ text: string;
1423
+ sourceRef: string;
1424
+ boundingRegions: {
1425
+ [key: string]: Array<{
1426
+ polygon: [
1427
+ number,
1428
+ number,
1429
+ number,
1430
+ number,
1431
+ number,
1432
+ number,
1433
+ number,
1434
+ number
1435
+ ];
1436
+ pageNumber: number;
1437
+ }>;
1438
+ };
1439
+ }>;
1440
+ }>;
1441
+ };
1442
+ };
1443
+
1444
+ export type GetV2SubmissionsBySubmissionIdDataResponse = GetV2SubmissionsBySubmissionIdDataResponses[keyof GetV2SubmissionsBySubmissionIdDataResponses];
1445
+
1446
+ export type PostV2SubmissionsBySubmissionIdExtractionsData = {
1447
+ body: {
1448
+ files: unknown | Array<unknown>;
1449
+ model?: 'general' | 'smart' | 'turbo' | 'bank_statement';
1450
+ userPrompt?: string;
1451
+ };
1452
+ path: {
1453
+ submissionId: string;
1454
+ };
1455
+ query?: never;
1456
+ url: '/v2/submissions/{submissionId}/extractions';
1457
+ };
1458
+
1459
+ export type PostV2SubmissionsBySubmissionIdExtractionsErrors = {
1460
+ /**
1461
+ * Default Response
1462
+ */
1463
+ 400: {
1464
+ description: string;
1465
+ };
1466
+ /**
1467
+ * Default Response
1468
+ */
1469
+ 429: {
1470
+ statusCode: number;
1471
+ message: string;
1472
+ };
1473
+ /**
1474
+ * Default Response
1475
+ */
1476
+ 500: {
1477
+ description: string;
1478
+ };
1479
+ };
1480
+
1481
+ export type PostV2SubmissionsBySubmissionIdExtractionsError = PostV2SubmissionsBySubmissionIdExtractionsErrors[keyof PostV2SubmissionsBySubmissionIdExtractionsErrors];
1482
+
1483
+ export type PostV2SubmissionsBySubmissionIdExtractionsResponses = {
1484
+ /**
1485
+ * Default Response
1486
+ */
1487
+ 200: {
1488
+ submissionId: string;
1489
+ extractions: Array<{
1490
+ extractionId: string;
1491
+ documentId: string;
1492
+ }>;
1493
+ failures: number;
1494
+ };
1495
+ };
1496
+
1497
+ export type PostV2SubmissionsBySubmissionIdExtractionsResponse = PostV2SubmissionsBySubmissionIdExtractionsResponses[keyof PostV2SubmissionsBySubmissionIdExtractionsResponses];
1498
+
1499
+ export type GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdData = {
1500
+ body?: never;
1501
+ path: {
1502
+ submissionId: string;
1503
+ documentExtractionId: string;
1504
+ };
1505
+ query?: never;
1506
+ url: '/v2/submissions/{submissionId}/extractions/{documentExtractionId}';
1507
+ };
1508
+
1509
+ export type GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdErrors = {
1510
+ /**
1511
+ * Default Response
1512
+ */
1513
+ 400: {
1514
+ description: string;
1515
+ };
1516
+ /**
1517
+ * Default Response
1518
+ */
1519
+ 404: {
1520
+ description: string;
1521
+ };
1522
+ /**
1523
+ * Default Response
1524
+ */
1525
+ 500: {
1526
+ description: string;
1527
+ };
1528
+ };
1529
+
1530
+ export type GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdError = GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdErrors[keyof GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdErrors];
1531
+
1532
+ export type GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdResponses = {
1533
+ /**
1534
+ * Default Response
1535
+ */
1536
+ 200: {
1537
+ id: string;
1538
+ documentId: string;
1539
+ submissionId: string;
1540
+ status: 'pending' | 'processing' | 'done' | 'failed';
1541
+ extractionModel: string;
1542
+ data: unknown;
1543
+ createdAt: string;
1544
+ updatedAt: string;
1545
+ deletedAt: string;
1546
+ document: {
1547
+ id: string;
1548
+ dealId: string;
1549
+ name: string;
1550
+ contentType: string;
1551
+ blobKey: string;
1552
+ blobUrl: string;
1553
+ blobUrlExpiry: string;
1554
+ data: unknown;
1555
+ metadata: unknown;
1556
+ createdAt: string;
1557
+ updatedAt: string;
1558
+ deletedAt: string;
1559
+ };
1560
+ };
1561
+ };
1562
+
1563
+ export type GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdResponse = GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdResponses[keyof GetV2SubmissionsBySubmissionIdExtractionsByDocumentExtractionIdResponses];
1564
+
1565
+ export type PatchV2SubmissionsBySubmissionIdData = {
1566
+ body?: {
1567
+ name?: string;
1568
+ summary?: string;
1569
+ };
1570
+ path: {
1571
+ submissionId: string;
1572
+ };
1573
+ query?: never;
1574
+ url: '/v2/submissions/{submissionId}';
1575
+ };
1576
+
1577
+ export type PatchV2SubmissionsBySubmissionIdErrors = {
1578
+ /**
1579
+ * Default Response
1580
+ */
1581
+ 400: {
1582
+ description: string;
1583
+ };
1584
+ /**
1585
+ * Default Response
1586
+ */
1587
+ 404: {
1588
+ description: string;
1589
+ };
1590
+ /**
1591
+ * Default Response
1592
+ */
1593
+ 500: {
1594
+ description: string;
1595
+ };
1596
+ };
1597
+
1598
+ export type PatchV2SubmissionsBySubmissionIdError = PatchV2SubmissionsBySubmissionIdErrors[keyof PatchV2SubmissionsBySubmissionIdErrors];
1599
+
1600
+ export type PatchV2SubmissionsBySubmissionIdResponses = {
1601
+ /**
1602
+ * Default Response
1603
+ */
1604
+ 200: {
1605
+ id: string;
1606
+ name: string;
1607
+ summary: string;
1608
+ formId: string;
1609
+ dealId: string;
1610
+ organizationId: string;
1611
+ conversationId: string;
1612
+ status: 'draft' | 'final';
1613
+ createdAt: string;
1614
+ updatedAt: string;
1615
+ };
1616
+ };
1617
+
1618
+ export type PatchV2SubmissionsBySubmissionIdResponse = PatchV2SubmissionsBySubmissionIdResponses[keyof PatchV2SubmissionsBySubmissionIdResponses];
1619
+
1620
+ export type PostV2SubmissionsBySubmissionIdGroupsData = {
1621
+ body: {
1622
+ formGroupId: string;
1623
+ };
1624
+ path: {
1625
+ submissionId: string;
1626
+ };
1627
+ query?: never;
1628
+ url: '/v2/submissions/{submissionId}/groups';
1629
+ };
1630
+
1631
+ export type PostV2SubmissionsBySubmissionIdGroupsErrors = {
1632
+ /**
1633
+ * Default Response
1634
+ */
1635
+ 400: {
1636
+ description: string;
1637
+ };
1638
+ /**
1639
+ * Default Response
1640
+ */
1641
+ 404: {
1642
+ description: string;
1643
+ };
1644
+ /**
1645
+ * Default Response
1646
+ */
1647
+ 500: {
1648
+ description: string;
1649
+ };
1650
+ };
1651
+
1652
+ export type PostV2SubmissionsBySubmissionIdGroupsError = PostV2SubmissionsBySubmissionIdGroupsErrors[keyof PostV2SubmissionsBySubmissionIdGroupsErrors];
1653
+
1654
+ export type PostV2SubmissionsBySubmissionIdGroupsResponses = {
1655
+ /**
1656
+ * Default Response
1657
+ */
1658
+ 200: {
1659
+ id: string;
1660
+ submissionId: string;
1661
+ formGroupId: string;
1662
+ isValid: boolean;
1663
+ order: number;
1664
+ createdAt: string;
1665
+ updatedAt: string;
1666
+ };
1667
+ };
1668
+
1669
+ export type PostV2SubmissionsBySubmissionIdGroupsResponse = PostV2SubmissionsBySubmissionIdGroupsResponses[keyof PostV2SubmissionsBySubmissionIdGroupsResponses];
1670
+
1671
+ export type PatchV2SubmissionsBySubmissionIdGroupsByGroupIdData = {
1672
+ body?: {
1673
+ isValid?: boolean;
1674
+ order?: number;
1675
+ };
1676
+ path: {
1677
+ submissionId: string;
1678
+ groupId: string;
1679
+ };
1680
+ query?: never;
1681
+ url: '/v2/submissions/{submissionId}/groups/{groupId}';
1682
+ };
1683
+
1684
+ export type PatchV2SubmissionsBySubmissionIdGroupsByGroupIdErrors = {
1685
+ /**
1686
+ * Default Response
1687
+ */
1688
+ 400: {
1689
+ description: string;
1690
+ };
1691
+ /**
1692
+ * Default Response
1693
+ */
1694
+ 404: {
1695
+ description: string;
1696
+ };
1697
+ /**
1698
+ * Default Response
1699
+ */
1700
+ 500: {
1701
+ description: string;
1702
+ };
1703
+ };
1704
+
1705
+ export type PatchV2SubmissionsBySubmissionIdGroupsByGroupIdError = PatchV2SubmissionsBySubmissionIdGroupsByGroupIdErrors[keyof PatchV2SubmissionsBySubmissionIdGroupsByGroupIdErrors];
1706
+
1707
+ export type PatchV2SubmissionsBySubmissionIdGroupsByGroupIdResponses = {
1708
+ /**
1709
+ * Default Response
1710
+ */
1711
+ 200: {
1712
+ id: string;
1713
+ submissionId: string;
1714
+ formGroupId: string;
1715
+ isValid: boolean;
1716
+ order: number;
1717
+ createdAt: string;
1718
+ updatedAt: string;
1719
+ };
1720
+ };
1721
+
1722
+ export type PatchV2SubmissionsBySubmissionIdGroupsByGroupIdResponse = PatchV2SubmissionsBySubmissionIdGroupsByGroupIdResponses[keyof PatchV2SubmissionsBySubmissionIdGroupsByGroupIdResponses];
1723
+
1724
+ export type PatchV2SubmissionsBySubmissionIdItemsByItemIdData = {
1725
+ body: {
1726
+ value: string | number;
1727
+ };
1728
+ path: {
1729
+ submissionId: string;
1730
+ itemId: string;
1731
+ };
1732
+ query?: never;
1733
+ url: '/v2/submissions/{submissionId}/items/{itemId}';
1734
+ };
1735
+
1736
+ export type PatchV2SubmissionsBySubmissionIdItemsByItemIdErrors = {
1737
+ /**
1738
+ * Default Response
1739
+ */
1740
+ 400: {
1741
+ description: string;
1742
+ };
1743
+ /**
1744
+ * Default Response
1745
+ */
1746
+ 404: {
1747
+ description: string;
1748
+ };
1749
+ };
1750
+
1751
+ export type PatchV2SubmissionsBySubmissionIdItemsByItemIdError = PatchV2SubmissionsBySubmissionIdItemsByItemIdErrors[keyof PatchV2SubmissionsBySubmissionIdItemsByItemIdErrors];
1752
+
1753
+ export type PatchV2SubmissionsBySubmissionIdItemsByItemIdResponses = {
1754
+ /**
1755
+ * Default Response
1756
+ */
1757
+ 200: {
1758
+ success: boolean;
1759
+ };
1760
+ };
1761
+
1762
+ export type PatchV2SubmissionsBySubmissionIdItemsByItemIdResponse = PatchV2SubmissionsBySubmissionIdItemsByItemIdResponses[keyof PatchV2SubmissionsBySubmissionIdItemsByItemIdResponses];
1763
+
1764
+ export type GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsData = {
1765
+ body?: never;
1766
+ path: {
1767
+ submissionId: string;
1768
+ itemId: string;
1769
+ };
1770
+ query?: never;
1771
+ url: '/v2/submissions/{submissionId}/items/{itemId}/corrections';
1772
+ };
1773
+
1774
+ export type GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsErrors = {
1775
+ /**
1776
+ * Default Response
1777
+ */
1778
+ 400: {
1779
+ description: string;
1780
+ };
1781
+ /**
1782
+ * Default Response
1783
+ */
1784
+ 404: {
1785
+ description: string;
1786
+ };
1787
+ /**
1788
+ * Default Response
1789
+ */
1790
+ 500: {
1791
+ description: string;
1792
+ };
1793
+ };
1794
+
1795
+ export type GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsError = GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsErrors[keyof GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsErrors];
1796
+
1797
+ export type GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsResponses = {
1798
+ /**
1799
+ * Default Response
1800
+ */
1801
+ 200: Array<{
1802
+ id: string;
1803
+ submissionItemId: string;
1804
+ extractedValue: unknown;
1805
+ correctedValue: unknown;
1806
+ feedback: string;
1807
+ status: 'pending' | 'addressed';
1808
+ createdAt: string;
1809
+ updatedAt: string;
1810
+ }>;
1811
+ };
1812
+
1813
+ export type GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsResponse = GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsResponses[keyof GetV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsResponses];
1814
+
1815
+ export type PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsData = {
1816
+ body: {
1817
+ extractedValue: unknown;
1818
+ correctedValue?: string;
1819
+ feedback?: string;
1820
+ };
1821
+ path: {
1822
+ submissionId: string;
1823
+ itemId: string;
1824
+ };
1825
+ query?: never;
1826
+ url: '/v2/submissions/{submissionId}/items/{itemId}/corrections';
1827
+ };
1828
+
1829
+ export type PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsErrors = {
1830
+ /**
1831
+ * Default Response
1832
+ */
1833
+ 400: {
1834
+ description: string;
1835
+ };
1836
+ /**
1837
+ * Default Response
1838
+ */
1839
+ 404: {
1840
+ description: string;
1841
+ };
1842
+ /**
1843
+ * Default Response
1844
+ */
1845
+ 500: {
1846
+ description: string;
1847
+ };
1848
+ };
1849
+
1850
+ export type PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsError = PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsErrors[keyof PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsErrors];
1851
+
1852
+ export type PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsResponses = {
1853
+ /**
1854
+ * Default Response
1855
+ */
1856
+ 200: {
1857
+ id: string;
1858
+ submissionItemId: string;
1859
+ extractedValue: unknown;
1860
+ correctedValue: unknown;
1861
+ feedback: string;
1862
+ status: 'pending' | 'addressed';
1863
+ createdAt: string;
1864
+ updatedAt: string;
1865
+ };
1866
+ };
1867
+
1868
+ export type PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsResponse = PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsResponses[keyof PostV2SubmissionsBySubmissionIdItemsByItemIdCorrectionsResponses];
1869
+
1870
+ export type PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedData = {
1871
+ body?: never;
1872
+ path: {
1873
+ submissionId: string;
1874
+ correctionId: string;
1875
+ };
1876
+ query?: never;
1877
+ url: '/v2/submissions/{submissionId}/corrections/{correctionId}/addressed';
1878
+ };
1879
+
1880
+ export type PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedErrors = {
1881
+ /**
1882
+ * Default Response
1883
+ */
1884
+ 400: {
1885
+ description: string;
1886
+ };
1887
+ /**
1888
+ * Default Response
1889
+ */
1890
+ 404: {
1891
+ description: string;
1892
+ };
1893
+ /**
1894
+ * Default Response
1895
+ */
1896
+ 500: {
1897
+ description: string;
1898
+ };
1899
+ };
1900
+
1901
+ export type PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedError = PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedErrors[keyof PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedErrors];
1902
+
1903
+ export type PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedResponses = {
1904
+ /**
1905
+ * Default Response
1906
+ */
1907
+ 200: {
1908
+ success: boolean;
1909
+ };
1910
+ };
1911
+
1912
+ export type PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedResponse = PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedResponses[keyof PatchV2SubmissionsBySubmissionIdCorrectionsByCorrectionIdAddressedResponses];
1913
+
1914
+ export type GetV2WorkflowsData = {
1915
+ body?: never;
1916
+ path?: never;
1917
+ query?: never;
1918
+ url: '/v2/workflows/';
1919
+ };
1920
+
1921
+ export type GetV2WorkflowsErrors = {
1922
+ /**
1923
+ * Default Response
1924
+ */
1925
+ 500: {
1926
+ description: string;
1927
+ };
1928
+ };
1929
+
1930
+ export type GetV2WorkflowsError = GetV2WorkflowsErrors[keyof GetV2WorkflowsErrors];
1931
+
1932
+ export type GetV2WorkflowsResponses = {
1933
+ /**
1934
+ * Default Response
1935
+ */
1936
+ 200: Array<{
1937
+ id: string;
1938
+ slug: string;
1939
+ organizationId: string;
1940
+ name: string;
1941
+ hint: string;
1942
+ deletedAt: string;
1943
+ createdAt: string;
1944
+ updatedAt: string;
1945
+ formCount: number;
1946
+ submissionCount: number;
1947
+ }>;
1948
+ };
1949
+
1950
+ export type GetV2WorkflowsResponse = GetV2WorkflowsResponses[keyof GetV2WorkflowsResponses];
1951
+
1952
+ export type PostV2WorkflowsData = {
1953
+ body: {
1954
+ name: string;
1955
+ hint?: string;
1956
+ };
1957
+ path?: never;
1958
+ query?: never;
1959
+ url: '/v2/workflows/';
1960
+ };
1961
+
1962
+ export type PostV2WorkflowsErrors = {
1963
+ /**
1964
+ * Default Response
1965
+ */
1966
+ 500: {
1967
+ description: string;
1968
+ };
1969
+ };
1970
+
1971
+ export type PostV2WorkflowsError = PostV2WorkflowsErrors[keyof PostV2WorkflowsErrors];
1972
+
1973
+ export type PostV2WorkflowsResponses = {
1974
+ /**
1975
+ * Default Response
1976
+ */
1977
+ 200: {
1978
+ id: string;
1979
+ slug: string;
1980
+ organizationId: string;
1981
+ name: string;
1982
+ hint: string;
1983
+ deletedAt: string;
1984
+ createdAt: string;
1985
+ updatedAt: string;
1986
+ };
1987
+ };
1988
+
1989
+ export type PostV2WorkflowsResponse = PostV2WorkflowsResponses[keyof PostV2WorkflowsResponses];
1990
+
1991
+ export type PatchV2WorkflowsByWorkflowIdData = {
1992
+ body?: {
1993
+ name?: string;
1994
+ hint?: string;
1995
+ };
1996
+ path: {
1997
+ workflowId: string;
1998
+ };
1999
+ query?: never;
2000
+ url: '/v2/workflows/{workflowId}';
2001
+ };
2002
+
2003
+ export type PatchV2WorkflowsByWorkflowIdErrors = {
2004
+ /**
2005
+ * Default Response
2006
+ */
2007
+ 400: {
2008
+ description: string;
2009
+ };
2010
+ /**
2011
+ * Default Response
2012
+ */
2013
+ 404: {
2014
+ description: string;
2015
+ };
2016
+ /**
2017
+ * Default Response
2018
+ */
2019
+ 500: {
2020
+ description: string;
2021
+ };
2022
+ };
2023
+
2024
+ export type PatchV2WorkflowsByWorkflowIdError = PatchV2WorkflowsByWorkflowIdErrors[keyof PatchV2WorkflowsByWorkflowIdErrors];
2025
+
2026
+ export type PatchV2WorkflowsByWorkflowIdResponses = {
2027
+ /**
2028
+ * Default Response
2029
+ */
2030
+ 200: {
2031
+ success: boolean;
2032
+ };
2033
+ };
2034
+
2035
+ export type PatchV2WorkflowsByWorkflowIdResponse = PatchV2WorkflowsByWorkflowIdResponses[keyof PatchV2WorkflowsByWorkflowIdResponses];
2036
+
2037
+ export type PutV2WorkflowsByWorkflowIdData = {
2038
+ body: {
2039
+ name: string;
2040
+ hint: string;
2041
+ };
2042
+ path: {
2043
+ workflowId: string;
2044
+ };
2045
+ query?: never;
2046
+ url: '/v2/workflows/{workflowId}';
2047
+ };
2048
+
2049
+ export type PutV2WorkflowsByWorkflowIdErrors = {
2050
+ /**
2051
+ * Default Response
2052
+ */
2053
+ 400: {
2054
+ description: string;
2055
+ };
2056
+ /**
2057
+ * Default Response
2058
+ */
2059
+ 404: {
2060
+ description: string;
2061
+ };
2062
+ /**
2063
+ * Default Response
2064
+ */
2065
+ 500: {
2066
+ description: string;
2067
+ };
2068
+ };
2069
+
2070
+ export type PutV2WorkflowsByWorkflowIdError = PutV2WorkflowsByWorkflowIdErrors[keyof PutV2WorkflowsByWorkflowIdErrors];
2071
+
2072
+ export type PutV2WorkflowsByWorkflowIdResponses = {
2073
+ /**
2074
+ * Default Response
2075
+ */
2076
+ 200: {
2077
+ success: boolean;
2078
+ };
2079
+ };
2080
+
2081
+ export type PutV2WorkflowsByWorkflowIdResponse = PutV2WorkflowsByWorkflowIdResponses[keyof PutV2WorkflowsByWorkflowIdResponses];
2082
+
2083
+ export type ClientOptions = {
2084
+ baseUrl: 'http://localhost:2999' | (string & {});
2085
+ };