spiracha 1.5.0 → 2.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/AGENTS.md +114 -205
- package/README.md +89 -269
- package/apps/ui/AGENTS.md +17 -7
- package/apps/ui/README.md +34 -8
- package/apps/ui/components.json +21 -0
- package/apps/ui/package.json +65 -0
- package/apps/ui/src/components/antigravity-conversations-table.tsx +206 -0
- package/apps/ui/src/components/antigravity-keychain-panel.tsx +76 -0
- package/apps/ui/src/components/antigravity-workspaces-table.tsx +63 -0
- package/apps/ui/src/components/app-shell.tsx +124 -0
- package/apps/ui/src/components/breadcrumbs.tsx +53 -0
- package/apps/ui/src/components/claude-code-sessions-table.tsx +114 -0
- package/apps/ui/src/components/claude-code-workspaces-table.tsx +55 -0
- package/apps/ui/src/components/cursor-threads-table.tsx +189 -0
- package/apps/ui/src/components/cursor-workspaces-table.tsx +140 -0
- package/apps/ui/src/components/data-table.tsx +241 -0
- package/apps/ui/src/components/delete-confirm-dialog.tsx +88 -0
- package/apps/ui/src/components/export-dialog.tsx +184 -0
- package/apps/ui/src/components/json-panel.tsx +17 -0
- package/apps/ui/src/components/kiro-sessions-table.tsx +112 -0
- package/apps/ui/src/components/kiro-workspaces-table.tsx +53 -0
- package/apps/ui/src/components/list-search-input.tsx +18 -0
- package/apps/ui/src/components/loading-panel.tsx +23 -0
- package/apps/ui/src/components/metadata-section.tsx +31 -0
- package/apps/ui/src/components/metric-card.tsx +19 -0
- package/apps/ui/src/components/opencode-sessions-table.tsx +128 -0
- package/apps/ui/src/components/opencode-workspaces-table.tsx +57 -0
- package/apps/ui/src/components/page-header.tsx +33 -0
- package/apps/ui/src/components/projects-loading-state.tsx +74 -0
- package/apps/ui/src/components/projects-table.tsx +108 -0
- package/apps/ui/src/components/qoder-sessions-table.tsx +112 -0
- package/apps/ui/src/components/qoder-workspaces-table.tsx +53 -0
- package/apps/ui/src/components/recent-threads-list.tsx +52 -0
- package/apps/ui/src/components/reload-error-panel.tsx +20 -0
- package/apps/ui/src/components/text-document-panel.tsx +19 -0
- package/apps/ui/src/components/theme-toggle.tsx +48 -0
- package/apps/ui/src/components/threads-table.tsx +202 -0
- package/apps/ui/src/components/transcript-view.tsx +552 -0
- package/apps/ui/src/components/ui/alert-dialog.tsx +160 -0
- package/apps/ui/src/components/ui/badge.tsx +45 -0
- package/apps/ui/src/components/ui/button.tsx +62 -0
- package/apps/ui/src/components/ui/checkbox.tsx +29 -0
- package/apps/ui/src/components/ui/dialog.tsx +137 -0
- package/apps/ui/src/components/ui/dropdown-menu.tsx +217 -0
- package/apps/ui/src/components/ui/input.tsx +21 -0
- package/apps/ui/src/components/ui/scroll-area.tsx +46 -0
- package/apps/ui/src/components/ui/select.tsx +163 -0
- package/apps/ui/src/components/ui/separator.tsx +28 -0
- package/apps/ui/src/components/ui/sheet.tsx +107 -0
- package/apps/ui/src/components/ui/skeleton.tsx +7 -0
- package/apps/ui/src/components/ui/table.tsx +76 -0
- package/apps/ui/src/components/ui/tabs.tsx +71 -0
- package/apps/ui/src/components/ui/tooltip.tsx +44 -0
- package/apps/ui/src/integrations/tanstack-query/devtools.tsx +6 -0
- package/apps/ui/src/integrations/tanstack-query/root-provider.tsx +10 -0
- package/apps/ui/src/lib/antigravity-conversation-state.ts +28 -0
- package/apps/ui/src/lib/antigravity-queries.ts +33 -0
- package/apps/ui/src/lib/antigravity-server.ts +128 -0
- package/apps/ui/src/lib/antigravity-transcript-events.ts +335 -0
- package/apps/ui/src/lib/claude-code-queries.ts +26 -0
- package/apps/ui/src/lib/claude-code-server.ts +75 -0
- package/apps/ui/src/lib/claude-code-transcript-events.ts +154 -0
- package/apps/ui/src/lib/codex-queries.ts +66 -0
- package/apps/ui/src/lib/codex-server.ts +209 -0
- package/apps/ui/src/lib/cursor-queries.ts +37 -0
- package/apps/ui/src/lib/cursor-server.ts +272 -0
- package/apps/ui/src/lib/cursor-transcript-events.ts +229 -0
- package/apps/ui/src/lib/download.ts +166 -0
- package/apps/ui/src/lib/formatters.ts +149 -0
- package/apps/ui/src/lib/kiro-queries.ts +22 -0
- package/apps/ui/src/lib/kiro-server.ts +73 -0
- package/apps/ui/src/lib/kiro-transcript-events.ts +113 -0
- package/apps/ui/src/lib/opencode-queries.ts +37 -0
- package/apps/ui/src/lib/opencode-server.ts +73 -0
- package/apps/ui/src/lib/opencode-transcript-events.ts +221 -0
- package/apps/ui/src/lib/package-metadata.ts +16 -0
- package/apps/ui/src/lib/path-utils.ts +13 -0
- package/apps/ui/src/lib/qoder-queries.ts +22 -0
- package/apps/ui/src/lib/qoder-server.ts +79 -0
- package/apps/ui/src/lib/qoder-transcript-events.ts +139 -0
- package/apps/ui/src/lib/route-search.ts +68 -0
- package/apps/ui/src/lib/settings-store.tsx +59 -0
- package/apps/ui/src/lib/source-session-export-server.ts +56 -0
- package/apps/ui/src/lib/text-filter.ts +22 -0
- package/apps/ui/src/lib/thread-id.ts +3 -0
- package/apps/ui/src/lib/thread-transcript-stats.ts +57 -0
- package/apps/ui/src/lib/utils.ts +7 -0
- package/apps/ui/src/routeTree.gen.ts +730 -0
- package/apps/ui/src/router.tsx +20 -0
- package/apps/ui/src/routes/$threadId.tsx +22 -0
- package/apps/ui/src/routes/__root.tsx +127 -0
- package/apps/ui/src/routes/analytics.tsx +143 -0
- package/apps/ui/src/routes/antigravity-conversations.$conversationId.tsx +438 -0
- package/apps/ui/src/routes/antigravity.$workspaceKey.tsx +127 -0
- package/apps/ui/src/routes/antigravity.index.tsx +51 -0
- package/apps/ui/src/routes/api.v1.conversation-query.ts +12 -0
- package/apps/ui/src/routes/api.v1.conversations.$source.$id.export.ts +12 -0
- package/apps/ui/src/routes/api.v1.conversations.$source.$id.ts +12 -0
- package/apps/ui/src/routes/api.v1.conversations.ts +12 -0
- package/apps/ui/src/routes/api.v1.resolve.ts +12 -0
- package/apps/ui/src/routes/api.v1.sources.ts +12 -0
- package/apps/ui/src/routes/claude-code-sessions.$sessionId.tsx +342 -0
- package/apps/ui/src/routes/claude-code.$workspaceKey.tsx +135 -0
- package/apps/ui/src/routes/claude-code.index.tsx +48 -0
- package/apps/ui/src/routes/codex.$project.tsx +390 -0
- package/apps/ui/src/routes/codex.index.tsx +116 -0
- package/apps/ui/src/routes/cursor-threads.$composerId.tsx +435 -0
- package/apps/ui/src/routes/cursor.$workspaceKey.tsx +416 -0
- package/apps/ui/src/routes/cursor.index.tsx +120 -0
- package/apps/ui/src/routes/index.tsx +124 -0
- package/apps/ui/src/routes/kiro-sessions.$sessionId.tsx +345 -0
- package/apps/ui/src/routes/kiro.$workspaceKey.tsx +136 -0
- package/apps/ui/src/routes/kiro.index.tsx +48 -0
- package/apps/ui/src/routes/opencode-sessions.$sessionId.tsx +334 -0
- package/apps/ui/src/routes/opencode.$workspaceKey.tsx +135 -0
- package/apps/ui/src/routes/opencode.index.tsx +48 -0
- package/apps/ui/src/routes/qoder-sessions.$sessionId.tsx +341 -0
- package/apps/ui/src/routes/qoder.$workspaceKey.tsx +139 -0
- package/apps/ui/src/routes/qoder.index.tsx +48 -0
- package/apps/ui/src/routes/settings.tsx +91 -0
- package/apps/ui/src/routes/threads.$threadId.tsx +619 -0
- package/apps/ui/src/styles.css +122 -0
- package/apps/ui/tsconfig.json +29 -0
- package/apps/ui/vite.config.ts +84 -0
- package/bin/spiracha.ts +32 -0
- package/package.json +46 -73
- package/src/client.ts +290 -0
- package/src/lib/antigravity-db.ts +213 -19
- package/src/lib/antigravity-exporter-types.ts +1 -0
- package/src/lib/codex-analytics.ts +1 -1
- package/src/lib/codex-browser-db.ts +410 -74
- package/src/lib/codex-browser-export.ts +6 -14
- package/src/lib/codex-browser-types.ts +1 -1
- package/src/lib/{codex-exporter-types.ts → codex-thread-types.ts} +2 -30
- package/src/lib/{codex-exporter-transcript.ts → codex-transcript-renderer.ts} +64 -28
- package/src/lib/conversation-api.ts +792 -0
- package/src/lib/conversation-data/adapter-helpers.ts +110 -0
- package/src/lib/conversation-data/antigravity-adapter.ts +148 -0
- package/src/lib/conversation-data/claude-code-adapter.ts +175 -0
- package/src/lib/conversation-data/codex-adapter.ts +245 -0
- package/src/lib/conversation-data/cursor-adapter.ts +171 -0
- package/src/lib/conversation-data/index.ts +311 -0
- package/src/lib/conversation-data/kiro-adapter.ts +140 -0
- package/src/lib/conversation-data/message-selector.ts +37 -0
- package/src/lib/conversation-data/opencode-adapter.ts +180 -0
- package/src/lib/conversation-data/path-match.ts +79 -0
- package/src/lib/conversation-data/qoder-adapter.ts +230 -0
- package/src/lib/conversation-data/types.ts +116 -0
- package/src/lib/cursor-db.ts +67 -21
- package/src/lib/cursor-exporter-types.ts +0 -19
- package/src/lib/qoder-acp-client.ts +268 -0
- package/src/lib/qoder-db.ts +1601 -0
- package/src/lib/qoder-exporter-types.ts +114 -0
- package/src/lib/qoder-transcript-phase.ts +41 -0
- package/src/lib/qoder-transcript.ts +112 -0
- package/apps/ui/dist/client/assets/_threadId-CAIeH5mq.js +0 -1
- package/apps/ui/dist/client/assets/analytics-DOy1b6Sh.js +0 -1
- package/apps/ui/dist/client/assets/antigravity-conversations._conversationId-DqySVO2K.js +0 -7
- package/apps/ui/dist/client/assets/antigravity-conversations._conversationId-KAcXtNxI.js +0 -1
- package/apps/ui/dist/client/assets/antigravity-keychain-panel-B77qJz6f.js +0 -1
- package/apps/ui/dist/client/assets/antigravity._workspaceKey-B3NM6gRH.js +0 -1
- package/apps/ui/dist/client/assets/antigravity._workspaceKey-ByitGWki.js +0 -1
- package/apps/ui/dist/client/assets/antigravity.index-DP9JC2P9.js +0 -1
- package/apps/ui/dist/client/assets/antigravity.index-DgW25FEV.js +0 -1
- package/apps/ui/dist/client/assets/badge-C3i4OKs8.js +0 -1
- package/apps/ui/dist/client/assets/checkbox-CdHitXWQ.js +0 -1
- package/apps/ui/dist/client/assets/claude-code-sessions._sessionId-8pQ55ci2.js +0 -1
- package/apps/ui/dist/client/assets/claude-code-sessions._sessionId-DVz5UmtU.js +0 -1
- package/apps/ui/dist/client/assets/claude-code._workspaceKey-BBKskSum.js +0 -1
- package/apps/ui/dist/client/assets/claude-code._workspaceKey-OkikMUFs.js +0 -1
- package/apps/ui/dist/client/assets/claude-code.index-Cwu76dbb.js +0 -1
- package/apps/ui/dist/client/assets/claude-code.index-D6eMd08t.js +0 -1
- package/apps/ui/dist/client/assets/createServerFn-B-KkwmHU.js +0 -3
- package/apps/ui/dist/client/assets/cursor-threads._composerId-CmBFclK8.js +0 -1
- package/apps/ui/dist/client/assets/cursor-threads._composerId-hBWlP1D-.js +0 -1
- package/apps/ui/dist/client/assets/cursor._workspaceKey-BFPkIRi-.js +0 -1
- package/apps/ui/dist/client/assets/cursor._workspaceKey-CaAZjGmm.js +0 -1
- package/apps/ui/dist/client/assets/cursor.index-8y4o20kb.js +0 -2
- package/apps/ui/dist/client/assets/cursor.index-CrnMwDCi.js +0 -1
- package/apps/ui/dist/client/assets/data-table-Br78_dk3.js +0 -4
- package/apps/ui/dist/client/assets/delete-confirm-dialog-Bxs07u-j.js +0 -7
- package/apps/ui/dist/client/assets/dist-B9pyYCVU.js +0 -1
- package/apps/ui/dist/client/assets/dist-BrJhN2A0.js +0 -5
- package/apps/ui/dist/client/assets/dist-Cmd3AIfD.js +0 -1
- package/apps/ui/dist/client/assets/dist-DvMS2965.js +0 -1
- package/apps/ui/dist/client/assets/download-Bf0QJKD3.js +0 -1
- package/apps/ui/dist/client/assets/dropdown-menu-D5cvPaZt.js +0 -1
- package/apps/ui/dist/client/assets/es2015-ad6040dw.js +0 -41
- package/apps/ui/dist/client/assets/export-dialog-Dr8d2MqD.js +0 -1
- package/apps/ui/dist/client/assets/formatters-BtqyrX_c.js +0 -1
- package/apps/ui/dist/client/assets/index-C-STgIH4.js +0 -166
- package/apps/ui/dist/client/assets/jsx-runtime-DGeXAQPT.js +0 -1
- package/apps/ui/dist/client/assets/kiro-sessions._sessionId-CKgfJ7GR.js +0 -1
- package/apps/ui/dist/client/assets/kiro-sessions._sessionId-zvIJHtQF.js +0 -1
- package/apps/ui/dist/client/assets/kiro._workspaceKey-DhVuJuZB.js +0 -1
- package/apps/ui/dist/client/assets/kiro._workspaceKey-QArsjkTY.js +0 -1
- package/apps/ui/dist/client/assets/kiro.index-C-fr4m7i.js +0 -1
- package/apps/ui/dist/client/assets/kiro.index-OYgAdtZd.js +0 -1
- package/apps/ui/dist/client/assets/metric-card-Dplm0ZiM.js +0 -1
- package/apps/ui/dist/client/assets/opencode-sessions._sessionId-DLjiTst-.js +0 -1
- package/apps/ui/dist/client/assets/opencode-sessions._sessionId-biBwrRbt.js +0 -8
- package/apps/ui/dist/client/assets/opencode._workspaceKey-C7OIzMOJ.js +0 -1
- package/apps/ui/dist/client/assets/opencode._workspaceKey-sBakX0oI.js +0 -1
- package/apps/ui/dist/client/assets/opencode.index-Bl_kNs9N.js +0 -1
- package/apps/ui/dist/client/assets/opencode.index-CN53bVmb.js +0 -1
- package/apps/ui/dist/client/assets/page-header-Cwa3p6Tl.js +0 -1
- package/apps/ui/dist/client/assets/preload-helper-B8fFrdxC.js +0 -1
- package/apps/ui/dist/client/assets/projects._project-D8WloxQN.js +0 -1
- package/apps/ui/dist/client/assets/projects._project-DSDwH4NF.js +0 -1
- package/apps/ui/dist/client/assets/projects.index-5xRtuJdX.js +0 -3
- package/apps/ui/dist/client/assets/projects.index-DEfhWqa8.js +0 -1
- package/apps/ui/dist/client/assets/react-dom-DL96Jor4.js +0 -1
- package/apps/ui/dist/client/assets/refresh-ccw-BgKjOiA6.js +0 -1
- package/apps/ui/dist/client/assets/reload-error-panel-AHqu0akK.js +0 -1
- package/apps/ui/dist/client/assets/routes-DnzF_9CX.js +0 -1
- package/apps/ui/dist/client/assets/scroll-text-fM0sMOB3.js +0 -1
- package/apps/ui/dist/client/assets/select-CYF6pF37.js +0 -1
- package/apps/ui/dist/client/assets/settings-Dx70jgP_.js +0 -1
- package/apps/ui/dist/client/assets/sqlite-error-B6uZjUe8.js +0 -1
- package/apps/ui/dist/client/assets/styles-B7Zi9EFA.css +0 -1
- package/apps/ui/dist/client/assets/tabs-CmuhkT-c.js +0 -7
- package/apps/ui/dist/client/assets/text-filter-DVAZySUS.js +0 -2
- package/apps/ui/dist/client/assets/thread-transcript-stats-BUNz6u7F.js +0 -1
- package/apps/ui/dist/client/assets/threads._threadId-BB9tTsV4.js +0 -1
- package/apps/ui/dist/client/assets/threads._threadId-BMRSFow3.js +0 -1
- package/apps/ui/dist/client/assets/useMutation-BSFult2i.js +0 -1
- package/apps/ui/dist/client/assets/useQuery-CjINKZf1.js +0 -1
- package/apps/ui/dist/server/assets/_tanstack-start-manifest_v-CQ8Jjs3B.js +0 -387
- package/apps/ui/dist/server/assets/_threadId-B6SrBR9E.js +0 -6
- package/apps/ui/dist/server/assets/analytics-CYP_LT5Y.js +0 -16
- package/apps/ui/dist/server/assets/analytics-CtpOMVMO.js +0 -146
- package/apps/ui/dist/server/assets/antigravity-conversation-state-HgzS302O.js +0 -16
- package/apps/ui/dist/server/assets/antigravity-conversations._conversationId-BKOyL2T6.js +0 -613
- package/apps/ui/dist/server/assets/antigravity-conversations._conversationId-D426O-64.js +0 -11
- package/apps/ui/dist/server/assets/antigravity-conversations._conversationId-eS87Dx7g.js +0 -20
- package/apps/ui/dist/server/assets/antigravity-db-Bh8_U9uw.js +0 -580
- package/apps/ui/dist/server/assets/antigravity-keychain-DOiuHDwK.js +0 -126
- package/apps/ui/dist/server/assets/antigravity-keychain-panel-CC7FLmAK.js +0 -55
- package/apps/ui/dist/server/assets/antigravity-queries-CGrJO9Vr.js +0 -37
- package/apps/ui/dist/server/assets/antigravity-server-CHRjVFqN.js +0 -114
- package/apps/ui/dist/server/assets/antigravity._workspaceKey-3m_MzNFA.js +0 -11
- package/apps/ui/dist/server/assets/antigravity._workspaceKey-B0QeYUOh.js +0 -28
- package/apps/ui/dist/server/assets/antigravity._workspaceKey-C3kP-qyN.js +0 -210
- package/apps/ui/dist/server/assets/antigravity.index-CPCYkqCi.js +0 -104
- package/apps/ui/dist/server/assets/antigravity.index-DudTB3Tq.js +0 -11
- package/apps/ui/dist/server/assets/badge-EvdhKK_Z.js +0 -26
- package/apps/ui/dist/server/assets/button-CmTDnzOn.js +0 -46
- package/apps/ui/dist/server/assets/checkbox-C0hovF41.js +0 -19
- package/apps/ui/dist/server/assets/claude-code-db-Ik3VStKZ.js +0 -361
- package/apps/ui/dist/server/assets/claude-code-queries-Cgzi4K-e.js +0 -37
- package/apps/ui/dist/server/assets/claude-code-server-PfraClXS.js +0 -72
- package/apps/ui/dist/server/assets/claude-code-sessions._sessionId-C55oe6zj.js +0 -18
- package/apps/ui/dist/server/assets/claude-code-sessions._sessionId-D1RYYi3j.js +0 -473
- package/apps/ui/dist/server/assets/claude-code-sessions._sessionId-DSvPLEUL.js +0 -11
- package/apps/ui/dist/server/assets/claude-code-transcript-C-bxh3cS.js +0 -139
- package/apps/ui/dist/server/assets/claude-code-transcript-phase-DmUMc8VU.js +0 -10
- package/apps/ui/dist/server/assets/claude-code._workspaceKey-B5Xg_-tE.js +0 -28
- package/apps/ui/dist/server/assets/claude-code._workspaceKey-BPlzyXPa.js +0 -11
- package/apps/ui/dist/server/assets/claude-code._workspaceKey-DqDve2wl.js +0 -191
- package/apps/ui/dist/server/assets/claude-code.index-B7yYR7dD.js +0 -92
- package/apps/ui/dist/server/assets/claude-code.index-BUHThG1W.js +0 -11
- package/apps/ui/dist/server/assets/codex-queries-CtgeZ7VL.js +0 -99
- package/apps/ui/dist/server/assets/codex-server-CGXU4H8-.js +0 -2294
- package/apps/ui/dist/server/assets/concurrency-VXtYvlGh.js +0 -18
- package/apps/ui/dist/server/assets/createServerRpc-CF_DEwnm.js +0 -12
- package/apps/ui/dist/server/assets/createSsrRpc-C754NPki.js +0 -16
- package/apps/ui/dist/server/assets/cursor-db-CZnYy7aT.js +0 -830
- package/apps/ui/dist/server/assets/cursor-exporter-types-CI3goo-c.js +0 -34
- package/apps/ui/dist/server/assets/cursor-queries-NCIM0Nat.js +0 -67
- package/apps/ui/dist/server/assets/cursor-recovery-CXpO8KcD.js +0 -361
- package/apps/ui/dist/server/assets/cursor-server-DNu52A3K.js +0 -213
- package/apps/ui/dist/server/assets/cursor-threads._composerId-BB0Y_Mao.js +0 -11
- package/apps/ui/dist/server/assets/cursor-threads._composerId-Ckn6ItHI.js +0 -582
- package/apps/ui/dist/server/assets/cursor-threads._composerId-p9-ARAzc.js +0 -18
- package/apps/ui/dist/server/assets/cursor-transcript-B7tGnqtn.js +0 -125
- package/apps/ui/dist/server/assets/cursor._workspaceKey-CZuohIUL.js +0 -28
- package/apps/ui/dist/server/assets/cursor._workspaceKey-DPp5JSjy.js +0 -401
- package/apps/ui/dist/server/assets/cursor._workspaceKey-nmg3YIOQ.js +0 -11
- package/apps/ui/dist/server/assets/cursor.index-CcsX7DG0.js +0 -11
- package/apps/ui/dist/server/assets/cursor.index-DkWT-mxw.js +0 -189
- package/apps/ui/dist/server/assets/data-table-Cdct823O.js +0 -189
- package/apps/ui/dist/server/assets/delete-confirm-dialog-BcBNCxWB.js +0 -144
- package/apps/ui/dist/server/assets/download-DMmiy1xf.js +0 -92
- package/apps/ui/dist/server/assets/dropdown-menu-Dy_9t6TN.js +0 -36
- package/apps/ui/dist/server/assets/empty-plugin-adapters-B3lHh1La.js +0 -5
- package/apps/ui/dist/server/assets/export-dialog-D88ze9Gy.js +0 -240
- package/apps/ui/dist/server/assets/formatters-FJaGZgJk.js +0 -91
- package/apps/ui/dist/server/assets/kiro-db--fXrED_-.js +0 -552
- package/apps/ui/dist/server/assets/kiro-queries-CzNlM2ok.js +0 -37
- package/apps/ui/dist/server/assets/kiro-server-9WRxg2Au.js +0 -72
- package/apps/ui/dist/server/assets/kiro-sessions._sessionId-CRY2c7YO.js +0 -11
- package/apps/ui/dist/server/assets/kiro-sessions._sessionId-F1UlwxmR.js +0 -449
- package/apps/ui/dist/server/assets/kiro-sessions._sessionId-bvTulT7C.js +0 -18
- package/apps/ui/dist/server/assets/kiro-transcript-DoekQBaH.js +0 -112
- package/apps/ui/dist/server/assets/kiro-transcript-phase-CJG40nQg.js +0 -27
- package/apps/ui/dist/server/assets/kiro._workspaceKey-BDe9sQwo.js +0 -11
- package/apps/ui/dist/server/assets/kiro._workspaceKey-CJsjgNwO.js +0 -28
- package/apps/ui/dist/server/assets/kiro._workspaceKey-D_-4Qb7y.js +0 -193
- package/apps/ui/dist/server/assets/kiro.index-C__-UROk.js +0 -11
- package/apps/ui/dist/server/assets/kiro.index-CmTbqeYj.js +0 -93
- package/apps/ui/dist/server/assets/loading-panel-BGFnWseS.js +0 -27
- package/apps/ui/dist/server/assets/metric-card-ByEeLu0r.js +0 -23
- package/apps/ui/dist/server/assets/model-label-B1NWGc65.js +0 -13
- package/apps/ui/dist/server/assets/opencode-db-BM7KjOzc.js +0 -397
- package/apps/ui/dist/server/assets/opencode-queries-BeNYXnQv.js +0 -50
- package/apps/ui/dist/server/assets/opencode-server-BpQ_kRze.js +0 -72
- package/apps/ui/dist/server/assets/opencode-sessions._sessionId-CGQ-t0vD.js +0 -518
- package/apps/ui/dist/server/assets/opencode-sessions._sessionId-D8Q7in_Z.js +0 -18
- package/apps/ui/dist/server/assets/opencode-sessions._sessionId-DKOvi0lV.js +0 -11
- package/apps/ui/dist/server/assets/opencode-think-tags-CAoD-EcZ.js +0 -87
- package/apps/ui/dist/server/assets/opencode-transcript-BNTcGNym.js +0 -141
- package/apps/ui/dist/server/assets/opencode-transcript-phase-OqLkiQD0.js +0 -32
- package/apps/ui/dist/server/assets/opencode._workspaceKey-BdqcWHw1.js +0 -11
- package/apps/ui/dist/server/assets/opencode._workspaceKey-CfH96HTT.js +0 -28
- package/apps/ui/dist/server/assets/opencode._workspaceKey-DdbHPDrO.js +0 -207
- package/apps/ui/dist/server/assets/opencode.index-BbVzkJXP.js +0 -11
- package/apps/ui/dist/server/assets/opencode.index-Vh_Gq_1L.js +0 -93
- package/apps/ui/dist/server/assets/page-header-VNSaM3xd.js +0 -29
- package/apps/ui/dist/server/assets/path-transforms-DL2IwtYd.js +0 -31
- package/apps/ui/dist/server/assets/projects._project-4io5LO0E.js +0 -20
- package/apps/ui/dist/server/assets/projects._project-Bshqk7JA.js +0 -12
- package/apps/ui/dist/server/assets/projects._project-D6ZoGhJ8.js +0 -395
- package/apps/ui/dist/server/assets/projects.index-BLXOx5eL.js +0 -12
- package/apps/ui/dist/server/assets/projects.index-BkLiF2FF.js +0 -182
- package/apps/ui/dist/server/assets/projects.index-DesYXwfi.js +0 -14
- package/apps/ui/dist/server/assets/reload-error-panel-BJMxY3U1.js +0 -25
- package/apps/ui/dist/server/assets/route-search-ts4W9MJ9.js +0 -38
- package/apps/ui/dist/server/assets/router-Sac2DGk6.js +0 -518
- package/apps/ui/dist/server/assets/routes-Bsact1uB.js +0 -184
- package/apps/ui/dist/server/assets/routes-BzkJgq4W.js +0 -34
- package/apps/ui/dist/server/assets/select-GW76p-ld.js +0 -76
- package/apps/ui/dist/server/assets/settings-OayxIYQQ.js +0 -100
- package/apps/ui/dist/server/assets/settings-store-DpEJEQ7M.js +0 -52
- package/apps/ui/dist/server/assets/shared-DyhChtHf.js +0 -137
- package/apps/ui/dist/server/assets/source-session-export-server-DNutCawb.js +0 -38
- package/apps/ui/dist/server/assets/sqlite-error-LZDrnxdd.js +0 -13
- package/apps/ui/dist/server/assets/start-B_HFwkkk.js +0 -4
- package/apps/ui/dist/server/assets/tabs-DkaChNVg.js +0 -501
- package/apps/ui/dist/server/assets/text-filter-CGKxMCKt.js +0 -36
- package/apps/ui/dist/server/assets/thread-transcript-stats-Dh34mt2u.js +0 -45
- package/apps/ui/dist/server/assets/threads._threadId-BSSK4nkI.js +0 -26
- package/apps/ui/dist/server/assets/threads._threadId-BeXEc4Lo.js +0 -648
- package/apps/ui/dist/server/assets/threads._threadId-Ci0S4mKU.js +0 -18
- package/apps/ui/dist/server/assets/ui-export-files-BHLX9bhN.js +0 -83
- package/apps/ui/dist/server/assets/utils-C_uf36nf.js +0 -8
- package/apps/ui/dist/server/server.js +0 -5895
- package/bin/codex-chats-claude.js +0 -5
- package/bin/codex-chats.js +0 -5
- package/bin/spiracha.js +0 -5
- package/src/export-chats.ts +0 -120
- package/src/export-claude.ts +0 -36
- package/src/export-cursor.ts +0 -244
- package/src/lib/claude-exporter.ts +0 -864
- package/src/lib/codex-exporter-cli.ts +0 -277
- package/src/lib/codex-exporter-db.ts +0 -319
- package/src/lib/codex-exporter.ts +0 -115
- package/src/lib/cursor-exporter.ts +0 -266
- package/src/lib/interactive-cli.ts +0 -433
- package/src/lib/native-open.ts +0 -54
- package/src/mcp-server.ts +0 -137
- package/src/spiracha.ts +0 -116
- package/src/ui-cli.ts +0 -310
- /package/apps/ui/{dist/client → public}/icon.svg +0 -0
- /package/apps/ui/{dist/client → public}/manifest.json +0 -0
- /package/apps/ui/{dist/client → public}/robots.txt +0 -0
|
@@ -0,0 +1,730 @@
|
|
|
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 { Route as rootRouteImport } from './routes/__root'
|
|
12
|
+
import { Route as SettingsRouteImport } from './routes/settings'
|
|
13
|
+
import { Route as AnalyticsRouteImport } from './routes/analytics'
|
|
14
|
+
import { Route as ThreadIdRouteImport } from './routes/$threadId'
|
|
15
|
+
import { Route as IndexRouteImport } from './routes/index'
|
|
16
|
+
import { Route as QoderIndexRouteImport } from './routes/qoder.index'
|
|
17
|
+
import { Route as OpencodeIndexRouteImport } from './routes/opencode.index'
|
|
18
|
+
import { Route as KiroIndexRouteImport } from './routes/kiro.index'
|
|
19
|
+
import { Route as CursorIndexRouteImport } from './routes/cursor.index'
|
|
20
|
+
import { Route as CodexIndexRouteImport } from './routes/codex.index'
|
|
21
|
+
import { Route as ClaudeCodeIndexRouteImport } from './routes/claude-code.index'
|
|
22
|
+
import { Route as AntigravityIndexRouteImport } from './routes/antigravity.index'
|
|
23
|
+
import { Route as ThreadsThreadIdRouteImport } from './routes/threads.$threadId'
|
|
24
|
+
import { Route as QoderWorkspaceKeyRouteImport } from './routes/qoder.$workspaceKey'
|
|
25
|
+
import { Route as QoderSessionsSessionIdRouteImport } from './routes/qoder-sessions.$sessionId'
|
|
26
|
+
import { Route as OpencodeWorkspaceKeyRouteImport } from './routes/opencode.$workspaceKey'
|
|
27
|
+
import { Route as OpencodeSessionsSessionIdRouteImport } from './routes/opencode-sessions.$sessionId'
|
|
28
|
+
import { Route as KiroWorkspaceKeyRouteImport } from './routes/kiro.$workspaceKey'
|
|
29
|
+
import { Route as KiroSessionsSessionIdRouteImport } from './routes/kiro-sessions.$sessionId'
|
|
30
|
+
import { Route as CursorWorkspaceKeyRouteImport } from './routes/cursor.$workspaceKey'
|
|
31
|
+
import { Route as CursorThreadsComposerIdRouteImport } from './routes/cursor-threads.$composerId'
|
|
32
|
+
import { Route as CodexProjectRouteImport } from './routes/codex.$project'
|
|
33
|
+
import { Route as ClaudeCodeWorkspaceKeyRouteImport } from './routes/claude-code.$workspaceKey'
|
|
34
|
+
import { Route as ClaudeCodeSessionsSessionIdRouteImport } from './routes/claude-code-sessions.$sessionId'
|
|
35
|
+
import { Route as AntigravityWorkspaceKeyRouteImport } from './routes/antigravity.$workspaceKey'
|
|
36
|
+
import { Route as AntigravityConversationsConversationIdRouteImport } from './routes/antigravity-conversations.$conversationId'
|
|
37
|
+
import { Route as ApiV1SourcesRouteImport } from './routes/api.v1.sources'
|
|
38
|
+
import { Route as ApiV1ResolveRouteImport } from './routes/api.v1.resolve'
|
|
39
|
+
import { Route as ApiV1ConversationsRouteImport } from './routes/api.v1.conversations'
|
|
40
|
+
import { Route as ApiV1ConversationQueryRouteImport } from './routes/api.v1.conversation-query'
|
|
41
|
+
import { Route as ApiV1ConversationsSourceIdRouteImport } from './routes/api.v1.conversations.$source.$id'
|
|
42
|
+
import { Route as ApiV1ConversationsSourceIdExportRouteImport } from './routes/api.v1.conversations.$source.$id.export'
|
|
43
|
+
|
|
44
|
+
const SettingsRoute = SettingsRouteImport.update({
|
|
45
|
+
id: '/settings',
|
|
46
|
+
path: '/settings',
|
|
47
|
+
getParentRoute: () => rootRouteImport,
|
|
48
|
+
} as any)
|
|
49
|
+
const AnalyticsRoute = AnalyticsRouteImport.update({
|
|
50
|
+
id: '/analytics',
|
|
51
|
+
path: '/analytics',
|
|
52
|
+
getParentRoute: () => rootRouteImport,
|
|
53
|
+
} as any)
|
|
54
|
+
const ThreadIdRoute = ThreadIdRouteImport.update({
|
|
55
|
+
id: '/$threadId',
|
|
56
|
+
path: '/$threadId',
|
|
57
|
+
getParentRoute: () => rootRouteImport,
|
|
58
|
+
} as any)
|
|
59
|
+
const IndexRoute = IndexRouteImport.update({
|
|
60
|
+
id: '/',
|
|
61
|
+
path: '/',
|
|
62
|
+
getParentRoute: () => rootRouteImport,
|
|
63
|
+
} as any)
|
|
64
|
+
const QoderIndexRoute = QoderIndexRouteImport.update({
|
|
65
|
+
id: '/qoder/',
|
|
66
|
+
path: '/qoder/',
|
|
67
|
+
getParentRoute: () => rootRouteImport,
|
|
68
|
+
} as any)
|
|
69
|
+
const OpencodeIndexRoute = OpencodeIndexRouteImport.update({
|
|
70
|
+
id: '/opencode/',
|
|
71
|
+
path: '/opencode/',
|
|
72
|
+
getParentRoute: () => rootRouteImport,
|
|
73
|
+
} as any)
|
|
74
|
+
const KiroIndexRoute = KiroIndexRouteImport.update({
|
|
75
|
+
id: '/kiro/',
|
|
76
|
+
path: '/kiro/',
|
|
77
|
+
getParentRoute: () => rootRouteImport,
|
|
78
|
+
} as any)
|
|
79
|
+
const CursorIndexRoute = CursorIndexRouteImport.update({
|
|
80
|
+
id: '/cursor/',
|
|
81
|
+
path: '/cursor/',
|
|
82
|
+
getParentRoute: () => rootRouteImport,
|
|
83
|
+
} as any)
|
|
84
|
+
const CodexIndexRoute = CodexIndexRouteImport.update({
|
|
85
|
+
id: '/codex/',
|
|
86
|
+
path: '/codex/',
|
|
87
|
+
getParentRoute: () => rootRouteImport,
|
|
88
|
+
} as any)
|
|
89
|
+
const ClaudeCodeIndexRoute = ClaudeCodeIndexRouteImport.update({
|
|
90
|
+
id: '/claude-code/',
|
|
91
|
+
path: '/claude-code/',
|
|
92
|
+
getParentRoute: () => rootRouteImport,
|
|
93
|
+
} as any)
|
|
94
|
+
const AntigravityIndexRoute = AntigravityIndexRouteImport.update({
|
|
95
|
+
id: '/antigravity/',
|
|
96
|
+
path: '/antigravity/',
|
|
97
|
+
getParentRoute: () => rootRouteImport,
|
|
98
|
+
} as any)
|
|
99
|
+
const ThreadsThreadIdRoute = ThreadsThreadIdRouteImport.update({
|
|
100
|
+
id: '/threads/$threadId',
|
|
101
|
+
path: '/threads/$threadId',
|
|
102
|
+
getParentRoute: () => rootRouteImport,
|
|
103
|
+
} as any)
|
|
104
|
+
const QoderWorkspaceKeyRoute = QoderWorkspaceKeyRouteImport.update({
|
|
105
|
+
id: '/qoder/$workspaceKey',
|
|
106
|
+
path: '/qoder/$workspaceKey',
|
|
107
|
+
getParentRoute: () => rootRouteImport,
|
|
108
|
+
} as any)
|
|
109
|
+
const QoderSessionsSessionIdRoute = QoderSessionsSessionIdRouteImport.update({
|
|
110
|
+
id: '/qoder-sessions/$sessionId',
|
|
111
|
+
path: '/qoder-sessions/$sessionId',
|
|
112
|
+
getParentRoute: () => rootRouteImport,
|
|
113
|
+
} as any)
|
|
114
|
+
const OpencodeWorkspaceKeyRoute = OpencodeWorkspaceKeyRouteImport.update({
|
|
115
|
+
id: '/opencode/$workspaceKey',
|
|
116
|
+
path: '/opencode/$workspaceKey',
|
|
117
|
+
getParentRoute: () => rootRouteImport,
|
|
118
|
+
} as any)
|
|
119
|
+
const OpencodeSessionsSessionIdRoute =
|
|
120
|
+
OpencodeSessionsSessionIdRouteImport.update({
|
|
121
|
+
id: '/opencode-sessions/$sessionId',
|
|
122
|
+
path: '/opencode-sessions/$sessionId',
|
|
123
|
+
getParentRoute: () => rootRouteImport,
|
|
124
|
+
} as any)
|
|
125
|
+
const KiroWorkspaceKeyRoute = KiroWorkspaceKeyRouteImport.update({
|
|
126
|
+
id: '/kiro/$workspaceKey',
|
|
127
|
+
path: '/kiro/$workspaceKey',
|
|
128
|
+
getParentRoute: () => rootRouteImport,
|
|
129
|
+
} as any)
|
|
130
|
+
const KiroSessionsSessionIdRoute = KiroSessionsSessionIdRouteImport.update({
|
|
131
|
+
id: '/kiro-sessions/$sessionId',
|
|
132
|
+
path: '/kiro-sessions/$sessionId',
|
|
133
|
+
getParentRoute: () => rootRouteImport,
|
|
134
|
+
} as any)
|
|
135
|
+
const CursorWorkspaceKeyRoute = CursorWorkspaceKeyRouteImport.update({
|
|
136
|
+
id: '/cursor/$workspaceKey',
|
|
137
|
+
path: '/cursor/$workspaceKey',
|
|
138
|
+
getParentRoute: () => rootRouteImport,
|
|
139
|
+
} as any)
|
|
140
|
+
const CursorThreadsComposerIdRoute = CursorThreadsComposerIdRouteImport.update({
|
|
141
|
+
id: '/cursor-threads/$composerId',
|
|
142
|
+
path: '/cursor-threads/$composerId',
|
|
143
|
+
getParentRoute: () => rootRouteImport,
|
|
144
|
+
} as any)
|
|
145
|
+
const CodexProjectRoute = CodexProjectRouteImport.update({
|
|
146
|
+
id: '/codex/$project',
|
|
147
|
+
path: '/codex/$project',
|
|
148
|
+
getParentRoute: () => rootRouteImport,
|
|
149
|
+
} as any)
|
|
150
|
+
const ClaudeCodeWorkspaceKeyRoute = ClaudeCodeWorkspaceKeyRouteImport.update({
|
|
151
|
+
id: '/claude-code/$workspaceKey',
|
|
152
|
+
path: '/claude-code/$workspaceKey',
|
|
153
|
+
getParentRoute: () => rootRouteImport,
|
|
154
|
+
} as any)
|
|
155
|
+
const ClaudeCodeSessionsSessionIdRoute =
|
|
156
|
+
ClaudeCodeSessionsSessionIdRouteImport.update({
|
|
157
|
+
id: '/claude-code-sessions/$sessionId',
|
|
158
|
+
path: '/claude-code-sessions/$sessionId',
|
|
159
|
+
getParentRoute: () => rootRouteImport,
|
|
160
|
+
} as any)
|
|
161
|
+
const AntigravityWorkspaceKeyRoute = AntigravityWorkspaceKeyRouteImport.update({
|
|
162
|
+
id: '/antigravity/$workspaceKey',
|
|
163
|
+
path: '/antigravity/$workspaceKey',
|
|
164
|
+
getParentRoute: () => rootRouteImport,
|
|
165
|
+
} as any)
|
|
166
|
+
const AntigravityConversationsConversationIdRoute =
|
|
167
|
+
AntigravityConversationsConversationIdRouteImport.update({
|
|
168
|
+
id: '/antigravity-conversations/$conversationId',
|
|
169
|
+
path: '/antigravity-conversations/$conversationId',
|
|
170
|
+
getParentRoute: () => rootRouteImport,
|
|
171
|
+
} as any)
|
|
172
|
+
const ApiV1SourcesRoute = ApiV1SourcesRouteImport.update({
|
|
173
|
+
id: '/api/v1/sources',
|
|
174
|
+
path: '/api/v1/sources',
|
|
175
|
+
getParentRoute: () => rootRouteImport,
|
|
176
|
+
} as any)
|
|
177
|
+
const ApiV1ResolveRoute = ApiV1ResolveRouteImport.update({
|
|
178
|
+
id: '/api/v1/resolve',
|
|
179
|
+
path: '/api/v1/resolve',
|
|
180
|
+
getParentRoute: () => rootRouteImport,
|
|
181
|
+
} as any)
|
|
182
|
+
const ApiV1ConversationsRoute = ApiV1ConversationsRouteImport.update({
|
|
183
|
+
id: '/api/v1/conversations',
|
|
184
|
+
path: '/api/v1/conversations',
|
|
185
|
+
getParentRoute: () => rootRouteImport,
|
|
186
|
+
} as any)
|
|
187
|
+
const ApiV1ConversationQueryRoute = ApiV1ConversationQueryRouteImport.update({
|
|
188
|
+
id: '/api/v1/conversation-query',
|
|
189
|
+
path: '/api/v1/conversation-query',
|
|
190
|
+
getParentRoute: () => rootRouteImport,
|
|
191
|
+
} as any)
|
|
192
|
+
const ApiV1ConversationsSourceIdRoute =
|
|
193
|
+
ApiV1ConversationsSourceIdRouteImport.update({
|
|
194
|
+
id: '/$source/$id',
|
|
195
|
+
path: '/$source/$id',
|
|
196
|
+
getParentRoute: () => ApiV1ConversationsRoute,
|
|
197
|
+
} as any)
|
|
198
|
+
const ApiV1ConversationsSourceIdExportRoute =
|
|
199
|
+
ApiV1ConversationsSourceIdExportRouteImport.update({
|
|
200
|
+
id: '/export',
|
|
201
|
+
path: '/export',
|
|
202
|
+
getParentRoute: () => ApiV1ConversationsSourceIdRoute,
|
|
203
|
+
} as any)
|
|
204
|
+
|
|
205
|
+
export interface FileRoutesByFullPath {
|
|
206
|
+
'/': typeof IndexRoute
|
|
207
|
+
'/$threadId': typeof ThreadIdRoute
|
|
208
|
+
'/analytics': typeof AnalyticsRoute
|
|
209
|
+
'/settings': typeof SettingsRoute
|
|
210
|
+
'/antigravity-conversations/$conversationId': typeof AntigravityConversationsConversationIdRoute
|
|
211
|
+
'/antigravity/$workspaceKey': typeof AntigravityWorkspaceKeyRoute
|
|
212
|
+
'/claude-code-sessions/$sessionId': typeof ClaudeCodeSessionsSessionIdRoute
|
|
213
|
+
'/claude-code/$workspaceKey': typeof ClaudeCodeWorkspaceKeyRoute
|
|
214
|
+
'/codex/$project': typeof CodexProjectRoute
|
|
215
|
+
'/cursor-threads/$composerId': typeof CursorThreadsComposerIdRoute
|
|
216
|
+
'/cursor/$workspaceKey': typeof CursorWorkspaceKeyRoute
|
|
217
|
+
'/kiro-sessions/$sessionId': typeof KiroSessionsSessionIdRoute
|
|
218
|
+
'/kiro/$workspaceKey': typeof KiroWorkspaceKeyRoute
|
|
219
|
+
'/opencode-sessions/$sessionId': typeof OpencodeSessionsSessionIdRoute
|
|
220
|
+
'/opencode/$workspaceKey': typeof OpencodeWorkspaceKeyRoute
|
|
221
|
+
'/qoder-sessions/$sessionId': typeof QoderSessionsSessionIdRoute
|
|
222
|
+
'/qoder/$workspaceKey': typeof QoderWorkspaceKeyRoute
|
|
223
|
+
'/threads/$threadId': typeof ThreadsThreadIdRoute
|
|
224
|
+
'/antigravity/': typeof AntigravityIndexRoute
|
|
225
|
+
'/claude-code/': typeof ClaudeCodeIndexRoute
|
|
226
|
+
'/codex/': typeof CodexIndexRoute
|
|
227
|
+
'/cursor/': typeof CursorIndexRoute
|
|
228
|
+
'/kiro/': typeof KiroIndexRoute
|
|
229
|
+
'/opencode/': typeof OpencodeIndexRoute
|
|
230
|
+
'/qoder/': typeof QoderIndexRoute
|
|
231
|
+
'/api/v1/conversation-query': typeof ApiV1ConversationQueryRoute
|
|
232
|
+
'/api/v1/conversations': typeof ApiV1ConversationsRouteWithChildren
|
|
233
|
+
'/api/v1/resolve': typeof ApiV1ResolveRoute
|
|
234
|
+
'/api/v1/sources': typeof ApiV1SourcesRoute
|
|
235
|
+
'/api/v1/conversations/$source/$id': typeof ApiV1ConversationsSourceIdRouteWithChildren
|
|
236
|
+
'/api/v1/conversations/$source/$id/export': typeof ApiV1ConversationsSourceIdExportRoute
|
|
237
|
+
}
|
|
238
|
+
export interface FileRoutesByTo {
|
|
239
|
+
'/': typeof IndexRoute
|
|
240
|
+
'/$threadId': typeof ThreadIdRoute
|
|
241
|
+
'/analytics': typeof AnalyticsRoute
|
|
242
|
+
'/settings': typeof SettingsRoute
|
|
243
|
+
'/antigravity-conversations/$conversationId': typeof AntigravityConversationsConversationIdRoute
|
|
244
|
+
'/antigravity/$workspaceKey': typeof AntigravityWorkspaceKeyRoute
|
|
245
|
+
'/claude-code-sessions/$sessionId': typeof ClaudeCodeSessionsSessionIdRoute
|
|
246
|
+
'/claude-code/$workspaceKey': typeof ClaudeCodeWorkspaceKeyRoute
|
|
247
|
+
'/codex/$project': typeof CodexProjectRoute
|
|
248
|
+
'/cursor-threads/$composerId': typeof CursorThreadsComposerIdRoute
|
|
249
|
+
'/cursor/$workspaceKey': typeof CursorWorkspaceKeyRoute
|
|
250
|
+
'/kiro-sessions/$sessionId': typeof KiroSessionsSessionIdRoute
|
|
251
|
+
'/kiro/$workspaceKey': typeof KiroWorkspaceKeyRoute
|
|
252
|
+
'/opencode-sessions/$sessionId': typeof OpencodeSessionsSessionIdRoute
|
|
253
|
+
'/opencode/$workspaceKey': typeof OpencodeWorkspaceKeyRoute
|
|
254
|
+
'/qoder-sessions/$sessionId': typeof QoderSessionsSessionIdRoute
|
|
255
|
+
'/qoder/$workspaceKey': typeof QoderWorkspaceKeyRoute
|
|
256
|
+
'/threads/$threadId': typeof ThreadsThreadIdRoute
|
|
257
|
+
'/antigravity': typeof AntigravityIndexRoute
|
|
258
|
+
'/claude-code': typeof ClaudeCodeIndexRoute
|
|
259
|
+
'/codex': typeof CodexIndexRoute
|
|
260
|
+
'/cursor': typeof CursorIndexRoute
|
|
261
|
+
'/kiro': typeof KiroIndexRoute
|
|
262
|
+
'/opencode': typeof OpencodeIndexRoute
|
|
263
|
+
'/qoder': typeof QoderIndexRoute
|
|
264
|
+
'/api/v1/conversation-query': typeof ApiV1ConversationQueryRoute
|
|
265
|
+
'/api/v1/conversations': typeof ApiV1ConversationsRouteWithChildren
|
|
266
|
+
'/api/v1/resolve': typeof ApiV1ResolveRoute
|
|
267
|
+
'/api/v1/sources': typeof ApiV1SourcesRoute
|
|
268
|
+
'/api/v1/conversations/$source/$id': typeof ApiV1ConversationsSourceIdRouteWithChildren
|
|
269
|
+
'/api/v1/conversations/$source/$id/export': typeof ApiV1ConversationsSourceIdExportRoute
|
|
270
|
+
}
|
|
271
|
+
export interface FileRoutesById {
|
|
272
|
+
__root__: typeof rootRouteImport
|
|
273
|
+
'/': typeof IndexRoute
|
|
274
|
+
'/$threadId': typeof ThreadIdRoute
|
|
275
|
+
'/analytics': typeof AnalyticsRoute
|
|
276
|
+
'/settings': typeof SettingsRoute
|
|
277
|
+
'/antigravity-conversations/$conversationId': typeof AntigravityConversationsConversationIdRoute
|
|
278
|
+
'/antigravity/$workspaceKey': typeof AntigravityWorkspaceKeyRoute
|
|
279
|
+
'/claude-code-sessions/$sessionId': typeof ClaudeCodeSessionsSessionIdRoute
|
|
280
|
+
'/claude-code/$workspaceKey': typeof ClaudeCodeWorkspaceKeyRoute
|
|
281
|
+
'/codex/$project': typeof CodexProjectRoute
|
|
282
|
+
'/cursor-threads/$composerId': typeof CursorThreadsComposerIdRoute
|
|
283
|
+
'/cursor/$workspaceKey': typeof CursorWorkspaceKeyRoute
|
|
284
|
+
'/kiro-sessions/$sessionId': typeof KiroSessionsSessionIdRoute
|
|
285
|
+
'/kiro/$workspaceKey': typeof KiroWorkspaceKeyRoute
|
|
286
|
+
'/opencode-sessions/$sessionId': typeof OpencodeSessionsSessionIdRoute
|
|
287
|
+
'/opencode/$workspaceKey': typeof OpencodeWorkspaceKeyRoute
|
|
288
|
+
'/qoder-sessions/$sessionId': typeof QoderSessionsSessionIdRoute
|
|
289
|
+
'/qoder/$workspaceKey': typeof QoderWorkspaceKeyRoute
|
|
290
|
+
'/threads/$threadId': typeof ThreadsThreadIdRoute
|
|
291
|
+
'/antigravity/': typeof AntigravityIndexRoute
|
|
292
|
+
'/claude-code/': typeof ClaudeCodeIndexRoute
|
|
293
|
+
'/codex/': typeof CodexIndexRoute
|
|
294
|
+
'/cursor/': typeof CursorIndexRoute
|
|
295
|
+
'/kiro/': typeof KiroIndexRoute
|
|
296
|
+
'/opencode/': typeof OpencodeIndexRoute
|
|
297
|
+
'/qoder/': typeof QoderIndexRoute
|
|
298
|
+
'/api/v1/conversation-query': typeof ApiV1ConversationQueryRoute
|
|
299
|
+
'/api/v1/conversations': typeof ApiV1ConversationsRouteWithChildren
|
|
300
|
+
'/api/v1/resolve': typeof ApiV1ResolveRoute
|
|
301
|
+
'/api/v1/sources': typeof ApiV1SourcesRoute
|
|
302
|
+
'/api/v1/conversations/$source/$id': typeof ApiV1ConversationsSourceIdRouteWithChildren
|
|
303
|
+
'/api/v1/conversations/$source/$id/export': typeof ApiV1ConversationsSourceIdExportRoute
|
|
304
|
+
}
|
|
305
|
+
export interface FileRouteTypes {
|
|
306
|
+
fileRoutesByFullPath: FileRoutesByFullPath
|
|
307
|
+
fullPaths:
|
|
308
|
+
| '/'
|
|
309
|
+
| '/$threadId'
|
|
310
|
+
| '/analytics'
|
|
311
|
+
| '/settings'
|
|
312
|
+
| '/antigravity-conversations/$conversationId'
|
|
313
|
+
| '/antigravity/$workspaceKey'
|
|
314
|
+
| '/claude-code-sessions/$sessionId'
|
|
315
|
+
| '/claude-code/$workspaceKey'
|
|
316
|
+
| '/codex/$project'
|
|
317
|
+
| '/cursor-threads/$composerId'
|
|
318
|
+
| '/cursor/$workspaceKey'
|
|
319
|
+
| '/kiro-sessions/$sessionId'
|
|
320
|
+
| '/kiro/$workspaceKey'
|
|
321
|
+
| '/opencode-sessions/$sessionId'
|
|
322
|
+
| '/opencode/$workspaceKey'
|
|
323
|
+
| '/qoder-sessions/$sessionId'
|
|
324
|
+
| '/qoder/$workspaceKey'
|
|
325
|
+
| '/threads/$threadId'
|
|
326
|
+
| '/antigravity/'
|
|
327
|
+
| '/claude-code/'
|
|
328
|
+
| '/codex/'
|
|
329
|
+
| '/cursor/'
|
|
330
|
+
| '/kiro/'
|
|
331
|
+
| '/opencode/'
|
|
332
|
+
| '/qoder/'
|
|
333
|
+
| '/api/v1/conversation-query'
|
|
334
|
+
| '/api/v1/conversations'
|
|
335
|
+
| '/api/v1/resolve'
|
|
336
|
+
| '/api/v1/sources'
|
|
337
|
+
| '/api/v1/conversations/$source/$id'
|
|
338
|
+
| '/api/v1/conversations/$source/$id/export'
|
|
339
|
+
fileRoutesByTo: FileRoutesByTo
|
|
340
|
+
to:
|
|
341
|
+
| '/'
|
|
342
|
+
| '/$threadId'
|
|
343
|
+
| '/analytics'
|
|
344
|
+
| '/settings'
|
|
345
|
+
| '/antigravity-conversations/$conversationId'
|
|
346
|
+
| '/antigravity/$workspaceKey'
|
|
347
|
+
| '/claude-code-sessions/$sessionId'
|
|
348
|
+
| '/claude-code/$workspaceKey'
|
|
349
|
+
| '/codex/$project'
|
|
350
|
+
| '/cursor-threads/$composerId'
|
|
351
|
+
| '/cursor/$workspaceKey'
|
|
352
|
+
| '/kiro-sessions/$sessionId'
|
|
353
|
+
| '/kiro/$workspaceKey'
|
|
354
|
+
| '/opencode-sessions/$sessionId'
|
|
355
|
+
| '/opencode/$workspaceKey'
|
|
356
|
+
| '/qoder-sessions/$sessionId'
|
|
357
|
+
| '/qoder/$workspaceKey'
|
|
358
|
+
| '/threads/$threadId'
|
|
359
|
+
| '/antigravity'
|
|
360
|
+
| '/claude-code'
|
|
361
|
+
| '/codex'
|
|
362
|
+
| '/cursor'
|
|
363
|
+
| '/kiro'
|
|
364
|
+
| '/opencode'
|
|
365
|
+
| '/qoder'
|
|
366
|
+
| '/api/v1/conversation-query'
|
|
367
|
+
| '/api/v1/conversations'
|
|
368
|
+
| '/api/v1/resolve'
|
|
369
|
+
| '/api/v1/sources'
|
|
370
|
+
| '/api/v1/conversations/$source/$id'
|
|
371
|
+
| '/api/v1/conversations/$source/$id/export'
|
|
372
|
+
id:
|
|
373
|
+
| '__root__'
|
|
374
|
+
| '/'
|
|
375
|
+
| '/$threadId'
|
|
376
|
+
| '/analytics'
|
|
377
|
+
| '/settings'
|
|
378
|
+
| '/antigravity-conversations/$conversationId'
|
|
379
|
+
| '/antigravity/$workspaceKey'
|
|
380
|
+
| '/claude-code-sessions/$sessionId'
|
|
381
|
+
| '/claude-code/$workspaceKey'
|
|
382
|
+
| '/codex/$project'
|
|
383
|
+
| '/cursor-threads/$composerId'
|
|
384
|
+
| '/cursor/$workspaceKey'
|
|
385
|
+
| '/kiro-sessions/$sessionId'
|
|
386
|
+
| '/kiro/$workspaceKey'
|
|
387
|
+
| '/opencode-sessions/$sessionId'
|
|
388
|
+
| '/opencode/$workspaceKey'
|
|
389
|
+
| '/qoder-sessions/$sessionId'
|
|
390
|
+
| '/qoder/$workspaceKey'
|
|
391
|
+
| '/threads/$threadId'
|
|
392
|
+
| '/antigravity/'
|
|
393
|
+
| '/claude-code/'
|
|
394
|
+
| '/codex/'
|
|
395
|
+
| '/cursor/'
|
|
396
|
+
| '/kiro/'
|
|
397
|
+
| '/opencode/'
|
|
398
|
+
| '/qoder/'
|
|
399
|
+
| '/api/v1/conversation-query'
|
|
400
|
+
| '/api/v1/conversations'
|
|
401
|
+
| '/api/v1/resolve'
|
|
402
|
+
| '/api/v1/sources'
|
|
403
|
+
| '/api/v1/conversations/$source/$id'
|
|
404
|
+
| '/api/v1/conversations/$source/$id/export'
|
|
405
|
+
fileRoutesById: FileRoutesById
|
|
406
|
+
}
|
|
407
|
+
export interface RootRouteChildren {
|
|
408
|
+
IndexRoute: typeof IndexRoute
|
|
409
|
+
ThreadIdRoute: typeof ThreadIdRoute
|
|
410
|
+
AnalyticsRoute: typeof AnalyticsRoute
|
|
411
|
+
SettingsRoute: typeof SettingsRoute
|
|
412
|
+
AntigravityConversationsConversationIdRoute: typeof AntigravityConversationsConversationIdRoute
|
|
413
|
+
AntigravityWorkspaceKeyRoute: typeof AntigravityWorkspaceKeyRoute
|
|
414
|
+
ClaudeCodeSessionsSessionIdRoute: typeof ClaudeCodeSessionsSessionIdRoute
|
|
415
|
+
ClaudeCodeWorkspaceKeyRoute: typeof ClaudeCodeWorkspaceKeyRoute
|
|
416
|
+
CodexProjectRoute: typeof CodexProjectRoute
|
|
417
|
+
CursorThreadsComposerIdRoute: typeof CursorThreadsComposerIdRoute
|
|
418
|
+
CursorWorkspaceKeyRoute: typeof CursorWorkspaceKeyRoute
|
|
419
|
+
KiroSessionsSessionIdRoute: typeof KiroSessionsSessionIdRoute
|
|
420
|
+
KiroWorkspaceKeyRoute: typeof KiroWorkspaceKeyRoute
|
|
421
|
+
OpencodeSessionsSessionIdRoute: typeof OpencodeSessionsSessionIdRoute
|
|
422
|
+
OpencodeWorkspaceKeyRoute: typeof OpencodeWorkspaceKeyRoute
|
|
423
|
+
QoderSessionsSessionIdRoute: typeof QoderSessionsSessionIdRoute
|
|
424
|
+
QoderWorkspaceKeyRoute: typeof QoderWorkspaceKeyRoute
|
|
425
|
+
ThreadsThreadIdRoute: typeof ThreadsThreadIdRoute
|
|
426
|
+
AntigravityIndexRoute: typeof AntigravityIndexRoute
|
|
427
|
+
ClaudeCodeIndexRoute: typeof ClaudeCodeIndexRoute
|
|
428
|
+
CodexIndexRoute: typeof CodexIndexRoute
|
|
429
|
+
CursorIndexRoute: typeof CursorIndexRoute
|
|
430
|
+
KiroIndexRoute: typeof KiroIndexRoute
|
|
431
|
+
OpencodeIndexRoute: typeof OpencodeIndexRoute
|
|
432
|
+
QoderIndexRoute: typeof QoderIndexRoute
|
|
433
|
+
ApiV1ConversationQueryRoute: typeof ApiV1ConversationQueryRoute
|
|
434
|
+
ApiV1ConversationsRoute: typeof ApiV1ConversationsRouteWithChildren
|
|
435
|
+
ApiV1ResolveRoute: typeof ApiV1ResolveRoute
|
|
436
|
+
ApiV1SourcesRoute: typeof ApiV1SourcesRoute
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
declare module '@tanstack/react-router' {
|
|
440
|
+
interface FileRoutesByPath {
|
|
441
|
+
'/settings': {
|
|
442
|
+
id: '/settings'
|
|
443
|
+
path: '/settings'
|
|
444
|
+
fullPath: '/settings'
|
|
445
|
+
preLoaderRoute: typeof SettingsRouteImport
|
|
446
|
+
parentRoute: typeof rootRouteImport
|
|
447
|
+
}
|
|
448
|
+
'/analytics': {
|
|
449
|
+
id: '/analytics'
|
|
450
|
+
path: '/analytics'
|
|
451
|
+
fullPath: '/analytics'
|
|
452
|
+
preLoaderRoute: typeof AnalyticsRouteImport
|
|
453
|
+
parentRoute: typeof rootRouteImport
|
|
454
|
+
}
|
|
455
|
+
'/$threadId': {
|
|
456
|
+
id: '/$threadId'
|
|
457
|
+
path: '/$threadId'
|
|
458
|
+
fullPath: '/$threadId'
|
|
459
|
+
preLoaderRoute: typeof ThreadIdRouteImport
|
|
460
|
+
parentRoute: typeof rootRouteImport
|
|
461
|
+
}
|
|
462
|
+
'/': {
|
|
463
|
+
id: '/'
|
|
464
|
+
path: '/'
|
|
465
|
+
fullPath: '/'
|
|
466
|
+
preLoaderRoute: typeof IndexRouteImport
|
|
467
|
+
parentRoute: typeof rootRouteImport
|
|
468
|
+
}
|
|
469
|
+
'/qoder/': {
|
|
470
|
+
id: '/qoder/'
|
|
471
|
+
path: '/qoder'
|
|
472
|
+
fullPath: '/qoder/'
|
|
473
|
+
preLoaderRoute: typeof QoderIndexRouteImport
|
|
474
|
+
parentRoute: typeof rootRouteImport
|
|
475
|
+
}
|
|
476
|
+
'/opencode/': {
|
|
477
|
+
id: '/opencode/'
|
|
478
|
+
path: '/opencode'
|
|
479
|
+
fullPath: '/opencode/'
|
|
480
|
+
preLoaderRoute: typeof OpencodeIndexRouteImport
|
|
481
|
+
parentRoute: typeof rootRouteImport
|
|
482
|
+
}
|
|
483
|
+
'/kiro/': {
|
|
484
|
+
id: '/kiro/'
|
|
485
|
+
path: '/kiro'
|
|
486
|
+
fullPath: '/kiro/'
|
|
487
|
+
preLoaderRoute: typeof KiroIndexRouteImport
|
|
488
|
+
parentRoute: typeof rootRouteImport
|
|
489
|
+
}
|
|
490
|
+
'/cursor/': {
|
|
491
|
+
id: '/cursor/'
|
|
492
|
+
path: '/cursor'
|
|
493
|
+
fullPath: '/cursor/'
|
|
494
|
+
preLoaderRoute: typeof CursorIndexRouteImport
|
|
495
|
+
parentRoute: typeof rootRouteImport
|
|
496
|
+
}
|
|
497
|
+
'/codex/': {
|
|
498
|
+
id: '/codex/'
|
|
499
|
+
path: '/codex'
|
|
500
|
+
fullPath: '/codex/'
|
|
501
|
+
preLoaderRoute: typeof CodexIndexRouteImport
|
|
502
|
+
parentRoute: typeof rootRouteImport
|
|
503
|
+
}
|
|
504
|
+
'/claude-code/': {
|
|
505
|
+
id: '/claude-code/'
|
|
506
|
+
path: '/claude-code'
|
|
507
|
+
fullPath: '/claude-code/'
|
|
508
|
+
preLoaderRoute: typeof ClaudeCodeIndexRouteImport
|
|
509
|
+
parentRoute: typeof rootRouteImport
|
|
510
|
+
}
|
|
511
|
+
'/antigravity/': {
|
|
512
|
+
id: '/antigravity/'
|
|
513
|
+
path: '/antigravity'
|
|
514
|
+
fullPath: '/antigravity/'
|
|
515
|
+
preLoaderRoute: typeof AntigravityIndexRouteImport
|
|
516
|
+
parentRoute: typeof rootRouteImport
|
|
517
|
+
}
|
|
518
|
+
'/threads/$threadId': {
|
|
519
|
+
id: '/threads/$threadId'
|
|
520
|
+
path: '/threads/$threadId'
|
|
521
|
+
fullPath: '/threads/$threadId'
|
|
522
|
+
preLoaderRoute: typeof ThreadsThreadIdRouteImport
|
|
523
|
+
parentRoute: typeof rootRouteImport
|
|
524
|
+
}
|
|
525
|
+
'/qoder/$workspaceKey': {
|
|
526
|
+
id: '/qoder/$workspaceKey'
|
|
527
|
+
path: '/qoder/$workspaceKey'
|
|
528
|
+
fullPath: '/qoder/$workspaceKey'
|
|
529
|
+
preLoaderRoute: typeof QoderWorkspaceKeyRouteImport
|
|
530
|
+
parentRoute: typeof rootRouteImport
|
|
531
|
+
}
|
|
532
|
+
'/qoder-sessions/$sessionId': {
|
|
533
|
+
id: '/qoder-sessions/$sessionId'
|
|
534
|
+
path: '/qoder-sessions/$sessionId'
|
|
535
|
+
fullPath: '/qoder-sessions/$sessionId'
|
|
536
|
+
preLoaderRoute: typeof QoderSessionsSessionIdRouteImport
|
|
537
|
+
parentRoute: typeof rootRouteImport
|
|
538
|
+
}
|
|
539
|
+
'/opencode/$workspaceKey': {
|
|
540
|
+
id: '/opencode/$workspaceKey'
|
|
541
|
+
path: '/opencode/$workspaceKey'
|
|
542
|
+
fullPath: '/opencode/$workspaceKey'
|
|
543
|
+
preLoaderRoute: typeof OpencodeWorkspaceKeyRouteImport
|
|
544
|
+
parentRoute: typeof rootRouteImport
|
|
545
|
+
}
|
|
546
|
+
'/opencode-sessions/$sessionId': {
|
|
547
|
+
id: '/opencode-sessions/$sessionId'
|
|
548
|
+
path: '/opencode-sessions/$sessionId'
|
|
549
|
+
fullPath: '/opencode-sessions/$sessionId'
|
|
550
|
+
preLoaderRoute: typeof OpencodeSessionsSessionIdRouteImport
|
|
551
|
+
parentRoute: typeof rootRouteImport
|
|
552
|
+
}
|
|
553
|
+
'/kiro/$workspaceKey': {
|
|
554
|
+
id: '/kiro/$workspaceKey'
|
|
555
|
+
path: '/kiro/$workspaceKey'
|
|
556
|
+
fullPath: '/kiro/$workspaceKey'
|
|
557
|
+
preLoaderRoute: typeof KiroWorkspaceKeyRouteImport
|
|
558
|
+
parentRoute: typeof rootRouteImport
|
|
559
|
+
}
|
|
560
|
+
'/kiro-sessions/$sessionId': {
|
|
561
|
+
id: '/kiro-sessions/$sessionId'
|
|
562
|
+
path: '/kiro-sessions/$sessionId'
|
|
563
|
+
fullPath: '/kiro-sessions/$sessionId'
|
|
564
|
+
preLoaderRoute: typeof KiroSessionsSessionIdRouteImport
|
|
565
|
+
parentRoute: typeof rootRouteImport
|
|
566
|
+
}
|
|
567
|
+
'/cursor/$workspaceKey': {
|
|
568
|
+
id: '/cursor/$workspaceKey'
|
|
569
|
+
path: '/cursor/$workspaceKey'
|
|
570
|
+
fullPath: '/cursor/$workspaceKey'
|
|
571
|
+
preLoaderRoute: typeof CursorWorkspaceKeyRouteImport
|
|
572
|
+
parentRoute: typeof rootRouteImport
|
|
573
|
+
}
|
|
574
|
+
'/cursor-threads/$composerId': {
|
|
575
|
+
id: '/cursor-threads/$composerId'
|
|
576
|
+
path: '/cursor-threads/$composerId'
|
|
577
|
+
fullPath: '/cursor-threads/$composerId'
|
|
578
|
+
preLoaderRoute: typeof CursorThreadsComposerIdRouteImport
|
|
579
|
+
parentRoute: typeof rootRouteImport
|
|
580
|
+
}
|
|
581
|
+
'/codex/$project': {
|
|
582
|
+
id: '/codex/$project'
|
|
583
|
+
path: '/codex/$project'
|
|
584
|
+
fullPath: '/codex/$project'
|
|
585
|
+
preLoaderRoute: typeof CodexProjectRouteImport
|
|
586
|
+
parentRoute: typeof rootRouteImport
|
|
587
|
+
}
|
|
588
|
+
'/claude-code/$workspaceKey': {
|
|
589
|
+
id: '/claude-code/$workspaceKey'
|
|
590
|
+
path: '/claude-code/$workspaceKey'
|
|
591
|
+
fullPath: '/claude-code/$workspaceKey'
|
|
592
|
+
preLoaderRoute: typeof ClaudeCodeWorkspaceKeyRouteImport
|
|
593
|
+
parentRoute: typeof rootRouteImport
|
|
594
|
+
}
|
|
595
|
+
'/claude-code-sessions/$sessionId': {
|
|
596
|
+
id: '/claude-code-sessions/$sessionId'
|
|
597
|
+
path: '/claude-code-sessions/$sessionId'
|
|
598
|
+
fullPath: '/claude-code-sessions/$sessionId'
|
|
599
|
+
preLoaderRoute: typeof ClaudeCodeSessionsSessionIdRouteImport
|
|
600
|
+
parentRoute: typeof rootRouteImport
|
|
601
|
+
}
|
|
602
|
+
'/antigravity/$workspaceKey': {
|
|
603
|
+
id: '/antigravity/$workspaceKey'
|
|
604
|
+
path: '/antigravity/$workspaceKey'
|
|
605
|
+
fullPath: '/antigravity/$workspaceKey'
|
|
606
|
+
preLoaderRoute: typeof AntigravityWorkspaceKeyRouteImport
|
|
607
|
+
parentRoute: typeof rootRouteImport
|
|
608
|
+
}
|
|
609
|
+
'/antigravity-conversations/$conversationId': {
|
|
610
|
+
id: '/antigravity-conversations/$conversationId'
|
|
611
|
+
path: '/antigravity-conversations/$conversationId'
|
|
612
|
+
fullPath: '/antigravity-conversations/$conversationId'
|
|
613
|
+
preLoaderRoute: typeof AntigravityConversationsConversationIdRouteImport
|
|
614
|
+
parentRoute: typeof rootRouteImport
|
|
615
|
+
}
|
|
616
|
+
'/api/v1/sources': {
|
|
617
|
+
id: '/api/v1/sources'
|
|
618
|
+
path: '/api/v1/sources'
|
|
619
|
+
fullPath: '/api/v1/sources'
|
|
620
|
+
preLoaderRoute: typeof ApiV1SourcesRouteImport
|
|
621
|
+
parentRoute: typeof rootRouteImport
|
|
622
|
+
}
|
|
623
|
+
'/api/v1/resolve': {
|
|
624
|
+
id: '/api/v1/resolve'
|
|
625
|
+
path: '/api/v1/resolve'
|
|
626
|
+
fullPath: '/api/v1/resolve'
|
|
627
|
+
preLoaderRoute: typeof ApiV1ResolveRouteImport
|
|
628
|
+
parentRoute: typeof rootRouteImport
|
|
629
|
+
}
|
|
630
|
+
'/api/v1/conversations': {
|
|
631
|
+
id: '/api/v1/conversations'
|
|
632
|
+
path: '/api/v1/conversations'
|
|
633
|
+
fullPath: '/api/v1/conversations'
|
|
634
|
+
preLoaderRoute: typeof ApiV1ConversationsRouteImport
|
|
635
|
+
parentRoute: typeof rootRouteImport
|
|
636
|
+
}
|
|
637
|
+
'/api/v1/conversation-query': {
|
|
638
|
+
id: '/api/v1/conversation-query'
|
|
639
|
+
path: '/api/v1/conversation-query'
|
|
640
|
+
fullPath: '/api/v1/conversation-query'
|
|
641
|
+
preLoaderRoute: typeof ApiV1ConversationQueryRouteImport
|
|
642
|
+
parentRoute: typeof rootRouteImport
|
|
643
|
+
}
|
|
644
|
+
'/api/v1/conversations/$source/$id': {
|
|
645
|
+
id: '/api/v1/conversations/$source/$id'
|
|
646
|
+
path: '/$source/$id'
|
|
647
|
+
fullPath: '/api/v1/conversations/$source/$id'
|
|
648
|
+
preLoaderRoute: typeof ApiV1ConversationsSourceIdRouteImport
|
|
649
|
+
parentRoute: typeof ApiV1ConversationsRoute
|
|
650
|
+
}
|
|
651
|
+
'/api/v1/conversations/$source/$id/export': {
|
|
652
|
+
id: '/api/v1/conversations/$source/$id/export'
|
|
653
|
+
path: '/export'
|
|
654
|
+
fullPath: '/api/v1/conversations/$source/$id/export'
|
|
655
|
+
preLoaderRoute: typeof ApiV1ConversationsSourceIdExportRouteImport
|
|
656
|
+
parentRoute: typeof ApiV1ConversationsSourceIdRoute
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
interface ApiV1ConversationsSourceIdRouteChildren {
|
|
662
|
+
ApiV1ConversationsSourceIdExportRoute: typeof ApiV1ConversationsSourceIdExportRoute
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
const ApiV1ConversationsSourceIdRouteChildren: ApiV1ConversationsSourceIdRouteChildren =
|
|
666
|
+
{
|
|
667
|
+
ApiV1ConversationsSourceIdExportRoute:
|
|
668
|
+
ApiV1ConversationsSourceIdExportRoute,
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
const ApiV1ConversationsSourceIdRouteWithChildren =
|
|
672
|
+
ApiV1ConversationsSourceIdRoute._addFileChildren(
|
|
673
|
+
ApiV1ConversationsSourceIdRouteChildren,
|
|
674
|
+
)
|
|
675
|
+
|
|
676
|
+
interface ApiV1ConversationsRouteChildren {
|
|
677
|
+
ApiV1ConversationsSourceIdRoute: typeof ApiV1ConversationsSourceIdRouteWithChildren
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
const ApiV1ConversationsRouteChildren: ApiV1ConversationsRouteChildren = {
|
|
681
|
+
ApiV1ConversationsSourceIdRoute: ApiV1ConversationsSourceIdRouteWithChildren,
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
const ApiV1ConversationsRouteWithChildren =
|
|
685
|
+
ApiV1ConversationsRoute._addFileChildren(ApiV1ConversationsRouteChildren)
|
|
686
|
+
|
|
687
|
+
const rootRouteChildren: RootRouteChildren = {
|
|
688
|
+
IndexRoute: IndexRoute,
|
|
689
|
+
ThreadIdRoute: ThreadIdRoute,
|
|
690
|
+
AnalyticsRoute: AnalyticsRoute,
|
|
691
|
+
SettingsRoute: SettingsRoute,
|
|
692
|
+
AntigravityConversationsConversationIdRoute:
|
|
693
|
+
AntigravityConversationsConversationIdRoute,
|
|
694
|
+
AntigravityWorkspaceKeyRoute: AntigravityWorkspaceKeyRoute,
|
|
695
|
+
ClaudeCodeSessionsSessionIdRoute: ClaudeCodeSessionsSessionIdRoute,
|
|
696
|
+
ClaudeCodeWorkspaceKeyRoute: ClaudeCodeWorkspaceKeyRoute,
|
|
697
|
+
CodexProjectRoute: CodexProjectRoute,
|
|
698
|
+
CursorThreadsComposerIdRoute: CursorThreadsComposerIdRoute,
|
|
699
|
+
CursorWorkspaceKeyRoute: CursorWorkspaceKeyRoute,
|
|
700
|
+
KiroSessionsSessionIdRoute: KiroSessionsSessionIdRoute,
|
|
701
|
+
KiroWorkspaceKeyRoute: KiroWorkspaceKeyRoute,
|
|
702
|
+
OpencodeSessionsSessionIdRoute: OpencodeSessionsSessionIdRoute,
|
|
703
|
+
OpencodeWorkspaceKeyRoute: OpencodeWorkspaceKeyRoute,
|
|
704
|
+
QoderSessionsSessionIdRoute: QoderSessionsSessionIdRoute,
|
|
705
|
+
QoderWorkspaceKeyRoute: QoderWorkspaceKeyRoute,
|
|
706
|
+
ThreadsThreadIdRoute: ThreadsThreadIdRoute,
|
|
707
|
+
AntigravityIndexRoute: AntigravityIndexRoute,
|
|
708
|
+
ClaudeCodeIndexRoute: ClaudeCodeIndexRoute,
|
|
709
|
+
CodexIndexRoute: CodexIndexRoute,
|
|
710
|
+
CursorIndexRoute: CursorIndexRoute,
|
|
711
|
+
KiroIndexRoute: KiroIndexRoute,
|
|
712
|
+
OpencodeIndexRoute: OpencodeIndexRoute,
|
|
713
|
+
QoderIndexRoute: QoderIndexRoute,
|
|
714
|
+
ApiV1ConversationQueryRoute: ApiV1ConversationQueryRoute,
|
|
715
|
+
ApiV1ConversationsRoute: ApiV1ConversationsRouteWithChildren,
|
|
716
|
+
ApiV1ResolveRoute: ApiV1ResolveRoute,
|
|
717
|
+
ApiV1SourcesRoute: ApiV1SourcesRoute,
|
|
718
|
+
}
|
|
719
|
+
export const routeTree = rootRouteImport
|
|
720
|
+
._addFileChildren(rootRouteChildren)
|
|
721
|
+
._addFileTypes<FileRouteTypes>()
|
|
722
|
+
|
|
723
|
+
import type { getRouter } from './router.tsx'
|
|
724
|
+
import type { createStart } from '@tanstack/react-start'
|
|
725
|
+
declare module '@tanstack/react-start' {
|
|
726
|
+
interface Register {
|
|
727
|
+
ssr: true
|
|
728
|
+
router: Awaited<ReturnType<typeof getRouter>>
|
|
729
|
+
}
|
|
730
|
+
}
|