antigravity-mobile-proxy 0.1.23 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.next/standalone/.next/app-path-routes-manifest.json +21 -21
- package/.next/standalone/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/_not-found/page.js +7 -2
- package/.next/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/artifacts/[convId]/[filename]/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/artifacts/[convId]/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/artifacts/active/[filename]/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/artifacts/active/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/artifacts/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/changes/accept-all/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/changes/active/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/changes/diff/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/changes/reject-all/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/action/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/agent/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/approve/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/history/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/mode/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/monitor/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/new/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/reject/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/state/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/stop/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/chat/stream/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/conversations/active/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/conversations/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/conversations/select/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/debug/dom/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/debug/scrape/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/health/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/windows/cdp-start/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/windows/cdp-status/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/windows/close/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/windows/open/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/windows/recent/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/windows/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/api/v1/windows/select/route_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/debug/page.js +7 -2
- package/.next/standalone/.next/server/app/debug/page_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/page.js +7 -2
- package/.next/standalone/.next/server/app/page_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app/~offline/page.js +6 -1
- package/.next/standalone/.next/server/app/~offline/page_client-reference-manifest.js +1 -1
- package/.next/standalone/.next/server/app-paths-manifest.json +21 -21
- package/.next/standalone/package.json +1 -1
- package/.next/static/chunks/app/layout-877594e6b4af6a3d.js +6 -0
- package/README.md +33 -4
- package/bin/cli.js +84 -9
- package/package.json +1 -1
- package/public/manifest.json +6 -2
- package/public/sw.js +1 -1
- package/.next/static/chunks/app/layout-a3627741c465bdb1.js +0 -1
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"/_not-found/page": "/_not-found",
|
|
3
3
|
"/_global-error/page": "/_global-error",
|
|
4
|
+
"/api/v1/artifacts/active/route": "/api/v1/artifacts/active",
|
|
4
5
|
"/api/v1/artifacts/[convId]/route": "/api/v1/artifacts/[convId]",
|
|
5
|
-
"/api/v1/artifacts/route": "/api/v1/artifacts",
|
|
6
6
|
"/api/v1/artifacts/[convId]/[filename]/route": "/api/v1/artifacts/[convId]/[filename]",
|
|
7
|
-
"/api/v1/
|
|
7
|
+
"/api/v1/artifacts/active/[filename]/route": "/api/v1/artifacts/active/[filename]",
|
|
8
8
|
"/api/v1/changes/active/route": "/api/v1/changes/active",
|
|
9
|
-
"/api/v1/
|
|
10
|
-
"/api/v1/artifacts/active/route": "/api/v1/artifacts/active",
|
|
9
|
+
"/api/v1/changes/accept-all/route": "/api/v1/changes/accept-all",
|
|
11
10
|
"/api/v1/changes/reject-all/route": "/api/v1/changes/reject-all",
|
|
12
|
-
"/api/v1/
|
|
13
|
-
"/api/v1/chat/
|
|
11
|
+
"/api/v1/artifacts/route": "/api/v1/artifacts",
|
|
12
|
+
"/api/v1/chat/action/route": "/api/v1/chat/action",
|
|
14
13
|
"/api/v1/chat/agent/route": "/api/v1/chat/agent",
|
|
15
|
-
"/api/v1/
|
|
14
|
+
"/api/v1/chat/approve/route": "/api/v1/chat/approve",
|
|
16
15
|
"/api/v1/changes/diff/route": "/api/v1/changes/diff",
|
|
17
|
-
"/api/v1/chat/
|
|
18
|
-
"/api/v1/chat/reject/route": "/api/v1/chat/reject",
|
|
16
|
+
"/api/v1/chat/history/route": "/api/v1/chat/history",
|
|
19
17
|
"/api/v1/chat/mode/route": "/api/v1/chat/mode",
|
|
20
|
-
"/api/v1/chat/
|
|
18
|
+
"/api/v1/chat/reject/route": "/api/v1/chat/reject",
|
|
21
19
|
"/api/v1/chat/state/route": "/api/v1/chat/state",
|
|
22
|
-
"/api/v1/chat/route": "/api/v1/chat",
|
|
23
|
-
"/api/v1/
|
|
20
|
+
"/api/v1/chat/new/route": "/api/v1/chat/new",
|
|
21
|
+
"/api/v1/chat/stop/route": "/api/v1/chat/stop",
|
|
24
22
|
"/api/v1/chat/monitor/route": "/api/v1/chat/monitor",
|
|
23
|
+
"/api/v1/chat/route": "/api/v1/chat",
|
|
24
|
+
"/api/v1/conversations/select/route": "/api/v1/conversations/select",
|
|
25
25
|
"/api/v1/debug/dom/route": "/api/v1/debug/dom",
|
|
26
|
+
"/api/v1/conversations/active/route": "/api/v1/conversations/active",
|
|
27
|
+
"/api/v1/debug/scrape/route": "/api/v1/debug/scrape",
|
|
26
28
|
"/api/v1/health/route": "/api/v1/health",
|
|
27
|
-
"/api/v1/conversations/select/route": "/api/v1/conversations/select",
|
|
28
|
-
"/api/v1/windows/cdp-status/route": "/api/v1/windows/cdp-status",
|
|
29
29
|
"/api/v1/windows/cdp-start/route": "/api/v1/windows/cdp-start",
|
|
30
|
-
"/api/v1/debug/scrape/route": "/api/v1/debug/scrape",
|
|
31
|
-
"/favicon.ico/route": "/favicon.ico",
|
|
32
30
|
"/api/v1/conversations/route": "/api/v1/conversations",
|
|
33
|
-
"/api/v1/windows/recent/route": "/api/v1/windows/recent",
|
|
34
31
|
"/api/v1/windows/open/route": "/api/v1/windows/open",
|
|
32
|
+
"/api/v1/windows/cdp-status/route": "/api/v1/windows/cdp-status",
|
|
33
|
+
"/api/v1/windows/select/route": "/api/v1/windows/select",
|
|
34
|
+
"/api/v1/windows/recent/route": "/api/v1/windows/recent",
|
|
35
|
+
"/favicon.ico/route": "/favicon.ico",
|
|
35
36
|
"/api/v1/windows/close/route": "/api/v1/windows/close",
|
|
36
|
-
"/api/v1/chat/stream/route": "/api/v1/chat/stream",
|
|
37
37
|
"/api/v1/windows/route": "/api/v1/windows",
|
|
38
|
-
"/api/v1/
|
|
38
|
+
"/api/v1/chat/stream/route": "/api/v1/chat/stream",
|
|
39
39
|
"/~offline/page": "/~offline",
|
|
40
|
-
"/page": "/",
|
|
41
|
-
"/
|
|
40
|
+
"/debug/page": "/debug",
|
|
41
|
+
"/page": "/"
|
|
42
42
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_global-error/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_global-error/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"416":{"*":{"id":"7728","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx":{"id":416,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/~offline/page.tsx":{"id":8925,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/debug/page.tsx":{"id":5975,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/chat-container.tsx":{"id":5467,"name":"*","chunks":["4855","static/chunks/4855-d76c75aaf5497499.js","8974","static/chunks/app/page-9d6501e1343a2dff.js"],"async":false}},"entryCSSFiles":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout":[{"inlined":false,"path":"static/css/e87a1eedc2a54fd9.css"}],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/page":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/_global-error/page":[]},"rscModuleMapping":{"416":{"*":{"id":"5026","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"6187","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"219","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"6872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"6279","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
(()=>{var a={};a.id=9492,a.ids=[9492],a.modules={261:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/app-paths")},380:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,1921,23)),Promise.resolve().then(c.t.bind(c,440,23)),Promise.resolve().then(c.t.bind(c,4342,23)),Promise.resolve().then(c.t.bind(c,2265,23)),Promise.resolve().then(c.t.bind(c,5421,23)),Promise.resolve().then(c.t.bind(c,1335,23)),Promise.resolve().then(c.t.bind(c,664,23)),Promise.resolve().then(c.bind(c,4661))},722:a=>{"use strict";a.exports=require("next/dist/shared/lib/invariant-error")},846:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},1025:a=>{"use strict";a.exports=require("next/dist/server/app-render/dynamic-access-async-storage.external.js")},2056:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>h,dynamic:()=>e,metadata:()=>f,viewport:()=>g});var d=c(5735);c(2704);let e="force-dynamic",f={title:"Antigravity Agent",description:"Chat with the Antigravity AI Agent from any browser",applicationName:"Antigravity Agent",manifest:"/manifest.json",appleWebApp:{capable:!0,statusBarStyle:"black-translucent",title:"Antigravity Agent"},formatDetection:{telephone:!1}},g={width:"device-width",initialScale:1,maximumScale:1,viewportFit:"cover",themeColor:"#0a0a0f"};function h({children:a}){return(0,d.jsxs)("html",{lang:"en",children:[(0,d.jsx)("head",{children:(0,d.jsx)("link",{href:"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap",rel:"stylesheet"})}),(0,d.jsx)("body",{children:a})]})}},2571:()=>{},2654:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,1921,23))},2704:()=>{},2918:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,5547,23))},3033:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},3295:a=>{"use strict";a.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},3873:a=>{"use strict";a.exports=require("path")},3948:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,5547,23)),Promise.resolve().then(c.t.bind(c,5098,23)),Promise.resolve().then(c.t.bind(c,7644,23)),Promise.resolve().then(c.t.bind(c,3859,23)),Promise.resolve().then(c.t.bind(c,8099,23)),Promise.resolve().then(c.t.bind(c,6237,23)),Promise.resolve().then(c.t.bind(c,8562,23)),Promise.resolve().then(c.t.bind(c,6675,23))},3954:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/interception-routes")},4964:(a,b,c)=>{"use strict";c.r(b),c.d(b,{GlobalError:()=>D.a,__next_app__:()=>L,handler:()=>N,routeModule:()=>M});var d=c(7553),e=c(4006),f=c(7798),g=c(4775),h=c(9373),i=c(3461),j=c(1020),k=c(6349),l=c(4365),m=c(6023),n=c(3747),o=c(4235),p=c(3938),q=c(261),r=c(6758),s=c(7243),t=c(6713),u=c(7527),v=c(2820),w=c(8216),x=c(7929),y=c(9551),z=c(9125),A=c(6439),B=c(7068),C=c(5547),D=c.n(C),E=c(1287),F=c(1494),G=c(722),H=c(753),I=c(3954),J={};for(let a in E)0>["default","GlobalError","__next_app__","routeModule","handler"].indexOf(a)&&(J[a]=()=>E[a]);c.d(b,J);let K={children:["",{children:["_not-found",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(c.bind(c,7548)),"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found.tsx"]}]},{}]},{layout:[()=>Promise.resolve().then(c.bind(c,2056)),"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout.tsx"],"global-error":[()=>Promise.resolve().then(c.t.bind(c,5547,23)),"next/dist/client/components/builtin/global-error.js"],"not-found":[()=>Promise.resolve().then(c.bind(c,7548)),"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found.tsx"],forbidden:[()=>Promise.resolve().then(c.t.bind(c,5270,23)),"next/dist/client/components/builtin/forbidden.js"],unauthorized:[()=>Promise.resolve().then(c.t.bind(c,8193,23)),"next/dist/client/components/builtin/unauthorized.js"],metadata:{icon:[async a=>(await Promise.resolve().then(c.bind(c,6055))).default(a)],apple:[],openGraph:[],twitter:[],manifest:void 0}}]}.children,L={require:c,loadChunk:()=>Promise.resolve()},M=new d.AppPageRouteModule({definition:{kind:e.RouteKind.APP_PAGE,page:"/_not-found/page",pathname:"/_not-found",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:K},distDir:".next",relativeProjectDir:""});async function N(a,b,d){var C;M.isDev&&(0,h.addRequestMeta)(a,"devRequestTimingInternalsEnd",process.hrtime.bigint());let J=!!(0,h.getRequestMeta)(a,"minimalMode"),O="/_not-found/page";"/index"===O&&(O="/");let P=await M.prepare(a,b,{srcPage:O,multiZoneDraftMode:!1});if(!P)return b.statusCode=400,b.end("Bad Request"),null==d.waitUntil||d.waitUntil.call(d,Promise.resolve()),null;let{buildId:Q,query:R,params:S,pageIsDynamic:T,buildManifest:U,nextFontManifest:V,reactLoadableManifest:W,serverActionsManifest:X,clientReferenceManifest:Y,subresourceIntegrityManifest:Z,prerenderManifest:$,isDraftMode:_,resolvedPathname:aa,revalidateOnlyGenerated:ab,routerServerContext:ac,nextConfig:ad,parsedUrl:ae,interceptionRoutePatterns:af,deploymentId:ag}=P,ah=(0,q.normalizeAppPath)(O),{isOnDemandRevalidate:ai}=P,aj=ad.experimental.ppr&&!ad.cacheComponents&&(0,I.isInterceptionRouteAppPath)(aa)?null:M.match(aa,$),ak=!!$.routes[aa],al=a.headers["user-agent"]||"",am=(0,t.getBotType)(al),an=(0,p.isHtmlBotRequest)(a),ao=(0,h.getRequestMeta)(a,"isPrefetchRSCRequest")??"1"===a.headers[s.NEXT_ROUTER_PREFETCH_HEADER],ap=(0,h.getRequestMeta)(a,"isRSCRequest")??!!a.headers[s.RSC_HEADER],aq=(0,r.getIsPossibleServerAction)(a),ar=(0,m.checkIsAppPPREnabled)(ad.experimental.ppr);if(!(0,h.getRequestMeta)(a,"postponed")&&ar&&"1"===a.headers[x.NEXT_RESUME_HEADER]&&"POST"===a.method){let b=[];for await(let c of a)b.push(c);let c=Buffer.concat(b).toString("utf8");(0,h.addRequestMeta)(a,"postponed",c)}let as=ar&&(null==(C=$.routes[ah]??$.dynamicRoutes[ah])?void 0:C.renderingMode)==="PARTIALLY_STATIC",at=!1,au=!1,av=as?(0,h.getRequestMeta)(a,"postponed"):void 0,aw=as&&ap&&!ao;J&&(aw=aw&&!!av);let ax=(0,h.getRequestMeta)(a,"segmentPrefetchRSCRequest"),ay=(!an||!as)&&(!al||(0,p.shouldServeStreamingMetadata)(al,ad.htmlLimitedBots)),az=!!((aj||ak||$.routes[ah])&&!(an&&as)),aA=as&&!0===ad.cacheComponents,aB=!0===M.isDev||!az||"string"==typeof av||(aA&&(0,h.getRequestMeta)(a,"onCacheEntryV2")?aw&&!J:aw),aC=an&&as,aD=null;_||!az||aB||aq||av||aw||(aD=aa);let aE=aD;!aE&&M.isDev&&(aE=aa),M.isDev||_||!az||!ap||aw||(0,k.d)(a.headers);let aF={...E,tree:K,GlobalError:D(),handler:N,routeModule:M,__next_app__:L};X&&Y&&(0,o.setManifestsSingleton)({page:O,clientReferenceManifest:Y,serverActionsManifest:X});let aG=a.method||"GET",aH=(0,g.getTracer)(),aI=aH.getActiveScopeSpan(),aJ=async()=>((null==ac?void 0:ac.render404)?await ac.render404(a,b,ae,!1):b.end("This page could not be found"),null);try{let f=M.getVaryHeader(aa,af);b.setHeader("Vary",f);let k=async(c,d)=>{let e=new l.NodeNextRequest(a),f=new l.NodeNextResponse(b);return M.render(e,f,d).finally(()=>{if(!c)return;c.setAttributes({"http.status_code":b.statusCode,"next.rsc":!1});let a=aH.getRootSpanAttributes();if(!a)return;if(a.get("next.span_type")!==i.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${a.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let d=a.get("next.route");if(d){let a=`${aG} ${d}`;c.setAttributes({"next.route":d,"http.route":d,"next.span_name":a}),c.updateName(a)}else c.updateName(`${aG} ${O}`)})},m=(0,h.getRequestMeta)(a,"incrementalCache"),o=async({span:e,postponed:f,fallbackRouteParams:g,forceStaticRender:i})=>{let l={query:R,params:S,page:ah,sharedContext:{buildId:Q},serverComponentsHmrCache:(0,h.getRequestMeta)(a,"serverComponentsHmrCache"),fallbackRouteParams:g,renderOpts:{App:()=>null,Document:()=>null,pageConfig:{},ComponentMod:aF,Component:(0,j.T)(aF),params:S,routeModule:M,page:O,postponed:f,shouldWaitOnAllReady:aC,serveStreamingMetadata:ay,supportsDynamicResponse:"string"==typeof f||aB,buildManifest:U,nextFontManifest:V,reactLoadableManifest:W,subresourceIntegrityManifest:Z,setCacheStatus:null==ac?void 0:ac.setCacheStatus,setIsrStatus:null==ac?void 0:ac.setIsrStatus,setReactDebugChannel:null==ac?void 0:ac.setReactDebugChannel,sendErrorsToBrowser:null==ac?void 0:ac.sendErrorsToBrowser,dir:c(3873).join(process.cwd(),M.relativeProjectDir),isDraftMode:_,botType:am,isOnDemandRevalidate:ai,isPossibleServerAction:aq,assetPrefix:ad.assetPrefix,nextConfigOutput:ad.output,crossOrigin:ad.crossOrigin,trailingSlash:ad.trailingSlash,images:ad.images,previewProps:$.preview,deploymentId:ag,enableTainting:ad.experimental.taint,htmlLimitedBots:ad.htmlLimitedBots,reactMaxHeadersLength:ad.reactMaxHeadersLength,multiZoneDraftMode:!1,incrementalCache:m,cacheLifeProfiles:ad.cacheLife,basePath:ad.basePath,serverActions:ad.experimental.serverActions,...at||au?{nextExport:!0,supportsDynamicResponse:!1,isStaticGeneration:!0,isDebugDynamicAccesses:at}:{},cacheComponents:!!ad.cacheComponents,experimental:{isRoutePPREnabled:as,expireTime:ad.expireTime,staleTimes:ad.experimental.staleTimes,dynamicOnHover:!!ad.experimental.dynamicOnHover,inlineCss:!!ad.experimental.inlineCss,authInterrupts:!!ad.experimental.authInterrupts,clientTraceMetadata:ad.experimental.clientTraceMetadata||[],clientParamParsingOrigins:ad.experimental.clientParamParsingOrigins,maxPostponedStateSizeBytes:(0,B.parseMaxPostponedStateSize)(ad.experimental.maxPostponedStateSize)},waitUntil:d.waitUntil,onClose:a=>{b.on("close",a)},onAfterTaskError:()=>{},onInstrumentationRequestError:(b,c,d,e)=>M.onRequestError(a,b,d,e,ac),err:(0,h.getRequestMeta)(a,"invokeError"),dev:M.isDev}};at&&(l.renderOpts.nextExport=!0,l.renderOpts.supportsDynamicResponse=!1,l.renderOpts.isDebugDynamicAccesses=at),i&&(l.renderOpts.supportsDynamicResponse=!1);let n=await k(e,l),{metadata:o}=n,{cacheControl:p,headers:q={},fetchTags:r,fetchMetrics:s}=o;if(r&&(q[x.NEXT_CACHE_TAGS_HEADER]=r),a.fetchMetrics=s,az&&(null==p?void 0:p.revalidate)===0&&!M.isDev&&!as){let a=o.staticBailoutInfo,b=Object.defineProperty(Error(`Page changed from static to dynamic at runtime ${aa}${(null==a?void 0:a.description)?`, reason: ${a.description}`:""}
|
|
2
|
-
see more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`),"__NEXT_ERROR_CODE",{value:"E132",enumerable:!1,configurable:!0});if(null==a?void 0:a.stack){let c=a.stack;b.stack=b.message+c.substring(c.indexOf("\n"))}throw b}return{value:{kind:u.CachedRouteKind.APP_PAGE,html:n,headers:q,rscData:o.flightData,postponed:o.postponed,status:o.statusCode,segmentData:o.segmentData},cacheControl:p}},p=async({hasResolved:c,previousCacheEntry:f,isRevalidating:g,span:i,forceStaticRender:j=!1})=>{let k,l=!1===M.isDev,q=c||b.writableEnded;if(ai&&ab&&!f&&!J)return(null==ac?void 0:ac.render404)?await ac.render404(a,b):(b.statusCode=404,b.end("This page could not be found")),null;if(aj&&(k=(0,v.parseFallbackField)(aj.fallback)),k===v.FallbackMode.PRERENDER&&(0,t.isBot)(al)&&(!as||an)&&(k=v.FallbackMode.BLOCKING_STATIC_RENDER),(null==f?void 0:f.isStale)===-1&&(ai=!0),ai&&(k!==v.FallbackMode.NOT_FOUND||f)&&(k=v.FallbackMode.BLOCKING_STATIC_RENDER),!J&&k!==v.FallbackMode.BLOCKING_STATIC_RENDER&&aE&&!q&&!_&&T&&(l||!ak)){if((l||aj)&&k===v.FallbackMode.NOT_FOUND){if(ad.experimental.adapterPath)return await aJ();throw new A.NoFallbackError}if(as&&(ad.cacheComponents?!aw:!ap)){let b=l&&"string"==typeof(null==aj?void 0:aj.fallback)?aj.fallback:ah,c=l&&(null==aj?void 0:aj.fallbackRouteParams)?(0,n.createOpaqueFallbackRouteParams)(aj.fallbackRouteParams):au?(0,n.getFallbackRouteParams)(ah,M):null,f=await M.handleResponse({cacheKey:b,req:a,nextConfig:ad,routeKind:e.RouteKind.APP_PAGE,isFallback:!0,prerenderManifest:$,isRoutePPREnabled:as,responseGenerator:async()=>o({span:i,postponed:void 0,fallbackRouteParams:c,forceStaticRender:!1}),waitUntil:d.waitUntil,isMinimalMode:J});if(null===f)return null;if(f)return delete f.cacheControl,f}}let r=ai||g||!av?void 0:av;if(aA&&!J&&m&&aw&&!j){let b=await m.get(aa,{kind:u.IncrementalCacheKind.APP_PAGE,isRoutePPREnabled:!0,isFallback:!1});b&&b.value&&b.value.kind===u.CachedRouteKind.APP_PAGE&&(r=b.value.postponed,b&&(-1===b.isStale||!0===b.isStale)&&(0,H.scheduleOnNextTick)(async()=>{let b=M.getResponseCache(a);try{await b.revalidate(aa,m,as,!1,a=>p({...a,forceStaticRender:!0}),null,c,d.waitUntil)}catch(a){console.error("Error revalidating the page in the background",a)}}))}if(at&&void 0!==r)return{cacheControl:{revalidate:1,expire:void 0},value:{kind:u.CachedRouteKind.PAGES,html:w.default.EMPTY,pageData:{},headers:void 0,status:void 0}};let s=l&&(null==aj?void 0:aj.fallbackRouteParams)&&(0,h.getRequestMeta)(a,"renderFallbackShell")?(0,n.createOpaqueFallbackRouteParams)(aj.fallbackRouteParams):au?(0,n.getFallbackRouteParams)(ah,M):null;return o({span:i,postponed:r,fallbackRouteParams:s,forceStaticRender:j})},q=async c=>{var f,g,i,j,k;let l,m=await M.handleResponse({cacheKey:aD,responseGenerator:a=>p({span:c,...a}),routeKind:e.RouteKind.APP_PAGE,isOnDemandRevalidate:ai,isRoutePPREnabled:as,req:a,nextConfig:ad,prerenderManifest:$,waitUntil:d.waitUntil,isMinimalMode:J});if(_&&b.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate"),M.isDev&&b.setHeader("Cache-Control","no-store, must-revalidate"),!m){if(aD)throw Object.defineProperty(Error("invariant: cache entry required but not generated"),"__NEXT_ERROR_CODE",{value:"E62",enumerable:!1,configurable:!0});return null}if((null==(f=m.value)?void 0:f.kind)!==u.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant app-page handler received invalid cache entry ${null==(i=m.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E707",enumerable:!1,configurable:!0});let n="string"==typeof m.value.postponed;az&&!aw&&(!n||ao)&&(J||b.setHeader("x-nextjs-cache",ai?"REVALIDATED":m.isMiss?"MISS":m.isStale?"STALE":"HIT"),b.setHeader(s.NEXT_IS_PRERENDER_HEADER,"1"));let{value:q}=m;if(av)l={revalidate:0,expire:void 0};else if(aw)l={revalidate:0,expire:void 0};else if(!M.isDev)if(_)l={revalidate:0,expire:void 0};else if(az){if(m.cacheControl)if("number"==typeof m.cacheControl.revalidate){if(m.cacheControl.revalidate<1)throw Object.defineProperty(Error(`Invalid revalidate configuration provided: ${m.cacheControl.revalidate} < 1`),"__NEXT_ERROR_CODE",{value:"E22",enumerable:!1,configurable:!0});l={revalidate:m.cacheControl.revalidate,expire:(null==(j=m.cacheControl)?void 0:j.expire)??ad.expireTime}}else l={revalidate:x.CACHE_ONE_YEAR,expire:void 0}}else b.getHeader("Cache-Control")||(l={revalidate:0,expire:void 0});if(m.cacheControl=l,"string"==typeof ax&&(null==q?void 0:q.kind)===u.CachedRouteKind.APP_PAGE&&q.segmentData){b.setHeader(s.NEXT_DID_POSTPONE_HEADER,"2");let c=null==(k=q.headers)?void 0:k[x.NEXT_CACHE_TAGS_HEADER];J&&az&&c&&"string"==typeof c&&b.setHeader(x.NEXT_CACHE_TAGS_HEADER,c);let d=q.segmentData.get(ax);return void 0!==d?(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:w.default.fromStatic(d,s.RSC_CONTENT_TYPE_HEADER),cacheControl:m.cacheControl}):(b.statusCode=204,(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:w.default.EMPTY,cacheControl:m.cacheControl}))}let r=aA?(0,h.getRequestMeta)(a,"onCacheEntryV2")??(0,h.getRequestMeta)(a,"onCacheEntry"):(0,h.getRequestMeta)(a,"onCacheEntry");if(r&&await r(m,{url:(0,h.getRequestMeta)(a,"initURL")??a.url}))return null;if(q.headers){let a={...q.headers};for(let[c,d]of(J&&az||delete a[x.NEXT_CACHE_TAGS_HEADER],Object.entries(a)))if(void 0!==d)if(Array.isArray(d))for(let a of d)b.appendHeader(c,a);else"number"==typeof d&&(d=d.toString()),b.appendHeader(c,d)}let t=null==(g=q.headers)?void 0:g[x.NEXT_CACHE_TAGS_HEADER];if(J&&az&&t&&"string"==typeof t&&b.setHeader(x.NEXT_CACHE_TAGS_HEADER,t),!q.status||ap&&as||(b.statusCode=q.status),!J&&q.status&&F.RedirectStatusCode[q.status]&&ap&&(b.statusCode=200),n&&!aw&&b.setHeader(s.NEXT_DID_POSTPONE_HEADER,"1"),ap&&!_){if(void 0===q.rscData){if(q.html.contentType!==s.RSC_CONTENT_TYPE_HEADER)if(ad.cacheComponents)return b.statusCode=404,(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:w.default.EMPTY,cacheControl:m.cacheControl});else throw Object.defineProperty(new G.InvariantError(`Expected RSC response, got ${q.html.contentType}`),"__NEXT_ERROR_CODE",{value:"E789",enumerable:!1,configurable:!0});return(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:q.html,cacheControl:m.cacheControl})}return(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:w.default.fromStatic(q.rscData,s.RSC_CONTENT_TYPE_HEADER),cacheControl:m.cacheControl})}let v=q.html;if(!n||J||ap)return(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:v,cacheControl:m.cacheControl});if(at)return v.push(new ReadableStream({start(a){a.enqueue(y.ENCODED_TAGS.CLOSED.BODY_AND_HTML),a.close()}})),(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:v,cacheControl:{revalidate:0,expire:void 0}});let A=new TransformStream;return v.push(A.readable),o({span:c,postponed:q.postponed,fallbackRouteParams:null,forceStaticRender:!1}).then(async a=>{var b,c;if(!a)throw Object.defineProperty(Error("Invariant: expected a result to be returned"),"__NEXT_ERROR_CODE",{value:"E463",enumerable:!1,configurable:!0});if((null==(b=a.value)?void 0:b.kind)!==u.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant: expected a page response, got ${null==(c=a.value)?void 0:c.kind}`),"__NEXT_ERROR_CODE",{value:"E305",enumerable:!1,configurable:!0});await a.value.html.pipeTo(A.writable)}).catch(a=>{A.writable.abort(a).catch(a=>{console.error("couldn't abort transformer",a)})}),(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:v,cacheControl:{revalidate:0,expire:void 0}})};if(!aI)return await aH.withPropagatedContext(a.headers,()=>aH.trace(i.BaseServerSpan.handleRequest,{spanName:`${aG} ${O}`,kind:g.SpanKind.SERVER,attributes:{"http.method":aG,"http.target":a.url}},q));await q(aI)}catch(b){throw b instanceof A.NoFallbackError||await M.onRequestError(a,b,{routerKind:"App Router",routePath:O,routeType:"render",revalidateReason:(0,f.c)({isStaticGeneration:az,isOnDemandRevalidate:ai})},!1,ac),b}}},5619:()=>{},6055:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>e});var d=c(8868);let e=async a=>[{type:"image/x-icon",sizes:"16x16",url:(0,d.fillMetadataSegment)(".",await a.params,"favicon.ico")+"?603d046c9a6fdfbb"}]},6439:a=>{"use strict";a.exports=require("next/dist/shared/lib/no-fallback-error.external")},6487:()=>{},6713:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/is-bot")},7068:a=>{"use strict";a.exports=require("next/dist/shared/lib/size-limit")},7548:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>e});var d=c(5735);function e(){return(0,d.jsxs)("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",height:"100vh",backgroundColor:"#0a0a0f",color:"#888",fontFamily:"system-ui, sans-serif",margin:0},children:[(0,d.jsx)("h1",{style:{fontSize:"3rem",margin:0,color:"#fff"},children:"404"}),(0,d.jsx)("p",{style:{fontSize:"1.1rem",marginTop:"0.5rem"},children:"Page not found"})]})}},8335:()=>{},8354:a=>{"use strict";a.exports=require("util")},9121:a=>{"use strict";a.exports=require("next/dist/server/app-render/action-async-storage.external.js")},9294:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-async-storage.external.js")}};var b=require("../../webpack-runtime.js");b.C(a);var c=b.X(0,[4741,7471,8868],()=>b(b.s=4964));module.exports=c})();
|
|
1
|
+
(()=>{var a={};a.id=9492,a.ids=[9492],a.modules={261:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/app-paths")},380:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,1921,23)),Promise.resolve().then(c.t.bind(c,440,23)),Promise.resolve().then(c.t.bind(c,4342,23)),Promise.resolve().then(c.t.bind(c,2265,23)),Promise.resolve().then(c.t.bind(c,5421,23)),Promise.resolve().then(c.t.bind(c,1335,23)),Promise.resolve().then(c.t.bind(c,664,23)),Promise.resolve().then(c.bind(c,4661))},722:a=>{"use strict";a.exports=require("next/dist/shared/lib/invariant-error")},846:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},1025:a=>{"use strict";a.exports=require("next/dist/server/app-render/dynamic-access-async-storage.external.js")},2056:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>i,dynamic:()=>f,metadata:()=>g,viewport:()=>h});var d=c(5735);c(2704);var e=c(5026);let f="force-dynamic",g={title:"Antigravity Agent",description:"Chat with the Antigravity AI Agent from any browser",applicationName:"Antigravity Agent",manifest:"/manifest.json",appleWebApp:{capable:!0,statusBarStyle:"black-translucent",title:"Antigravity Agent"},formatDetection:{telephone:!1}},h={width:"device-width",initialScale:1,maximumScale:1,viewportFit:"cover",themeColor:"#0a0a0f"};function i({children:a}){return(0,d.jsxs)("html",{lang:"en",children:[(0,d.jsx)("head",{children:(0,d.jsx)("link",{href:"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap",rel:"stylesheet"})}),(0,d.jsxs)("body",{children:[a,(0,d.jsx)(e.default,{})]})]})}},2578:(a,b,c)=>{Promise.resolve().then(c.bind(c,7728))},2654:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,1921,23))},2704:()=>{},2918:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,5547,23))},3033:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},3295:a=>{"use strict";a.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},3873:a=>{"use strict";a.exports=require("path")},3948:(a,b,c)=>{Promise.resolve().then(c.t.bind(c,5547,23)),Promise.resolve().then(c.t.bind(c,5098,23)),Promise.resolve().then(c.t.bind(c,7644,23)),Promise.resolve().then(c.t.bind(c,3859,23)),Promise.resolve().then(c.t.bind(c,8099,23)),Promise.resolve().then(c.t.bind(c,6237,23)),Promise.resolve().then(c.t.bind(c,8562,23)),Promise.resolve().then(c.t.bind(c,6675,23))},3954:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/interception-routes")},4964:(a,b,c)=>{"use strict";c.r(b),c.d(b,{GlobalError:()=>D.a,__next_app__:()=>L,handler:()=>N,routeModule:()=>M});var d=c(7553),e=c(4006),f=c(7798),g=c(4775),h=c(9373),i=c(3461),j=c(1020),k=c(6349),l=c(4365),m=c(6023),n=c(3747),o=c(4235),p=c(3938),q=c(261),r=c(6758),s=c(7243),t=c(6713),u=c(7527),v=c(2820),w=c(8216),x=c(7929),y=c(9551),z=c(9125),A=c(6439),B=c(7068),C=c(5547),D=c.n(C),E=c(1287),F=c(1494),G=c(722),H=c(753),I=c(3954),J={};for(let a in E)0>["default","GlobalError","__next_app__","routeModule","handler"].indexOf(a)&&(J[a]=()=>E[a]);c.d(b,J);let K={children:["",{children:["_not-found",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(c.bind(c,7548)),"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found.tsx"]}]},{}]},{layout:[()=>Promise.resolve().then(c.bind(c,2056)),"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout.tsx"],"global-error":[()=>Promise.resolve().then(c.t.bind(c,5547,23)),"next/dist/client/components/builtin/global-error.js"],"not-found":[()=>Promise.resolve().then(c.bind(c,7548)),"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found.tsx"],forbidden:[()=>Promise.resolve().then(c.t.bind(c,5270,23)),"next/dist/client/components/builtin/forbidden.js"],unauthorized:[()=>Promise.resolve().then(c.t.bind(c,8193,23)),"next/dist/client/components/builtin/unauthorized.js"],metadata:{icon:[async a=>(await Promise.resolve().then(c.bind(c,6055))).default(a)],apple:[],openGraph:[],twitter:[],manifest:void 0}}]}.children,L={require:c,loadChunk:()=>Promise.resolve()},M=new d.AppPageRouteModule({definition:{kind:e.RouteKind.APP_PAGE,page:"/_not-found/page",pathname:"/_not-found",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:K},distDir:".next",relativeProjectDir:""});async function N(a,b,d){var C;M.isDev&&(0,h.addRequestMeta)(a,"devRequestTimingInternalsEnd",process.hrtime.bigint());let J=!!(0,h.getRequestMeta)(a,"minimalMode"),O="/_not-found/page";"/index"===O&&(O="/");let P=await M.prepare(a,b,{srcPage:O,multiZoneDraftMode:!1});if(!P)return b.statusCode=400,b.end("Bad Request"),null==d.waitUntil||d.waitUntil.call(d,Promise.resolve()),null;let{buildId:Q,query:R,params:S,pageIsDynamic:T,buildManifest:U,nextFontManifest:V,reactLoadableManifest:W,serverActionsManifest:X,clientReferenceManifest:Y,subresourceIntegrityManifest:Z,prerenderManifest:$,isDraftMode:_,resolvedPathname:aa,revalidateOnlyGenerated:ab,routerServerContext:ac,nextConfig:ad,parsedUrl:ae,interceptionRoutePatterns:af,deploymentId:ag}=P,ah=(0,q.normalizeAppPath)(O),{isOnDemandRevalidate:ai}=P,aj=ad.experimental.ppr&&!ad.cacheComponents&&(0,I.isInterceptionRouteAppPath)(aa)?null:M.match(aa,$),ak=!!$.routes[aa],al=a.headers["user-agent"]||"",am=(0,t.getBotType)(al),an=(0,p.isHtmlBotRequest)(a),ao=(0,h.getRequestMeta)(a,"isPrefetchRSCRequest")??"1"===a.headers[s.NEXT_ROUTER_PREFETCH_HEADER],ap=(0,h.getRequestMeta)(a,"isRSCRequest")??!!a.headers[s.RSC_HEADER],aq=(0,r.getIsPossibleServerAction)(a),ar=(0,m.checkIsAppPPREnabled)(ad.experimental.ppr);if(!(0,h.getRequestMeta)(a,"postponed")&&ar&&"1"===a.headers[x.NEXT_RESUME_HEADER]&&"POST"===a.method){let b=[];for await(let c of a)b.push(c);let c=Buffer.concat(b).toString("utf8");(0,h.addRequestMeta)(a,"postponed",c)}let as=ar&&(null==(C=$.routes[ah]??$.dynamicRoutes[ah])?void 0:C.renderingMode)==="PARTIALLY_STATIC",at=!1,au=!1,av=as?(0,h.getRequestMeta)(a,"postponed"):void 0,aw=as&&ap&&!ao;J&&(aw=aw&&!!av);let ax=(0,h.getRequestMeta)(a,"segmentPrefetchRSCRequest"),ay=(!an||!as)&&(!al||(0,p.shouldServeStreamingMetadata)(al,ad.htmlLimitedBots)),az=!!((aj||ak||$.routes[ah])&&!(an&&as)),aA=as&&!0===ad.cacheComponents,aB=!0===M.isDev||!az||"string"==typeof av||(aA&&(0,h.getRequestMeta)(a,"onCacheEntryV2")?aw&&!J:aw),aC=an&&as,aD=null;_||!az||aB||aq||av||aw||(aD=aa);let aE=aD;!aE&&M.isDev&&(aE=aa),M.isDev||_||!az||!ap||aw||(0,k.d)(a.headers);let aF={...E,tree:K,GlobalError:D(),handler:N,routeModule:M,__next_app__:L};X&&Y&&(0,o.setManifestsSingleton)({page:O,clientReferenceManifest:Y,serverActionsManifest:X});let aG=a.method||"GET",aH=(0,g.getTracer)(),aI=aH.getActiveScopeSpan(),aJ=async()=>((null==ac?void 0:ac.render404)?await ac.render404(a,b,ae,!1):b.end("This page could not be found"),null);try{let f=M.getVaryHeader(aa,af);b.setHeader("Vary",f);let k=async(c,d)=>{let e=new l.NodeNextRequest(a),f=new l.NodeNextResponse(b);return M.render(e,f,d).finally(()=>{if(!c)return;c.setAttributes({"http.status_code":b.statusCode,"next.rsc":!1});let a=aH.getRootSpanAttributes();if(!a)return;if(a.get("next.span_type")!==i.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${a.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let d=a.get("next.route");if(d){let a=`${aG} ${d}`;c.setAttributes({"next.route":d,"http.route":d,"next.span_name":a}),c.updateName(a)}else c.updateName(`${aG} ${O}`)})},m=(0,h.getRequestMeta)(a,"incrementalCache"),o=async({span:e,postponed:f,fallbackRouteParams:g,forceStaticRender:i})=>{let l={query:R,params:S,page:ah,sharedContext:{buildId:Q},serverComponentsHmrCache:(0,h.getRequestMeta)(a,"serverComponentsHmrCache"),fallbackRouteParams:g,renderOpts:{App:()=>null,Document:()=>null,pageConfig:{},ComponentMod:aF,Component:(0,j.T)(aF),params:S,routeModule:M,page:O,postponed:f,shouldWaitOnAllReady:aC,serveStreamingMetadata:ay,supportsDynamicResponse:"string"==typeof f||aB,buildManifest:U,nextFontManifest:V,reactLoadableManifest:W,subresourceIntegrityManifest:Z,setCacheStatus:null==ac?void 0:ac.setCacheStatus,setIsrStatus:null==ac?void 0:ac.setIsrStatus,setReactDebugChannel:null==ac?void 0:ac.setReactDebugChannel,sendErrorsToBrowser:null==ac?void 0:ac.sendErrorsToBrowser,dir:c(3873).join(process.cwd(),M.relativeProjectDir),isDraftMode:_,botType:am,isOnDemandRevalidate:ai,isPossibleServerAction:aq,assetPrefix:ad.assetPrefix,nextConfigOutput:ad.output,crossOrigin:ad.crossOrigin,trailingSlash:ad.trailingSlash,images:ad.images,previewProps:$.preview,deploymentId:ag,enableTainting:ad.experimental.taint,htmlLimitedBots:ad.htmlLimitedBots,reactMaxHeadersLength:ad.reactMaxHeadersLength,multiZoneDraftMode:!1,incrementalCache:m,cacheLifeProfiles:ad.cacheLife,basePath:ad.basePath,serverActions:ad.experimental.serverActions,...at||au?{nextExport:!0,supportsDynamicResponse:!1,isStaticGeneration:!0,isDebugDynamicAccesses:at}:{},cacheComponents:!!ad.cacheComponents,experimental:{isRoutePPREnabled:as,expireTime:ad.expireTime,staleTimes:ad.experimental.staleTimes,dynamicOnHover:!!ad.experimental.dynamicOnHover,inlineCss:!!ad.experimental.inlineCss,authInterrupts:!!ad.experimental.authInterrupts,clientTraceMetadata:ad.experimental.clientTraceMetadata||[],clientParamParsingOrigins:ad.experimental.clientParamParsingOrigins,maxPostponedStateSizeBytes:(0,B.parseMaxPostponedStateSize)(ad.experimental.maxPostponedStateSize)},waitUntil:d.waitUntil,onClose:a=>{b.on("close",a)},onAfterTaskError:()=>{},onInstrumentationRequestError:(b,c,d,e)=>M.onRequestError(a,b,d,e,ac),err:(0,h.getRequestMeta)(a,"invokeError"),dev:M.isDev}};at&&(l.renderOpts.nextExport=!0,l.renderOpts.supportsDynamicResponse=!1,l.renderOpts.isDebugDynamicAccesses=at),i&&(l.renderOpts.supportsDynamicResponse=!1);let n=await k(e,l),{metadata:o}=n,{cacheControl:p,headers:q={},fetchTags:r,fetchMetrics:s}=o;if(r&&(q[x.NEXT_CACHE_TAGS_HEADER]=r),a.fetchMetrics=s,az&&(null==p?void 0:p.revalidate)===0&&!M.isDev&&!as){let a=o.staticBailoutInfo,b=Object.defineProperty(Error(`Page changed from static to dynamic at runtime ${aa}${(null==a?void 0:a.description)?`, reason: ${a.description}`:""}
|
|
2
|
+
see more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`),"__NEXT_ERROR_CODE",{value:"E132",enumerable:!1,configurable:!0});if(null==a?void 0:a.stack){let c=a.stack;b.stack=b.message+c.substring(c.indexOf("\n"))}throw b}return{value:{kind:u.CachedRouteKind.APP_PAGE,html:n,headers:q,rscData:o.flightData,postponed:o.postponed,status:o.statusCode,segmentData:o.segmentData},cacheControl:p}},p=async({hasResolved:c,previousCacheEntry:f,isRevalidating:g,span:i,forceStaticRender:j=!1})=>{let k,l=!1===M.isDev,q=c||b.writableEnded;if(ai&&ab&&!f&&!J)return(null==ac?void 0:ac.render404)?await ac.render404(a,b):(b.statusCode=404,b.end("This page could not be found")),null;if(aj&&(k=(0,v.parseFallbackField)(aj.fallback)),k===v.FallbackMode.PRERENDER&&(0,t.isBot)(al)&&(!as||an)&&(k=v.FallbackMode.BLOCKING_STATIC_RENDER),(null==f?void 0:f.isStale)===-1&&(ai=!0),ai&&(k!==v.FallbackMode.NOT_FOUND||f)&&(k=v.FallbackMode.BLOCKING_STATIC_RENDER),!J&&k!==v.FallbackMode.BLOCKING_STATIC_RENDER&&aE&&!q&&!_&&T&&(l||!ak)){if((l||aj)&&k===v.FallbackMode.NOT_FOUND){if(ad.experimental.adapterPath)return await aJ();throw new A.NoFallbackError}if(as&&(ad.cacheComponents?!aw:!ap)){let b=l&&"string"==typeof(null==aj?void 0:aj.fallback)?aj.fallback:ah,c=l&&(null==aj?void 0:aj.fallbackRouteParams)?(0,n.createOpaqueFallbackRouteParams)(aj.fallbackRouteParams):au?(0,n.getFallbackRouteParams)(ah,M):null,f=await M.handleResponse({cacheKey:b,req:a,nextConfig:ad,routeKind:e.RouteKind.APP_PAGE,isFallback:!0,prerenderManifest:$,isRoutePPREnabled:as,responseGenerator:async()=>o({span:i,postponed:void 0,fallbackRouteParams:c,forceStaticRender:!1}),waitUntil:d.waitUntil,isMinimalMode:J});if(null===f)return null;if(f)return delete f.cacheControl,f}}let r=ai||g||!av?void 0:av;if(aA&&!J&&m&&aw&&!j){let b=await m.get(aa,{kind:u.IncrementalCacheKind.APP_PAGE,isRoutePPREnabled:!0,isFallback:!1});b&&b.value&&b.value.kind===u.CachedRouteKind.APP_PAGE&&(r=b.value.postponed,b&&(-1===b.isStale||!0===b.isStale)&&(0,H.scheduleOnNextTick)(async()=>{let b=M.getResponseCache(a);try{await b.revalidate(aa,m,as,!1,a=>p({...a,forceStaticRender:!0}),null,c,d.waitUntil)}catch(a){console.error("Error revalidating the page in the background",a)}}))}if(at&&void 0!==r)return{cacheControl:{revalidate:1,expire:void 0},value:{kind:u.CachedRouteKind.PAGES,html:w.default.EMPTY,pageData:{},headers:void 0,status:void 0}};let s=l&&(null==aj?void 0:aj.fallbackRouteParams)&&(0,h.getRequestMeta)(a,"renderFallbackShell")?(0,n.createOpaqueFallbackRouteParams)(aj.fallbackRouteParams):au?(0,n.getFallbackRouteParams)(ah,M):null;return o({span:i,postponed:r,fallbackRouteParams:s,forceStaticRender:j})},q=async c=>{var f,g,i,j,k;let l,m=await M.handleResponse({cacheKey:aD,responseGenerator:a=>p({span:c,...a}),routeKind:e.RouteKind.APP_PAGE,isOnDemandRevalidate:ai,isRoutePPREnabled:as,req:a,nextConfig:ad,prerenderManifest:$,waitUntil:d.waitUntil,isMinimalMode:J});if(_&&b.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate"),M.isDev&&b.setHeader("Cache-Control","no-store, must-revalidate"),!m){if(aD)throw Object.defineProperty(Error("invariant: cache entry required but not generated"),"__NEXT_ERROR_CODE",{value:"E62",enumerable:!1,configurable:!0});return null}if((null==(f=m.value)?void 0:f.kind)!==u.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant app-page handler received invalid cache entry ${null==(i=m.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E707",enumerable:!1,configurable:!0});let n="string"==typeof m.value.postponed;az&&!aw&&(!n||ao)&&(J||b.setHeader("x-nextjs-cache",ai?"REVALIDATED":m.isMiss?"MISS":m.isStale?"STALE":"HIT"),b.setHeader(s.NEXT_IS_PRERENDER_HEADER,"1"));let{value:q}=m;if(av)l={revalidate:0,expire:void 0};else if(aw)l={revalidate:0,expire:void 0};else if(!M.isDev)if(_)l={revalidate:0,expire:void 0};else if(az){if(m.cacheControl)if("number"==typeof m.cacheControl.revalidate){if(m.cacheControl.revalidate<1)throw Object.defineProperty(Error(`Invalid revalidate configuration provided: ${m.cacheControl.revalidate} < 1`),"__NEXT_ERROR_CODE",{value:"E22",enumerable:!1,configurable:!0});l={revalidate:m.cacheControl.revalidate,expire:(null==(j=m.cacheControl)?void 0:j.expire)??ad.expireTime}}else l={revalidate:x.CACHE_ONE_YEAR,expire:void 0}}else b.getHeader("Cache-Control")||(l={revalidate:0,expire:void 0});if(m.cacheControl=l,"string"==typeof ax&&(null==q?void 0:q.kind)===u.CachedRouteKind.APP_PAGE&&q.segmentData){b.setHeader(s.NEXT_DID_POSTPONE_HEADER,"2");let c=null==(k=q.headers)?void 0:k[x.NEXT_CACHE_TAGS_HEADER];J&&az&&c&&"string"==typeof c&&b.setHeader(x.NEXT_CACHE_TAGS_HEADER,c);let d=q.segmentData.get(ax);return void 0!==d?(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:w.default.fromStatic(d,s.RSC_CONTENT_TYPE_HEADER),cacheControl:m.cacheControl}):(b.statusCode=204,(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:w.default.EMPTY,cacheControl:m.cacheControl}))}let r=aA?(0,h.getRequestMeta)(a,"onCacheEntryV2")??(0,h.getRequestMeta)(a,"onCacheEntry"):(0,h.getRequestMeta)(a,"onCacheEntry");if(r&&await r(m,{url:(0,h.getRequestMeta)(a,"initURL")??a.url}))return null;if(q.headers){let a={...q.headers};for(let[c,d]of(J&&az||delete a[x.NEXT_CACHE_TAGS_HEADER],Object.entries(a)))if(void 0!==d)if(Array.isArray(d))for(let a of d)b.appendHeader(c,a);else"number"==typeof d&&(d=d.toString()),b.appendHeader(c,d)}let t=null==(g=q.headers)?void 0:g[x.NEXT_CACHE_TAGS_HEADER];if(J&&az&&t&&"string"==typeof t&&b.setHeader(x.NEXT_CACHE_TAGS_HEADER,t),!q.status||ap&&as||(b.statusCode=q.status),!J&&q.status&&F.RedirectStatusCode[q.status]&&ap&&(b.statusCode=200),n&&!aw&&b.setHeader(s.NEXT_DID_POSTPONE_HEADER,"1"),ap&&!_){if(void 0===q.rscData){if(q.html.contentType!==s.RSC_CONTENT_TYPE_HEADER)if(ad.cacheComponents)return b.statusCode=404,(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:w.default.EMPTY,cacheControl:m.cacheControl});else throw Object.defineProperty(new G.InvariantError(`Expected RSC response, got ${q.html.contentType}`),"__NEXT_ERROR_CODE",{value:"E789",enumerable:!1,configurable:!0});return(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:q.html,cacheControl:m.cacheControl})}return(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:w.default.fromStatic(q.rscData,s.RSC_CONTENT_TYPE_HEADER),cacheControl:m.cacheControl})}let v=q.html;if(!n||J||ap)return(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:v,cacheControl:m.cacheControl});if(at)return v.push(new ReadableStream({start(a){a.enqueue(y.ENCODED_TAGS.CLOSED.BODY_AND_HTML),a.close()}})),(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:v,cacheControl:{revalidate:0,expire:void 0}});let A=new TransformStream;return v.push(A.readable),o({span:c,postponed:q.postponed,fallbackRouteParams:null,forceStaticRender:!1}).then(async a=>{var b,c;if(!a)throw Object.defineProperty(Error("Invariant: expected a result to be returned"),"__NEXT_ERROR_CODE",{value:"E463",enumerable:!1,configurable:!0});if((null==(b=a.value)?void 0:b.kind)!==u.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant: expected a page response, got ${null==(c=a.value)?void 0:c.kind}`),"__NEXT_ERROR_CODE",{value:"E305",enumerable:!1,configurable:!0});await a.value.html.pipeTo(A.writable)}).catch(a=>{A.writable.abort(a).catch(a=>{console.error("couldn't abort transformer",a)})}),(0,z.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:v,cacheControl:{revalidate:0,expire:void 0}})};if(!aI)return await aH.withPropagatedContext(a.headers,()=>aH.trace(i.BaseServerSpan.handleRequest,{spanName:`${aG} ${O}`,kind:g.SpanKind.SERVER,attributes:{"http.method":aG,"http.target":a.url}},q));await q(aI)}catch(b){throw b instanceof A.NoFallbackError||await M.onRequestError(a,b,{routerKind:"App Router",routePath:O,routeType:"render",revalidateReason:(0,f.c)({isStaticGeneration:az,isOnDemandRevalidate:ai})},!1,ac),b}}},5026:(a,b,c)=>{"use strict";c.d(b,{default:()=>d});let d=(0,c(7943).registerClientReference)(function(){throw Error("Attempted to call the default export of \"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx\" from the server, but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx","default")},6055:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>e});var d=c(8868);let e=async a=>[{type:"image/x-icon",sizes:"16x16",url:(0,d.fillMetadataSegment)(".",await a.params,"favicon.ico")+"?603d046c9a6fdfbb"}]},6439:a=>{"use strict";a.exports=require("next/dist/shared/lib/no-fallback-error.external")},6487:()=>{},6713:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/is-bot")},7068:a=>{"use strict";a.exports=require("next/dist/shared/lib/size-limit")},7548:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>e});var d=c(5735);function e(){return(0,d.jsxs)("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",height:"100vh",backgroundColor:"#0a0a0f",color:"#888",fontFamily:"system-ui, sans-serif",margin:0},children:[(0,d.jsx)("h1",{style:{fontSize:"3rem",margin:0,color:"#fff"},children:"404"}),(0,d.jsx)("p",{style:{fontSize:"1.1rem",marginTop:"0.5rem"},children:"Page not found"})]})}},7728:(a,b,c)=>{"use strict";c.d(b,{default:()=>f});var d=c(8249),e=c(7484);function f(){let[a,b]=(0,e.useState)(null),[c,f]=(0,e.useState)(!1),[g,h]=(0,e.useState)(!1),[i,j]=(0,e.useState)(!1),k=(0,e.useCallback)(async()=>{if(a){try{await a.prompt();let b=await a.userChoice;"accepted"===b.outcome&&f(!1)}catch(a){console.error("PWA install error:",a)}b(null)}},[a]),l=(0,e.useCallback)(()=>{f(!1),localStorage.setItem("pwa-install-dismissed",Date.now().toString())},[]);return!c||i?null:(0,d.jsxs)("div",{style:{position:"fixed",bottom:0,left:0,right:0,zIndex:9999,padding:"12px 16px",background:"linear-gradient(135deg, rgba(20, 20, 35, 0.98), rgba(30, 25, 50, 0.98))",backdropFilter:"blur(20px)",borderTop:"1px solid rgba(139, 92, 246, 0.3)",display:"flex",alignItems:"center",gap:"12px",animation:"slideUp 0.3s ease-out",boxShadow:"0 -4px 20px rgba(0, 0, 0, 0.4)"},children:[(0,d.jsx)("style",{children:`
|
|
3
|
+
@keyframes slideUp {
|
|
4
|
+
from { transform: translateY(100%); opacity: 0; }
|
|
5
|
+
to { transform: translateY(0); opacity: 1; }
|
|
6
|
+
}
|
|
7
|
+
`}),(0,d.jsx)("div",{style:{width:44,height:44,borderRadius:10,overflow:"hidden",flexShrink:0,border:"1px solid rgba(139, 92, 246, 0.2)"},children:(0,d.jsx)("img",{src:"/icons/icon-192.png",alt:"Antigravity",width:44,height:44,style:{display:"block"}})}),(0,d.jsxs)("div",{style:{flex:1,minWidth:0},children:[(0,d.jsx)("div",{style:{color:"#f0f0f5",fontSize:"14px",fontWeight:600,fontFamily:"Inter, system-ui, sans-serif"},children:"Install Antigravity"}),(0,d.jsx)("div",{style:{color:"#9ca3af",fontSize:"12px",fontFamily:"Inter, system-ui, sans-serif",marginTop:2},children:g?'Tap the Share button, then "Add to Home Screen"':"Add to home screen for quick access"})]}),!g&&(0,d.jsx)("button",{onClick:k,style:{padding:"8px 16px",borderRadius:8,border:"none",background:"linear-gradient(135deg, #8b5cf6, #6d28d9)",color:"#fff",fontSize:"13px",fontWeight:600,fontFamily:"Inter, system-ui, sans-serif",cursor:"pointer",flexShrink:0,whiteSpace:"nowrap"},children:"Install"}),(0,d.jsx)("button",{onClick:l,style:{background:"none",border:"none",color:"#6b7280",fontSize:"18px",cursor:"pointer",padding:"4px",lineHeight:1,flexShrink:0},"aria-label":"Dismiss install prompt",children:"✕"})]})}},8335:()=>{},8354:a=>{"use strict";a.exports=require("util")},9121:a=>{"use strict";a.exports=require("next/dist/server/app-render/action-async-storage.external.js")},9294:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-async-storage.external.js")},9530:(a,b,c)=>{Promise.resolve().then(c.bind(c,5026))}};var b=require("../../webpack-runtime.js");b.C(a);var c=b.X(0,[4741,7471,8868],()=>b(b.s=4964));module.exports=c})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"416":{"*":{"id":"7728","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx":{"id":416,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/~offline/page.tsx":{"id":8925,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/debug/page.tsx":{"id":5975,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/chat-container.tsx":{"id":5467,"name":"*","chunks":["4855","static/chunks/4855-d76c75aaf5497499.js","8974","static/chunks/app/page-9d6501e1343a2dff.js"],"async":false}},"entryCSSFiles":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout":[{"inlined":false,"path":"static/css/e87a1eedc2a54fd9.css"}],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/page":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/_not-found/page":[]},"rscModuleMapping":{"416":{"*":{"id":"5026","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"6187","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"219","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"6872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"6279","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/[convId]/[filename]/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/[convId]/[filename]/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"416":{"*":{"id":"7728","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx":{"id":416,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/~offline/page.tsx":{"id":8925,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/debug/page.tsx":{"id":5975,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/chat-container.tsx":{"id":5467,"name":"*","chunks":["4855","static/chunks/4855-d76c75aaf5497499.js","8974","static/chunks/app/page-9d6501e1343a2dff.js"],"async":false}},"entryCSSFiles":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout":[{"inlined":false,"path":"static/css/e87a1eedc2a54fd9.css"}],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/page":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/route":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/[convId]/route":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/[convId]/[filename]/route":[]},"rscModuleMapping":{"416":{"*":{"id":"5026","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"6187","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"219","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"6872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"6279","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/[convId]/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/[convId]/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"416":{"*":{"id":"7728","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx":{"id":416,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/~offline/page.tsx":{"id":8925,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/debug/page.tsx":{"id":5975,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/chat-container.tsx":{"id":5467,"name":"*","chunks":["4855","static/chunks/4855-d76c75aaf5497499.js","8974","static/chunks/app/page-9d6501e1343a2dff.js"],"async":false}},"entryCSSFiles":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout":[{"inlined":false,"path":"static/css/e87a1eedc2a54fd9.css"}],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/page":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/route":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/[convId]/route":[]},"rscModuleMapping":{"416":{"*":{"id":"5026","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"6187","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"219","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"6872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"6279","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/active/[filename]/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/active/[filename]/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"416":{"*":{"id":"7728","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx":{"id":416,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/~offline/page.tsx":{"id":8925,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/debug/page.tsx":{"id":5975,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/chat-container.tsx":{"id":5467,"name":"*","chunks":["4855","static/chunks/4855-d76c75aaf5497499.js","8974","static/chunks/app/page-9d6501e1343a2dff.js"],"async":false}},"entryCSSFiles":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout":[{"inlined":false,"path":"static/css/e87a1eedc2a54fd9.css"}],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/page":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/route":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/active/route":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/active/[filename]/route":[]},"rscModuleMapping":{"416":{"*":{"id":"5026","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"6187","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"219","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"6872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"6279","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
|
package/.next/standalone/.next/server/app/api/v1/artifacts/active/route_client-reference-manifest.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/active/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/active/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"416":{"*":{"id":"7728","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx":{"id":416,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/~offline/page.tsx":{"id":8925,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/debug/page.tsx":{"id":5975,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/chat-container.tsx":{"id":5467,"name":"*","chunks":["4855","static/chunks/4855-d76c75aaf5497499.js","8974","static/chunks/app/page-9d6501e1343a2dff.js"],"async":false}},"entryCSSFiles":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout":[{"inlined":false,"path":"static/css/e87a1eedc2a54fd9.css"}],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/page":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/route":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/active/route":[]},"rscModuleMapping":{"416":{"*":{"id":"5026","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"6187","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"219","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"6872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"6279","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
|
package/.next/standalone/.next/server/app/api/v1/artifacts/route_client-reference-manifest.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/v1/artifacts/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"416":{"*":{"id":"7728","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"664","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"4776","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"4585","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"9933","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":7123,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-page.js":{"id":1304,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8616,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":4777,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7121,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":4581,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":484,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6869,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/globals.css":{"id":6872,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/pwa-install-prompt.tsx":{"id":416,"name":"*","chunks":["7177","static/chunks/app/layout-877594e6b4af6a3d.js"],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/~offline/page.tsx":{"id":8925,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/debug/page.tsx":{"id":5975,"name":"*","chunks":[],"async":false},"/home/belal/repos/ide_agent/antigravity-chat-proxy/components/chat-container.tsx":{"id":5467,"name":"*","chunks":["4855","static/chunks/4855-d76c75aaf5497499.js","8974","static/chunks/app/page-9d6501e1343a2dff.js"],"async":false}},"entryCSSFiles":{"/home/belal/repos/ide_agent/antigravity-chat-proxy/":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/not-found":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/layout":[{"inlined":false,"path":"static/css/e87a1eedc2a54fd9.css"}],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/page":[],"/home/belal/repos/ide_agent/antigravity-chat-proxy/app/api/v1/artifacts/route":[]},"rscModuleMapping":{"416":{"*":{"id":"5026","name":"*","chunks":[],"async":false}},"484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}},"1304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"4581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"4777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"5467":{"*":{"id":"6187","name":"*","chunks":[],"async":false}},"5975":{"*":{"id":"219","name":"*","chunks":[],"async":false}},"6869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"6872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"7121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"7123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"8616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"8925":{"*":{"id":"6279","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
|