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.
- package/.claude/tasks/README.md +89 -0
- package/.cursor/rules/commits.mdc +31 -0
- package/.cursor/rules/general.mdc +84 -0
- package/.github/workflows/ci-cd.yml +141 -0
- package/CLAUDE.md +337 -0
- package/README.md +129 -0
- package/apps/api/.prettierignore +6 -0
- package/apps/api/.prettierrc.js +3 -0
- package/apps/api/dotenvx-safe.sh +11 -0
- package/apps/api/eslint.config.mjs +3 -0
- package/apps/api/package.json +58 -0
- package/apps/api/src/clients/posthog.ts +25 -0
- package/apps/api/src/dal/submission.ts +59 -0
- package/apps/api/src/errors.ts +55 -0
- package/apps/api/src/index.ts +21 -0
- package/apps/api/src/lib/channel.ts +28 -0
- package/apps/api/src/lib/config.ts +9 -0
- package/apps/api/src/lib/fmt.test.ts +9 -0
- package/apps/api/src/lib/fmt.ts +62 -0
- package/apps/api/src/lib/invariant.ts +23 -0
- package/apps/api/src/middleware/auth.ts +66 -0
- package/apps/api/src/routes/index.ts +20 -0
- package/apps/api/src/routes/v2/chat/handlers.ts +693 -0
- package/apps/api/src/routes/v2/chat/index.ts +257 -0
- package/apps/api/src/routes/v2/chat/schemas.ts +43 -0
- package/apps/api/src/routes/v2/deals/handlers.ts +64 -0
- package/apps/api/src/routes/v2/deals/index.ts +88 -0
- package/apps/api/src/routes/v2/deals/schemas.ts +38 -0
- package/apps/api/src/routes/v2/forms/handlers.ts +415 -0
- package/apps/api/src/routes/v2/forms/index.ts +382 -0
- package/apps/api/src/routes/v2/forms/schemas.ts +243 -0
- package/apps/api/src/routes/v2/index.ts +19 -0
- package/apps/api/src/routes/v2/pipelines/handlers.ts +261 -0
- package/apps/api/src/routes/v2/pipelines/index.ts +224 -0
- package/apps/api/src/routes/v2/pipelines/schemas.ts +173 -0
- package/apps/api/src/routes/v2/submissions/handlers.ts +555 -0
- package/apps/api/src/routes/v2/submissions/index.ts +366 -0
- package/apps/api/src/routes/v2/submissions/schemas.ts +233 -0
- package/apps/api/src/routes/v2/workflows/handlers.ts +81 -0
- package/apps/api/src/routes/v2/workflows/index.ts +88 -0
- package/apps/api/src/routes/v2/workflows/schemas.ts +40 -0
- package/apps/api/src/server.ts +146 -0
- package/apps/api/src/static/favicon.ico +0 -0
- package/apps/api/src/types/api.ts +14 -0
- package/apps/api/src/types/result.ts +3 -0
- package/apps/api/tsconfig.json +22 -0
- package/apps/api/vite.config.ts +28 -0
- package/apps/api/vitest.config.ts +14 -0
- package/apps/conversion-worker/Dockerfile +59 -0
- package/apps/conversion-worker/package.json +31 -0
- package/apps/conversion-worker/src/lib/config.ts +7 -0
- package/apps/conversion-worker/src/main.ts +22 -0
- package/apps/conversion-worker/src/workflows/convert-pptx.ts +116 -0
- package/apps/conversion-worker/tsconfig.json +27 -0
- package/apps/conversion-worker/vite.config.ts +33 -0
- package/apps/main/.prettierignore +6 -0
- package/apps/main/.prettierrc.js +3 -0
- package/apps/main/CLAUDE.md +245 -0
- package/apps/main/Procfile +1 -0
- package/apps/main/README.md +193 -0
- package/apps/main/db-tests.jsonl +116 -0
- package/apps/main/dotenvx-safe.sh +11 -0
- package/apps/main/drizzle/meta/_journal.json +1 -0
- package/apps/main/drizzle.config.ts +25 -0
- package/apps/main/eslint.config.mjs +3 -0
- package/apps/main/generate-routes.mjs +5 -0
- package/apps/main/package.json +131 -0
- package/apps/main/playwright.config.ts +23 -0
- package/apps/main/postcss.config.ts +5 -0
- package/apps/main/public/bg-dark.svg +10 -0
- package/apps/main/public/bg.svg +10 -0
- package/apps/main/public/favicon.ico +0 -0
- package/apps/main/run.sh +146 -0
- package/apps/main/scripts/browser.ts +14 -0
- package/apps/main/scripts/db-test-cov.ts +277 -0
- package/apps/main/scripts/login.ts +78 -0
- package/apps/main/scripts/repl.ts +61 -0
- package/apps/main/src/_foo.ts +31 -0
- package/apps/main/src/_tests/db.test.ts +19 -0
- package/apps/main/src/_tests/mock-db.ts +60 -0
- package/apps/main/src/client.tsx +13 -0
- package/apps/main/src/clients/loops.ts +13 -0
- package/apps/main/src/clients/polar.ts +12 -0
- package/apps/main/src/clients/posthog.ts +12 -0
- package/apps/main/src/components/chat/chat-context.tsx +99 -0
- package/apps/main/src/components/chat/chat-messages.tsx +184 -0
- package/apps/main/src/components/chat/chat-status.tsx +140 -0
- package/apps/main/src/components/chat/chat.tsx +458 -0
- package/apps/main/src/components/chat/citation-modal.tsx +54 -0
- package/apps/main/src/components/cta.tsx +21 -0
- package/apps/main/src/components/data-display/derived.tsx +40 -0
- package/apps/main/src/components/data-display/group-single.tsx +57 -0
- package/apps/main/src/components/data-display/group-table.tsx +165 -0
- package/apps/main/src/components/data-display/group-wrapper.tsx +54 -0
- package/apps/main/src/components/data-display/item.tsx +678 -0
- package/apps/main/src/components/error.tsx +45 -0
- package/apps/main/src/components/forms/error.tsx +22 -0
- package/apps/main/src/components/grid.tsx +7 -0
- package/apps/main/src/components/header/container.tsx +73 -0
- package/apps/main/src/components/header/header-bar.tsx +102 -0
- package/apps/main/src/components/modals/copy-display.tsx +37 -0
- package/apps/main/src/components/modals/copy-form.tsx +152 -0
- package/apps/main/src/components/modals/duplicate-workflow.tsx +89 -0
- package/apps/main/src/components/modals/field-correction.tsx +323 -0
- package/apps/main/src/components/modals/form-viewer.tsx +126 -0
- package/apps/main/src/components/modals/modals.tsx +44 -0
- package/apps/main/src/components/modals/new-deal.tsx +78 -0
- package/apps/main/src/components/modals/new-form.tsx +133 -0
- package/apps/main/src/components/modals/new-pipeline.tsx +70 -0
- package/apps/main/src/components/modals/new-submission.tsx +321 -0
- package/apps/main/src/components/modals/new-workflow.tsx +342 -0
- package/apps/main/src/components/modals/transformation-sources-modal.tsx +157 -0
- package/apps/main/src/components/modals/view-report.tsx +193 -0
- package/apps/main/src/components/not-found.tsx +14 -0
- package/apps/main/src/components/search/search-bar.tsx +178 -0
- package/apps/main/src/components/sheet-selector.tsx +135 -0
- package/apps/main/src/components/side-panel/doc-list.tsx +480 -0
- package/apps/main/src/components/sidebar/admin-sidebar.tsx +75 -0
- package/apps/main/src/components/sidebar/app-sidebar.tsx +417 -0
- package/apps/main/src/components/sidebar/model-select.tsx +134 -0
- package/apps/main/src/components/sidebar/settings-sidebar.tsx +132 -0
- package/apps/main/src/components/sidebar/sidebar-right.tsx +22 -0
- package/apps/main/src/components/sidebar/stop-impersonate.tsx +21 -0
- package/apps/main/src/components/svg/loading.tsx +33 -0
- package/apps/main/src/components/theme-selector.tsx +43 -0
- package/apps/main/src/components/unsaved-badge.tsx +19 -0
- package/apps/main/src/components/upload/file-upload.tsx +354 -0
- package/apps/main/src/fns/submission-groups.ts +28 -0
- package/apps/main/src/fns/submission-items.ts +11 -0
- package/apps/main/src/global-middleware.ts +16 -0
- package/apps/main/src/hooks/use-update-state.ts +18 -0
- package/apps/main/src/lib/auth-client.ts +16 -0
- package/apps/main/src/lib/auth.test.ts +359 -0
- package/apps/main/src/lib/auth.ts +144 -0
- package/apps/main/src/lib/billing.ts +23 -0
- package/apps/main/src/lib/config-iso.ts +76 -0
- package/apps/main/src/lib/config.ts +61 -0
- package/apps/main/src/lib/excel.ts +16 -0
- package/apps/main/src/lib/feedback-cache.ts +70 -0
- package/apps/main/src/lib/logger.ts +44 -0
- package/apps/main/src/lib/models.ts +22 -0
- package/apps/main/src/lib/not-found.ts +17 -0
- package/apps/main/src/lib/pdf.ts +16 -0
- package/apps/main/src/lib/tabularize.ts +54 -0
- package/apps/main/src/lib/utils.ts +10 -0
- package/apps/main/src/lib/zfd.ts +217 -0
- package/apps/main/src/middleware.ts +55 -0
- package/apps/main/src/routeTree.gen.ts +1255 -0
- package/apps/main/src/router.tsx +24 -0
- package/apps/main/src/routes/__root.tsx +92 -0
- package/apps/main/src/routes/_authed/_app/(dashboard)/index.tsx +227 -0
- package/apps/main/src/routes/_authed/_app/agents/$agentId/config.tsx +224 -0
- package/apps/main/src/routes/_authed/_app/agents/$agentId/index.tsx +206 -0
- package/apps/main/src/routes/_authed/_app/agents/-components/agent-actions-menu.tsx +94 -0
- package/apps/main/src/routes/_authed/_app/agents/-components/agent-artifacts.tsx +153 -0
- package/apps/main/src/routes/_authed/_app/agents/-components/agent-chat.tsx +220 -0
- package/apps/main/src/routes/_authed/_app/agents/-components/agent-history-menu.tsx +81 -0
- package/apps/main/src/routes/_authed/_app/agents/-components/agent-model-select.tsx +84 -0
- package/apps/main/src/routes/_authed/_app/agents/-components/agent-relevant-items.tsx +226 -0
- package/apps/main/src/routes/_authed/_app/agents/-components/agent-upload-button.tsx +298 -0
- package/apps/main/src/routes/_authed/_app/agents/-components/context-modal.tsx +187 -0
- package/apps/main/src/routes/_authed/_app/agents/-fns.ts +560 -0
- package/apps/main/src/routes/_authed/_app/agents/index.tsx +65 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/$subId/-components/citation-tree.tsx +268 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/$subId.tsx +655 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/doc-loading.tsx +37 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/share-link.tsx +42 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/submission-card.tsx +89 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/submission-filter.tsx +193 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/submissions.tsx +36 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/summary.tsx +82 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/-components/upload-doc.tsx +120 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/-fns.ts +653 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/index.tsx +259 -0
- package/apps/main/src/routes/_authed/_app/deals/$dealId/route.tsx +29 -0
- package/apps/main/src/routes/_authed/_app/deals/index.tsx +104 -0
- package/apps/main/src/routes/_authed/_app/feedback/index.tsx +639 -0
- package/apps/main/src/routes/_authed/_app/feedback/insights.tsx +250 -0
- package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/-components/blockers-panel.tsx +260 -0
- package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/-components/manual-input-panel.tsx +301 -0
- package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/-components/submission-selector-modal.tsx +143 -0
- package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/-components/upload-doc.tsx +120 -0
- package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/$runId/index.tsx +1485 -0
- package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/-components/dag-view.tsx +296 -0
- package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/-components/step-config-modal.tsx +634 -0
- package/apps/main/src/routes/_authed/_app/pipelines/$pipelineId/index.tsx +911 -0
- package/apps/main/src/routes/_authed/_app/pipelines/-fns.ts +510 -0
- package/apps/main/src/routes/_authed/_app/pipelines/index.tsx +103 -0
- package/apps/main/src/routes/_authed/_app/reports/$reportId.tsx +397 -0
- package/apps/main/src/routes/_authed/_app/reports/-fns.ts +11 -0
- package/apps/main/src/routes/_authed/_app/reports/index.tsx +22 -0
- package/apps/main/src/routes/_authed/_app/route.tsx +48 -0
- package/apps/main/src/routes/_authed/_app/submissions/-columns.tsx +161 -0
- package/apps/main/src/routes/_authed/_app/submissions/-fns.ts +128 -0
- package/apps/main/src/routes/_authed/_app/submissions/index.tsx +190 -0
- package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/$formId.tsx +542 -0
- package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/-components/derived.tsx +154 -0
- package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/-components/field.tsx +369 -0
- package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/-components/group.tsx +475 -0
- package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/index.tsx +263 -0
- package/apps/main/src/routes/_authed/_app/workflows/$wfSlug/route.tsx +33 -0
- package/apps/main/src/routes/_authed/_app/workflows/-components/form-card.tsx +315 -0
- package/apps/main/src/routes/_authed/_app/workflows/index.tsx +86 -0
- package/apps/main/src/routes/_authed/admin/index.tsx +12 -0
- package/apps/main/src/routes/_authed/admin/route.tsx +42 -0
- package/apps/main/src/routes/_authed/admin/users/-columns.tsx +124 -0
- package/apps/main/src/routes/_authed/admin/users/-fns.ts +30 -0
- package/apps/main/src/routes/_authed/admin/users/index.tsx +29 -0
- package/apps/main/src/routes/_authed/catchNotFound.tsx +114 -0
- package/apps/main/src/routes/_authed/redirects/forms.$id.tsx +29 -0
- package/apps/main/src/routes/_authed/redirects/submissions.$id.tsx +27 -0
- package/apps/main/src/routes/_authed/redirects/workflows.$id.tsx +27 -0
- package/apps/main/src/routes/_authed/route.tsx +51 -0
- package/apps/main/src/routes/_authed/settings/-components/new-api-key.tsx +85 -0
- package/apps/main/src/routes/_authed/settings/-components/new-invite.tsx +100 -0
- package/apps/main/src/routes/_authed/settings/analytics.tsx +1710 -0
- package/apps/main/src/routes/_authed/settings/billing/-components/price-table.tsx +129 -0
- package/apps/main/src/routes/_authed/settings/billing/-fns.ts +76 -0
- package/apps/main/src/routes/_authed/settings/billing/index.tsx +119 -0
- package/apps/main/src/routes/_authed/settings/embed.tsx +337 -0
- package/apps/main/src/routes/_authed/settings/index.tsx +12 -0
- package/apps/main/src/routes/_authed/settings/keys.tsx +157 -0
- package/apps/main/src/routes/_authed/settings/members.tsx +276 -0
- package/apps/main/src/routes/_authed/settings/route.tsx +22 -0
- package/apps/main/src/routes/_authed/settings/user.tsx +87 -0
- package/apps/main/src/routes/_authed/settings/workspace.tsx +206 -0
- package/apps/main/src/routes/_public/-components/sign-in-up.tsx +96 -0
- package/apps/main/src/routes/_public/embedded.tsx +57 -0
- package/apps/main/src/routes/_public/invite.$inviteId.tsx +143 -0
- package/apps/main/src/routes/_public/no-access.tsx +38 -0
- package/apps/main/src/routes/_public/no-invite.tsx +39 -0
- package/apps/main/src/routes/_public/otp.tsx +103 -0
- package/apps/main/src/routes/_public/route.tsx +15 -0
- package/apps/main/src/routes/_public/sign-in.tsx +111 -0
- package/apps/main/src/routes/_public/sign-up.tsx +114 -0
- package/apps/main/src/routes/api/auth/$.ts +11 -0
- package/apps/main/src/routes/api/billing/paid.ts +42 -0
- package/apps/main/src/routes/api/billing/webhooks.ts +70 -0
- package/apps/main/src/routes/api/chat/agent.ts +40 -0
- package/apps/main/src/routes/api/chat/key.ts +42 -0
- package/apps/main/src/routes/api/chat/member.ts +35 -0
- package/apps/main/src/routes/api/test/index.ts +19 -0
- package/apps/main/src/server.tsx +6 -0
- package/apps/main/src/styles/app.css +23 -0
- package/apps/main/src/vite-env.d.ts +7 -0
- package/apps/main/test.http +6 -0
- package/apps/main/tsconfig.json +17 -0
- package/apps/main/vite.config.ts +24 -0
- package/apps/main/vitest.config.js +17 -0
- package/apps/mcp/README.md +171 -0
- package/apps/mcp/eslint.config.mjs +3 -0
- package/apps/mcp/package.json +37 -0
- package/apps/mcp/src/index.ts +414 -0
- package/apps/mcp/tsconfig.json +19 -0
- package/apps/mcp/vite.config.ts +22 -0
- package/apps/posthog-proxy/index.html +9 -0
- package/apps/workers/.prettierignore +7 -0
- package/apps/workers/.prettierrc.js +3 -0
- package/apps/workers/dotenvx-safe.sh +11 -0
- package/apps/workers/eslint.config.mjs +3 -0
- package/apps/workers/package.json +65 -0
- package/apps/workers/src/lib/config.ts +7 -0
- package/apps/workers/src/lib/messages.ts +0 -0
- package/apps/workers/src/lib/posthog.ts +25 -0
- package/apps/workers/src/main.ts +58 -0
- package/apps/workers/src/workflows/extraction.ts +866 -0
- package/apps/workers/src/workflows/index.ts +3 -0
- package/apps/workers/src/workflows/pipeline-dag.ts +210 -0
- package/apps/workers/src/workflows/pipeline-steps.ts +1393 -0
- package/apps/workers/tsconfig.json +16 -0
- package/apps/workers/vite.config.ts +35 -0
- package/docs/CHANGELOG.md +84 -0
- package/docs/agent-templates-and-runs.md +859 -0
- package/docs/aws-migration-plan.md +267 -0
- package/docs/impl-p0-form-builder-improvements.md +683 -0
- package/docs/on-prem-deployment-spec.docx +0 -0
- package/docs/on-prem-deployment-spec.md +378 -0
- package/docs/prd-form-builder-strategy.md +1120 -0
- package/docs/widget-ng-apf-packaging-spec.md +43 -0
- package/infra/k8s/charts/seadotdev/Chart.yaml +6 -0
- package/infra/k8s/charts/seadotdev/templates/_helpers.tpl +27 -0
- package/infra/k8s/charts/seadotdev/templates/api-v2.yaml +105 -0
- package/infra/k8s/charts/seadotdev/templates/external-secrets.yaml +83 -0
- package/infra/k8s/charts/seadotdev/templates/ingress.yaml +54 -0
- package/infra/k8s/charts/seadotdev/templates/main-app.yaml +104 -0
- package/infra/k8s/charts/seadotdev/templates/workers.yaml +182 -0
- package/infra/k8s/charts/seadotdev/values.yaml +143 -0
- package/infra/terraform/main.tf +399 -0
- package/libs/ai/.prettierignore +2 -0
- package/libs/ai/.prettierrc.js +5 -0
- package/libs/ai/README.md +139 -0
- package/libs/ai/eslint.config.mjs +3 -0
- package/libs/ai/package.json +42 -0
- package/libs/ai/src/index.ts +5 -0
- package/libs/ai/src/models.ts +19 -0
- package/libs/ai/src/rag/index.ts +1 -0
- package/libs/ai/src/rag/rag.test.ts +99 -0
- package/libs/ai/src/rag/rag.ts +510 -0
- package/libs/ai/tsconfig.json +21 -0
- package/libs/ai/vite.config.ts +38 -0
- package/libs/cache/.prettierignore +2 -0
- package/libs/cache/eslint.config.mjs +3 -0
- package/libs/cache/package.json +35 -0
- package/libs/cache/src/feedback.ts +77 -0
- package/libs/cache/src/index.ts +2 -0
- package/libs/cache/tsconfig.json +19 -0
- package/libs/cache/vite.config.ts +36 -0
- package/libs/clients/.prettierignore +6 -0
- package/libs/clients/eslint.config.mjs +3 -0
- package/libs/clients/package.json +59 -0
- package/libs/clients/src/azure.ts +249 -0
- package/libs/clients/src/gcp.ts +220 -0
- package/libs/clients/src/hatchet.ts +86 -0
- package/libs/clients/src/index.ts +8 -0
- package/libs/clients/src/loops.ts +86 -0
- package/libs/clients/src/polar.ts +77 -0
- package/libs/clients/src/posthog.ts +55 -0
- package/libs/clients/tsconfig.json +19 -0
- package/libs/clients/vite.config.ts +35 -0
- package/libs/config/.prettierignore +6 -0
- package/libs/config/.prettierrc.js +12 -0
- package/libs/config/eslint.config.mjs +3 -0
- package/libs/config/package.json +50 -0
- package/libs/config/src/azure.ts +54 -0
- package/libs/config/src/db.ts +18 -0
- package/libs/config/src/gcp.ts +53 -0
- package/libs/config/src/google.ts +17 -0
- package/libs/config/src/hatchet.ts +20 -0
- package/libs/config/src/index.ts +108 -0
- package/libs/config/src/llm.ts +17 -0
- package/libs/config/src/polar.ts +24 -0
- package/libs/config/src/util.ts +8 -0
- package/libs/config/src/vercel.ts +26 -0
- package/libs/config/tsconfig.json +19 -0
- package/libs/config/vite.config.ts +34 -0
- package/libs/core/.prettierignore +2 -0
- package/libs/core/eslint.config.mjs +3 -0
- package/libs/core/package.json +59 -0
- package/libs/core/src/chat/derived.ts +97 -0
- package/libs/core/src/chat/feedback.ts +293 -0
- package/libs/core/src/chat/index.ts +6 -0
- package/libs/core/src/chat/model.ts +92 -0
- package/libs/core/src/chat/prepare-tools.ts +286 -0
- package/libs/core/src/chat/prompts.ts +623 -0
- package/libs/core/src/chat/stream.ts +311 -0
- package/libs/core/src/chat/summarize.ts +168 -0
- package/libs/core/src/chat/tools/agent.ts +403 -0
- package/libs/core/src/chat/tools/chart-agent.ts +526 -0
- package/libs/core/src/chat/tools/chart-helpers/sandbox.ts +47 -0
- package/libs/core/src/chat/tools/chart.ts +86 -0
- package/libs/core/src/chat/tools/credit-agent.ts +1383 -0
- package/libs/core/src/chat/tools/credit.ts +1435 -0
- package/libs/core/src/chat/tools/deep-dive-agent.ts +100 -0
- package/libs/core/src/chat/tools/deep-dive.ts +141 -0
- package/libs/core/src/chat/tools/form.ts +449 -0
- package/libs/core/src/chat/tools/helpers.ts +91 -0
- package/libs/core/src/chat/tools/index.ts +42 -0
- package/libs/core/src/chat/tools/pipeline-artifact.ts +76 -0
- package/libs/core/src/chat/tools/report.ts +40 -0
- package/libs/core/src/chat/tools/search.ts +390 -0
- package/libs/core/src/chat/tools/submission.ts +227 -0
- package/libs/core/src/chat/tools/workflow.ts +684 -0
- package/libs/core/src/chat/types.ts +3 -0
- package/libs/core/src/data-extraction/classification/azure.ts +168 -0
- package/libs/core/src/data-extraction/classification/index.ts +1 -0
- package/libs/core/src/data-extraction/dal.ts +246 -0
- package/libs/core/src/data-extraction/form-structure-extractor.ts +294 -0
- package/libs/core/src/data-extraction/index.ts +4 -0
- package/libs/core/src/data-extraction/layout/azure.ts +730 -0
- package/libs/core/src/data-extraction/layout/excel.ts +180 -0
- package/libs/core/src/data-extraction/layout/gcp.ts +1071 -0
- package/libs/core/src/data-extraction/layout/index.ts +266 -0
- package/libs/core/src/data-extraction/layout/plaintext.ts +45 -0
- package/libs/core/src/data-extraction/models.ts +38 -0
- package/libs/core/src/data-extraction/pdf-utils.ts +96 -0
- package/libs/core/src/data-extraction/structuring/bank-statement.ts +1182 -0
- package/libs/core/src/data-extraction/structuring/custom.ts +495 -0
- package/libs/core/src/data-extraction/structuring/index.ts +290 -0
- package/libs/core/src/data-extraction/structuring/prompts.ts +69 -0
- package/libs/core/src/data-extraction/type-guards.ts +110 -0
- package/libs/core/src/data-extraction/types.ts +84 -0
- package/libs/core/src/data-extraction/utils.ts +31 -0
- package/libs/core/src/data-extraction/validation/bank-statement.ts +127 -0
- package/libs/core/src/deals.ts +17 -0
- package/libs/core/src/documents.ts +152 -0
- package/libs/core/src/index.ts +5 -0
- package/libs/core/src/pipelines/display.ts +678 -0
- package/libs/core/src/pipelines/execute.ts +2342 -0
- package/libs/core/src/pipelines/index.ts +4 -0
- package/libs/core/src/pipelines/list.ts +12 -0
- package/libs/core/src/pipelines/runs.ts +53 -0
- package/libs/core/tsconfig.json +20 -0
- package/libs/core/vite.config.ts +56 -0
- package/libs/dal/.prettierignore +6 -0
- package/libs/dal/.prettierrc.js +12 -0
- package/libs/dal/eslint.config.mjs +3 -0
- package/libs/dal/package.json +57 -0
- package/libs/dal/src/_tests/db.test.ts +19 -0
- package/libs/dal/src/_tests/mock-db.ts +60 -0
- package/libs/dal/src/api-key.test.ts +397 -0
- package/libs/dal/src/api-key.ts +110 -0
- package/libs/dal/src/billing.ts +23 -0
- package/libs/dal/src/conversation.test.ts +655 -0
- package/libs/dal/src/conversation.ts +532 -0
- package/libs/dal/src/deal.test.ts +45 -0
- package/libs/dal/src/deal.ts +87 -0
- package/libs/dal/src/defaults-consumer-lending-uk.ts +33 -0
- package/libs/dal/src/defaults-consumer-lending-us.ts +33 -0
- package/libs/dal/src/defaults-private-credit.ts +57 -0
- package/libs/dal/src/defaults-private-equity.ts +51 -0
- package/libs/dal/src/defaults-smb-lending-us.ts +1569 -0
- package/libs/dal/src/defaults-sme-lending-uk-express.ts +1527 -0
- package/libs/dal/src/defaults-sme-lending-uk.ts +1669 -0
- package/libs/dal/src/defaults-types.ts +23 -0
- package/libs/dal/src/defaults.ts +550 -0
- package/libs/dal/src/document.test.ts +70 -0
- package/libs/dal/src/document.ts +192 -0
- package/libs/dal/src/feedback.ts +255 -0
- package/libs/dal/src/form.test.ts +637 -0
- package/libs/dal/src/form.ts +1165 -0
- package/libs/dal/src/index.ts +20 -0
- package/libs/dal/src/invitation.test.ts +746 -0
- package/libs/dal/src/invitation.ts +207 -0
- package/libs/dal/src/member.test.ts +185 -0
- package/libs/dal/src/member.ts +80 -0
- package/libs/dal/src/organization.ts +116 -0
- package/libs/dal/src/permission.ts +25 -0
- package/libs/dal/src/pipeline.test.ts +388 -0
- package/libs/dal/src/pipeline.ts +4222 -0
- package/libs/dal/src/report.ts +199 -0
- package/libs/dal/src/result.ts +16 -0
- package/libs/dal/src/search.ts +172 -0
- package/libs/dal/src/session.test.ts +110 -0
- package/libs/dal/src/session.ts +31 -0
- package/libs/dal/src/submission.test.ts +1304 -0
- package/libs/dal/src/submission.ts +1396 -0
- package/libs/dal/src/tool.ts +159 -0
- package/libs/dal/src/user.ts +16 -0
- package/libs/dal/src/workflow.test.ts +89 -0
- package/libs/dal/src/workflow.ts +262 -0
- package/libs/dal/tsconfig.build.json +4 -0
- package/libs/dal/tsconfig.json +22 -0
- package/libs/dal/vite.config.ts +34 -0
- package/libs/db/.prettierignore +6 -0
- package/libs/db/.prettierrc.js +12 -0
- package/libs/db/eslint.config.mjs +3 -0
- package/libs/db/package.json +52 -0
- package/libs/db/src/index.ts +24 -0
- package/libs/db/src/relations.ts +549 -0
- package/libs/db/src/schema.ts +2 -0
- package/libs/db/src/schemas/api.ts +35 -0
- package/libs/db/src/schemas/conversations.ts +175 -0
- package/libs/db/src/schemas/core.ts +359 -0
- package/libs/db/src/schemas/documents.ts +181 -0
- package/libs/db/src/schemas/feedback.ts +40 -0
- package/libs/db/src/schemas/index.ts +26 -0
- package/libs/db/src/schemas/organisations.ts +97 -0
- package/libs/db/src/schemas/pipelines.ts +440 -0
- package/libs/db/src/schemas/users.ts +95 -0
- package/libs/db/src/types.ts +190 -0
- package/libs/db/src/utils.ts +14 -0
- package/libs/db/tsconfig.json +19 -0
- package/libs/db/vite.config.ts +31 -0
- package/libs/lint/.prettierignore +6 -0
- package/libs/lint/eslint.config.mjs +61 -0
- package/libs/lint/package.json +29 -0
- package/libs/lint/prettier.config.js +12 -0
- package/libs/schemas/.prettierignore +6 -0
- package/libs/schemas/.prettierrc.js +12 -0
- package/libs/schemas/README.md +15 -0
- package/libs/schemas/eslint.config.mjs +3 -0
- package/libs/schemas/package.json +67 -0
- package/libs/schemas/src/core/chat.ts +67 -0
- package/libs/schemas/src/core/core-result.ts +15 -0
- package/libs/schemas/src/core/data-extraction.ts +184 -0
- package/libs/schemas/src/core/layout.ts +478 -0
- package/libs/schemas/src/core/pipeline.ts +128 -0
- package/libs/schemas/src/core/submission.ts +97 -0
- package/libs/schemas/src/db/account.ts +57 -0
- package/libs/schemas/src/db/apiKey.ts +57 -0
- package/libs/schemas/src/db/context.ts +33 -0
- package/libs/schemas/src/db/conversation.ts +65 -0
- package/libs/schemas/src/db/deal.ts +42 -0
- package/libs/schemas/src/db/document.ts +103 -0
- package/libs/schemas/src/db/documentCitation.ts +58 -0
- package/libs/schemas/src/db/documentExtraction.ts +69 -0
- package/libs/schemas/src/db/fieldCorrection.ts +85 -0
- package/libs/schemas/src/db/form.ts +45 -0
- package/libs/schemas/src/db/formField.ts +59 -0
- package/libs/schemas/src/db/formGroup.ts +42 -0
- package/libs/schemas/src/db/impersonation.ts +39 -0
- package/libs/schemas/src/db/index.ts +25 -0
- package/libs/schemas/src/db/invitation.ts +42 -0
- package/libs/schemas/src/db/member.ts +36 -0
- package/libs/schemas/src/db/message.ts +58 -0
- package/libs/schemas/src/db/organization.ts +62 -0
- package/libs/schemas/src/db/session.ts +48 -0
- package/libs/schemas/src/db/submission.ts +54 -0
- package/libs/schemas/src/db/submissionGroup.ts +36 -0
- package/libs/schemas/src/db/submissionItem.ts +33 -0
- package/libs/schemas/src/db/submissionItemVersion.ts +70 -0
- package/libs/schemas/src/db/user.ts +51 -0
- package/libs/schemas/src/db/utils.ts +3 -0
- package/libs/schemas/src/db/verification.ts +36 -0
- package/libs/schemas/src/db/workflow.ts +42 -0
- package/libs/schemas/src/index.ts +10 -0
- package/libs/schemas/tsconfig.json +21 -0
- package/libs/schemas/vite.config.ts +38 -0
- package/libs/ui/.prettierignore +6 -0
- package/libs/ui/.prettierrc.js +12 -0
- package/libs/ui/components.json +24 -0
- package/libs/ui/eslint.config.mjs +3 -0
- package/libs/ui/package.json +142 -0
- package/libs/ui/src/components/chart-viz/chart.tsx +255 -0
- package/libs/ui/src/components/chart-viz/converters.ts +474 -0
- package/libs/ui/src/components/chart-viz/dashboard.tsx +146 -0
- package/libs/ui/src/components/chart-viz/index.ts +37 -0
- package/libs/ui/src/components/chart-viz/markdown.tsx +344 -0
- package/libs/ui/src/components/chart-viz/table.tsx +446 -0
- package/libs/ui/src/components/chart-viz/theme-context.tsx +70 -0
- package/libs/ui/src/components/chart-viz/themes/dark.ts +98 -0
- package/libs/ui/src/components/chart-viz/themes/index.ts +69 -0
- package/libs/ui/src/components/chart-viz/themes/light.ts +98 -0
- package/libs/ui/src/components/chart-viz/themes/tailwind.ts +326 -0
- package/libs/ui/src/components/chart-viz/themes/types.ts +99 -0
- package/libs/ui/src/components/chart-viz/tool-display.tsx +150 -0
- package/libs/ui/src/components/chart-viz/types.ts +95 -0
- package/libs/ui/src/components/doc-viewers/excel/index.tsx +431 -0
- package/libs/ui/src/components/doc-viewers/excel/themes.ts +160 -0
- package/libs/ui/src/components/doc-viewers/image/index.tsx +410 -0
- package/libs/ui/src/components/doc-viewers/pdf/index.tsx +258 -0
- package/libs/ui/src/components/doc-viewers/pdf/virtualized-pdf.tsx +556 -0
- package/libs/ui/src/components/misc/rel-date.tsx +52 -0
- package/libs/ui/src/components/misc/styled-link.tsx +2 -0
- package/libs/ui/src/components/table/data-table.tsx +546 -0
- package/libs/ui/src/components/table/report-table.tsx +305 -0
- package/libs/ui/src/components/table/sortable-column.tsx +34 -0
- package/libs/ui/src/components/ui/accordion.tsx +62 -0
- package/libs/ui/src/components/ui/alert-dialog.tsx +142 -0
- package/libs/ui/src/components/ui/alert.tsx +62 -0
- package/libs/ui/src/components/ui/artifact.tsx +118 -0
- package/libs/ui/src/components/ui/attachments.tsx +388 -0
- package/libs/ui/src/components/ui/avatar.tsx +39 -0
- package/libs/ui/src/components/ui/badge.tsx +43 -0
- package/libs/ui/src/components/ui/breadcrumb.tsx +102 -0
- package/libs/ui/src/components/ui/button-group.tsx +78 -0
- package/libs/ui/src/components/ui/button.tsx +79 -0
- package/libs/ui/src/components/ui/card.tsx +32 -0
- package/libs/ui/src/components/ui/carousel.tsx +228 -0
- package/libs/ui/src/components/ui/chain-of-thought.tsx +198 -0
- package/libs/ui/src/components/ui/checkbox.tsx +27 -0
- package/libs/ui/src/components/ui/citation.tsx +34 -0
- package/libs/ui/src/components/ui/code-block.tsx +500 -0
- package/libs/ui/src/components/ui/collapsible.tsx +19 -0
- package/libs/ui/src/components/ui/command.tsx +161 -0
- package/libs/ui/src/components/ui/conversation.tsx +90 -0
- package/libs/ui/src/components/ui/dialog.tsx +142 -0
- package/libs/ui/src/components/ui/dropdown-menu.tsx +246 -0
- package/libs/ui/src/components/ui/highlight.tsx +3 -0
- package/libs/ui/src/components/ui/hover-card.tsx +36 -0
- package/libs/ui/src/components/ui/inline-citation.tsx +251 -0
- package/libs/ui/src/components/ui/input-group.tsx +156 -0
- package/libs/ui/src/components/ui/input-otp.tsx +78 -0
- package/libs/ui/src/components/ui/input.tsx +21 -0
- package/libs/ui/src/components/ui/label.tsx +19 -0
- package/libs/ui/src/components/ui/model-selector.tsx +174 -0
- package/libs/ui/src/components/ui/multisidebar.tsx +750 -0
- package/libs/ui/src/components/ui/popover.tsx +43 -0
- package/libs/ui/src/components/ui/progress.tsx +28 -0
- package/libs/ui/src/components/ui/reasoning.tsx +178 -0
- package/libs/ui/src/components/ui/resizable.tsx +49 -0
- package/libs/ui/src/components/ui/scroll-area.tsx +54 -0
- package/libs/ui/src/components/ui/select.tsx +171 -0
- package/libs/ui/src/components/ui/separator.tsx +26 -0
- package/libs/ui/src/components/ui/sheet.tsx +128 -0
- package/libs/ui/src/components/ui/shimmer.tsx +53 -0
- package/libs/ui/src/components/ui/skeleton.tsx +13 -0
- package/libs/ui/src/components/ui/sonner.tsx +23 -0
- package/libs/ui/src/components/ui/switch.tsx +26 -0
- package/libs/ui/src/components/ui/table.tsx +96 -0
- package/libs/ui/src/components/ui/tabs.tsx +52 -0
- package/libs/ui/src/components/ui/textarea.tsx +41 -0
- package/libs/ui/src/components/ui/tool.tsx +209 -0
- package/libs/ui/src/components/ui/tooltip.tsx +58 -0
- package/libs/ui/src/components/ui/typography.tsx +113 -0
- package/libs/ui/src/fonts/manrope-v15-latin-300.woff2 +0 -0
- package/libs/ui/src/fonts/manrope-v15-latin-400.woff2 +0 -0
- package/libs/ui/src/fonts/manrope-v15-latin-500.woff2 +0 -0
- package/libs/ui/src/fonts/manrope-v15-latin-600.woff2 +0 -0
- package/libs/ui/src/hooks/use-mobile.ts +19 -0
- package/libs/ui/src/lib/utils.ts +6 -0
- package/libs/ui/src/styles/fonts.css +35 -0
- package/libs/ui/src/styles/style.css +218 -0
- package/libs/ui/tsconfig.json +21 -0
- package/libs/ui/vite.config.ts +80 -0
- package/libs/ui-lit/README.md +245 -0
- package/libs/ui-lit/TESTING_GUIDE.md +296 -0
- package/libs/ui-lit/eslint.config.mjs +3 -0
- package/libs/ui-lit/package.json +41 -0
- package/libs/ui-lit/scripts/build-css.js +43 -0
- package/libs/ui-lit/src/components/sea-alert.ts +132 -0
- package/libs/ui-lit/src/components/sea-button.ts +95 -0
- package/libs/ui-lit/src/components/sea-card.ts +113 -0
- package/libs/ui-lit/src/components/sea-input.ts +184 -0
- package/libs/ui-lit/src/components/sea-spinner.ts +65 -0
- package/libs/ui-lit/src/index.ts +15 -0
- package/libs/ui-lit/src/lib/utils.ts +6 -0
- package/libs/ui-lit/src/styles/tailwind.css +76 -0
- package/libs/ui-lit/src/theme.css +66 -0
- package/libs/ui-lit/src/theme.ts +79 -0
- package/libs/ui-lit/src/vite-env.d.ts +6 -0
- package/libs/ui-lit/tailwind.config.ts +50 -0
- package/libs/ui-lit/test.html +289 -0
- package/libs/ui-lit/tsconfig.json +23 -0
- package/libs/ui-lit/vite.config.ts +31 -0
- package/libs/ui-lit/vite.css.config.ts +20 -0
- package/libs/util/.prettierignore +6 -0
- package/libs/util/.prettierrc.js +12 -0
- package/libs/util/eslint.config.mjs +3 -0
- package/libs/util/package.json +45 -0
- package/libs/util/src/billing.ts +10 -0
- package/libs/util/src/data-transform.ts +19 -0
- package/libs/util/src/encryption.ts +45 -0
- package/libs/util/src/fmt.test.ts +9 -0
- package/libs/util/src/fmt.ts +71 -0
- package/libs/util/src/fuzzy.ts +47 -0
- package/libs/util/src/id.ts +24 -0
- package/libs/util/src/invariant.ts +31 -0
- package/libs/util/src/sub-name.ts +7 -0
- package/libs/util/tsconfig.json +19 -0
- package/libs/util/vite.config.ts +34 -0
- package/package.json +28 -0
- package/packages/widget/.prettierignore +6 -0
- package/packages/widget/.prettierrc.js +12 -0
- package/packages/widget/README.md +95 -0
- package/packages/widget/eslint.config.mjs +11 -0
- package/packages/widget/openapi-ts.config.ts +8 -0
- package/packages/widget/package.json +89 -0
- package/packages/widget/postcss.config.mjs +10 -0
- package/packages/widget/src/clients/api/client/client.ts +187 -0
- package/packages/widget/src/clients/api/client/index.ts +22 -0
- package/packages/widget/src/clients/api/client/types.ts +192 -0
- package/packages/widget/src/clients/api/client/utils.ts +394 -0
- package/packages/widget/src/clients/api/client.gen.ts +18 -0
- package/packages/widget/src/clients/api/core/auth.ts +39 -0
- package/packages/widget/src/clients/api/core/bodySerializer.ts +74 -0
- package/packages/widget/src/clients/api/core/params.ts +132 -0
- package/packages/widget/src/clients/api/core/pathSerializer.ts +169 -0
- package/packages/widget/src/clients/api/core/types.ts +80 -0
- package/packages/widget/src/clients/api/index.ts +3 -0
- package/packages/widget/src/clients/api/sdk.gen.ts +805 -0
- package/packages/widget/src/clients/api/types.gen.ts +2085 -0
- package/packages/widget/src/components/container.tsx +42 -0
- package/packages/widget/src/components/data-display.tsx +384 -0
- package/packages/widget/src/components/data-viewer.tsx +311 -0
- package/packages/widget/src/components/doc-list.tsx +102 -0
- package/packages/widget/src/components/field-correction-modal.tsx +265 -0
- package/packages/widget/src/components/header.tsx +71 -0
- package/packages/widget/src/components/new-submission.tsx +290 -0
- package/packages/widget/src/components/sidebar-right.tsx +19 -0
- package/packages/widget/src/components/submission-card.tsx +66 -0
- package/packages/widget/src/components/submission-page.tsx +75 -0
- package/packages/widget/src/components/upload-doc.tsx +241 -0
- package/packages/widget/src/components/widget.tsx +101 -0
- package/packages/widget/src/index.tsx +167 -0
- package/packages/widget/src/lib/config.ts +2 -0
- package/packages/widget/src/lib/util.ts +40 -0
- package/packages/widget/src/styles/index.css +5 -0
- package/packages/widget/src/styles/tw-properties.css +337 -0
- package/packages/widget/src/vite-env.d.ts +3 -0
- package/packages/widget/tsconfig.app.json +35 -0
- package/packages/widget/tsconfig.json +4 -0
- package/packages/widget/tsconfig.node.json +24 -0
- package/packages/widget/vite.config.ts +116 -0
- package/packages/widget-lit/BOTTLENECKS.md +250 -0
- package/packages/widget-lit/IMPLEMENTATION_SUMMARY.md +295 -0
- package/packages/widget-lit/README.md +232 -0
- package/packages/widget-lit/eslint.config.mjs +3 -0
- package/packages/widget-lit/package.json +52 -0
- package/packages/widget-lit/src/api-client.ts +230 -0
- package/packages/widget-lit/src/api-client.ts.backup +218 -0
- package/packages/widget-lit/src/components/sea-chat.ts +382 -0
- package/packages/widget-lit/src/components/sea-submission-viewer.ts +267 -0
- package/packages/widget-lit/src/components/sea-widget.ts +317 -0
- package/packages/widget-lit/src/index.ts +48 -0
- package/packages/widget-lit/src/react.ts +58 -0
- package/packages/widget-lit/src/style.css +47 -0
- package/packages/widget-lit/tsconfig.json +24 -0
- package/packages/widget-lit/vite.config.ts +29 -0
- package/packages/widget-ng/DEVELOPMENT.md +74 -0
- package/packages/widget-ng/README.md +657 -0
- package/packages/widget-ng/dev.sh +14 -0
- package/packages/widget-ng/eslint.config.mjs +24 -0
- package/packages/widget-ng/ng-package.json +9 -0
- package/packages/widget-ng/package.json +85 -0
- package/packages/widget-ng/src/index.ts +45 -0
- package/packages/widget-ng/src/lib/components/sea-chat.component.ts +737 -0
- package/packages/widget-ng/src/lib/components/sea-data-viewer.component.ts +2240 -0
- package/packages/widget-ng/src/lib/components/sea-deal-form-modal.component.ts +702 -0
- package/packages/widget-ng/src/lib/components/sea-document-list.component.ts +350 -0
- package/packages/widget-ng/src/lib/components/sea-feedback-modal.component.ts +461 -0
- package/packages/widget-ng/src/lib/components/sea-file-upload.component.ts +655 -0
- package/packages/widget-ng/src/lib/components/sea-model-selection-modal.component.ts +367 -0
- package/packages/widget-ng/src/lib/components/sea-new-submission-modal.component.ts +414 -0
- package/packages/widget-ng/src/lib/components/sea-pdf-viewer.component.ts +869 -0
- package/packages/widget-ng/src/lib/components/sea-submission-card.component.ts +251 -0
- package/packages/widget-ng/src/lib/components/sea-widget.component.ts +684 -0
- package/packages/widget-ng/src/lib/models/submission.model.ts +170 -0
- package/packages/widget-ng/src/lib/pipes/markdown.pipe.ts +57 -0
- package/packages/widget-ng/src/lib/services/api-client.service.ts +715 -0
- package/packages/widget-ng/src/lib/services/chat.service.ts +330 -0
- package/packages/widget-ng/src/lib/services/config.service.ts +107 -0
- package/packages/widget-ng/src/web-component.ts +56 -0
- package/packages/widget-ng/tsconfig.json +25 -0
- package/packages/widget-ng/tsconfig.lib.json +9 -0
- package/packages/widget-ng/vite.config.elements.ts +26 -0
- package/packages/widget-ng/vitest.config.ts +19 -0
- package/packages/widget-ng/vitest.setup.ts +13 -0
- package/pnpm-workspace.yaml +18 -0
- package/render.yaml +136 -0
- package/scripts/README.md +57 -0
- package/scripts/package.json +22 -0
- package/scripts/python/.python-version +1 -0
- package/scripts/python/README.md +3 -0
- package/scripts/python/export-org-data.py +693 -0
- package/scripts/python/pyproject.toml +29 -0
- package/scripts/python/requirements-dev.lock +36 -0
- package/scripts/python/requirements.lock +36 -0
- package/scripts/python/src/gen.py +297 -0
- package/scripts/python/test.py +34 -0
- package/scripts/src/fix-storage-provider-mismatch.ts +239 -0
- package/scripts/src/sync-render-yaml.ts +290 -0
- package/scripts/src/test-chat-stream.ts +300 -0
- package/scripts/src/test-reconciliation.ts +230 -0
- package/scripts/tsconfig.json +15 -0
- package/tests/angular-test-app/.vscode/extensions.json +4 -0
- package/tests/angular-test-app/.vscode/launch.json +13 -0
- package/tests/angular-test-app/.vscode/tasks.json +24 -0
- package/tests/angular-test-app/README.md +59 -0
- package/tests/angular-test-app/angular.json +111 -0
- package/tests/angular-test-app/clean-start.sh +14 -0
- package/tests/angular-test-app/package.json +36 -0
- package/tests/angular-test-app/public/favicon.ico +0 -0
- package/tests/angular-test-app/src/app/app.component.ts +220 -0
- package/tests/angular-test-app/src/app/app.config.ts +5 -0
- package/tests/angular-test-app/src/env.d.ts +13 -0
- package/tests/angular-test-app/src/index.html +13 -0
- package/tests/angular-test-app/src/main.ts +6 -0
- package/tests/angular-test-app/src/styles.css +8 -0
- package/tests/angular-test-app/tsconfig.app.json +15 -0
- package/tests/angular-test-app/tsconfig.json +27 -0
- package/tests/crm-viewer-app/API_INTEGRATION_SUMMARY.md +295 -0
- package/tests/crm-viewer-app/CURRENT_ASSETS_FIELDS.md +148 -0
- package/tests/crm-viewer-app/FIELD_ID_MAPPING.md +206 -0
- package/tests/crm-viewer-app/INTEGRATION_GUIDE.md +309 -0
- package/tests/crm-viewer-app/README.md +174 -0
- package/tests/crm-viewer-app/REAL_API_INTEGRATION.md +240 -0
- package/tests/crm-viewer-app/UPDATED_IMPLEMENTATION.md +279 -0
- package/tests/crm-viewer-app/angular.json +114 -0
- package/tests/crm-viewer-app/package.json +35 -0
- package/tests/crm-viewer-app/src/app/app.component.ts +534 -0
- package/tests/crm-viewer-app/src/app/citation.service.ts +316 -0
- package/tests/crm-viewer-app/src/env.d.ts +16 -0
- package/tests/crm-viewer-app/src/index.html +19 -0
- package/tests/crm-viewer-app/src/main.ts +7 -0
- package/tests/crm-viewer-app/src/styles.css +409 -0
- package/tests/crm-viewer-app/src/template.html +2678 -0
- package/tests/crm-viewer-app/tsconfig.app.json +15 -0
- package/tests/crm-viewer-app/tsconfig.json +27 -0
- package/tests/e2e/package.json +17 -0
- package/tests/e2e/playwright.config.ts +75 -0
- package/tests/e2e/tests/api/health.spec.ts +10 -0
- package/tests/e2e/tests/app/example.spec.ts +10 -0
- package/tests/widget-test-app/.prettierignore +6 -0
- package/tests/widget-test-app/README.md +48 -0
- package/tests/widget-test-app/index.html +12 -0
- package/tests/widget-test-app/package.json +24 -0
- package/tests/widget-test-app/src/App.css +192 -0
- package/tests/widget-test-app/src/App.tsx +80 -0
- package/tests/widget-test-app/src/main.tsx +9 -0
- package/tests/widget-test-app/src/vite-env.d.ts +4 -0
- package/tests/widget-test-app/tsconfig.json +25 -0
- package/tests/widget-test-app/tsconfig.node.json +11 -0
- package/tests/widget-test-app/vite.config.ts +14 -0
|
@@ -0,0 +1,1255 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
|
|
5
|
+
// noinspection JSUnusedGlobalSymbols
|
|
6
|
+
|
|
7
|
+
// This file was automatically generated by TanStack Router.
|
|
8
|
+
// You should NOT make any changes in this file as it will be overwritten.
|
|
9
|
+
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
|
10
|
+
|
|
11
|
+
import { createServerRootRoute } from '@tanstack/react-start/server'
|
|
12
|
+
|
|
13
|
+
import { Route as rootRouteImport } from './routes/__root'
|
|
14
|
+
import { Route as PublicRouteRouteImport } from './routes/_public/route'
|
|
15
|
+
import { Route as AuthedRouteRouteImport } from './routes/_authed/route'
|
|
16
|
+
import { Route as PublicSignUpRouteImport } from './routes/_public/sign-up'
|
|
17
|
+
import { Route as PublicSignInRouteImport } from './routes/_public/sign-in'
|
|
18
|
+
import { Route as PublicOtpRouteImport } from './routes/_public/otp'
|
|
19
|
+
import { Route as PublicNoInviteRouteImport } from './routes/_public/no-invite'
|
|
20
|
+
import { Route as PublicNoAccessRouteImport } from './routes/_public/no-access'
|
|
21
|
+
import { Route as PublicEmbeddedRouteImport } from './routes/_public/embedded'
|
|
22
|
+
import { Route as AuthedCatchNotFoundRouteImport } from './routes/_authed/catchNotFound'
|
|
23
|
+
import { Route as AuthedSettingsRouteRouteImport } from './routes/_authed/settings/route'
|
|
24
|
+
import { Route as AuthedAdminRouteRouteImport } from './routes/_authed/admin/route'
|
|
25
|
+
import { Route as AuthedAppRouteRouteImport } from './routes/_authed/_app/route'
|
|
26
|
+
import { Route as AuthedSettingsIndexRouteImport } from './routes/_authed/settings/index'
|
|
27
|
+
import { Route as AuthedAdminIndexRouteImport } from './routes/_authed/admin/index'
|
|
28
|
+
import { Route as PublicInviteInviteIdRouteImport } from './routes/_public/invite.$inviteId'
|
|
29
|
+
import { Route as AuthedSettingsWorkspaceRouteImport } from './routes/_authed/settings/workspace'
|
|
30
|
+
import { Route as AuthedSettingsUserRouteImport } from './routes/_authed/settings/user'
|
|
31
|
+
import { Route as AuthedSettingsMembersRouteImport } from './routes/_authed/settings/members'
|
|
32
|
+
import { Route as AuthedSettingsKeysRouteImport } from './routes/_authed/settings/keys'
|
|
33
|
+
import { Route as AuthedSettingsEmbedRouteImport } from './routes/_authed/settings/embed'
|
|
34
|
+
import { Route as AuthedSettingsAnalyticsRouteImport } from './routes/_authed/settings/analytics'
|
|
35
|
+
import { Route as AuthedSettingsBillingIndexRouteImport } from './routes/_authed/settings/billing/index'
|
|
36
|
+
import { Route as AuthedAdminUsersIndexRouteImport } from './routes/_authed/admin/users/index'
|
|
37
|
+
import { Route as AuthedAppWorkflowsIndexRouteImport } from './routes/_authed/_app/workflows/index'
|
|
38
|
+
import { Route as AuthedAppSubmissionsIndexRouteImport } from './routes/_authed/_app/submissions/index'
|
|
39
|
+
import { Route as AuthedAppReportsIndexRouteImport } from './routes/_authed/_app/reports/index'
|
|
40
|
+
import { Route as AuthedAppPipelinesIndexRouteImport } from './routes/_authed/_app/pipelines/index'
|
|
41
|
+
import { Route as AuthedAppFeedbackIndexRouteImport } from './routes/_authed/_app/feedback/index'
|
|
42
|
+
import { Route as AuthedAppDealsIndexRouteImport } from './routes/_authed/_app/deals/index'
|
|
43
|
+
import { Route as AuthedAppAgentsIndexRouteImport } from './routes/_authed/_app/agents/index'
|
|
44
|
+
import { Route as AuthedAppdashboardIndexRouteImport } from './routes/_authed/_app/(dashboard)/index'
|
|
45
|
+
import { Route as AuthedRedirectsWorkflowsIdRouteImport } from './routes/_authed/redirects/workflows.$id'
|
|
46
|
+
import { Route as AuthedRedirectsSubmissionsIdRouteImport } from './routes/_authed/redirects/submissions.$id'
|
|
47
|
+
import { Route as AuthedRedirectsFormsIdRouteImport } from './routes/_authed/redirects/forms.$id'
|
|
48
|
+
import { Route as AuthedAppReportsReportIdRouteImport } from './routes/_authed/_app/reports/$reportId'
|
|
49
|
+
import { Route as AuthedAppFeedbackInsightsRouteImport } from './routes/_authed/_app/feedback/insights'
|
|
50
|
+
import { Route as AuthedAppWorkflowsWfSlugRouteRouteImport } from './routes/_authed/_app/workflows/$wfSlug/route'
|
|
51
|
+
import { Route as AuthedAppDealsDealIdRouteRouteImport } from './routes/_authed/_app/deals/$dealId/route'
|
|
52
|
+
import { Route as AuthedAppWorkflowsWfSlugIndexRouteImport } from './routes/_authed/_app/workflows/$wfSlug/index'
|
|
53
|
+
import { Route as AuthedAppPipelinesPipelineIdIndexRouteImport } from './routes/_authed/_app/pipelines/$pipelineId/index'
|
|
54
|
+
import { Route as AuthedAppDealsDealIdIndexRouteImport } from './routes/_authed/_app/deals/$dealId/index'
|
|
55
|
+
import { Route as AuthedAppAgentsAgentIdIndexRouteImport } from './routes/_authed/_app/agents/$agentId/index'
|
|
56
|
+
import { Route as AuthedAppWorkflowsWfSlugFormIdRouteImport } from './routes/_authed/_app/workflows/$wfSlug/$formId'
|
|
57
|
+
import { Route as AuthedAppDealsDealIdSubIdRouteImport } from './routes/_authed/_app/deals/$dealId/$subId'
|
|
58
|
+
import { Route as AuthedAppAgentsAgentIdConfigRouteImport } from './routes/_authed/_app/agents/$agentId/config'
|
|
59
|
+
import { Route as AuthedAppPipelinesPipelineIdRunIdIndexRouteImport } from './routes/_authed/_app/pipelines/$pipelineId/$runId/index'
|
|
60
|
+
import { ServerRoute as ApiTestIndexServerRouteImport } from './routes/api/test/index'
|
|
61
|
+
import { ServerRoute as ApiChatMemberServerRouteImport } from './routes/api/chat/member'
|
|
62
|
+
import { ServerRoute as ApiChatKeyServerRouteImport } from './routes/api/chat/key'
|
|
63
|
+
import { ServerRoute as ApiChatAgentServerRouteImport } from './routes/api/chat/agent'
|
|
64
|
+
import { ServerRoute as ApiBillingWebhooksServerRouteImport } from './routes/api/billing/webhooks'
|
|
65
|
+
import { ServerRoute as ApiBillingPaidServerRouteImport } from './routes/api/billing/paid'
|
|
66
|
+
import { ServerRoute as ApiAuthSplatServerRouteImport } from './routes/api/auth/$'
|
|
67
|
+
|
|
68
|
+
const rootServerRouteImport = createServerRootRoute()
|
|
69
|
+
|
|
70
|
+
const PublicRouteRoute = PublicRouteRouteImport.update({
|
|
71
|
+
id: '/_public',
|
|
72
|
+
getParentRoute: () => rootRouteImport,
|
|
73
|
+
} as any)
|
|
74
|
+
const AuthedRouteRoute = AuthedRouteRouteImport.update({
|
|
75
|
+
id: '/_authed',
|
|
76
|
+
getParentRoute: () => rootRouteImport,
|
|
77
|
+
} as any)
|
|
78
|
+
const PublicSignUpRoute = PublicSignUpRouteImport.update({
|
|
79
|
+
id: '/sign-up',
|
|
80
|
+
path: '/sign-up',
|
|
81
|
+
getParentRoute: () => PublicRouteRoute,
|
|
82
|
+
} as any)
|
|
83
|
+
const PublicSignInRoute = PublicSignInRouteImport.update({
|
|
84
|
+
id: '/sign-in',
|
|
85
|
+
path: '/sign-in',
|
|
86
|
+
getParentRoute: () => PublicRouteRoute,
|
|
87
|
+
} as any)
|
|
88
|
+
const PublicOtpRoute = PublicOtpRouteImport.update({
|
|
89
|
+
id: '/otp',
|
|
90
|
+
path: '/otp',
|
|
91
|
+
getParentRoute: () => PublicRouteRoute,
|
|
92
|
+
} as any)
|
|
93
|
+
const PublicNoInviteRoute = PublicNoInviteRouteImport.update({
|
|
94
|
+
id: '/no-invite',
|
|
95
|
+
path: '/no-invite',
|
|
96
|
+
getParentRoute: () => PublicRouteRoute,
|
|
97
|
+
} as any)
|
|
98
|
+
const PublicNoAccessRoute = PublicNoAccessRouteImport.update({
|
|
99
|
+
id: '/no-access',
|
|
100
|
+
path: '/no-access',
|
|
101
|
+
getParentRoute: () => PublicRouteRoute,
|
|
102
|
+
} as any)
|
|
103
|
+
const PublicEmbeddedRoute = PublicEmbeddedRouteImport.update({
|
|
104
|
+
id: '/embedded',
|
|
105
|
+
path: '/embedded',
|
|
106
|
+
getParentRoute: () => PublicRouteRoute,
|
|
107
|
+
} as any)
|
|
108
|
+
const AuthedCatchNotFoundRoute = AuthedCatchNotFoundRouteImport.update({
|
|
109
|
+
id: '/catchNotFound',
|
|
110
|
+
path: '/catchNotFound',
|
|
111
|
+
getParentRoute: () => AuthedRouteRoute,
|
|
112
|
+
} as any)
|
|
113
|
+
const AuthedSettingsRouteRoute = AuthedSettingsRouteRouteImport.update({
|
|
114
|
+
id: '/settings',
|
|
115
|
+
path: '/settings',
|
|
116
|
+
getParentRoute: () => AuthedRouteRoute,
|
|
117
|
+
} as any)
|
|
118
|
+
const AuthedAdminRouteRoute = AuthedAdminRouteRouteImport.update({
|
|
119
|
+
id: '/admin',
|
|
120
|
+
path: '/admin',
|
|
121
|
+
getParentRoute: () => AuthedRouteRoute,
|
|
122
|
+
} as any)
|
|
123
|
+
const AuthedAppRouteRoute = AuthedAppRouteRouteImport.update({
|
|
124
|
+
id: '/_app',
|
|
125
|
+
getParentRoute: () => AuthedRouteRoute,
|
|
126
|
+
} as any)
|
|
127
|
+
const AuthedSettingsIndexRoute = AuthedSettingsIndexRouteImport.update({
|
|
128
|
+
id: '/',
|
|
129
|
+
path: '/',
|
|
130
|
+
getParentRoute: () => AuthedSettingsRouteRoute,
|
|
131
|
+
} as any)
|
|
132
|
+
const AuthedAdminIndexRoute = AuthedAdminIndexRouteImport.update({
|
|
133
|
+
id: '/',
|
|
134
|
+
path: '/',
|
|
135
|
+
getParentRoute: () => AuthedAdminRouteRoute,
|
|
136
|
+
} as any)
|
|
137
|
+
const PublicInviteInviteIdRoute = PublicInviteInviteIdRouteImport.update({
|
|
138
|
+
id: '/invite/$inviteId',
|
|
139
|
+
path: '/invite/$inviteId',
|
|
140
|
+
getParentRoute: () => PublicRouteRoute,
|
|
141
|
+
} as any)
|
|
142
|
+
const AuthedSettingsWorkspaceRoute = AuthedSettingsWorkspaceRouteImport.update({
|
|
143
|
+
id: '/workspace',
|
|
144
|
+
path: '/workspace',
|
|
145
|
+
getParentRoute: () => AuthedSettingsRouteRoute,
|
|
146
|
+
} as any)
|
|
147
|
+
const AuthedSettingsUserRoute = AuthedSettingsUserRouteImport.update({
|
|
148
|
+
id: '/user',
|
|
149
|
+
path: '/user',
|
|
150
|
+
getParentRoute: () => AuthedSettingsRouteRoute,
|
|
151
|
+
} as any)
|
|
152
|
+
const AuthedSettingsMembersRoute = AuthedSettingsMembersRouteImport.update({
|
|
153
|
+
id: '/members',
|
|
154
|
+
path: '/members',
|
|
155
|
+
getParentRoute: () => AuthedSettingsRouteRoute,
|
|
156
|
+
} as any)
|
|
157
|
+
const AuthedSettingsKeysRoute = AuthedSettingsKeysRouteImport.update({
|
|
158
|
+
id: '/keys',
|
|
159
|
+
path: '/keys',
|
|
160
|
+
getParentRoute: () => AuthedSettingsRouteRoute,
|
|
161
|
+
} as any)
|
|
162
|
+
const AuthedSettingsEmbedRoute = AuthedSettingsEmbedRouteImport.update({
|
|
163
|
+
id: '/embed',
|
|
164
|
+
path: '/embed',
|
|
165
|
+
getParentRoute: () => AuthedSettingsRouteRoute,
|
|
166
|
+
} as any)
|
|
167
|
+
const AuthedSettingsAnalyticsRoute = AuthedSettingsAnalyticsRouteImport.update({
|
|
168
|
+
id: '/analytics',
|
|
169
|
+
path: '/analytics',
|
|
170
|
+
getParentRoute: () => AuthedSettingsRouteRoute,
|
|
171
|
+
} as any)
|
|
172
|
+
const AuthedSettingsBillingIndexRoute =
|
|
173
|
+
AuthedSettingsBillingIndexRouteImport.update({
|
|
174
|
+
id: '/billing/',
|
|
175
|
+
path: '/billing/',
|
|
176
|
+
getParentRoute: () => AuthedSettingsRouteRoute,
|
|
177
|
+
} as any)
|
|
178
|
+
const AuthedAdminUsersIndexRoute = AuthedAdminUsersIndexRouteImport.update({
|
|
179
|
+
id: '/users/',
|
|
180
|
+
path: '/users/',
|
|
181
|
+
getParentRoute: () => AuthedAdminRouteRoute,
|
|
182
|
+
} as any)
|
|
183
|
+
const AuthedAppWorkflowsIndexRoute = AuthedAppWorkflowsIndexRouteImport.update({
|
|
184
|
+
id: '/workflows/',
|
|
185
|
+
path: '/workflows/',
|
|
186
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
187
|
+
} as any)
|
|
188
|
+
const AuthedAppSubmissionsIndexRoute =
|
|
189
|
+
AuthedAppSubmissionsIndexRouteImport.update({
|
|
190
|
+
id: '/submissions/',
|
|
191
|
+
path: '/submissions/',
|
|
192
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
193
|
+
} as any)
|
|
194
|
+
const AuthedAppReportsIndexRoute = AuthedAppReportsIndexRouteImport.update({
|
|
195
|
+
id: '/reports/',
|
|
196
|
+
path: '/reports/',
|
|
197
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
198
|
+
} as any)
|
|
199
|
+
const AuthedAppPipelinesIndexRoute = AuthedAppPipelinesIndexRouteImport.update({
|
|
200
|
+
id: '/pipelines/',
|
|
201
|
+
path: '/pipelines/',
|
|
202
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
203
|
+
} as any)
|
|
204
|
+
const AuthedAppFeedbackIndexRoute = AuthedAppFeedbackIndexRouteImport.update({
|
|
205
|
+
id: '/feedback/',
|
|
206
|
+
path: '/feedback/',
|
|
207
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
208
|
+
} as any)
|
|
209
|
+
const AuthedAppDealsIndexRoute = AuthedAppDealsIndexRouteImport.update({
|
|
210
|
+
id: '/deals/',
|
|
211
|
+
path: '/deals/',
|
|
212
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
213
|
+
} as any)
|
|
214
|
+
const AuthedAppAgentsIndexRoute = AuthedAppAgentsIndexRouteImport.update({
|
|
215
|
+
id: '/agents/',
|
|
216
|
+
path: '/agents/',
|
|
217
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
218
|
+
} as any)
|
|
219
|
+
const AuthedAppdashboardIndexRoute = AuthedAppdashboardIndexRouteImport.update({
|
|
220
|
+
id: '/(dashboard)/',
|
|
221
|
+
path: '/',
|
|
222
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
223
|
+
} as any)
|
|
224
|
+
const AuthedRedirectsWorkflowsIdRoute =
|
|
225
|
+
AuthedRedirectsWorkflowsIdRouteImport.update({
|
|
226
|
+
id: '/redirects/workflows/$id',
|
|
227
|
+
path: '/redirects/workflows/$id',
|
|
228
|
+
getParentRoute: () => AuthedRouteRoute,
|
|
229
|
+
} as any)
|
|
230
|
+
const AuthedRedirectsSubmissionsIdRoute =
|
|
231
|
+
AuthedRedirectsSubmissionsIdRouteImport.update({
|
|
232
|
+
id: '/redirects/submissions/$id',
|
|
233
|
+
path: '/redirects/submissions/$id',
|
|
234
|
+
getParentRoute: () => AuthedRouteRoute,
|
|
235
|
+
} as any)
|
|
236
|
+
const AuthedRedirectsFormsIdRoute = AuthedRedirectsFormsIdRouteImport.update({
|
|
237
|
+
id: '/redirects/forms/$id',
|
|
238
|
+
path: '/redirects/forms/$id',
|
|
239
|
+
getParentRoute: () => AuthedRouteRoute,
|
|
240
|
+
} as any)
|
|
241
|
+
const AuthedAppReportsReportIdRoute =
|
|
242
|
+
AuthedAppReportsReportIdRouteImport.update({
|
|
243
|
+
id: '/reports/$reportId',
|
|
244
|
+
path: '/reports/$reportId',
|
|
245
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
246
|
+
} as any)
|
|
247
|
+
const AuthedAppFeedbackInsightsRoute =
|
|
248
|
+
AuthedAppFeedbackInsightsRouteImport.update({
|
|
249
|
+
id: '/feedback/insights',
|
|
250
|
+
path: '/feedback/insights',
|
|
251
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
252
|
+
} as any)
|
|
253
|
+
const AuthedAppWorkflowsWfSlugRouteRoute =
|
|
254
|
+
AuthedAppWorkflowsWfSlugRouteRouteImport.update({
|
|
255
|
+
id: '/workflows/$wfSlug',
|
|
256
|
+
path: '/workflows/$wfSlug',
|
|
257
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
258
|
+
} as any)
|
|
259
|
+
const AuthedAppDealsDealIdRouteRoute =
|
|
260
|
+
AuthedAppDealsDealIdRouteRouteImport.update({
|
|
261
|
+
id: '/deals/$dealId',
|
|
262
|
+
path: '/deals/$dealId',
|
|
263
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
264
|
+
} as any)
|
|
265
|
+
const AuthedAppWorkflowsWfSlugIndexRoute =
|
|
266
|
+
AuthedAppWorkflowsWfSlugIndexRouteImport.update({
|
|
267
|
+
id: '/',
|
|
268
|
+
path: '/',
|
|
269
|
+
getParentRoute: () => AuthedAppWorkflowsWfSlugRouteRoute,
|
|
270
|
+
} as any)
|
|
271
|
+
const AuthedAppPipelinesPipelineIdIndexRoute =
|
|
272
|
+
AuthedAppPipelinesPipelineIdIndexRouteImport.update({
|
|
273
|
+
id: '/pipelines/$pipelineId/',
|
|
274
|
+
path: '/pipelines/$pipelineId/',
|
|
275
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
276
|
+
} as any)
|
|
277
|
+
const AuthedAppDealsDealIdIndexRoute =
|
|
278
|
+
AuthedAppDealsDealIdIndexRouteImport.update({
|
|
279
|
+
id: '/',
|
|
280
|
+
path: '/',
|
|
281
|
+
getParentRoute: () => AuthedAppDealsDealIdRouteRoute,
|
|
282
|
+
} as any)
|
|
283
|
+
const AuthedAppAgentsAgentIdIndexRoute =
|
|
284
|
+
AuthedAppAgentsAgentIdIndexRouteImport.update({
|
|
285
|
+
id: '/agents/$agentId/',
|
|
286
|
+
path: '/agents/$agentId/',
|
|
287
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
288
|
+
} as any)
|
|
289
|
+
const AuthedAppWorkflowsWfSlugFormIdRoute =
|
|
290
|
+
AuthedAppWorkflowsWfSlugFormIdRouteImport.update({
|
|
291
|
+
id: '/$formId',
|
|
292
|
+
path: '/$formId',
|
|
293
|
+
getParentRoute: () => AuthedAppWorkflowsWfSlugRouteRoute,
|
|
294
|
+
} as any)
|
|
295
|
+
const AuthedAppDealsDealIdSubIdRoute =
|
|
296
|
+
AuthedAppDealsDealIdSubIdRouteImport.update({
|
|
297
|
+
id: '/$subId',
|
|
298
|
+
path: '/$subId',
|
|
299
|
+
getParentRoute: () => AuthedAppDealsDealIdRouteRoute,
|
|
300
|
+
} as any)
|
|
301
|
+
const AuthedAppAgentsAgentIdConfigRoute =
|
|
302
|
+
AuthedAppAgentsAgentIdConfigRouteImport.update({
|
|
303
|
+
id: '/agents/$agentId/config',
|
|
304
|
+
path: '/agents/$agentId/config',
|
|
305
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
306
|
+
} as any)
|
|
307
|
+
const AuthedAppPipelinesPipelineIdRunIdIndexRoute =
|
|
308
|
+
AuthedAppPipelinesPipelineIdRunIdIndexRouteImport.update({
|
|
309
|
+
id: '/pipelines/$pipelineId/$runId/',
|
|
310
|
+
path: '/pipelines/$pipelineId/$runId/',
|
|
311
|
+
getParentRoute: () => AuthedAppRouteRoute,
|
|
312
|
+
} as any)
|
|
313
|
+
const ApiTestIndexServerRoute = ApiTestIndexServerRouteImport.update({
|
|
314
|
+
id: '/api/test/',
|
|
315
|
+
path: '/api/test/',
|
|
316
|
+
getParentRoute: () => rootServerRouteImport,
|
|
317
|
+
} as any)
|
|
318
|
+
const ApiChatMemberServerRoute = ApiChatMemberServerRouteImport.update({
|
|
319
|
+
id: '/api/chat/member',
|
|
320
|
+
path: '/api/chat/member',
|
|
321
|
+
getParentRoute: () => rootServerRouteImport,
|
|
322
|
+
} as any)
|
|
323
|
+
const ApiChatKeyServerRoute = ApiChatKeyServerRouteImport.update({
|
|
324
|
+
id: '/api/chat/key',
|
|
325
|
+
path: '/api/chat/key',
|
|
326
|
+
getParentRoute: () => rootServerRouteImport,
|
|
327
|
+
} as any)
|
|
328
|
+
const ApiChatAgentServerRoute = ApiChatAgentServerRouteImport.update({
|
|
329
|
+
id: '/api/chat/agent',
|
|
330
|
+
path: '/api/chat/agent',
|
|
331
|
+
getParentRoute: () => rootServerRouteImport,
|
|
332
|
+
} as any)
|
|
333
|
+
const ApiBillingWebhooksServerRoute =
|
|
334
|
+
ApiBillingWebhooksServerRouteImport.update({
|
|
335
|
+
id: '/api/billing/webhooks',
|
|
336
|
+
path: '/api/billing/webhooks',
|
|
337
|
+
getParentRoute: () => rootServerRouteImport,
|
|
338
|
+
} as any)
|
|
339
|
+
const ApiBillingPaidServerRoute = ApiBillingPaidServerRouteImport.update({
|
|
340
|
+
id: '/api/billing/paid',
|
|
341
|
+
path: '/api/billing/paid',
|
|
342
|
+
getParentRoute: () => rootServerRouteImport,
|
|
343
|
+
} as any)
|
|
344
|
+
const ApiAuthSplatServerRoute = ApiAuthSplatServerRouteImport.update({
|
|
345
|
+
id: '/api/auth/$',
|
|
346
|
+
path: '/api/auth/$',
|
|
347
|
+
getParentRoute: () => rootServerRouteImport,
|
|
348
|
+
} as any)
|
|
349
|
+
|
|
350
|
+
export interface FileRoutesByFullPath {
|
|
351
|
+
'/admin': typeof AuthedAdminRouteRouteWithChildren
|
|
352
|
+
'/settings': typeof AuthedSettingsRouteRouteWithChildren
|
|
353
|
+
'/catchNotFound': typeof AuthedCatchNotFoundRoute
|
|
354
|
+
'/embedded': typeof PublicEmbeddedRoute
|
|
355
|
+
'/no-access': typeof PublicNoAccessRoute
|
|
356
|
+
'/no-invite': typeof PublicNoInviteRoute
|
|
357
|
+
'/otp': typeof PublicOtpRoute
|
|
358
|
+
'/sign-in': typeof PublicSignInRoute
|
|
359
|
+
'/sign-up': typeof PublicSignUpRoute
|
|
360
|
+
'/settings/analytics': typeof AuthedSettingsAnalyticsRoute
|
|
361
|
+
'/settings/embed': typeof AuthedSettingsEmbedRoute
|
|
362
|
+
'/settings/keys': typeof AuthedSettingsKeysRoute
|
|
363
|
+
'/settings/members': typeof AuthedSettingsMembersRoute
|
|
364
|
+
'/settings/user': typeof AuthedSettingsUserRoute
|
|
365
|
+
'/settings/workspace': typeof AuthedSettingsWorkspaceRoute
|
|
366
|
+
'/invite/$inviteId': typeof PublicInviteInviteIdRoute
|
|
367
|
+
'/admin/': typeof AuthedAdminIndexRoute
|
|
368
|
+
'/settings/': typeof AuthedSettingsIndexRoute
|
|
369
|
+
'/deals/$dealId': typeof AuthedAppDealsDealIdRouteRouteWithChildren
|
|
370
|
+
'/workflows/$wfSlug': typeof AuthedAppWorkflowsWfSlugRouteRouteWithChildren
|
|
371
|
+
'/feedback/insights': typeof AuthedAppFeedbackInsightsRoute
|
|
372
|
+
'/reports/$reportId': typeof AuthedAppReportsReportIdRoute
|
|
373
|
+
'/redirects/forms/$id': typeof AuthedRedirectsFormsIdRoute
|
|
374
|
+
'/redirects/submissions/$id': typeof AuthedRedirectsSubmissionsIdRoute
|
|
375
|
+
'/redirects/workflows/$id': typeof AuthedRedirectsWorkflowsIdRoute
|
|
376
|
+
'/': typeof AuthedAppdashboardIndexRoute
|
|
377
|
+
'/agents': typeof AuthedAppAgentsIndexRoute
|
|
378
|
+
'/deals': typeof AuthedAppDealsIndexRoute
|
|
379
|
+
'/feedback': typeof AuthedAppFeedbackIndexRoute
|
|
380
|
+
'/pipelines': typeof AuthedAppPipelinesIndexRoute
|
|
381
|
+
'/reports': typeof AuthedAppReportsIndexRoute
|
|
382
|
+
'/submissions': typeof AuthedAppSubmissionsIndexRoute
|
|
383
|
+
'/workflows': typeof AuthedAppWorkflowsIndexRoute
|
|
384
|
+
'/admin/users': typeof AuthedAdminUsersIndexRoute
|
|
385
|
+
'/settings/billing': typeof AuthedSettingsBillingIndexRoute
|
|
386
|
+
'/agents/$agentId/config': typeof AuthedAppAgentsAgentIdConfigRoute
|
|
387
|
+
'/deals/$dealId/$subId': typeof AuthedAppDealsDealIdSubIdRoute
|
|
388
|
+
'/workflows/$wfSlug/$formId': typeof AuthedAppWorkflowsWfSlugFormIdRoute
|
|
389
|
+
'/agents/$agentId': typeof AuthedAppAgentsAgentIdIndexRoute
|
|
390
|
+
'/deals/$dealId/': typeof AuthedAppDealsDealIdIndexRoute
|
|
391
|
+
'/pipelines/$pipelineId': typeof AuthedAppPipelinesPipelineIdIndexRoute
|
|
392
|
+
'/workflows/$wfSlug/': typeof AuthedAppWorkflowsWfSlugIndexRoute
|
|
393
|
+
'/pipelines/$pipelineId/$runId': typeof AuthedAppPipelinesPipelineIdRunIdIndexRoute
|
|
394
|
+
}
|
|
395
|
+
export interface FileRoutesByTo {
|
|
396
|
+
'/catchNotFound': typeof AuthedCatchNotFoundRoute
|
|
397
|
+
'/embedded': typeof PublicEmbeddedRoute
|
|
398
|
+
'/no-access': typeof PublicNoAccessRoute
|
|
399
|
+
'/no-invite': typeof PublicNoInviteRoute
|
|
400
|
+
'/otp': typeof PublicOtpRoute
|
|
401
|
+
'/sign-in': typeof PublicSignInRoute
|
|
402
|
+
'/sign-up': typeof PublicSignUpRoute
|
|
403
|
+
'/settings/analytics': typeof AuthedSettingsAnalyticsRoute
|
|
404
|
+
'/settings/embed': typeof AuthedSettingsEmbedRoute
|
|
405
|
+
'/settings/keys': typeof AuthedSettingsKeysRoute
|
|
406
|
+
'/settings/members': typeof AuthedSettingsMembersRoute
|
|
407
|
+
'/settings/user': typeof AuthedSettingsUserRoute
|
|
408
|
+
'/settings/workspace': typeof AuthedSettingsWorkspaceRoute
|
|
409
|
+
'/invite/$inviteId': typeof PublicInviteInviteIdRoute
|
|
410
|
+
'/admin': typeof AuthedAdminIndexRoute
|
|
411
|
+
'/settings': typeof AuthedSettingsIndexRoute
|
|
412
|
+
'/feedback/insights': typeof AuthedAppFeedbackInsightsRoute
|
|
413
|
+
'/reports/$reportId': typeof AuthedAppReportsReportIdRoute
|
|
414
|
+
'/redirects/forms/$id': typeof AuthedRedirectsFormsIdRoute
|
|
415
|
+
'/redirects/submissions/$id': typeof AuthedRedirectsSubmissionsIdRoute
|
|
416
|
+
'/redirects/workflows/$id': typeof AuthedRedirectsWorkflowsIdRoute
|
|
417
|
+
'/': typeof AuthedAppdashboardIndexRoute
|
|
418
|
+
'/agents': typeof AuthedAppAgentsIndexRoute
|
|
419
|
+
'/deals': typeof AuthedAppDealsIndexRoute
|
|
420
|
+
'/feedback': typeof AuthedAppFeedbackIndexRoute
|
|
421
|
+
'/pipelines': typeof AuthedAppPipelinesIndexRoute
|
|
422
|
+
'/reports': typeof AuthedAppReportsIndexRoute
|
|
423
|
+
'/submissions': typeof AuthedAppSubmissionsIndexRoute
|
|
424
|
+
'/workflows': typeof AuthedAppWorkflowsIndexRoute
|
|
425
|
+
'/admin/users': typeof AuthedAdminUsersIndexRoute
|
|
426
|
+
'/settings/billing': typeof AuthedSettingsBillingIndexRoute
|
|
427
|
+
'/agents/$agentId/config': typeof AuthedAppAgentsAgentIdConfigRoute
|
|
428
|
+
'/deals/$dealId/$subId': typeof AuthedAppDealsDealIdSubIdRoute
|
|
429
|
+
'/workflows/$wfSlug/$formId': typeof AuthedAppWorkflowsWfSlugFormIdRoute
|
|
430
|
+
'/agents/$agentId': typeof AuthedAppAgentsAgentIdIndexRoute
|
|
431
|
+
'/deals/$dealId': typeof AuthedAppDealsDealIdIndexRoute
|
|
432
|
+
'/pipelines/$pipelineId': typeof AuthedAppPipelinesPipelineIdIndexRoute
|
|
433
|
+
'/workflows/$wfSlug': typeof AuthedAppWorkflowsWfSlugIndexRoute
|
|
434
|
+
'/pipelines/$pipelineId/$runId': typeof AuthedAppPipelinesPipelineIdRunIdIndexRoute
|
|
435
|
+
}
|
|
436
|
+
export interface FileRoutesById {
|
|
437
|
+
__root__: typeof rootRouteImport
|
|
438
|
+
'/_authed': typeof AuthedRouteRouteWithChildren
|
|
439
|
+
'/_public': typeof PublicRouteRouteWithChildren
|
|
440
|
+
'/_authed/_app': typeof AuthedAppRouteRouteWithChildren
|
|
441
|
+
'/_authed/admin': typeof AuthedAdminRouteRouteWithChildren
|
|
442
|
+
'/_authed/settings': typeof AuthedSettingsRouteRouteWithChildren
|
|
443
|
+
'/_authed/catchNotFound': typeof AuthedCatchNotFoundRoute
|
|
444
|
+
'/_public/embedded': typeof PublicEmbeddedRoute
|
|
445
|
+
'/_public/no-access': typeof PublicNoAccessRoute
|
|
446
|
+
'/_public/no-invite': typeof PublicNoInviteRoute
|
|
447
|
+
'/_public/otp': typeof PublicOtpRoute
|
|
448
|
+
'/_public/sign-in': typeof PublicSignInRoute
|
|
449
|
+
'/_public/sign-up': typeof PublicSignUpRoute
|
|
450
|
+
'/_authed/settings/analytics': typeof AuthedSettingsAnalyticsRoute
|
|
451
|
+
'/_authed/settings/embed': typeof AuthedSettingsEmbedRoute
|
|
452
|
+
'/_authed/settings/keys': typeof AuthedSettingsKeysRoute
|
|
453
|
+
'/_authed/settings/members': typeof AuthedSettingsMembersRoute
|
|
454
|
+
'/_authed/settings/user': typeof AuthedSettingsUserRoute
|
|
455
|
+
'/_authed/settings/workspace': typeof AuthedSettingsWorkspaceRoute
|
|
456
|
+
'/_public/invite/$inviteId': typeof PublicInviteInviteIdRoute
|
|
457
|
+
'/_authed/admin/': typeof AuthedAdminIndexRoute
|
|
458
|
+
'/_authed/settings/': typeof AuthedSettingsIndexRoute
|
|
459
|
+
'/_authed/_app/deals/$dealId': typeof AuthedAppDealsDealIdRouteRouteWithChildren
|
|
460
|
+
'/_authed/_app/workflows/$wfSlug': typeof AuthedAppWorkflowsWfSlugRouteRouteWithChildren
|
|
461
|
+
'/_authed/_app/feedback/insights': typeof AuthedAppFeedbackInsightsRoute
|
|
462
|
+
'/_authed/_app/reports/$reportId': typeof AuthedAppReportsReportIdRoute
|
|
463
|
+
'/_authed/redirects/forms/$id': typeof AuthedRedirectsFormsIdRoute
|
|
464
|
+
'/_authed/redirects/submissions/$id': typeof AuthedRedirectsSubmissionsIdRoute
|
|
465
|
+
'/_authed/redirects/workflows/$id': typeof AuthedRedirectsWorkflowsIdRoute
|
|
466
|
+
'/_authed/_app/(dashboard)/': typeof AuthedAppdashboardIndexRoute
|
|
467
|
+
'/_authed/_app/agents/': typeof AuthedAppAgentsIndexRoute
|
|
468
|
+
'/_authed/_app/deals/': typeof AuthedAppDealsIndexRoute
|
|
469
|
+
'/_authed/_app/feedback/': typeof AuthedAppFeedbackIndexRoute
|
|
470
|
+
'/_authed/_app/pipelines/': typeof AuthedAppPipelinesIndexRoute
|
|
471
|
+
'/_authed/_app/reports/': typeof AuthedAppReportsIndexRoute
|
|
472
|
+
'/_authed/_app/submissions/': typeof AuthedAppSubmissionsIndexRoute
|
|
473
|
+
'/_authed/_app/workflows/': typeof AuthedAppWorkflowsIndexRoute
|
|
474
|
+
'/_authed/admin/users/': typeof AuthedAdminUsersIndexRoute
|
|
475
|
+
'/_authed/settings/billing/': typeof AuthedSettingsBillingIndexRoute
|
|
476
|
+
'/_authed/_app/agents/$agentId/config': typeof AuthedAppAgentsAgentIdConfigRoute
|
|
477
|
+
'/_authed/_app/deals/$dealId/$subId': typeof AuthedAppDealsDealIdSubIdRoute
|
|
478
|
+
'/_authed/_app/workflows/$wfSlug/$formId': typeof AuthedAppWorkflowsWfSlugFormIdRoute
|
|
479
|
+
'/_authed/_app/agents/$agentId/': typeof AuthedAppAgentsAgentIdIndexRoute
|
|
480
|
+
'/_authed/_app/deals/$dealId/': typeof AuthedAppDealsDealIdIndexRoute
|
|
481
|
+
'/_authed/_app/pipelines/$pipelineId/': typeof AuthedAppPipelinesPipelineIdIndexRoute
|
|
482
|
+
'/_authed/_app/workflows/$wfSlug/': typeof AuthedAppWorkflowsWfSlugIndexRoute
|
|
483
|
+
'/_authed/_app/pipelines/$pipelineId/$runId/': typeof AuthedAppPipelinesPipelineIdRunIdIndexRoute
|
|
484
|
+
}
|
|
485
|
+
export interface FileRouteTypes {
|
|
486
|
+
fileRoutesByFullPath: FileRoutesByFullPath
|
|
487
|
+
fullPaths:
|
|
488
|
+
| '/admin'
|
|
489
|
+
| '/settings'
|
|
490
|
+
| '/catchNotFound'
|
|
491
|
+
| '/embedded'
|
|
492
|
+
| '/no-access'
|
|
493
|
+
| '/no-invite'
|
|
494
|
+
| '/otp'
|
|
495
|
+
| '/sign-in'
|
|
496
|
+
| '/sign-up'
|
|
497
|
+
| '/settings/analytics'
|
|
498
|
+
| '/settings/embed'
|
|
499
|
+
| '/settings/keys'
|
|
500
|
+
| '/settings/members'
|
|
501
|
+
| '/settings/user'
|
|
502
|
+
| '/settings/workspace'
|
|
503
|
+
| '/invite/$inviteId'
|
|
504
|
+
| '/admin/'
|
|
505
|
+
| '/settings/'
|
|
506
|
+
| '/deals/$dealId'
|
|
507
|
+
| '/workflows/$wfSlug'
|
|
508
|
+
| '/feedback/insights'
|
|
509
|
+
| '/reports/$reportId'
|
|
510
|
+
| '/redirects/forms/$id'
|
|
511
|
+
| '/redirects/submissions/$id'
|
|
512
|
+
| '/redirects/workflows/$id'
|
|
513
|
+
| '/'
|
|
514
|
+
| '/agents'
|
|
515
|
+
| '/deals'
|
|
516
|
+
| '/feedback'
|
|
517
|
+
| '/pipelines'
|
|
518
|
+
| '/reports'
|
|
519
|
+
| '/submissions'
|
|
520
|
+
| '/workflows'
|
|
521
|
+
| '/admin/users'
|
|
522
|
+
| '/settings/billing'
|
|
523
|
+
| '/agents/$agentId/config'
|
|
524
|
+
| '/deals/$dealId/$subId'
|
|
525
|
+
| '/workflows/$wfSlug/$formId'
|
|
526
|
+
| '/agents/$agentId'
|
|
527
|
+
| '/deals/$dealId/'
|
|
528
|
+
| '/pipelines/$pipelineId'
|
|
529
|
+
| '/workflows/$wfSlug/'
|
|
530
|
+
| '/pipelines/$pipelineId/$runId'
|
|
531
|
+
fileRoutesByTo: FileRoutesByTo
|
|
532
|
+
to:
|
|
533
|
+
| '/catchNotFound'
|
|
534
|
+
| '/embedded'
|
|
535
|
+
| '/no-access'
|
|
536
|
+
| '/no-invite'
|
|
537
|
+
| '/otp'
|
|
538
|
+
| '/sign-in'
|
|
539
|
+
| '/sign-up'
|
|
540
|
+
| '/settings/analytics'
|
|
541
|
+
| '/settings/embed'
|
|
542
|
+
| '/settings/keys'
|
|
543
|
+
| '/settings/members'
|
|
544
|
+
| '/settings/user'
|
|
545
|
+
| '/settings/workspace'
|
|
546
|
+
| '/invite/$inviteId'
|
|
547
|
+
| '/admin'
|
|
548
|
+
| '/settings'
|
|
549
|
+
| '/feedback/insights'
|
|
550
|
+
| '/reports/$reportId'
|
|
551
|
+
| '/redirects/forms/$id'
|
|
552
|
+
| '/redirects/submissions/$id'
|
|
553
|
+
| '/redirects/workflows/$id'
|
|
554
|
+
| '/'
|
|
555
|
+
| '/agents'
|
|
556
|
+
| '/deals'
|
|
557
|
+
| '/feedback'
|
|
558
|
+
| '/pipelines'
|
|
559
|
+
| '/reports'
|
|
560
|
+
| '/submissions'
|
|
561
|
+
| '/workflows'
|
|
562
|
+
| '/admin/users'
|
|
563
|
+
| '/settings/billing'
|
|
564
|
+
| '/agents/$agentId/config'
|
|
565
|
+
| '/deals/$dealId/$subId'
|
|
566
|
+
| '/workflows/$wfSlug/$formId'
|
|
567
|
+
| '/agents/$agentId'
|
|
568
|
+
| '/deals/$dealId'
|
|
569
|
+
| '/pipelines/$pipelineId'
|
|
570
|
+
| '/workflows/$wfSlug'
|
|
571
|
+
| '/pipelines/$pipelineId/$runId'
|
|
572
|
+
id:
|
|
573
|
+
| '__root__'
|
|
574
|
+
| '/_authed'
|
|
575
|
+
| '/_public'
|
|
576
|
+
| '/_authed/_app'
|
|
577
|
+
| '/_authed/admin'
|
|
578
|
+
| '/_authed/settings'
|
|
579
|
+
| '/_authed/catchNotFound'
|
|
580
|
+
| '/_public/embedded'
|
|
581
|
+
| '/_public/no-access'
|
|
582
|
+
| '/_public/no-invite'
|
|
583
|
+
| '/_public/otp'
|
|
584
|
+
| '/_public/sign-in'
|
|
585
|
+
| '/_public/sign-up'
|
|
586
|
+
| '/_authed/settings/analytics'
|
|
587
|
+
| '/_authed/settings/embed'
|
|
588
|
+
| '/_authed/settings/keys'
|
|
589
|
+
| '/_authed/settings/members'
|
|
590
|
+
| '/_authed/settings/user'
|
|
591
|
+
| '/_authed/settings/workspace'
|
|
592
|
+
| '/_public/invite/$inviteId'
|
|
593
|
+
| '/_authed/admin/'
|
|
594
|
+
| '/_authed/settings/'
|
|
595
|
+
| '/_authed/_app/deals/$dealId'
|
|
596
|
+
| '/_authed/_app/workflows/$wfSlug'
|
|
597
|
+
| '/_authed/_app/feedback/insights'
|
|
598
|
+
| '/_authed/_app/reports/$reportId'
|
|
599
|
+
| '/_authed/redirects/forms/$id'
|
|
600
|
+
| '/_authed/redirects/submissions/$id'
|
|
601
|
+
| '/_authed/redirects/workflows/$id'
|
|
602
|
+
| '/_authed/_app/(dashboard)/'
|
|
603
|
+
| '/_authed/_app/agents/'
|
|
604
|
+
| '/_authed/_app/deals/'
|
|
605
|
+
| '/_authed/_app/feedback/'
|
|
606
|
+
| '/_authed/_app/pipelines/'
|
|
607
|
+
| '/_authed/_app/reports/'
|
|
608
|
+
| '/_authed/_app/submissions/'
|
|
609
|
+
| '/_authed/_app/workflows/'
|
|
610
|
+
| '/_authed/admin/users/'
|
|
611
|
+
| '/_authed/settings/billing/'
|
|
612
|
+
| '/_authed/_app/agents/$agentId/config'
|
|
613
|
+
| '/_authed/_app/deals/$dealId/$subId'
|
|
614
|
+
| '/_authed/_app/workflows/$wfSlug/$formId'
|
|
615
|
+
| '/_authed/_app/agents/$agentId/'
|
|
616
|
+
| '/_authed/_app/deals/$dealId/'
|
|
617
|
+
| '/_authed/_app/pipelines/$pipelineId/'
|
|
618
|
+
| '/_authed/_app/workflows/$wfSlug/'
|
|
619
|
+
| '/_authed/_app/pipelines/$pipelineId/$runId/'
|
|
620
|
+
fileRoutesById: FileRoutesById
|
|
621
|
+
}
|
|
622
|
+
export interface RootRouteChildren {
|
|
623
|
+
AuthedRouteRoute: typeof AuthedRouteRouteWithChildren
|
|
624
|
+
PublicRouteRoute: typeof PublicRouteRouteWithChildren
|
|
625
|
+
}
|
|
626
|
+
export interface FileServerRoutesByFullPath {
|
|
627
|
+
'/api/auth/$': typeof ApiAuthSplatServerRoute
|
|
628
|
+
'/api/billing/paid': typeof ApiBillingPaidServerRoute
|
|
629
|
+
'/api/billing/webhooks': typeof ApiBillingWebhooksServerRoute
|
|
630
|
+
'/api/chat/agent': typeof ApiChatAgentServerRoute
|
|
631
|
+
'/api/chat/key': typeof ApiChatKeyServerRoute
|
|
632
|
+
'/api/chat/member': typeof ApiChatMemberServerRoute
|
|
633
|
+
'/api/test': typeof ApiTestIndexServerRoute
|
|
634
|
+
}
|
|
635
|
+
export interface FileServerRoutesByTo {
|
|
636
|
+
'/api/auth/$': typeof ApiAuthSplatServerRoute
|
|
637
|
+
'/api/billing/paid': typeof ApiBillingPaidServerRoute
|
|
638
|
+
'/api/billing/webhooks': typeof ApiBillingWebhooksServerRoute
|
|
639
|
+
'/api/chat/agent': typeof ApiChatAgentServerRoute
|
|
640
|
+
'/api/chat/key': typeof ApiChatKeyServerRoute
|
|
641
|
+
'/api/chat/member': typeof ApiChatMemberServerRoute
|
|
642
|
+
'/api/test': typeof ApiTestIndexServerRoute
|
|
643
|
+
}
|
|
644
|
+
export interface FileServerRoutesById {
|
|
645
|
+
__root__: typeof rootServerRouteImport
|
|
646
|
+
'/api/auth/$': typeof ApiAuthSplatServerRoute
|
|
647
|
+
'/api/billing/paid': typeof ApiBillingPaidServerRoute
|
|
648
|
+
'/api/billing/webhooks': typeof ApiBillingWebhooksServerRoute
|
|
649
|
+
'/api/chat/agent': typeof ApiChatAgentServerRoute
|
|
650
|
+
'/api/chat/key': typeof ApiChatKeyServerRoute
|
|
651
|
+
'/api/chat/member': typeof ApiChatMemberServerRoute
|
|
652
|
+
'/api/test/': typeof ApiTestIndexServerRoute
|
|
653
|
+
}
|
|
654
|
+
export interface FileServerRouteTypes {
|
|
655
|
+
fileServerRoutesByFullPath: FileServerRoutesByFullPath
|
|
656
|
+
fullPaths:
|
|
657
|
+
| '/api/auth/$'
|
|
658
|
+
| '/api/billing/paid'
|
|
659
|
+
| '/api/billing/webhooks'
|
|
660
|
+
| '/api/chat/agent'
|
|
661
|
+
| '/api/chat/key'
|
|
662
|
+
| '/api/chat/member'
|
|
663
|
+
| '/api/test'
|
|
664
|
+
fileServerRoutesByTo: FileServerRoutesByTo
|
|
665
|
+
to:
|
|
666
|
+
| '/api/auth/$'
|
|
667
|
+
| '/api/billing/paid'
|
|
668
|
+
| '/api/billing/webhooks'
|
|
669
|
+
| '/api/chat/agent'
|
|
670
|
+
| '/api/chat/key'
|
|
671
|
+
| '/api/chat/member'
|
|
672
|
+
| '/api/test'
|
|
673
|
+
id:
|
|
674
|
+
| '__root__'
|
|
675
|
+
| '/api/auth/$'
|
|
676
|
+
| '/api/billing/paid'
|
|
677
|
+
| '/api/billing/webhooks'
|
|
678
|
+
| '/api/chat/agent'
|
|
679
|
+
| '/api/chat/key'
|
|
680
|
+
| '/api/chat/member'
|
|
681
|
+
| '/api/test/'
|
|
682
|
+
fileServerRoutesById: FileServerRoutesById
|
|
683
|
+
}
|
|
684
|
+
export interface RootServerRouteChildren {
|
|
685
|
+
ApiAuthSplatServerRoute: typeof ApiAuthSplatServerRoute
|
|
686
|
+
ApiBillingPaidServerRoute: typeof ApiBillingPaidServerRoute
|
|
687
|
+
ApiBillingWebhooksServerRoute: typeof ApiBillingWebhooksServerRoute
|
|
688
|
+
ApiChatAgentServerRoute: typeof ApiChatAgentServerRoute
|
|
689
|
+
ApiChatKeyServerRoute: typeof ApiChatKeyServerRoute
|
|
690
|
+
ApiChatMemberServerRoute: typeof ApiChatMemberServerRoute
|
|
691
|
+
ApiTestIndexServerRoute: typeof ApiTestIndexServerRoute
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
declare module '@tanstack/react-router' {
|
|
695
|
+
interface FileRoutesByPath {
|
|
696
|
+
'/_public': {
|
|
697
|
+
id: '/_public'
|
|
698
|
+
path: ''
|
|
699
|
+
fullPath: ''
|
|
700
|
+
preLoaderRoute: typeof PublicRouteRouteImport
|
|
701
|
+
parentRoute: typeof rootRouteImport
|
|
702
|
+
}
|
|
703
|
+
'/_authed': {
|
|
704
|
+
id: '/_authed'
|
|
705
|
+
path: ''
|
|
706
|
+
fullPath: ''
|
|
707
|
+
preLoaderRoute: typeof AuthedRouteRouteImport
|
|
708
|
+
parentRoute: typeof rootRouteImport
|
|
709
|
+
}
|
|
710
|
+
'/_public/sign-up': {
|
|
711
|
+
id: '/_public/sign-up'
|
|
712
|
+
path: '/sign-up'
|
|
713
|
+
fullPath: '/sign-up'
|
|
714
|
+
preLoaderRoute: typeof PublicSignUpRouteImport
|
|
715
|
+
parentRoute: typeof PublicRouteRoute
|
|
716
|
+
}
|
|
717
|
+
'/_public/sign-in': {
|
|
718
|
+
id: '/_public/sign-in'
|
|
719
|
+
path: '/sign-in'
|
|
720
|
+
fullPath: '/sign-in'
|
|
721
|
+
preLoaderRoute: typeof PublicSignInRouteImport
|
|
722
|
+
parentRoute: typeof PublicRouteRoute
|
|
723
|
+
}
|
|
724
|
+
'/_public/otp': {
|
|
725
|
+
id: '/_public/otp'
|
|
726
|
+
path: '/otp'
|
|
727
|
+
fullPath: '/otp'
|
|
728
|
+
preLoaderRoute: typeof PublicOtpRouteImport
|
|
729
|
+
parentRoute: typeof PublicRouteRoute
|
|
730
|
+
}
|
|
731
|
+
'/_public/no-invite': {
|
|
732
|
+
id: '/_public/no-invite'
|
|
733
|
+
path: '/no-invite'
|
|
734
|
+
fullPath: '/no-invite'
|
|
735
|
+
preLoaderRoute: typeof PublicNoInviteRouteImport
|
|
736
|
+
parentRoute: typeof PublicRouteRoute
|
|
737
|
+
}
|
|
738
|
+
'/_public/no-access': {
|
|
739
|
+
id: '/_public/no-access'
|
|
740
|
+
path: '/no-access'
|
|
741
|
+
fullPath: '/no-access'
|
|
742
|
+
preLoaderRoute: typeof PublicNoAccessRouteImport
|
|
743
|
+
parentRoute: typeof PublicRouteRoute
|
|
744
|
+
}
|
|
745
|
+
'/_public/embedded': {
|
|
746
|
+
id: '/_public/embedded'
|
|
747
|
+
path: '/embedded'
|
|
748
|
+
fullPath: '/embedded'
|
|
749
|
+
preLoaderRoute: typeof PublicEmbeddedRouteImport
|
|
750
|
+
parentRoute: typeof PublicRouteRoute
|
|
751
|
+
}
|
|
752
|
+
'/_authed/catchNotFound': {
|
|
753
|
+
id: '/_authed/catchNotFound'
|
|
754
|
+
path: '/catchNotFound'
|
|
755
|
+
fullPath: '/catchNotFound'
|
|
756
|
+
preLoaderRoute: typeof AuthedCatchNotFoundRouteImport
|
|
757
|
+
parentRoute: typeof AuthedRouteRoute
|
|
758
|
+
}
|
|
759
|
+
'/_authed/settings': {
|
|
760
|
+
id: '/_authed/settings'
|
|
761
|
+
path: '/settings'
|
|
762
|
+
fullPath: '/settings'
|
|
763
|
+
preLoaderRoute: typeof AuthedSettingsRouteRouteImport
|
|
764
|
+
parentRoute: typeof AuthedRouteRoute
|
|
765
|
+
}
|
|
766
|
+
'/_authed/admin': {
|
|
767
|
+
id: '/_authed/admin'
|
|
768
|
+
path: '/admin'
|
|
769
|
+
fullPath: '/admin'
|
|
770
|
+
preLoaderRoute: typeof AuthedAdminRouteRouteImport
|
|
771
|
+
parentRoute: typeof AuthedRouteRoute
|
|
772
|
+
}
|
|
773
|
+
'/_authed/_app': {
|
|
774
|
+
id: '/_authed/_app'
|
|
775
|
+
path: ''
|
|
776
|
+
fullPath: ''
|
|
777
|
+
preLoaderRoute: typeof AuthedAppRouteRouteImport
|
|
778
|
+
parentRoute: typeof AuthedRouteRoute
|
|
779
|
+
}
|
|
780
|
+
'/_authed/settings/': {
|
|
781
|
+
id: '/_authed/settings/'
|
|
782
|
+
path: '/'
|
|
783
|
+
fullPath: '/settings/'
|
|
784
|
+
preLoaderRoute: typeof AuthedSettingsIndexRouteImport
|
|
785
|
+
parentRoute: typeof AuthedSettingsRouteRoute
|
|
786
|
+
}
|
|
787
|
+
'/_authed/admin/': {
|
|
788
|
+
id: '/_authed/admin/'
|
|
789
|
+
path: '/'
|
|
790
|
+
fullPath: '/admin/'
|
|
791
|
+
preLoaderRoute: typeof AuthedAdminIndexRouteImport
|
|
792
|
+
parentRoute: typeof AuthedAdminRouteRoute
|
|
793
|
+
}
|
|
794
|
+
'/_public/invite/$inviteId': {
|
|
795
|
+
id: '/_public/invite/$inviteId'
|
|
796
|
+
path: '/invite/$inviteId'
|
|
797
|
+
fullPath: '/invite/$inviteId'
|
|
798
|
+
preLoaderRoute: typeof PublicInviteInviteIdRouteImport
|
|
799
|
+
parentRoute: typeof PublicRouteRoute
|
|
800
|
+
}
|
|
801
|
+
'/_authed/settings/workspace': {
|
|
802
|
+
id: '/_authed/settings/workspace'
|
|
803
|
+
path: '/workspace'
|
|
804
|
+
fullPath: '/settings/workspace'
|
|
805
|
+
preLoaderRoute: typeof AuthedSettingsWorkspaceRouteImport
|
|
806
|
+
parentRoute: typeof AuthedSettingsRouteRoute
|
|
807
|
+
}
|
|
808
|
+
'/_authed/settings/user': {
|
|
809
|
+
id: '/_authed/settings/user'
|
|
810
|
+
path: '/user'
|
|
811
|
+
fullPath: '/settings/user'
|
|
812
|
+
preLoaderRoute: typeof AuthedSettingsUserRouteImport
|
|
813
|
+
parentRoute: typeof AuthedSettingsRouteRoute
|
|
814
|
+
}
|
|
815
|
+
'/_authed/settings/members': {
|
|
816
|
+
id: '/_authed/settings/members'
|
|
817
|
+
path: '/members'
|
|
818
|
+
fullPath: '/settings/members'
|
|
819
|
+
preLoaderRoute: typeof AuthedSettingsMembersRouteImport
|
|
820
|
+
parentRoute: typeof AuthedSettingsRouteRoute
|
|
821
|
+
}
|
|
822
|
+
'/_authed/settings/keys': {
|
|
823
|
+
id: '/_authed/settings/keys'
|
|
824
|
+
path: '/keys'
|
|
825
|
+
fullPath: '/settings/keys'
|
|
826
|
+
preLoaderRoute: typeof AuthedSettingsKeysRouteImport
|
|
827
|
+
parentRoute: typeof AuthedSettingsRouteRoute
|
|
828
|
+
}
|
|
829
|
+
'/_authed/settings/embed': {
|
|
830
|
+
id: '/_authed/settings/embed'
|
|
831
|
+
path: '/embed'
|
|
832
|
+
fullPath: '/settings/embed'
|
|
833
|
+
preLoaderRoute: typeof AuthedSettingsEmbedRouteImport
|
|
834
|
+
parentRoute: typeof AuthedSettingsRouteRoute
|
|
835
|
+
}
|
|
836
|
+
'/_authed/settings/analytics': {
|
|
837
|
+
id: '/_authed/settings/analytics'
|
|
838
|
+
path: '/analytics'
|
|
839
|
+
fullPath: '/settings/analytics'
|
|
840
|
+
preLoaderRoute: typeof AuthedSettingsAnalyticsRouteImport
|
|
841
|
+
parentRoute: typeof AuthedSettingsRouteRoute
|
|
842
|
+
}
|
|
843
|
+
'/_authed/settings/billing/': {
|
|
844
|
+
id: '/_authed/settings/billing/'
|
|
845
|
+
path: '/billing'
|
|
846
|
+
fullPath: '/settings/billing'
|
|
847
|
+
preLoaderRoute: typeof AuthedSettingsBillingIndexRouteImport
|
|
848
|
+
parentRoute: typeof AuthedSettingsRouteRoute
|
|
849
|
+
}
|
|
850
|
+
'/_authed/admin/users/': {
|
|
851
|
+
id: '/_authed/admin/users/'
|
|
852
|
+
path: '/users'
|
|
853
|
+
fullPath: '/admin/users'
|
|
854
|
+
preLoaderRoute: typeof AuthedAdminUsersIndexRouteImport
|
|
855
|
+
parentRoute: typeof AuthedAdminRouteRoute
|
|
856
|
+
}
|
|
857
|
+
'/_authed/_app/workflows/': {
|
|
858
|
+
id: '/_authed/_app/workflows/'
|
|
859
|
+
path: '/workflows'
|
|
860
|
+
fullPath: '/workflows'
|
|
861
|
+
preLoaderRoute: typeof AuthedAppWorkflowsIndexRouteImport
|
|
862
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
863
|
+
}
|
|
864
|
+
'/_authed/_app/submissions/': {
|
|
865
|
+
id: '/_authed/_app/submissions/'
|
|
866
|
+
path: '/submissions'
|
|
867
|
+
fullPath: '/submissions'
|
|
868
|
+
preLoaderRoute: typeof AuthedAppSubmissionsIndexRouteImport
|
|
869
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
870
|
+
}
|
|
871
|
+
'/_authed/_app/reports/': {
|
|
872
|
+
id: '/_authed/_app/reports/'
|
|
873
|
+
path: '/reports'
|
|
874
|
+
fullPath: '/reports'
|
|
875
|
+
preLoaderRoute: typeof AuthedAppReportsIndexRouteImport
|
|
876
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
877
|
+
}
|
|
878
|
+
'/_authed/_app/pipelines/': {
|
|
879
|
+
id: '/_authed/_app/pipelines/'
|
|
880
|
+
path: '/pipelines'
|
|
881
|
+
fullPath: '/pipelines'
|
|
882
|
+
preLoaderRoute: typeof AuthedAppPipelinesIndexRouteImport
|
|
883
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
884
|
+
}
|
|
885
|
+
'/_authed/_app/feedback/': {
|
|
886
|
+
id: '/_authed/_app/feedback/'
|
|
887
|
+
path: '/feedback'
|
|
888
|
+
fullPath: '/feedback'
|
|
889
|
+
preLoaderRoute: typeof AuthedAppFeedbackIndexRouteImport
|
|
890
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
891
|
+
}
|
|
892
|
+
'/_authed/_app/deals/': {
|
|
893
|
+
id: '/_authed/_app/deals/'
|
|
894
|
+
path: '/deals'
|
|
895
|
+
fullPath: '/deals'
|
|
896
|
+
preLoaderRoute: typeof AuthedAppDealsIndexRouteImport
|
|
897
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
898
|
+
}
|
|
899
|
+
'/_authed/_app/agents/': {
|
|
900
|
+
id: '/_authed/_app/agents/'
|
|
901
|
+
path: '/agents'
|
|
902
|
+
fullPath: '/agents'
|
|
903
|
+
preLoaderRoute: typeof AuthedAppAgentsIndexRouteImport
|
|
904
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
905
|
+
}
|
|
906
|
+
'/_authed/_app/(dashboard)/': {
|
|
907
|
+
id: '/_authed/_app/(dashboard)/'
|
|
908
|
+
path: '/'
|
|
909
|
+
fullPath: '/'
|
|
910
|
+
preLoaderRoute: typeof AuthedAppdashboardIndexRouteImport
|
|
911
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
912
|
+
}
|
|
913
|
+
'/_authed/redirects/workflows/$id': {
|
|
914
|
+
id: '/_authed/redirects/workflows/$id'
|
|
915
|
+
path: '/redirects/workflows/$id'
|
|
916
|
+
fullPath: '/redirects/workflows/$id'
|
|
917
|
+
preLoaderRoute: typeof AuthedRedirectsWorkflowsIdRouteImport
|
|
918
|
+
parentRoute: typeof AuthedRouteRoute
|
|
919
|
+
}
|
|
920
|
+
'/_authed/redirects/submissions/$id': {
|
|
921
|
+
id: '/_authed/redirects/submissions/$id'
|
|
922
|
+
path: '/redirects/submissions/$id'
|
|
923
|
+
fullPath: '/redirects/submissions/$id'
|
|
924
|
+
preLoaderRoute: typeof AuthedRedirectsSubmissionsIdRouteImport
|
|
925
|
+
parentRoute: typeof AuthedRouteRoute
|
|
926
|
+
}
|
|
927
|
+
'/_authed/redirects/forms/$id': {
|
|
928
|
+
id: '/_authed/redirects/forms/$id'
|
|
929
|
+
path: '/redirects/forms/$id'
|
|
930
|
+
fullPath: '/redirects/forms/$id'
|
|
931
|
+
preLoaderRoute: typeof AuthedRedirectsFormsIdRouteImport
|
|
932
|
+
parentRoute: typeof AuthedRouteRoute
|
|
933
|
+
}
|
|
934
|
+
'/_authed/_app/reports/$reportId': {
|
|
935
|
+
id: '/_authed/_app/reports/$reportId'
|
|
936
|
+
path: '/reports/$reportId'
|
|
937
|
+
fullPath: '/reports/$reportId'
|
|
938
|
+
preLoaderRoute: typeof AuthedAppReportsReportIdRouteImport
|
|
939
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
940
|
+
}
|
|
941
|
+
'/_authed/_app/feedback/insights': {
|
|
942
|
+
id: '/_authed/_app/feedback/insights'
|
|
943
|
+
path: '/feedback/insights'
|
|
944
|
+
fullPath: '/feedback/insights'
|
|
945
|
+
preLoaderRoute: typeof AuthedAppFeedbackInsightsRouteImport
|
|
946
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
947
|
+
}
|
|
948
|
+
'/_authed/_app/workflows/$wfSlug': {
|
|
949
|
+
id: '/_authed/_app/workflows/$wfSlug'
|
|
950
|
+
path: '/workflows/$wfSlug'
|
|
951
|
+
fullPath: '/workflows/$wfSlug'
|
|
952
|
+
preLoaderRoute: typeof AuthedAppWorkflowsWfSlugRouteRouteImport
|
|
953
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
954
|
+
}
|
|
955
|
+
'/_authed/_app/deals/$dealId': {
|
|
956
|
+
id: '/_authed/_app/deals/$dealId'
|
|
957
|
+
path: '/deals/$dealId'
|
|
958
|
+
fullPath: '/deals/$dealId'
|
|
959
|
+
preLoaderRoute: typeof AuthedAppDealsDealIdRouteRouteImport
|
|
960
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
961
|
+
}
|
|
962
|
+
'/_authed/_app/workflows/$wfSlug/': {
|
|
963
|
+
id: '/_authed/_app/workflows/$wfSlug/'
|
|
964
|
+
path: '/'
|
|
965
|
+
fullPath: '/workflows/$wfSlug/'
|
|
966
|
+
preLoaderRoute: typeof AuthedAppWorkflowsWfSlugIndexRouteImport
|
|
967
|
+
parentRoute: typeof AuthedAppWorkflowsWfSlugRouteRoute
|
|
968
|
+
}
|
|
969
|
+
'/_authed/_app/pipelines/$pipelineId/': {
|
|
970
|
+
id: '/_authed/_app/pipelines/$pipelineId/'
|
|
971
|
+
path: '/pipelines/$pipelineId'
|
|
972
|
+
fullPath: '/pipelines/$pipelineId'
|
|
973
|
+
preLoaderRoute: typeof AuthedAppPipelinesPipelineIdIndexRouteImport
|
|
974
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
975
|
+
}
|
|
976
|
+
'/_authed/_app/deals/$dealId/': {
|
|
977
|
+
id: '/_authed/_app/deals/$dealId/'
|
|
978
|
+
path: '/'
|
|
979
|
+
fullPath: '/deals/$dealId/'
|
|
980
|
+
preLoaderRoute: typeof AuthedAppDealsDealIdIndexRouteImport
|
|
981
|
+
parentRoute: typeof AuthedAppDealsDealIdRouteRoute
|
|
982
|
+
}
|
|
983
|
+
'/_authed/_app/agents/$agentId/': {
|
|
984
|
+
id: '/_authed/_app/agents/$agentId/'
|
|
985
|
+
path: '/agents/$agentId'
|
|
986
|
+
fullPath: '/agents/$agentId'
|
|
987
|
+
preLoaderRoute: typeof AuthedAppAgentsAgentIdIndexRouteImport
|
|
988
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
989
|
+
}
|
|
990
|
+
'/_authed/_app/workflows/$wfSlug/$formId': {
|
|
991
|
+
id: '/_authed/_app/workflows/$wfSlug/$formId'
|
|
992
|
+
path: '/$formId'
|
|
993
|
+
fullPath: '/workflows/$wfSlug/$formId'
|
|
994
|
+
preLoaderRoute: typeof AuthedAppWorkflowsWfSlugFormIdRouteImport
|
|
995
|
+
parentRoute: typeof AuthedAppWorkflowsWfSlugRouteRoute
|
|
996
|
+
}
|
|
997
|
+
'/_authed/_app/deals/$dealId/$subId': {
|
|
998
|
+
id: '/_authed/_app/deals/$dealId/$subId'
|
|
999
|
+
path: '/$subId'
|
|
1000
|
+
fullPath: '/deals/$dealId/$subId'
|
|
1001
|
+
preLoaderRoute: typeof AuthedAppDealsDealIdSubIdRouteImport
|
|
1002
|
+
parentRoute: typeof AuthedAppDealsDealIdRouteRoute
|
|
1003
|
+
}
|
|
1004
|
+
'/_authed/_app/agents/$agentId/config': {
|
|
1005
|
+
id: '/_authed/_app/agents/$agentId/config'
|
|
1006
|
+
path: '/agents/$agentId/config'
|
|
1007
|
+
fullPath: '/agents/$agentId/config'
|
|
1008
|
+
preLoaderRoute: typeof AuthedAppAgentsAgentIdConfigRouteImport
|
|
1009
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
1010
|
+
}
|
|
1011
|
+
'/_authed/_app/pipelines/$pipelineId/$runId/': {
|
|
1012
|
+
id: '/_authed/_app/pipelines/$pipelineId/$runId/'
|
|
1013
|
+
path: '/pipelines/$pipelineId/$runId'
|
|
1014
|
+
fullPath: '/pipelines/$pipelineId/$runId'
|
|
1015
|
+
preLoaderRoute: typeof AuthedAppPipelinesPipelineIdRunIdIndexRouteImport
|
|
1016
|
+
parentRoute: typeof AuthedAppRouteRoute
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
declare module '@tanstack/react-start/server' {
|
|
1021
|
+
interface ServerFileRoutesByPath {
|
|
1022
|
+
'/api/test/': {
|
|
1023
|
+
id: '/api/test/'
|
|
1024
|
+
path: '/api/test'
|
|
1025
|
+
fullPath: '/api/test'
|
|
1026
|
+
preLoaderRoute: typeof ApiTestIndexServerRouteImport
|
|
1027
|
+
parentRoute: typeof rootServerRouteImport
|
|
1028
|
+
}
|
|
1029
|
+
'/api/chat/member': {
|
|
1030
|
+
id: '/api/chat/member'
|
|
1031
|
+
path: '/api/chat/member'
|
|
1032
|
+
fullPath: '/api/chat/member'
|
|
1033
|
+
preLoaderRoute: typeof ApiChatMemberServerRouteImport
|
|
1034
|
+
parentRoute: typeof rootServerRouteImport
|
|
1035
|
+
}
|
|
1036
|
+
'/api/chat/key': {
|
|
1037
|
+
id: '/api/chat/key'
|
|
1038
|
+
path: '/api/chat/key'
|
|
1039
|
+
fullPath: '/api/chat/key'
|
|
1040
|
+
preLoaderRoute: typeof ApiChatKeyServerRouteImport
|
|
1041
|
+
parentRoute: typeof rootServerRouteImport
|
|
1042
|
+
}
|
|
1043
|
+
'/api/chat/agent': {
|
|
1044
|
+
id: '/api/chat/agent'
|
|
1045
|
+
path: '/api/chat/agent'
|
|
1046
|
+
fullPath: '/api/chat/agent'
|
|
1047
|
+
preLoaderRoute: typeof ApiChatAgentServerRouteImport
|
|
1048
|
+
parentRoute: typeof rootServerRouteImport
|
|
1049
|
+
}
|
|
1050
|
+
'/api/billing/webhooks': {
|
|
1051
|
+
id: '/api/billing/webhooks'
|
|
1052
|
+
path: '/api/billing/webhooks'
|
|
1053
|
+
fullPath: '/api/billing/webhooks'
|
|
1054
|
+
preLoaderRoute: typeof ApiBillingWebhooksServerRouteImport
|
|
1055
|
+
parentRoute: typeof rootServerRouteImport
|
|
1056
|
+
}
|
|
1057
|
+
'/api/billing/paid': {
|
|
1058
|
+
id: '/api/billing/paid'
|
|
1059
|
+
path: '/api/billing/paid'
|
|
1060
|
+
fullPath: '/api/billing/paid'
|
|
1061
|
+
preLoaderRoute: typeof ApiBillingPaidServerRouteImport
|
|
1062
|
+
parentRoute: typeof rootServerRouteImport
|
|
1063
|
+
}
|
|
1064
|
+
'/api/auth/$': {
|
|
1065
|
+
id: '/api/auth/$'
|
|
1066
|
+
path: '/api/auth/$'
|
|
1067
|
+
fullPath: '/api/auth/$'
|
|
1068
|
+
preLoaderRoute: typeof ApiAuthSplatServerRouteImport
|
|
1069
|
+
parentRoute: typeof rootServerRouteImport
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
interface AuthedAppDealsDealIdRouteRouteChildren {
|
|
1075
|
+
AuthedAppDealsDealIdSubIdRoute: typeof AuthedAppDealsDealIdSubIdRoute
|
|
1076
|
+
AuthedAppDealsDealIdIndexRoute: typeof AuthedAppDealsDealIdIndexRoute
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
const AuthedAppDealsDealIdRouteRouteChildren: AuthedAppDealsDealIdRouteRouteChildren =
|
|
1080
|
+
{
|
|
1081
|
+
AuthedAppDealsDealIdSubIdRoute: AuthedAppDealsDealIdSubIdRoute,
|
|
1082
|
+
AuthedAppDealsDealIdIndexRoute: AuthedAppDealsDealIdIndexRoute,
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
const AuthedAppDealsDealIdRouteRouteWithChildren =
|
|
1086
|
+
AuthedAppDealsDealIdRouteRoute._addFileChildren(
|
|
1087
|
+
AuthedAppDealsDealIdRouteRouteChildren,
|
|
1088
|
+
)
|
|
1089
|
+
|
|
1090
|
+
interface AuthedAppWorkflowsWfSlugRouteRouteChildren {
|
|
1091
|
+
AuthedAppWorkflowsWfSlugFormIdRoute: typeof AuthedAppWorkflowsWfSlugFormIdRoute
|
|
1092
|
+
AuthedAppWorkflowsWfSlugIndexRoute: typeof AuthedAppWorkflowsWfSlugIndexRoute
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
const AuthedAppWorkflowsWfSlugRouteRouteChildren: AuthedAppWorkflowsWfSlugRouteRouteChildren =
|
|
1096
|
+
{
|
|
1097
|
+
AuthedAppWorkflowsWfSlugFormIdRoute: AuthedAppWorkflowsWfSlugFormIdRoute,
|
|
1098
|
+
AuthedAppWorkflowsWfSlugIndexRoute: AuthedAppWorkflowsWfSlugIndexRoute,
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
const AuthedAppWorkflowsWfSlugRouteRouteWithChildren =
|
|
1102
|
+
AuthedAppWorkflowsWfSlugRouteRoute._addFileChildren(
|
|
1103
|
+
AuthedAppWorkflowsWfSlugRouteRouteChildren,
|
|
1104
|
+
)
|
|
1105
|
+
|
|
1106
|
+
interface AuthedAppRouteRouteChildren {
|
|
1107
|
+
AuthedAppDealsDealIdRouteRoute: typeof AuthedAppDealsDealIdRouteRouteWithChildren
|
|
1108
|
+
AuthedAppWorkflowsWfSlugRouteRoute: typeof AuthedAppWorkflowsWfSlugRouteRouteWithChildren
|
|
1109
|
+
AuthedAppFeedbackInsightsRoute: typeof AuthedAppFeedbackInsightsRoute
|
|
1110
|
+
AuthedAppReportsReportIdRoute: typeof AuthedAppReportsReportIdRoute
|
|
1111
|
+
AuthedAppdashboardIndexRoute: typeof AuthedAppdashboardIndexRoute
|
|
1112
|
+
AuthedAppAgentsIndexRoute: typeof AuthedAppAgentsIndexRoute
|
|
1113
|
+
AuthedAppDealsIndexRoute: typeof AuthedAppDealsIndexRoute
|
|
1114
|
+
AuthedAppFeedbackIndexRoute: typeof AuthedAppFeedbackIndexRoute
|
|
1115
|
+
AuthedAppPipelinesIndexRoute: typeof AuthedAppPipelinesIndexRoute
|
|
1116
|
+
AuthedAppReportsIndexRoute: typeof AuthedAppReportsIndexRoute
|
|
1117
|
+
AuthedAppSubmissionsIndexRoute: typeof AuthedAppSubmissionsIndexRoute
|
|
1118
|
+
AuthedAppWorkflowsIndexRoute: typeof AuthedAppWorkflowsIndexRoute
|
|
1119
|
+
AuthedAppAgentsAgentIdConfigRoute: typeof AuthedAppAgentsAgentIdConfigRoute
|
|
1120
|
+
AuthedAppAgentsAgentIdIndexRoute: typeof AuthedAppAgentsAgentIdIndexRoute
|
|
1121
|
+
AuthedAppPipelinesPipelineIdIndexRoute: typeof AuthedAppPipelinesPipelineIdIndexRoute
|
|
1122
|
+
AuthedAppPipelinesPipelineIdRunIdIndexRoute: typeof AuthedAppPipelinesPipelineIdRunIdIndexRoute
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
const AuthedAppRouteRouteChildren: AuthedAppRouteRouteChildren = {
|
|
1126
|
+
AuthedAppDealsDealIdRouteRoute: AuthedAppDealsDealIdRouteRouteWithChildren,
|
|
1127
|
+
AuthedAppWorkflowsWfSlugRouteRoute:
|
|
1128
|
+
AuthedAppWorkflowsWfSlugRouteRouteWithChildren,
|
|
1129
|
+
AuthedAppFeedbackInsightsRoute: AuthedAppFeedbackInsightsRoute,
|
|
1130
|
+
AuthedAppReportsReportIdRoute: AuthedAppReportsReportIdRoute,
|
|
1131
|
+
AuthedAppdashboardIndexRoute: AuthedAppdashboardIndexRoute,
|
|
1132
|
+
AuthedAppAgentsIndexRoute: AuthedAppAgentsIndexRoute,
|
|
1133
|
+
AuthedAppDealsIndexRoute: AuthedAppDealsIndexRoute,
|
|
1134
|
+
AuthedAppFeedbackIndexRoute: AuthedAppFeedbackIndexRoute,
|
|
1135
|
+
AuthedAppPipelinesIndexRoute: AuthedAppPipelinesIndexRoute,
|
|
1136
|
+
AuthedAppReportsIndexRoute: AuthedAppReportsIndexRoute,
|
|
1137
|
+
AuthedAppSubmissionsIndexRoute: AuthedAppSubmissionsIndexRoute,
|
|
1138
|
+
AuthedAppWorkflowsIndexRoute: AuthedAppWorkflowsIndexRoute,
|
|
1139
|
+
AuthedAppAgentsAgentIdConfigRoute: AuthedAppAgentsAgentIdConfigRoute,
|
|
1140
|
+
AuthedAppAgentsAgentIdIndexRoute: AuthedAppAgentsAgentIdIndexRoute,
|
|
1141
|
+
AuthedAppPipelinesPipelineIdIndexRoute:
|
|
1142
|
+
AuthedAppPipelinesPipelineIdIndexRoute,
|
|
1143
|
+
AuthedAppPipelinesPipelineIdRunIdIndexRoute:
|
|
1144
|
+
AuthedAppPipelinesPipelineIdRunIdIndexRoute,
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
const AuthedAppRouteRouteWithChildren = AuthedAppRouteRoute._addFileChildren(
|
|
1148
|
+
AuthedAppRouteRouteChildren,
|
|
1149
|
+
)
|
|
1150
|
+
|
|
1151
|
+
interface AuthedAdminRouteRouteChildren {
|
|
1152
|
+
AuthedAdminIndexRoute: typeof AuthedAdminIndexRoute
|
|
1153
|
+
AuthedAdminUsersIndexRoute: typeof AuthedAdminUsersIndexRoute
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
const AuthedAdminRouteRouteChildren: AuthedAdminRouteRouteChildren = {
|
|
1157
|
+
AuthedAdminIndexRoute: AuthedAdminIndexRoute,
|
|
1158
|
+
AuthedAdminUsersIndexRoute: AuthedAdminUsersIndexRoute,
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
const AuthedAdminRouteRouteWithChildren =
|
|
1162
|
+
AuthedAdminRouteRoute._addFileChildren(AuthedAdminRouteRouteChildren)
|
|
1163
|
+
|
|
1164
|
+
interface AuthedSettingsRouteRouteChildren {
|
|
1165
|
+
AuthedSettingsAnalyticsRoute: typeof AuthedSettingsAnalyticsRoute
|
|
1166
|
+
AuthedSettingsEmbedRoute: typeof AuthedSettingsEmbedRoute
|
|
1167
|
+
AuthedSettingsKeysRoute: typeof AuthedSettingsKeysRoute
|
|
1168
|
+
AuthedSettingsMembersRoute: typeof AuthedSettingsMembersRoute
|
|
1169
|
+
AuthedSettingsUserRoute: typeof AuthedSettingsUserRoute
|
|
1170
|
+
AuthedSettingsWorkspaceRoute: typeof AuthedSettingsWorkspaceRoute
|
|
1171
|
+
AuthedSettingsIndexRoute: typeof AuthedSettingsIndexRoute
|
|
1172
|
+
AuthedSettingsBillingIndexRoute: typeof AuthedSettingsBillingIndexRoute
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
const AuthedSettingsRouteRouteChildren: AuthedSettingsRouteRouteChildren = {
|
|
1176
|
+
AuthedSettingsAnalyticsRoute: AuthedSettingsAnalyticsRoute,
|
|
1177
|
+
AuthedSettingsEmbedRoute: AuthedSettingsEmbedRoute,
|
|
1178
|
+
AuthedSettingsKeysRoute: AuthedSettingsKeysRoute,
|
|
1179
|
+
AuthedSettingsMembersRoute: AuthedSettingsMembersRoute,
|
|
1180
|
+
AuthedSettingsUserRoute: AuthedSettingsUserRoute,
|
|
1181
|
+
AuthedSettingsWorkspaceRoute: AuthedSettingsWorkspaceRoute,
|
|
1182
|
+
AuthedSettingsIndexRoute: AuthedSettingsIndexRoute,
|
|
1183
|
+
AuthedSettingsBillingIndexRoute: AuthedSettingsBillingIndexRoute,
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
const AuthedSettingsRouteRouteWithChildren =
|
|
1187
|
+
AuthedSettingsRouteRoute._addFileChildren(AuthedSettingsRouteRouteChildren)
|
|
1188
|
+
|
|
1189
|
+
interface AuthedRouteRouteChildren {
|
|
1190
|
+
AuthedAppRouteRoute: typeof AuthedAppRouteRouteWithChildren
|
|
1191
|
+
AuthedAdminRouteRoute: typeof AuthedAdminRouteRouteWithChildren
|
|
1192
|
+
AuthedSettingsRouteRoute: typeof AuthedSettingsRouteRouteWithChildren
|
|
1193
|
+
AuthedCatchNotFoundRoute: typeof AuthedCatchNotFoundRoute
|
|
1194
|
+
AuthedRedirectsFormsIdRoute: typeof AuthedRedirectsFormsIdRoute
|
|
1195
|
+
AuthedRedirectsSubmissionsIdRoute: typeof AuthedRedirectsSubmissionsIdRoute
|
|
1196
|
+
AuthedRedirectsWorkflowsIdRoute: typeof AuthedRedirectsWorkflowsIdRoute
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
const AuthedRouteRouteChildren: AuthedRouteRouteChildren = {
|
|
1200
|
+
AuthedAppRouteRoute: AuthedAppRouteRouteWithChildren,
|
|
1201
|
+
AuthedAdminRouteRoute: AuthedAdminRouteRouteWithChildren,
|
|
1202
|
+
AuthedSettingsRouteRoute: AuthedSettingsRouteRouteWithChildren,
|
|
1203
|
+
AuthedCatchNotFoundRoute: AuthedCatchNotFoundRoute,
|
|
1204
|
+
AuthedRedirectsFormsIdRoute: AuthedRedirectsFormsIdRoute,
|
|
1205
|
+
AuthedRedirectsSubmissionsIdRoute: AuthedRedirectsSubmissionsIdRoute,
|
|
1206
|
+
AuthedRedirectsWorkflowsIdRoute: AuthedRedirectsWorkflowsIdRoute,
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
const AuthedRouteRouteWithChildren = AuthedRouteRoute._addFileChildren(
|
|
1210
|
+
AuthedRouteRouteChildren,
|
|
1211
|
+
)
|
|
1212
|
+
|
|
1213
|
+
interface PublicRouteRouteChildren {
|
|
1214
|
+
PublicEmbeddedRoute: typeof PublicEmbeddedRoute
|
|
1215
|
+
PublicNoAccessRoute: typeof PublicNoAccessRoute
|
|
1216
|
+
PublicNoInviteRoute: typeof PublicNoInviteRoute
|
|
1217
|
+
PublicOtpRoute: typeof PublicOtpRoute
|
|
1218
|
+
PublicSignInRoute: typeof PublicSignInRoute
|
|
1219
|
+
PublicSignUpRoute: typeof PublicSignUpRoute
|
|
1220
|
+
PublicInviteInviteIdRoute: typeof PublicInviteInviteIdRoute
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
const PublicRouteRouteChildren: PublicRouteRouteChildren = {
|
|
1224
|
+
PublicEmbeddedRoute: PublicEmbeddedRoute,
|
|
1225
|
+
PublicNoAccessRoute: PublicNoAccessRoute,
|
|
1226
|
+
PublicNoInviteRoute: PublicNoInviteRoute,
|
|
1227
|
+
PublicOtpRoute: PublicOtpRoute,
|
|
1228
|
+
PublicSignInRoute: PublicSignInRoute,
|
|
1229
|
+
PublicSignUpRoute: PublicSignUpRoute,
|
|
1230
|
+
PublicInviteInviteIdRoute: PublicInviteInviteIdRoute,
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
const PublicRouteRouteWithChildren = PublicRouteRoute._addFileChildren(
|
|
1234
|
+
PublicRouteRouteChildren,
|
|
1235
|
+
)
|
|
1236
|
+
|
|
1237
|
+
const rootRouteChildren: RootRouteChildren = {
|
|
1238
|
+
AuthedRouteRoute: AuthedRouteRouteWithChildren,
|
|
1239
|
+
PublicRouteRoute: PublicRouteRouteWithChildren,
|
|
1240
|
+
}
|
|
1241
|
+
export const routeTree = rootRouteImport
|
|
1242
|
+
._addFileChildren(rootRouteChildren)
|
|
1243
|
+
._addFileTypes<FileRouteTypes>()
|
|
1244
|
+
const rootServerRouteChildren: RootServerRouteChildren = {
|
|
1245
|
+
ApiAuthSplatServerRoute: ApiAuthSplatServerRoute,
|
|
1246
|
+
ApiBillingPaidServerRoute: ApiBillingPaidServerRoute,
|
|
1247
|
+
ApiBillingWebhooksServerRoute: ApiBillingWebhooksServerRoute,
|
|
1248
|
+
ApiChatAgentServerRoute: ApiChatAgentServerRoute,
|
|
1249
|
+
ApiChatKeyServerRoute: ApiChatKeyServerRoute,
|
|
1250
|
+
ApiChatMemberServerRoute: ApiChatMemberServerRoute,
|
|
1251
|
+
ApiTestIndexServerRoute: ApiTestIndexServerRoute,
|
|
1252
|
+
}
|
|
1253
|
+
export const serverRouteTree = rootServerRouteImport
|
|
1254
|
+
._addFileChildren(rootServerRouteChildren)
|
|
1255
|
+
._addFileTypes<FileServerRouteTypes>()
|