agent-relay 2.0.0 → 2.0.4
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/deploy/workspace/entrypoint.sh +4 -0
- package/dist/dashboard/out/404.html +1 -1
- package/dist/dashboard/out/app/onboarding.html +1 -1
- package/dist/dashboard/out/app/onboarding.txt +1 -1
- package/dist/dashboard/out/app.html +1 -1
- package/dist/dashboard/out/app.txt +1 -1
- package/dist/dashboard/out/cloud/link.html +1 -1
- package/dist/dashboard/out/cloud/link.txt +1 -1
- package/dist/dashboard/out/connect-repos.html +1 -1
- package/dist/dashboard/out/connect-repos.txt +1 -1
- package/dist/dashboard/out/history.html +1 -1
- package/dist/dashboard/out/history.txt +1 -1
- package/dist/dashboard/out/index.html +1 -1
- package/dist/dashboard/out/index.txt +1 -1
- package/dist/dashboard/out/login.html +1 -1
- package/dist/dashboard/out/login.txt +1 -1
- package/dist/dashboard/out/metrics.html +1 -1
- package/dist/dashboard/out/metrics.txt +1 -1
- package/dist/dashboard/out/pricing.html +1 -1
- package/dist/dashboard/out/pricing.txt +1 -1
- package/dist/dashboard/out/providers/setup/claude.html +1 -1
- package/dist/dashboard/out/providers/setup/claude.txt +1 -1
- package/dist/dashboard/out/providers/setup/codex.html +1 -1
- package/dist/dashboard/out/providers/setup/codex.txt +1 -1
- package/dist/dashboard/out/providers/setup/cursor.html +1 -1
- package/dist/dashboard/out/providers/setup/cursor.txt +1 -1
- package/dist/dashboard/out/providers.html +1 -1
- package/dist/dashboard/out/providers.txt +1 -1
- package/dist/dashboard/out/signup.html +1 -1
- package/dist/dashboard/out/signup.txt +1 -1
- package/dist/src/cli/index.js +7 -5
- package/package.json +10 -10
- package/packages/api-types/package.json +1 -1
- package/packages/bridge/dist/spawner.js +3 -1
- package/packages/bridge/package.json +12 -7
- package/packages/cloud/package.json +11 -6
- package/packages/config/dist/project-namespace.d.ts +4 -0
- package/packages/config/dist/project-namespace.js +8 -0
- package/packages/config/dist/relay-config.d.ts +14 -6
- package/packages/config/dist/relay-config.js +14 -6
- package/packages/config/package.json +7 -2
- package/packages/continuity/package.json +6 -1
- package/packages/daemon/package.json +16 -11
- package/packages/dashboard/dist/server.js +89 -17
- package/packages/dashboard/package.json +14 -22
- package/packages/dashboard/ui/react-components/SpawnModal.tsx +119 -29
- package/packages/dashboard/ui-dist/404.html +1 -1
- package/packages/dashboard/ui-dist/_next/static/chunks/677-7323947c23b35979.js +1 -0
- package/packages/dashboard/ui-dist/app/onboarding.html +1 -1
- package/packages/dashboard/ui-dist/app/onboarding.txt +1 -1
- package/packages/dashboard/ui-dist/app.html +1 -1
- package/packages/dashboard/ui-dist/app.txt +1 -1
- package/packages/dashboard/ui-dist/cloud/link.html +1 -1
- package/packages/dashboard/ui-dist/cloud/link.txt +1 -1
- package/packages/dashboard/ui-dist/connect-repos.html +1 -1
- package/packages/dashboard/ui-dist/connect-repos.txt +1 -1
- package/packages/dashboard/ui-dist/history.html +1 -1
- package/packages/dashboard/ui-dist/history.txt +1 -1
- package/packages/dashboard/ui-dist/index.html +1 -1
- package/packages/dashboard/ui-dist/index.txt +1 -1
- package/packages/dashboard/ui-dist/login.html +1 -1
- package/packages/dashboard/ui-dist/login.txt +1 -1
- package/packages/dashboard/ui-dist/metrics.html +1 -1
- package/packages/dashboard/ui-dist/metrics.txt +1 -1
- package/packages/dashboard/ui-dist/pricing.html +1 -1
- package/packages/dashboard/ui-dist/pricing.txt +1 -1
- package/packages/dashboard/ui-dist/providers/setup/claude.html +1 -1
- package/packages/dashboard/ui-dist/providers/setup/claude.txt +1 -1
- package/packages/dashboard/ui-dist/providers/setup/codex.html +1 -1
- package/packages/dashboard/ui-dist/providers/setup/codex.txt +1 -1
- package/packages/dashboard/ui-dist/providers/setup/cursor.html +1 -1
- package/packages/dashboard/ui-dist/providers/setup/cursor.txt +1 -1
- package/packages/dashboard/ui-dist/providers.html +1 -1
- package/packages/dashboard/ui-dist/providers.txt +1 -1
- package/packages/dashboard/ui-dist/signup.html +1 -1
- package/packages/dashboard/ui-dist/signup.txt +1 -1
- package/packages/dashboard-server/package.json +18 -12
- package/packages/hooks/package.json +9 -4
- package/packages/mcp/README.md +135 -19
- package/packages/mcp/dist/cloud.js +50 -1
- package/packages/mcp/package.json +1 -1
- package/packages/memory/package.json +7 -2
- package/packages/policy/package.json +7 -2
- package/packages/protocol/package.json +6 -1
- package/packages/resiliency/package.json +6 -1
- package/packages/sdk/README.md +160 -43
- package/packages/sdk/dist/client.d.ts +99 -3
- package/packages/sdk/dist/client.js +113 -6
- package/packages/sdk/dist/discovery.d.ts +29 -0
- package/packages/sdk/dist/discovery.js +126 -0
- package/packages/sdk/dist/index.d.ts +1 -0
- package/packages/sdk/dist/index.js +2 -0
- package/packages/sdk/dist/standalone.js +1 -0
- package/packages/sdk/package.json +2 -2
- package/packages/spawner/package.json +2 -2
- package/packages/state/package.json +6 -1
- package/packages/storage/package.json +7 -2
- package/packages/trajectory/package.json +7 -2
- package/packages/user-directory/package.json +7 -2
- package/packages/utils/package.json +6 -1
- package/packages/wrapper/dist/base-wrapper.d.ts +25 -1
- package/packages/wrapper/dist/base-wrapper.js +44 -2
- package/packages/wrapper/dist/relay-pty-orchestrator.d.ts +2 -0
- package/packages/wrapper/dist/relay-pty-orchestrator.js +55 -10
- package/packages/wrapper/dist/shared.d.ts +25 -0
- package/packages/wrapper/dist/shared.js +40 -0
- package/packages/wrapper/dist/tmux-wrapper.d.ts +7 -0
- package/packages/wrapper/dist/tmux-wrapper.js +62 -9
- package/packages/wrapper/package.json +7 -7
- package/.turbo/cache/013415461711937f-meta.json +0 -1
- package/.turbo/cache/013415461711937f.tar.zst +0 -0
- package/.turbo/cache/0562b1ff326acd6d-meta.json +0 -1
- package/.turbo/cache/0562b1ff326acd6d.tar.zst +0 -0
- package/.turbo/cache/0b46e0e17254882f-meta.json +0 -1
- package/.turbo/cache/0b46e0e17254882f.tar.zst +0 -0
- package/.turbo/cache/3799eda981d53d14-meta.json +0 -1
- package/.turbo/cache/3799eda981d53d14.tar.zst +0 -0
- package/.turbo/cache/47e9d8f404ed064d-meta.json +0 -1
- package/.turbo/cache/47e9d8f404ed064d.tar.zst +0 -0
- package/.turbo/cache/4cde1d1e5b298099-meta.json +0 -1
- package/.turbo/cache/4cde1d1e5b298099.tar.zst +0 -0
- package/.turbo/cache/538eea955c0936ef-meta.json +0 -1
- package/.turbo/cache/538eea955c0936ef.tar.zst +0 -0
- package/.turbo/cache/5dceac7f229f5d5d-meta.json +0 -1
- package/.turbo/cache/5dceac7f229f5d5d.tar.zst +0 -0
- package/.turbo/cache/64c15b201819367d-meta.json +0 -1
- package/.turbo/cache/64c15b201819367d.tar.zst +0 -0
- package/.turbo/cache/6d6a21a05efca434-meta.json +0 -1
- package/.turbo/cache/6d6a21a05efca434.tar.zst +0 -0
- package/.turbo/cache/7562610cb03ec040-meta.json +0 -1
- package/.turbo/cache/7562610cb03ec040.tar.zst +0 -0
- package/.turbo/cache/81a2456e17af4d7f-meta.json +0 -1
- package/.turbo/cache/81a2456e17af4d7f.tar.zst +0 -0
- package/.turbo/cache/823fc2a7b12f724c-meta.json +0 -1
- package/.turbo/cache/823fc2a7b12f724c.tar.zst +0 -0
- package/.turbo/cache/9daad16a073d1f91-meta.json +0 -1
- package/.turbo/cache/9daad16a073d1f91.tar.zst +0 -0
- package/.turbo/cache/b81ccbab0a606b60-meta.json +0 -1
- package/.turbo/cache/b81ccbab0a606b60.tar.zst +0 -0
- package/.turbo/cache/cf98487988bfcf91-meta.json +0 -1
- package/.turbo/cache/cf98487988bfcf91.tar.zst +0 -0
- package/.turbo/cache/cfdf7c57dca71f27-meta.json +0 -1
- package/.turbo/cache/cfdf7c57dca71f27.tar.zst +0 -0
- package/.turbo/cache/d3063ef43811b1e5-meta.json +0 -1
- package/.turbo/cache/d3063ef43811b1e5.tar.zst +0 -0
- package/.turbo/cache/de28892eb7678e65-meta.json +0 -1
- package/.turbo/cache/de28892eb7678e65.tar.zst +0 -0
- package/.turbo/cache/ec29adce408132ba-meta.json +0 -1
- package/.turbo/cache/ec29adce408132ba.tar.zst +0 -0
- package/.turbo/cache/f70450d8d305f172-meta.json +0 -1
- package/.turbo/cache/f70450d8d305f172.tar.zst +0 -0
- package/.turbo/cache/fe384d5d6b7a983a-meta.json +0 -1
- package/.turbo/cache/fe384d5d6b7a983a.tar.zst +0 -0
- package/bin/relay-pty +0 -0
- package/packages/dashboard/ui/.next/BUILD_ID +0 -1
- package/packages/dashboard/ui/.next/app-build-manifest.json +0 -135
- package/packages/dashboard/ui/.next/app-path-routes-manifest.json +0 -1
- package/packages/dashboard/ui/.next/build-manifest.json +0 -32
- package/packages/dashboard/ui/.next/cache/config.json +0 -7
- package/packages/dashboard/ui/.next/cache/eslint/.cache_1asv1h5 +0 -1
- package/packages/dashboard/ui/.next/cache/webpack/client-production/0.pack +0 -0
- package/packages/dashboard/ui/.next/cache/webpack/client-production/index.pack +0 -0
- package/packages/dashboard/ui/.next/cache/webpack/edge-server-production/0.pack +0 -0
- package/packages/dashboard/ui/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/packages/dashboard/ui/.next/cache/webpack/server-production/0.pack +0 -0
- package/packages/dashboard/ui/.next/cache/webpack/server-production/index.pack +0 -0
- package/packages/dashboard/ui/.next/export-detail.json +0 -1
- package/packages/dashboard/ui/.next/export-marker.json +0 -1
- package/packages/dashboard/ui/.next/images-manifest.json +0 -1
- package/packages/dashboard/ui/.next/next-minimal-server.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/next-server.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/package.json +0 -1
- package/packages/dashboard/ui/.next/prerender-manifest.json +0 -1
- package/packages/dashboard/ui/.next/react-loadable-manifest.json +0 -1970
- package/packages/dashboard/ui/.next/required-server-files.json +0 -1
- package/packages/dashboard/ui/.next/routes-manifest.json +0 -1
- package/packages/dashboard/ui/.next/server/app/_not-found/page.js +0 -1
- package/packages/dashboard/ui/.next/server/app/_not-found/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/_not-found/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/_not-found.html +0 -1
- package/packages/dashboard/ui/.next/server/app/_not-found.meta +0 -6
- package/packages/dashboard/ui/.next/server/app/_not-found.rsc +0 -9
- package/packages/dashboard/ui/.next/server/app/app/onboarding/page.js +0 -6
- package/packages/dashboard/ui/.next/server/app/app/onboarding/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/app/onboarding/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/app/onboarding.html +0 -1
- package/packages/dashboard/ui/.next/server/app/app/onboarding.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/app/onboarding.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/app/page.js +0 -436
- package/packages/dashboard/ui/.next/server/app/app/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/app/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/app.html +0 -1
- package/packages/dashboard/ui/.next/server/app/app.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/app.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/apple-icon.png/route.js +0 -12
- package/packages/dashboard/ui/.next/server/app/apple-icon.png/route.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/apple-icon.png.body +0 -0
- package/packages/dashboard/ui/.next/server/app/apple-icon.png.meta +0 -1
- package/packages/dashboard/ui/.next/server/app/cloud/link/page.js +0 -1
- package/packages/dashboard/ui/.next/server/app/cloud/link/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/cloud/link/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/cloud/link.html +0 -1
- package/packages/dashboard/ui/.next/server/app/cloud/link.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/cloud/link.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/connect-repos/page.js +0 -6
- package/packages/dashboard/ui/.next/server/app/connect-repos/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/connect-repos/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/connect-repos.html +0 -1
- package/packages/dashboard/ui/.next/server/app/connect-repos.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/connect-repos.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/history/page.js +0 -1
- package/packages/dashboard/ui/.next/server/app/history/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/history/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/history.html +0 -1
- package/packages/dashboard/ui/.next/server/app/history.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/history.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/index.html +0 -1
- package/packages/dashboard/ui/.next/server/app/index.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/index.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/login/page.js +0 -6
- package/packages/dashboard/ui/.next/server/app/login/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/login/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/login.html +0 -5
- package/packages/dashboard/ui/.next/server/app/login.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/login.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/metrics/page.js +0 -1
- package/packages/dashboard/ui/.next/server/app/metrics/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/metrics/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/metrics.html +0 -1
- package/packages/dashboard/ui/.next/server/app/metrics.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/metrics.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/page.js +0 -1
- package/packages/dashboard/ui/.next/server/app/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/pricing/page.js +0 -5
- package/packages/dashboard/ui/.next/server/app/pricing/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/pricing/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/pricing.html +0 -13
- package/packages/dashboard/ui/.next/server/app/pricing.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/pricing.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/providers/page.js +0 -2
- package/packages/dashboard/ui/.next/server/app/providers/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/providers/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/providers/setup/[provider]/page.js +0 -1
- package/packages/dashboard/ui/.next/server/app/providers/setup/[provider]/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/providers/setup/[provider]/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/providers/setup/claude.html +0 -1
- package/packages/dashboard/ui/.next/server/app/providers/setup/claude.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/providers/setup/claude.rsc +0 -8
- package/packages/dashboard/ui/.next/server/app/providers/setup/codex.html +0 -1
- package/packages/dashboard/ui/.next/server/app/providers/setup/codex.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/providers/setup/codex.rsc +0 -8
- package/packages/dashboard/ui/.next/server/app/providers/setup/cursor.html +0 -1
- package/packages/dashboard/ui/.next/server/app/providers/setup/cursor.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/providers/setup/cursor.rsc +0 -8
- package/packages/dashboard/ui/.next/server/app/providers.html +0 -1
- package/packages/dashboard/ui/.next/server/app/providers.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/providers.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app/signup/page.js +0 -6
- package/packages/dashboard/ui/.next/server/app/signup/page.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/app/signup/page_client-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/app/signup.html +0 -6
- package/packages/dashboard/ui/.next/server/app/signup.meta +0 -5
- package/packages/dashboard/ui/.next/server/app/signup.rsc +0 -7
- package/packages/dashboard/ui/.next/server/app-paths-manifest.json +0 -16
- package/packages/dashboard/ui/.next/server/chunks/190.js +0 -1
- package/packages/dashboard/ui/.next/server/chunks/205.js +0 -1
- package/packages/dashboard/ui/.next/server/chunks/251.js +0 -9
- package/packages/dashboard/ui/.next/server/chunks/288.js +0 -1
- package/packages/dashboard/ui/.next/server/chunks/434.js +0 -1
- package/packages/dashboard/ui/.next/server/chunks/471.js +0 -2
- package/packages/dashboard/ui/.next/server/chunks/621.js +0 -1
- package/packages/dashboard/ui/.next/server/chunks/680.js +0 -5
- package/packages/dashboard/ui/.next/server/chunks/682.js +0 -6
- package/packages/dashboard/ui/.next/server/chunks/684.js +0 -1
- package/packages/dashboard/ui/.next/server/chunks/71.js +0 -196
- package/packages/dashboard/ui/.next/server/chunks/711.js +0 -1
- package/packages/dashboard/ui/.next/server/chunks/90.js +0 -17
- package/packages/dashboard/ui/.next/server/chunks/948.js +0 -2
- package/packages/dashboard/ui/.next/server/chunks/font-manifest.json +0 -1
- package/packages/dashboard/ui/.next/server/font-manifest.json +0 -1
- package/packages/dashboard/ui/.next/server/functions-config-manifest.json +0 -1
- package/packages/dashboard/ui/.next/server/interception-route-rewrite-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/middleware-build-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/middleware-manifest.json +0 -6
- package/packages/dashboard/ui/.next/server/middleware-react-loadable-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/next-font-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/next-font-manifest.json +0 -1
- package/packages/dashboard/ui/.next/server/pages/404.html +0 -1
- package/packages/dashboard/ui/.next/server/pages/500.html +0 -1
- package/packages/dashboard/ui/.next/server/pages/_app.js +0 -1
- package/packages/dashboard/ui/.next/server/pages/_app.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/pages/_document.js +0 -1
- package/packages/dashboard/ui/.next/server/pages/_document.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/pages/_error.js +0 -1
- package/packages/dashboard/ui/.next/server/pages/_error.js.nft.json +0 -1
- package/packages/dashboard/ui/.next/server/pages-manifest.json +0 -1
- package/packages/dashboard/ui/.next/server/server-reference-manifest.js +0 -1
- package/packages/dashboard/ui/.next/server/server-reference-manifest.json +0 -1
- package/packages/dashboard/ui/.next/server/webpack-runtime.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/116-a883fca163f3a5bc.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/117-c8afed19e821a35d.js +0 -2
- package/packages/dashboard/ui/.next/static/chunks/282-980c2eb8fff20123.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/532-bace199897eeab37.js +0 -9
- package/packages/dashboard/ui/.next/static/chunks/631-af51bad94027527a.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/648-acb2ff9f77cbfbd3.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/677-30e60cb0b47875b6.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/766-2aea80818f7eb0d8.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/83-4f08122d4e7e79a6.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/847-f1f467060f32afff.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/891-5cb1513eeb97a891.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/_not-found/page-60501fddbafba9dc.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/app/onboarding/page-9914652442f7e4fb.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/app/page-44813aa26ad19681.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/cloud/link/page-fa1d5842aa90e8a6.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/connect-repos/page-113060009ef35bc2.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/history/page-9965d2483011b846.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/layout-6b91e33784c20610.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/login/page-a0ca6f7ca6a100b8.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/metrics/page-1e37ef8e73940b40.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/page-7993778218818ace.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/pricing/page-9db3ebdfa567a7c9.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/providers/page-bcf46064ac4474ce.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/providers/setup/[provider]/page-4dbe33f0f7691b7c.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/app/signup/page-1ede2205b58649ca.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/e868780c-48e5f147c90a3a41.js +0 -18
- package/packages/dashboard/ui/.next/static/chunks/fd9d1056-609918ca7b6280bb.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/framework-f66176bb897dc684.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/main-5a40a5ae29646e1b.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/main-app-fdbeb09028f57c9f.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/pages/_app-72b849fbd24ac258.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/pages/_error-7ba65e1336b92748.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/packages/dashboard/ui/.next/static/chunks/webpack-1cdd8ed57114d5e1.js +0 -1
- package/packages/dashboard/ui/.next/static/css/4034f236dd1a3178.css +0 -1
- package/packages/dashboard/ui/.next/static/css/99c2552394077586.css +0 -1
- package/packages/dashboard/ui/.next/trace +0 -63
- package/packages/dashboard/ui/.next/types/app/app/onboarding/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/app/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/cloud/link/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/connect-repos/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/history/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/layout.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/login/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/metrics/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/pricing/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/providers/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/providers/setup/[provider]/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/app/signup/page.ts +0 -79
- package/packages/dashboard/ui/.next/types/package.json +0 -1
- package/packages/dashboard/ui-dist/_next/static/chunks/677-30e60cb0b47875b6.js +0 -1
- /package/dist/dashboard/out/_next/static/{ZCFjHbkF8yDKS2md3lVgb → 72btMIJ64BCAB4UgVkpaq}/_buildManifest.js +0 -0
- /package/dist/dashboard/out/_next/static/{ZCFjHbkF8yDKS2md3lVgb → 72btMIJ64BCAB4UgVkpaq}/_ssgManifest.js +0 -0
- /package/packages/dashboard/ui-dist/_next/static/{HR7W9z1PPVPFqUboUVZFZ → 0AsOfRemPXJmtynCKT-rx}/_buildManifest.js +0 -0
- /package/packages/dashboard/ui-dist/_next/static/{HR7W9z1PPVPFqUboUVZFZ → 0AsOfRemPXJmtynCKT-rx}/_ssgManifest.js +0 -0
- /package/packages/dashboard/ui-dist/_next/static/{ZCFjHbkF8yDKS2md3lVgb → 72btMIJ64BCAB4UgVkpaq}/_buildManifest.js +0 -0
- /package/packages/dashboard/ui-dist/_next/static/{ZCFjHbkF8yDKS2md3lVgb → 72btMIJ64BCAB4UgVkpaq}/_ssgManifest.js +0 -0
- /package/packages/dashboard/{ui/.next/static/HR7W9z1PPVPFqUboUVZFZ → ui-dist/_next/static/clUN2n0bz9HCjKI0qlOxU}/_buildManifest.js +0 -0
- /package/packages/dashboard/{ui/.next/static/HR7W9z1PPVPFqUboUVZFZ → ui-dist/_next/static/clUN2n0bz9HCjKI0qlOxU}/_ssgManifest.js +0 -0
|
@@ -25,7 +25,7 @@ import { findAgentConfig } from '@agent-relay/config/agent-config';
|
|
|
25
25
|
import { getTrajectoryIntegration, detectPhaseFromContent, detectToolCalls, detectErrors, getCompactTrailInstructions, getTrailEnvVars, } from '@agent-relay/wrapper';
|
|
26
26
|
import { escapeForShell } from '@agent-relay/config/bridge-utils';
|
|
27
27
|
import { detectProviderAuthRevocation } from './auth-detection.js';
|
|
28
|
-
import { stripAnsi, sleep, getDefaultRelayPrefix, buildInjectionString, injectWithRetry as sharedInjectWithRetry, INJECTION_CONSTANTS, CLI_QUIRKS, AdaptiveThrottle, } from './shared.js';
|
|
28
|
+
import { stripAnsi, sleep, getDefaultRelayPrefix, buildInjectionString, injectWithRetry as sharedInjectWithRetry, INJECTION_CONSTANTS, CLI_QUIRKS, AdaptiveThrottle, sortByPriority, getPriorityFromImportance, } from './shared.js';
|
|
29
29
|
import { getTmuxPanePid } from './idle-detector.js';
|
|
30
30
|
import { DEFAULT_TMUX_WRAPPER_CONFIG } from '@agent-relay/config/relay-config';
|
|
31
31
|
const execAsync = promisify(exec);
|
|
@@ -1357,6 +1357,7 @@ export class TmuxWrapper extends BaseWrapper {
|
|
|
1357
1357
|
/**
|
|
1358
1358
|
* Check if we should inject a message.
|
|
1359
1359
|
* Uses UniversalIdleDetector (from BaseWrapper) for robust cross-CLI idle detection.
|
|
1360
|
+
* Processes messages by priority (urgent first).
|
|
1360
1361
|
*/
|
|
1361
1362
|
checkForInjectionOpportunity() {
|
|
1362
1363
|
if (this.messageQueue.length === 0)
|
|
@@ -1365,11 +1366,21 @@ export class TmuxWrapper extends BaseWrapper {
|
|
|
1365
1366
|
return;
|
|
1366
1367
|
if (!this.running)
|
|
1367
1368
|
return;
|
|
1369
|
+
// Sort queue by priority before processing (urgent messages first)
|
|
1370
|
+
if (this.messageQueue.length > 1) {
|
|
1371
|
+
this.messageQueue = sortByPriority(this.messageQueue);
|
|
1372
|
+
}
|
|
1373
|
+
// Check the priority of the next message
|
|
1374
|
+
const nextMsg = this.messageQueue[0];
|
|
1375
|
+
const priority = getPriorityFromImportance(nextMsg?.importance);
|
|
1368
1376
|
// Use universal idle detector for more reliable detection (inherited from BaseWrapper)
|
|
1369
1377
|
const idleResult = this.checkIdleForInjection();
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1378
|
+
// Urgent messages (priority 0) can proceed with lower idle confidence
|
|
1379
|
+
const idleThreshold = priority === 0 ? 0.5 : 0.7;
|
|
1380
|
+
if (!idleResult.isIdle && idleResult.confidence < idleThreshold) {
|
|
1381
|
+
// Not idle yet, retry later (urgent messages retry faster)
|
|
1382
|
+
const baseRetryMs = this.config.injectRetryMs ?? 300;
|
|
1383
|
+
const retryMs = priority <= 1 ? Math.floor(baseRetryMs / 2) : baseRetryMs;
|
|
1373
1384
|
setTimeout(() => this.checkForInjectionOpportunity(), retryMs);
|
|
1374
1385
|
return;
|
|
1375
1386
|
}
|
|
@@ -1400,12 +1411,14 @@ export class TmuxWrapper extends BaseWrapper {
|
|
|
1400
1411
|
return;
|
|
1401
1412
|
}
|
|
1402
1413
|
// Ensure pane output is stable to avoid interleaving with active generation
|
|
1403
|
-
|
|
1414
|
+
// Pass message priority for adaptive timeout (urgent messages wait less)
|
|
1415
|
+
const msgPriority = getPriorityFromImportance(msg.importance);
|
|
1416
|
+
const stablePane = await this.waitForStablePane(this.config.outputStabilityTimeoutMs ?? 800, this.config.outputStabilityPollMs ?? 150, 2, msgPriority);
|
|
1404
1417
|
if (!stablePane) {
|
|
1405
1418
|
this.logStderr('Output still active, re-queuing injection');
|
|
1406
1419
|
this.messageQueue.unshift(msg);
|
|
1407
1420
|
this.isInjecting = false;
|
|
1408
|
-
setTimeout(() => this.checkForInjectionOpportunity(), this.config.injectRetryMs ??
|
|
1421
|
+
setTimeout(() => this.checkForInjectionOpportunity(), this.config.injectRetryMs ?? 300);
|
|
1409
1422
|
return;
|
|
1410
1423
|
}
|
|
1411
1424
|
// For Gemini: check if we're at a shell prompt ($) vs chat prompt (>)
|
|
@@ -1684,14 +1697,48 @@ export class TmuxWrapper extends BaseWrapper {
|
|
|
1684
1697
|
}
|
|
1685
1698
|
/**
|
|
1686
1699
|
* Wait for pane output to stabilize before injecting to avoid interleaving with ongoing output.
|
|
1700
|
+
* Uses adaptive timeout based on idle detector confidence for faster injection when safe.
|
|
1701
|
+
*
|
|
1702
|
+
* @param maxWaitMs - Maximum time to wait (default from config)
|
|
1703
|
+
* @param pollIntervalMs - Polling interval (default from config)
|
|
1704
|
+
* @param requiredStablePolls - Consecutive stable polls needed (default 2)
|
|
1705
|
+
* @param priority - Message priority (lower = more urgent, can use shorter timeout)
|
|
1687
1706
|
*/
|
|
1688
|
-
async waitForStablePane(maxWaitMs =
|
|
1707
|
+
async waitForStablePane(maxWaitMs = 800, pollIntervalMs = 150, requiredStablePolls = 2, priority) {
|
|
1689
1708
|
const start = Date.now();
|
|
1709
|
+
// Adaptive timeout based on idle confidence and priority
|
|
1710
|
+
// If idle detector shows high confidence (process state), we can be more aggressive
|
|
1711
|
+
const idleResult = this.checkIdleForInjection();
|
|
1712
|
+
const highConfidence = idleResult.confidence >= 0.9;
|
|
1713
|
+
// Priority-based timeout adjustment (urgent messages get shorter timeout)
|
|
1714
|
+
let effectiveMaxWait = maxWaitMs;
|
|
1715
|
+
if (priority !== undefined && priority <= 1) {
|
|
1716
|
+
// Urgent/high priority: reduce timeout by 50%
|
|
1717
|
+
effectiveMaxWait = Math.min(maxWaitMs, highConfidence ? 200 : 400);
|
|
1718
|
+
}
|
|
1719
|
+
else if (highConfidence) {
|
|
1720
|
+
// High confidence from process state: reduce timeout by 60%
|
|
1721
|
+
effectiveMaxWait = Math.floor(maxWaitMs * 0.4);
|
|
1722
|
+
}
|
|
1690
1723
|
let lastSig = await this.capturePaneSignature();
|
|
1691
1724
|
if (!lastSig)
|
|
1692
1725
|
return false;
|
|
1693
1726
|
let stableCount = 0;
|
|
1694
|
-
|
|
1727
|
+
// Fast initial check - if already stable, exit quickly
|
|
1728
|
+
await sleep(Math.min(pollIntervalMs, 50));
|
|
1729
|
+
const initialSig = await this.capturePaneSignature();
|
|
1730
|
+
if (initialSig && initialSig === lastSig) {
|
|
1731
|
+
stableCount = 1;
|
|
1732
|
+
// If high confidence and initial check stable, we're good
|
|
1733
|
+
if (highConfidence && stableCount >= 1) {
|
|
1734
|
+
this.logStderr(`waitForStablePane: fast exit (high confidence, ${Date.now() - start}ms)`);
|
|
1735
|
+
return true;
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
else if (initialSig) {
|
|
1739
|
+
lastSig = initialSig;
|
|
1740
|
+
}
|
|
1741
|
+
while (Date.now() - start < effectiveMaxWait) {
|
|
1695
1742
|
await sleep(pollIntervalMs);
|
|
1696
1743
|
const sig = await this.capturePaneSignature();
|
|
1697
1744
|
if (!sig)
|
|
@@ -1699,6 +1746,7 @@ export class TmuxWrapper extends BaseWrapper {
|
|
|
1699
1746
|
if (sig === lastSig) {
|
|
1700
1747
|
stableCount++;
|
|
1701
1748
|
if (stableCount >= requiredStablePolls) {
|
|
1749
|
+
this.logStderr(`waitForStablePane: stable after ${Date.now() - start}ms`);
|
|
1702
1750
|
return true;
|
|
1703
1751
|
}
|
|
1704
1752
|
}
|
|
@@ -1707,7 +1755,12 @@ export class TmuxWrapper extends BaseWrapper {
|
|
|
1707
1755
|
lastSig = sig;
|
|
1708
1756
|
}
|
|
1709
1757
|
}
|
|
1710
|
-
|
|
1758
|
+
// Even on timeout, if we had at least 1 stable poll and high confidence, proceed
|
|
1759
|
+
if (stableCount >= 1 && highConfidence) {
|
|
1760
|
+
this.logStderr(`waitForStablePane: proceeding with partial stability (high confidence)`);
|
|
1761
|
+
return true;
|
|
1762
|
+
}
|
|
1763
|
+
this.logStderr(`waitForStablePane: timed out after ${Date.now() - start}ms`);
|
|
1711
1764
|
return false;
|
|
1712
1765
|
}
|
|
1713
1766
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-relay/wrapper",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "CLI agent wrappers for Agent Relay - tmux, pty integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"clean": "rm -rf dist"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@agent-relay/api-types": "2.0.
|
|
34
|
-
"@agent-relay/protocol": "2.0.
|
|
35
|
-
"@agent-relay/config": "2.0.
|
|
36
|
-
"@agent-relay/continuity": "2.0.
|
|
37
|
-
"@agent-relay/resiliency": "2.0.
|
|
33
|
+
"@agent-relay/api-types": "2.0.4",
|
|
34
|
+
"@agent-relay/protocol": "2.0.4",
|
|
35
|
+
"@agent-relay/config": "2.0.4",
|
|
36
|
+
"@agent-relay/continuity": "2.0.4",
|
|
37
|
+
"@agent-relay/resiliency": "2.0.4"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"typescript": "^5.9.3",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
],
|
|
57
57
|
"repository": {
|
|
58
58
|
"type": "git",
|
|
59
|
-
"url": "https://github.com/AgentWorkforce/relay.git",
|
|
59
|
+
"url": "git+https://github.com/AgentWorkforce/relay.git",
|
|
60
60
|
"directory": "packages/wrapper"
|
|
61
61
|
},
|
|
62
62
|
"license": "MIT"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"013415461711937f","duration":1990}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"0562b1ff326acd6d","duration":4071}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"0b46e0e17254882f","duration":6308}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"3799eda981d53d14","duration":3392}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"47e9d8f404ed064d","duration":12055}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"4cde1d1e5b298099","duration":6325}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"538eea955c0936ef","duration":7319}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"5dceac7f229f5d5d","duration":8534}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"64c15b201819367d","duration":10106}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"6d6a21a05efca434","duration":41274}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"7562610cb03ec040","duration":2768}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"81a2456e17af4d7f","duration":8632}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"823fc2a7b12f724c","duration":4097}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"9daad16a073d1f91","duration":5391}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"b81ccbab0a606b60","duration":2766}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"cf98487988bfcf91","duration":10958}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"cfdf7c57dca71f27","duration":6018}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"d3063ef43811b1e5","duration":2458}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"de28892eb7678e65","duration":2239}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"ec29adce408132ba","duration":2980}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"f70450d8d305f172","duration":9573}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"hash":"fe384d5d6b7a983a","duration":2653}
|
|
Binary file
|
package/bin/relay-pty
DELETED
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
HR7W9z1PPVPFqUboUVZFZ
|
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"pages": {
|
|
3
|
-
"/_not-found/page": [
|
|
4
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
5
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
6
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
7
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
8
|
-
"static/chunks/app/_not-found/page-60501fddbafba9dc.js"
|
|
9
|
-
],
|
|
10
|
-
"/layout": [
|
|
11
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
12
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
13
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
14
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
15
|
-
"static/css/99c2552394077586.css",
|
|
16
|
-
"static/chunks/app/layout-6b91e33784c20610.js"
|
|
17
|
-
],
|
|
18
|
-
"/app/onboarding/page": [
|
|
19
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
20
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
21
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
22
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
23
|
-
"static/chunks/app/app/onboarding/page-9914652442f7e4fb.js"
|
|
24
|
-
],
|
|
25
|
-
"/app/page": [
|
|
26
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
27
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
28
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
29
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
30
|
-
"static/chunks/e868780c-48e5f147c90a3a41.js",
|
|
31
|
-
"static/chunks/532-bace199897eeab37.js",
|
|
32
|
-
"static/chunks/116-a883fca163f3a5bc.js",
|
|
33
|
-
"static/chunks/891-5cb1513eeb97a891.js",
|
|
34
|
-
"static/chunks/83-4f08122d4e7e79a6.js",
|
|
35
|
-
"static/chunks/677-30e60cb0b47875b6.js",
|
|
36
|
-
"static/chunks/631-af51bad94027527a.js",
|
|
37
|
-
"static/chunks/app/app/page-44813aa26ad19681.js"
|
|
38
|
-
],
|
|
39
|
-
"/cloud/link/page": [
|
|
40
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
41
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
42
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
43
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
44
|
-
"static/chunks/847-f1f467060f32afff.js",
|
|
45
|
-
"static/chunks/116-a883fca163f3a5bc.js",
|
|
46
|
-
"static/chunks/app/cloud/link/page-fa1d5842aa90e8a6.js"
|
|
47
|
-
],
|
|
48
|
-
"/connect-repos/page": [
|
|
49
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
50
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
51
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
52
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
53
|
-
"static/chunks/282-980c2eb8fff20123.js",
|
|
54
|
-
"static/chunks/app/connect-repos/page-113060009ef35bc2.js"
|
|
55
|
-
],
|
|
56
|
-
"/history/page": [
|
|
57
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
58
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
59
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
60
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
61
|
-
"static/chunks/648-acb2ff9f77cbfbd3.js",
|
|
62
|
-
"static/chunks/116-a883fca163f3a5bc.js",
|
|
63
|
-
"static/chunks/app/history/page-9965d2483011b846.js"
|
|
64
|
-
],
|
|
65
|
-
"/login/page": [
|
|
66
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
67
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
68
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
69
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
70
|
-
"static/chunks/282-980c2eb8fff20123.js",
|
|
71
|
-
"static/chunks/app/login/page-a0ca6f7ca6a100b8.js"
|
|
72
|
-
],
|
|
73
|
-
"/page": [
|
|
74
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
75
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
76
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
77
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
78
|
-
"static/css/4034f236dd1a3178.css",
|
|
79
|
-
"static/chunks/e868780c-48e5f147c90a3a41.js",
|
|
80
|
-
"static/chunks/532-bace199897eeab37.js",
|
|
81
|
-
"static/chunks/116-a883fca163f3a5bc.js",
|
|
82
|
-
"static/chunks/891-5cb1513eeb97a891.js",
|
|
83
|
-
"static/chunks/83-4f08122d4e7e79a6.js",
|
|
84
|
-
"static/chunks/677-30e60cb0b47875b6.js",
|
|
85
|
-
"static/chunks/766-2aea80818f7eb0d8.js",
|
|
86
|
-
"static/chunks/app/page-7993778218818ace.js"
|
|
87
|
-
],
|
|
88
|
-
"/metrics/page": [
|
|
89
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
90
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
91
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
92
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
93
|
-
"static/chunks/648-acb2ff9f77cbfbd3.js",
|
|
94
|
-
"static/chunks/116-a883fca163f3a5bc.js",
|
|
95
|
-
"static/chunks/app/metrics/page-1e37ef8e73940b40.js"
|
|
96
|
-
],
|
|
97
|
-
"/pricing/page": [
|
|
98
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
99
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
100
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
101
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
102
|
-
"static/css/4034f236dd1a3178.css",
|
|
103
|
-
"static/chunks/766-2aea80818f7eb0d8.js",
|
|
104
|
-
"static/chunks/app/pricing/page-9db3ebdfa567a7c9.js"
|
|
105
|
-
],
|
|
106
|
-
"/providers/page": [
|
|
107
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
108
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
109
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
110
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
111
|
-
"static/chunks/e868780c-48e5f147c90a3a41.js",
|
|
112
|
-
"static/chunks/891-5cb1513eeb97a891.js",
|
|
113
|
-
"static/chunks/83-4f08122d4e7e79a6.js",
|
|
114
|
-
"static/chunks/631-af51bad94027527a.js",
|
|
115
|
-
"static/chunks/app/providers/page-bcf46064ac4474ce.js"
|
|
116
|
-
],
|
|
117
|
-
"/signup/page": [
|
|
118
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
119
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
120
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
121
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
122
|
-
"static/chunks/282-980c2eb8fff20123.js",
|
|
123
|
-
"static/chunks/app/signup/page-1ede2205b58649ca.js"
|
|
124
|
-
],
|
|
125
|
-
"/providers/setup/[provider]/page": [
|
|
126
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
127
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
128
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
129
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js",
|
|
130
|
-
"static/chunks/e868780c-48e5f147c90a3a41.js",
|
|
131
|
-
"static/chunks/891-5cb1513eeb97a891.js",
|
|
132
|
-
"static/chunks/app/providers/setup/[provider]/page-4dbe33f0f7691b7c.js"
|
|
133
|
-
]
|
|
134
|
-
}
|
|
135
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"/_not-found/page":"/_not-found","/app/onboarding/page":"/app/onboarding","/app/page":"/app","/apple-icon.png/route":"/apple-icon.png","/cloud/link/page":"/cloud/link","/connect-repos/page":"/connect-repos","/history/page":"/history","/login/page":"/login","/page":"/","/metrics/page":"/metrics","/pricing/page":"/pricing","/providers/page":"/providers","/signup/page":"/signup","/providers/setup/[provider]/page":"/providers/setup/[provider]"}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"polyfillFiles": [
|
|
3
|
-
"static/chunks/polyfills-42372ed130431b0a.js"
|
|
4
|
-
],
|
|
5
|
-
"devFiles": [],
|
|
6
|
-
"ampDevFiles": [],
|
|
7
|
-
"lowPriorityFiles": [
|
|
8
|
-
"static/HR7W9z1PPVPFqUboUVZFZ/_buildManifest.js",
|
|
9
|
-
"static/HR7W9z1PPVPFqUboUVZFZ/_ssgManifest.js"
|
|
10
|
-
],
|
|
11
|
-
"rootMainFiles": [
|
|
12
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
13
|
-
"static/chunks/fd9d1056-609918ca7b6280bb.js",
|
|
14
|
-
"static/chunks/117-c8afed19e821a35d.js",
|
|
15
|
-
"static/chunks/main-app-fdbeb09028f57c9f.js"
|
|
16
|
-
],
|
|
17
|
-
"pages": {
|
|
18
|
-
"/_app": [
|
|
19
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
20
|
-
"static/chunks/framework-f66176bb897dc684.js",
|
|
21
|
-
"static/chunks/main-5a40a5ae29646e1b.js",
|
|
22
|
-
"static/chunks/pages/_app-72b849fbd24ac258.js"
|
|
23
|
-
],
|
|
24
|
-
"/_error": [
|
|
25
|
-
"static/chunks/webpack-1cdd8ed57114d5e1.js",
|
|
26
|
-
"static/chunks/framework-f66176bb897dc684.js",
|
|
27
|
-
"static/chunks/main-5a40a5ae29646e1b.js",
|
|
28
|
-
"static/chunks/pages/_error-7ba65e1336b92748.js"
|
|
29
|
-
]
|
|
30
|
-
},
|
|
31
|
-
"ampFirstPages": []
|
|
32
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[{"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/onboarding/page.tsx":"1","/home/runner/work/relay/relay/packages/dashboard/ui/app/app/page.tsx":"2","/home/runner/work/relay/relay/packages/dashboard/ui/app/cloud/link/page.tsx":"3","/home/runner/work/relay/relay/packages/dashboard/ui/app/connect-repos/page.tsx":"4","/home/runner/work/relay/relay/packages/dashboard/ui/app/history/page.tsx":"5","/home/runner/work/relay/relay/packages/dashboard/ui/app/layout.tsx":"6","/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx":"7","/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx":"8","/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx":"9","/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx":"10","/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/page.tsx":"11","/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/ProviderSetupClient.tsx":"12","/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/constants.ts":"13","/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/page.tsx":"14","/home/runner/work/relay/relay/packages/dashboard/ui/app/signup/page.tsx":"15","/home/runner/work/relay/relay/packages/dashboard/ui/lib/agent-merge.test.ts":"16","/home/runner/work/relay/relay/packages/dashboard/ui/lib/agent-merge.ts":"17","/home/runner/work/relay/relay/packages/dashboard/ui/lib/api.ts":"18","/home/runner/work/relay/relay/packages/dashboard/ui/lib/cloudApi.ts":"19","/home/runner/work/relay/relay/packages/dashboard/ui/lib/colors.test.ts":"20","/home/runner/work/relay/relay/packages/dashboard/ui/lib/colors.ts":"21","/home/runner/work/relay/relay/packages/dashboard/ui/lib/hierarchy.ts":"22","/home/runner/work/relay/relay/packages/dashboard/ui/lib/stuckDetection.ts":"23"},{"size":17135,"mtime":1769173722165,"results":"24","hashOfConfig":"25"},{"size":27673,"mtime":1769173722165,"results":"26","hashOfConfig":"25"},{"size":19753,"mtime":1769173722165,"results":"27","hashOfConfig":"25"},{"size":17637,"mtime":1769173722165,"results":"28","hashOfConfig":"25"},{"size":24487,"mtime":1769173722166,"results":"29","hashOfConfig":"25"},{"size":472,"mtime":1769173722166,"results":"30","hashOfConfig":"25"},{"size":10532,"mtime":1769173722166,"results":"31","hashOfConfig":"25"},{"size":31104,"mtime":1769173722166,"results":"32","hashOfConfig":"25"},{"size":1971,"mtime":1769173722166,"results":"33","hashOfConfig":"25"},{"size":130,"mtime":1769173722166,"results":"34","hashOfConfig":"25"},{"size":7343,"mtime":1769173722166,"results":"35","hashOfConfig":"25"},{"size":5296,"mtime":1769173722166,"results":"36","hashOfConfig":"25"},{"size":662,"mtime":1769173722166,"results":"37","hashOfConfig":"25"},{"size":1317,"mtime":1769173722166,"results":"38","hashOfConfig":"25"},{"size":14159,"mtime":1769173722166,"results":"39","hashOfConfig":"25"},{"size":1367,"mtime":1769173722167,"results":"40","hashOfConfig":"25"},{"size":947,"mtime":1769173722167,"results":"41","hashOfConfig":"25"},{"size":31248,"mtime":1769173722167,"results":"42","hashOfConfig":"25"},{"size":22105,"mtime":1769173722167,"results":"43","hashOfConfig":"25"},{"size":5201,"mtime":1769173722167,"results":"44","hashOfConfig":"25"},{"size":5719,"mtime":1769173722167,"results":"45","hashOfConfig":"25"},{"size":5912,"mtime":1769173722167,"results":"46","hashOfConfig":"25"},{"size":3733,"mtime":1769173722167,"results":"47","hashOfConfig":"25"},{"filePath":"48","messages":"49","suppressedMessages":"50","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1oi8jc3",{"filePath":"51","messages":"52","suppressedMessages":"53","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"54","messages":"55","suppressedMessages":"56","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"57","messages":"58","suppressedMessages":"59","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"60","messages":"61","suppressedMessages":"62","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"63","messages":"64","suppressedMessages":"65","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"66","messages":"67","suppressedMessages":"68","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"69","messages":"70","suppressedMessages":"71","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"72","messages":"73","suppressedMessages":"74","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"75","messages":"76","suppressedMessages":"77","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"78","messages":"79","suppressedMessages":"80","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"81","messages":"82","suppressedMessages":"83","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"84","messages":"85","suppressedMessages":"86","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"87","messages":"88","suppressedMessages":"89","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"90","messages":"91","suppressedMessages":"92","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"93","messages":"94","suppressedMessages":"95","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"96","messages":"97","suppressedMessages":"98","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"99","messages":"100","suppressedMessages":"101","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"102","messages":"103","suppressedMessages":"104","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"105","messages":"106","suppressedMessages":"107","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"108","messages":"109","suppressedMessages":"110","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"111","messages":"112","suppressedMessages":"113","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"114","messages":"115","suppressedMessages":"116","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/onboarding/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/cloud/link/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/connect-repos/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/history/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/ProviderSetupClient.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/constants.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/signup/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/agent-merge.test.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/agent-merge.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/api.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/cloudApi.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/colors.test.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/colors.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/hierarchy.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/stuckDetection.ts",[],[]]
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":1,"outDirectory":"/home/runner/work/relay/relay/packages/dashboard/ui/out","success":true}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":1,"hasExportPathMap":false,"exportTrailingSlash":false,"isNextImageImported":false}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":1,"images":{"deviceSizes":[640,750,828,1080,1200,1920,2048,3840],"imageSizes":[16,32,48,64,96,128,256,384],"path":"/_next/image","loader":"default","loaderFile":"","domains":[],"disableStaticImages":false,"minimumCacheTTL":60,"formats":["image/webp"],"dangerouslyAllowSVG":false,"contentSecurityPolicy":"script-src 'none'; frame-src 'none'; sandbox;","contentDispositionType":"inline","remotePatterns":[],"unoptimized":false,"sizes":[640,750,828,1080,1200,1920,2048,3840,16,32,48,64,96,128,256,384]}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":1,"files":["../node_modules/styled-jsx/index.js","../node_modules/styled-jsx/package.json","../node_modules/styled-jsx/dist/index/index.js","../node_modules/react/package.json","../node_modules/react/index.js","../node_modules/client-only/package.json","../node_modules/react/cjs/react.production.min.js","../node_modules/client-only/index.js","../node_modules/styled-jsx/style.js","../node_modules/next/dist/compiled/next-server/server.runtime.prod.js","../node_modules/next/package.json","../node_modules/next/dist/server/body-streams.js","../node_modules/next/dist/lib/constants.js","../node_modules/next/dist/lib/picocolors.js","../node_modules/next/dist/shared/lib/constants.js","../node_modules/next/dist/server/web/utils.js","../node_modules/next/dist/client/components/app-router-headers.js","../node_modules/next/dist/server/lib/trace/tracer.js","../node_modules/next/dist/server/lib/trace/constants.js","../node_modules/next/dist/client/components/static-generation-async-storage.external.js","../node_modules/next/dist/shared/lib/modern-browserslist-target.js","../node_modules/next/dist/client/components/static-generation-async-storage-instance.js","../node_modules/next/dist/shared/lib/runtime-config.external.js","../node_modules/next/dist/compiled/ws/package.json","../node_modules/next/dist/compiled/node-html-parser/package.json","../node_modules/next/dist/compiled/lru-cache/package.json","../node_modules/@swc/helpers/_/_interop_require_default/package.json","../node_modules/next/dist/client/components/async-local-storage.js","../node_modules/next/dist/compiled/ws/index.js","../node_modules/next/dist/compiled/node-html-parser/index.js","../node_modules/next/dist/compiled/lru-cache/index.js","../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../node_modules/@swc/helpers/package.json","../node_modules/next/dist/compiled/jsonwebtoken/package.json","../node_modules/next/dist/shared/lib/error-source.js","../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../node_modules/next/dist/compiled/jsonwebtoken/index.js","../node_modules/next/dist/compiled/debug/package.json","../node_modules/next/dist/lib/semver-noop.js","../node_modules/next/dist/compiled/debug/index.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/amp-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/app-router-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/head-manager-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/hooks-client-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/html-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/image-config-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/loadable-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/loadable.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/router-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/server-inserted-html.js","../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/amp-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/app-router-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/head-manager-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/hooks-client-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/html-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/image-config-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/loadable-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/loadable.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/router-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/server-inserted-html.js","../node_modules/next/dist/server/future/route-modules/pages/module.compiled.js"]}
|