vibeman 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (220) hide show
  1. package/README.md +12 -0
  2. package/dist/index.js +116 -0
  3. package/dist/runtime/api/.tsbuildinfo +1 -0
  4. package/dist/runtime/api/agent/agent-service.d.ts +226 -0
  5. package/dist/runtime/api/agent/agent-service.js +901 -0
  6. package/dist/runtime/api/agent/ai-providers/claude-code-adapter.d.ts +61 -0
  7. package/dist/runtime/api/agent/ai-providers/claude-code-adapter.js +373 -0
  8. package/dist/runtime/api/agent/ai-providers/codex-cli-provider.d.ts +34 -0
  9. package/dist/runtime/api/agent/ai-providers/codex-cli-provider.js +281 -0
  10. package/dist/runtime/api/agent/ai-providers/index.d.ts +9 -0
  11. package/dist/runtime/api/agent/ai-providers/index.js +7 -0
  12. package/dist/runtime/api/agent/ai-providers/types.d.ts +180 -0
  13. package/dist/runtime/api/agent/ai-providers/types.js +5 -0
  14. package/dist/runtime/api/agent/codex-cli-provider.test.d.ts +1 -0
  15. package/dist/runtime/api/agent/codex-cli-provider.test.js +88 -0
  16. package/dist/runtime/api/agent/core-agent-service.d.ts +119 -0
  17. package/dist/runtime/api/agent/core-agent-service.js +267 -0
  18. package/dist/runtime/api/agent/parsers.d.ts +15 -0
  19. package/dist/runtime/api/agent/parsers.js +241 -0
  20. package/dist/runtime/api/agent/prompt-service.d.ts +17 -0
  21. package/dist/runtime/api/agent/prompt-service.js +340 -0
  22. package/dist/runtime/api/agent/routing-policy.d.ts +188 -0
  23. package/dist/runtime/api/agent/routing-policy.js +246 -0
  24. package/dist/runtime/api/api/router-helpers.d.ts +32 -0
  25. package/dist/runtime/api/api/router-helpers.js +31 -0
  26. package/dist/runtime/api/api/routers/ai.d.ts +188 -0
  27. package/dist/runtime/api/api/routers/ai.js +410 -0
  28. package/dist/runtime/api/api/routers/executions.d.ts +98 -0
  29. package/dist/runtime/api/api/routers/executions.js +103 -0
  30. package/dist/runtime/api/api/routers/git.d.ts +45 -0
  31. package/dist/runtime/api/api/routers/git.js +35 -0
  32. package/dist/runtime/api/api/routers/settings.d.ts +139 -0
  33. package/dist/runtime/api/api/routers/settings.js +113 -0
  34. package/dist/runtime/api/api/routers/tasks.d.ts +141 -0
  35. package/dist/runtime/api/api/routers/tasks.js +238 -0
  36. package/dist/runtime/api/api/routers/workflows.d.ts +268 -0
  37. package/dist/runtime/api/api/routers/workflows.js +308 -0
  38. package/dist/runtime/api/api/routers/worktrees.d.ts +102 -0
  39. package/dist/runtime/api/api/routers/worktrees.js +80 -0
  40. package/dist/runtime/api/api/trpc.d.ts +118 -0
  41. package/dist/runtime/api/api/trpc.js +34 -0
  42. package/dist/runtime/api/index.d.ts +9 -0
  43. package/dist/runtime/api/index.js +125 -0
  44. package/dist/runtime/api/lib/id-generator.d.ts +70 -0
  45. package/dist/runtime/api/lib/id-generator.js +123 -0
  46. package/dist/runtime/api/lib/image-paste-drop-extension.d.ts +26 -0
  47. package/dist/runtime/api/lib/image-paste-drop-extension.js +125 -0
  48. package/dist/runtime/api/lib/logger.d.ts +11 -0
  49. package/dist/runtime/api/lib/logger.js +188 -0
  50. package/dist/runtime/api/lib/markdown-utils.d.ts +8 -0
  51. package/dist/runtime/api/lib/markdown-utils.js +282 -0
  52. package/dist/runtime/api/lib/markdown-utils.test.d.ts +1 -0
  53. package/dist/runtime/api/lib/markdown-utils.test.js +348 -0
  54. package/dist/runtime/api/lib/server/agent-service-singleton.d.ts +6 -0
  55. package/dist/runtime/api/lib/server/agent-service-singleton.js +27 -0
  56. package/dist/runtime/api/lib/server/git-service-singleton.d.ts +6 -0
  57. package/dist/runtime/api/lib/server/git-service-singleton.js +47 -0
  58. package/dist/runtime/api/lib/server/project-root.d.ts +2 -0
  59. package/dist/runtime/api/lib/server/project-root.js +38 -0
  60. package/dist/runtime/api/lib/server/task-service-singleton.d.ts +7 -0
  61. package/dist/runtime/api/lib/server/task-service-singleton.js +58 -0
  62. package/dist/runtime/api/lib/server/vibing-orchestrator-singleton.d.ts +7 -0
  63. package/dist/runtime/api/lib/server/vibing-orchestrator-singleton.js +57 -0
  64. package/dist/runtime/api/lib/tiptap-utils.clamp-selection.test.d.ts +1 -0
  65. package/dist/runtime/api/lib/tiptap-utils.clamp-selection.test.js +27 -0
  66. package/dist/runtime/api/lib/tiptap-utils.d.ts +130 -0
  67. package/dist/runtime/api/lib/tiptap-utils.js +327 -0
  68. package/dist/runtime/api/lib/trpc/client.d.ts +1 -0
  69. package/dist/runtime/api/lib/trpc/client.js +5 -0
  70. package/dist/runtime/api/lib/trpc/server.d.ts +822 -0
  71. package/dist/runtime/api/lib/trpc/server.js +11 -0
  72. package/dist/runtime/api/lib/trpc/ws-server.d.ts +8 -0
  73. package/dist/runtime/api/lib/trpc/ws-server.js +33 -0
  74. package/dist/runtime/api/persistence/database-service.d.ts +14 -0
  75. package/dist/runtime/api/persistence/database-service.js +74 -0
  76. package/dist/runtime/api/persistence/execution-log-persistence.d.ts +90 -0
  77. package/dist/runtime/api/persistence/execution-log-persistence.js +410 -0
  78. package/dist/runtime/api/persistence/execution-log-persistence.test.d.ts +1 -0
  79. package/dist/runtime/api/persistence/execution-log-persistence.test.js +170 -0
  80. package/dist/runtime/api/router.d.ts +825 -0
  81. package/dist/runtime/api/router.js +56 -0
  82. package/dist/runtime/api/settings-service.d.ts +110 -0
  83. package/dist/runtime/api/settings-service.js +611 -0
  84. package/dist/runtime/api/tasks/file-watcher.d.ts +23 -0
  85. package/dist/runtime/api/tasks/file-watcher.js +88 -0
  86. package/dist/runtime/api/tasks/task-file-parser.d.ts +13 -0
  87. package/dist/runtime/api/tasks/task-file-parser.js +161 -0
  88. package/dist/runtime/api/tasks/task-service.d.ts +36 -0
  89. package/dist/runtime/api/tasks/task-service.js +173 -0
  90. package/dist/runtime/api/types/index.d.ts +179 -0
  91. package/dist/runtime/api/types/index.js +1 -0
  92. package/dist/runtime/api/types/settings.d.ts +81 -0
  93. package/dist/runtime/api/types/settings.js +2 -0
  94. package/dist/runtime/api/types.d.ts +2 -0
  95. package/dist/runtime/api/types.js +1 -0
  96. package/dist/runtime/api/utils/env.d.ts +6 -0
  97. package/dist/runtime/api/utils/env.js +12 -0
  98. package/dist/runtime/api/utils/stripNextEnv.d.ts +7 -0
  99. package/dist/runtime/api/utils/stripNextEnv.js +22 -0
  100. package/dist/runtime/api/utils/title-slug.d.ts +6 -0
  101. package/dist/runtime/api/utils/title-slug.js +77 -0
  102. package/dist/runtime/api/utils/url.d.ts +2 -0
  103. package/dist/runtime/api/utils/url.js +19 -0
  104. package/dist/runtime/api/vcs/git-history-service.d.ts +57 -0
  105. package/dist/runtime/api/vcs/git-history-service.js +228 -0
  106. package/dist/runtime/api/vcs/git-service.d.ts +127 -0
  107. package/dist/runtime/api/vcs/git-service.js +284 -0
  108. package/dist/runtime/api/vcs/worktree-service.d.ts +93 -0
  109. package/dist/runtime/api/vcs/worktree-service.js +506 -0
  110. package/dist/runtime/api/vcs/worktree-service.test.d.ts +1 -0
  111. package/dist/runtime/api/vcs/worktree-service.test.js +20 -0
  112. package/dist/runtime/api/workflows/quality-pipeline.d.ts +58 -0
  113. package/dist/runtime/api/workflows/quality-pipeline.js +400 -0
  114. package/dist/runtime/api/workflows/vibing-orchestrator.d.ts +313 -0
  115. package/dist/runtime/api/workflows/vibing-orchestrator.js +1861 -0
  116. package/dist/runtime/web/.next/BUILD_ID +1 -0
  117. package/dist/runtime/web/.next/app-build-manifest.json +59 -0
  118. package/dist/runtime/web/.next/app-path-routes-manifest.json +7 -0
  119. package/dist/runtime/web/.next/build-manifest.json +33 -0
  120. package/dist/runtime/web/.next/package.json +1 -0
  121. package/dist/runtime/web/.next/prerender-manifest.json +61 -0
  122. package/dist/runtime/web/.next/react-loadable-manifest.json +39 -0
  123. package/dist/runtime/web/.next/required-server-files.json +334 -0
  124. package/dist/runtime/web/.next/routes-manifest.json +62 -0
  125. package/dist/runtime/web/.next/server/app/_not-found/page.js +2 -0
  126. package/dist/runtime/web/.next/server/app/_not-found/page.js.nft.json +1 -0
  127. package/dist/runtime/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
  128. package/dist/runtime/web/.next/server/app/_not-found.html +7 -0
  129. package/dist/runtime/web/.next/server/app/_not-found.meta +8 -0
  130. package/dist/runtime/web/.next/server/app/_not-found.rsc +22 -0
  131. package/dist/runtime/web/.next/server/app/api/health/route.js +1 -0
  132. package/dist/runtime/web/.next/server/app/api/health/route.js.nft.json +1 -0
  133. package/dist/runtime/web/.next/server/app/api/health/route_client-reference-manifest.js +1 -0
  134. package/dist/runtime/web/.next/server/app/api/images/[...path]/route.js +1 -0
  135. package/dist/runtime/web/.next/server/app/api/images/[...path]/route.js.nft.json +1 -0
  136. package/dist/runtime/web/.next/server/app/api/images/[...path]/route_client-reference-manifest.js +1 -0
  137. package/dist/runtime/web/.next/server/app/api/upload/route.js +1 -0
  138. package/dist/runtime/web/.next/server/app/api/upload/route.js.nft.json +1 -0
  139. package/dist/runtime/web/.next/server/app/api/upload/route_client-reference-manifest.js +1 -0
  140. package/dist/runtime/web/.next/server/app/index.html +7 -0
  141. package/dist/runtime/web/.next/server/app/index.meta +7 -0
  142. package/dist/runtime/web/.next/server/app/index.rsc +27 -0
  143. package/dist/runtime/web/.next/server/app/page.js +147 -0
  144. package/dist/runtime/web/.next/server/app/page.js.nft.json +1 -0
  145. package/dist/runtime/web/.next/server/app/page_client-reference-manifest.js +1 -0
  146. package/dist/runtime/web/.next/server/app-paths-manifest.json +7 -0
  147. package/dist/runtime/web/.next/server/chunks/217.js +1 -0
  148. package/dist/runtime/web/.next/server/chunks/383.js +6 -0
  149. package/dist/runtime/web/.next/server/chunks/458.js +1 -0
  150. package/dist/runtime/web/.next/server/chunks/576.js +18 -0
  151. package/dist/runtime/web/.next/server/chunks/635.js +22 -0
  152. package/dist/runtime/web/.next/server/chunks/761.js +1 -0
  153. package/dist/runtime/web/.next/server/chunks/777.js +3 -0
  154. package/dist/runtime/web/.next/server/chunks/825.js +1 -0
  155. package/dist/runtime/web/.next/server/chunks/838.js +1 -0
  156. package/dist/runtime/web/.next/server/chunks/973.js +15 -0
  157. package/dist/runtime/web/.next/server/functions-config-manifest.json +4 -0
  158. package/dist/runtime/web/.next/server/middleware-build-manifest.js +1 -0
  159. package/dist/runtime/web/.next/server/middleware-manifest.json +6 -0
  160. package/dist/runtime/web/.next/server/middleware-react-loadable-manifest.js +1 -0
  161. package/dist/runtime/web/.next/server/next-font-manifest.js +1 -0
  162. package/dist/runtime/web/.next/server/next-font-manifest.json +1 -0
  163. package/dist/runtime/web/.next/server/pages/404.html +7 -0
  164. package/dist/runtime/web/.next/server/pages/500.html +1 -0
  165. package/dist/runtime/web/.next/server/pages/_app.js +1 -0
  166. package/dist/runtime/web/.next/server/pages/_app.js.nft.json +1 -0
  167. package/dist/runtime/web/.next/server/pages/_document.js +1 -0
  168. package/dist/runtime/web/.next/server/pages/_document.js.nft.json +1 -0
  169. package/dist/runtime/web/.next/server/pages/_error.js +19 -0
  170. package/dist/runtime/web/.next/server/pages/_error.js.nft.json +1 -0
  171. package/dist/runtime/web/.next/server/pages-manifest.json +6 -0
  172. package/dist/runtime/web/.next/server/server-reference-manifest.js +1 -0
  173. package/dist/runtime/web/.next/server/server-reference-manifest.json +1 -0
  174. package/dist/runtime/web/.next/server/webpack-runtime.js +1 -0
  175. package/dist/runtime/web/.next/static/1HR8N0rJkCvFRtbTPJMyH/_buildManifest.js +1 -0
  176. package/dist/runtime/web/.next/static/1HR8N0rJkCvFRtbTPJMyH/_ssgManifest.js +1 -0
  177. package/dist/runtime/web/.next/static/chunks/18-15c10d3288afef2e.js +1 -0
  178. package/dist/runtime/web/.next/static/chunks/1c0ca389.537bbe362e3ffbd9.js +3 -0
  179. package/dist/runtime/web/.next/static/chunks/22747d63-ad5da0c19f4cfe41.js +71 -0
  180. package/dist/runtime/web/.next/static/chunks/277-0142a939f08738c3.js +63 -0
  181. package/dist/runtime/web/.next/static/chunks/355.056c2645878a799a.js +1 -0
  182. package/dist/runtime/web/.next/static/chunks/420.a5ccf151c9e2b2f1.js +1 -0
  183. package/dist/runtime/web/.next/static/chunks/439.1be0c6242fd248d5.js +15 -0
  184. package/dist/runtime/web/.next/static/chunks/440.c52e7c0f797e22b2.js +1 -0
  185. package/dist/runtime/web/.next/static/chunks/575-e2478287c27da87b.js +1 -0
  186. package/dist/runtime/web/.next/static/chunks/691.920d88c115087314.js +1 -0
  187. package/dist/runtime/web/.next/static/chunks/765-e838910065b50c3d.js +1 -0
  188. package/dist/runtime/web/.next/static/chunks/87c73c54-09e1ba5c70e60a51.js +1 -0
  189. package/dist/runtime/web/.next/static/chunks/891cff7f.0f71fc028f87e683.js +1 -0
  190. package/dist/runtime/web/.next/static/chunks/8bb4d8db-3e2aa02b0a2384b9.js +1 -0
  191. package/dist/runtime/web/.next/static/chunks/9af238c7-271a911d4e99ab18.js +1 -0
  192. package/dist/runtime/web/.next/static/chunks/app/_not-found/page-1cb74d1cba27d0ab.js +1 -0
  193. package/dist/runtime/web/.next/static/chunks/app/api/health/route-105a61ae865ba536.js +1 -0
  194. package/dist/runtime/web/.next/static/chunks/app/api/images/[...path]/route-105a61ae865ba536.js +1 -0
  195. package/dist/runtime/web/.next/static/chunks/app/api/upload/route-105a61ae865ba536.js +1 -0
  196. package/dist/runtime/web/.next/static/chunks/app/layout-dc0cfd29075b2160.js +1 -0
  197. package/dist/runtime/web/.next/static/chunks/app/page-f34a8b196b18850b.js +1 -0
  198. package/dist/runtime/web/.next/static/chunks/cac567b0-5b77dd12911823cd.js +1 -0
  199. package/dist/runtime/web/.next/static/chunks/framework-2518f1345b5b2806.js +1 -0
  200. package/dist/runtime/web/.next/static/chunks/main-17665e5e39de9a8a.js +1 -0
  201. package/dist/runtime/web/.next/static/chunks/main-app-c0b0f5ba4f7f9d75.js +1 -0
  202. package/dist/runtime/web/.next/static/chunks/pages/_app-d6f6b3bbc3d81ee1.js +1 -0
  203. package/dist/runtime/web/.next/static/chunks/pages/_error-75a96cf1997cc3b9.js +1 -0
  204. package/dist/runtime/web/.next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
  205. package/dist/runtime/web/.next/static/chunks/webpack-c8de37305b4635cf.js +1 -0
  206. package/dist/runtime/web/.next/static/css/08c950681f1a9a92.css +1 -0
  207. package/dist/runtime/web/.next/static/css/2728291c68f99cb1.css +3 -0
  208. package/dist/runtime/web/.next/static/css/521bd69cc298cd1a.css +1 -0
  209. package/dist/runtime/web/.next/static/css/537e22821e101b87.css +1 -0
  210. package/dist/runtime/web/.next/static/media/19cfc7226ec3afaa-s.woff2 +0 -0
  211. package/dist/runtime/web/.next/static/media/21350d82a1f187e9-s.woff2 +0 -0
  212. package/dist/runtime/web/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
  213. package/dist/runtime/web/.next/static/media/ba9851c3c22cd980-s.woff2 +0 -0
  214. package/dist/runtime/web/.next/static/media/c5fe6dc8356a8c31-s.woff2 +0 -0
  215. package/dist/runtime/web/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
  216. package/dist/runtime/web/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
  217. package/dist/runtime/web/package.json +65 -0
  218. package/dist/runtime/web/server.js +44 -0
  219. package/dist/tsconfig.tsbuildinfo +1 -0
  220. package/package.json +80 -7
@@ -0,0 +1 @@
1
+ 1HR8N0rJkCvFRtbTPJMyH
@@ -0,0 +1,59 @@
1
+ {
2
+ "pages": {
3
+ "/_not-found/page": [
4
+ "static/chunks/webpack-c8de37305b4635cf.js",
5
+ "static/chunks/87c73c54-09e1ba5c70e60a51.js",
6
+ "static/chunks/18-15c10d3288afef2e.js",
7
+ "static/chunks/main-app-c0b0f5ba4f7f9d75.js",
8
+ "static/chunks/app/_not-found/page-1cb74d1cba27d0ab.js"
9
+ ],
10
+ "/api/health/route": [
11
+ "static/chunks/webpack-c8de37305b4635cf.js",
12
+ "static/chunks/87c73c54-09e1ba5c70e60a51.js",
13
+ "static/chunks/18-15c10d3288afef2e.js",
14
+ "static/chunks/main-app-c0b0f5ba4f7f9d75.js",
15
+ "static/chunks/app/api/health/route-105a61ae865ba536.js"
16
+ ],
17
+ "/api/images/[...path]/route": [
18
+ "static/chunks/webpack-c8de37305b4635cf.js",
19
+ "static/chunks/87c73c54-09e1ba5c70e60a51.js",
20
+ "static/chunks/18-15c10d3288afef2e.js",
21
+ "static/chunks/main-app-c0b0f5ba4f7f9d75.js",
22
+ "static/chunks/app/api/images/[...path]/route-105a61ae865ba536.js"
23
+ ],
24
+ "/layout": [
25
+ "static/chunks/webpack-c8de37305b4635cf.js",
26
+ "static/chunks/87c73c54-09e1ba5c70e60a51.js",
27
+ "static/chunks/18-15c10d3288afef2e.js",
28
+ "static/chunks/main-app-c0b0f5ba4f7f9d75.js",
29
+ "static/css/521bd69cc298cd1a.css",
30
+ "static/css/2728291c68f99cb1.css",
31
+ "static/css/537e22821e101b87.css",
32
+ "static/chunks/cac567b0-5b77dd12911823cd.js",
33
+ "static/chunks/575-e2478287c27da87b.js",
34
+ "static/chunks/765-e838910065b50c3d.js",
35
+ "static/chunks/app/layout-dc0cfd29075b2160.js"
36
+ ],
37
+ "/api/upload/route": [
38
+ "static/chunks/webpack-c8de37305b4635cf.js",
39
+ "static/chunks/87c73c54-09e1ba5c70e60a51.js",
40
+ "static/chunks/18-15c10d3288afef2e.js",
41
+ "static/chunks/main-app-c0b0f5ba4f7f9d75.js",
42
+ "static/chunks/app/api/upload/route-105a61ae865ba536.js"
43
+ ],
44
+ "/page": [
45
+ "static/chunks/webpack-c8de37305b4635cf.js",
46
+ "static/chunks/87c73c54-09e1ba5c70e60a51.js",
47
+ "static/chunks/18-15c10d3288afef2e.js",
48
+ "static/chunks/main-app-c0b0f5ba4f7f9d75.js",
49
+ "static/css/08c950681f1a9a92.css",
50
+ "static/chunks/cac567b0-5b77dd12911823cd.js",
51
+ "static/chunks/9af238c7-271a911d4e99ab18.js",
52
+ "static/chunks/22747d63-ad5da0c19f4cfe41.js",
53
+ "static/chunks/8bb4d8db-3e2aa02b0a2384b9.js",
54
+ "static/chunks/575-e2478287c27da87b.js",
55
+ "static/chunks/277-0142a939f08738c3.js",
56
+ "static/chunks/app/page-f34a8b196b18850b.js"
57
+ ]
58
+ }
59
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "/api/health/route": "/api/health",
3
+ "/api/images/[...path]/route": "/api/images/[...path]",
4
+ "/_not-found/page": "/_not-found",
5
+ "/api/upload/route": "/api/upload",
6
+ "/page": "/"
7
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "polyfillFiles": [
3
+ "static/chunks/polyfills-42372ed130431b0a.js"
4
+ ],
5
+ "devFiles": [],
6
+ "ampDevFiles": [],
7
+ "lowPriorityFiles": [
8
+ "static/1HR8N0rJkCvFRtbTPJMyH/_buildManifest.js",
9
+ "static/1HR8N0rJkCvFRtbTPJMyH/_ssgManifest.js"
10
+ ],
11
+ "rootMainFiles": [
12
+ "static/chunks/webpack-c8de37305b4635cf.js",
13
+ "static/chunks/87c73c54-09e1ba5c70e60a51.js",
14
+ "static/chunks/18-15c10d3288afef2e.js",
15
+ "static/chunks/main-app-c0b0f5ba4f7f9d75.js"
16
+ ],
17
+ "rootMainFilesTree": {},
18
+ "pages": {
19
+ "/_app": [
20
+ "static/chunks/webpack-c8de37305b4635cf.js",
21
+ "static/chunks/framework-2518f1345b5b2806.js",
22
+ "static/chunks/main-17665e5e39de9a8a.js",
23
+ "static/chunks/pages/_app-d6f6b3bbc3d81ee1.js"
24
+ ],
25
+ "/_error": [
26
+ "static/chunks/webpack-c8de37305b4635cf.js",
27
+ "static/chunks/framework-2518f1345b5b2806.js",
28
+ "static/chunks/main-17665e5e39de9a8a.js",
29
+ "static/chunks/pages/_error-75a96cf1997cc3b9.js"
30
+ ]
31
+ },
32
+ "ampFirstPages": []
33
+ }
@@ -0,0 +1 @@
1
+ {"type": "commonjs"}
@@ -0,0 +1,61 @@
1
+ {
2
+ "version": 4,
3
+ "routes": {
4
+ "/_not-found": {
5
+ "initialStatus": 404,
6
+ "experimentalBypassFor": [
7
+ {
8
+ "type": "header",
9
+ "key": "next-action"
10
+ },
11
+ {
12
+ "type": "header",
13
+ "key": "content-type",
14
+ "value": "multipart/form-data;.*"
15
+ }
16
+ ],
17
+ "initialRevalidateSeconds": false,
18
+ "srcRoute": "/_not-found",
19
+ "dataRoute": "/_not-found.rsc",
20
+ "allowHeader": [
21
+ "host",
22
+ "x-matched-path",
23
+ "x-prerender-revalidate",
24
+ "x-prerender-revalidate-if-generated",
25
+ "x-next-revalidated-tags",
26
+ "x-next-revalidate-tag-token"
27
+ ]
28
+ },
29
+ "/": {
30
+ "experimentalBypassFor": [
31
+ {
32
+ "type": "header",
33
+ "key": "next-action"
34
+ },
35
+ {
36
+ "type": "header",
37
+ "key": "content-type",
38
+ "value": "multipart/form-data;.*"
39
+ }
40
+ ],
41
+ "initialRevalidateSeconds": false,
42
+ "srcRoute": "/",
43
+ "dataRoute": "/index.rsc",
44
+ "allowHeader": [
45
+ "host",
46
+ "x-matched-path",
47
+ "x-prerender-revalidate",
48
+ "x-prerender-revalidate-if-generated",
49
+ "x-next-revalidated-tags",
50
+ "x-next-revalidate-tag-token"
51
+ ]
52
+ }
53
+ },
54
+ "dynamicRoutes": {},
55
+ "notFoundRoutes": [],
56
+ "preview": {
57
+ "previewModeId": "8e2b4700b3835cefe001ca613df2b7cf",
58
+ "previewModeSigningKey": "4b6ab31ca7f677b0810b510c825dd99259abfecd0395c780a478db5ac5ae6bbe",
59
+ "previewModeEncryptionKey": "526c2a6ca7d03f4b8729f55f155a88b42439a67c50f4a2d88f748e12d0bcd7b0"
60
+ }
61
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "components/ui/TerminalLogsViewer.tsx -> @xterm/addon-fit": {
3
+ "id": 79355,
4
+ "files": [
5
+ "static/chunks/355.056c2645878a799a.js"
6
+ ]
7
+ },
8
+ "components/ui/TerminalLogsViewer.tsx -> @xterm/addon-web-links": {
9
+ "id": 9691,
10
+ "files": [
11
+ "static/chunks/691.920d88c115087314.js"
12
+ ]
13
+ },
14
+ "components/ui/TerminalLogsViewer.tsx -> @xterm/addon-webgl": {
15
+ "id": 6439,
16
+ "files": [
17
+ "static/chunks/439.1be0c6242fd248d5.js"
18
+ ]
19
+ },
20
+ "components/ui/TerminalLogsViewer.tsx -> @xterm/xterm": {
21
+ "id": 67179,
22
+ "files": [
23
+ "static/chunks/1c0ca389.537bbe362e3ffbd9.js"
24
+ ]
25
+ },
26
+ "components/ui/WorkflowReview.tsx -> @mantine/modals": {
27
+ "id": 75440,
28
+ "files": [
29
+ "static/chunks/440.c52e7c0f797e22b2.js"
30
+ ]
31
+ },
32
+ "lib/id-generator.ts -> crypto": {
33
+ "id": 56203,
34
+ "files": [
35
+ "static/chunks/891cff7f.0f71fc028f87e683.js",
36
+ "static/chunks/420.a5ccf151c9e2b2f1.js"
37
+ ]
38
+ }
39
+ }
@@ -0,0 +1,334 @@
1
+ {
2
+ "version": 1,
3
+ "config": {
4
+ "env": {},
5
+ "webpack": null,
6
+ "eslint": {
7
+ "ignoreDuringBuilds": true
8
+ },
9
+ "typescript": {
10
+ "ignoreBuildErrors": false,
11
+ "tsconfigPath": "tsconfig.json"
12
+ },
13
+ "typedRoutes": false,
14
+ "distDir": ".next",
15
+ "cleanDistDir": true,
16
+ "assetPrefix": "",
17
+ "cacheMaxMemorySize": 52428800,
18
+ "configOrigin": "next.config.js",
19
+ "useFileSystemPublicRoutes": true,
20
+ "generateEtags": true,
21
+ "pageExtensions": [
22
+ "tsx",
23
+ "ts",
24
+ "jsx",
25
+ "js"
26
+ ],
27
+ "poweredByHeader": true,
28
+ "compress": true,
29
+ "images": {
30
+ "deviceSizes": [
31
+ 640,
32
+ 750,
33
+ 828,
34
+ 1080,
35
+ 1200,
36
+ 1920,
37
+ 2048,
38
+ 3840
39
+ ],
40
+ "imageSizes": [
41
+ 16,
42
+ 32,
43
+ 48,
44
+ 64,
45
+ 96,
46
+ 128,
47
+ 256,
48
+ 384
49
+ ],
50
+ "path": "/_next/image",
51
+ "loader": "default",
52
+ "loaderFile": "",
53
+ "domains": [],
54
+ "disableStaticImages": false,
55
+ "minimumCacheTTL": 60,
56
+ "formats": [
57
+ "image/webp"
58
+ ],
59
+ "dangerouslyAllowSVG": false,
60
+ "contentSecurityPolicy": "script-src 'none'; frame-src 'none'; sandbox;",
61
+ "contentDispositionType": "attachment",
62
+ "remotePatterns": [],
63
+ "unoptimized": false
64
+ },
65
+ "devIndicators": {
66
+ "position": "bottom-left"
67
+ },
68
+ "onDemandEntries": {
69
+ "maxInactiveAge": 60000,
70
+ "pagesBufferLength": 5
71
+ },
72
+ "amp": {
73
+ "canonicalBase": ""
74
+ },
75
+ "basePath": "",
76
+ "sassOptions": {},
77
+ "trailingSlash": false,
78
+ "i18n": null,
79
+ "productionBrowserSourceMaps": false,
80
+ "excludeDefaultMomentLocales": true,
81
+ "serverRuntimeConfig": {},
82
+ "publicRuntimeConfig": {},
83
+ "reactProductionProfiling": false,
84
+ "reactStrictMode": null,
85
+ "reactMaxHeadersLength": 6000,
86
+ "httpAgentOptions": {
87
+ "keepAlive": true
88
+ },
89
+ "logging": {},
90
+ "compiler": {},
91
+ "expireTime": 31536000,
92
+ "staticPageGenerationTimeout": 60,
93
+ "output": "standalone",
94
+ "modularizeImports": {
95
+ "@mui/icons-material": {
96
+ "transform": "@mui/icons-material/{{member}}"
97
+ },
98
+ "lodash": {
99
+ "transform": "lodash/{{member}}"
100
+ }
101
+ },
102
+ "outputFileTracingRoot": "/Users/harryyu/BDev/vibeman/apps/web",
103
+ "allowedDevOrigins": [
104
+ "localhost",
105
+ "127.0.0.1"
106
+ ],
107
+ "experimental": {
108
+ "useSkewCookie": false,
109
+ "cacheLife": {
110
+ "default": {
111
+ "stale": 300,
112
+ "revalidate": 900,
113
+ "expire": 4294967294
114
+ },
115
+ "seconds": {
116
+ "stale": 30,
117
+ "revalidate": 1,
118
+ "expire": 60
119
+ },
120
+ "minutes": {
121
+ "stale": 300,
122
+ "revalidate": 60,
123
+ "expire": 3600
124
+ },
125
+ "hours": {
126
+ "stale": 300,
127
+ "revalidate": 3600,
128
+ "expire": 86400
129
+ },
130
+ "days": {
131
+ "stale": 300,
132
+ "revalidate": 86400,
133
+ "expire": 604800
134
+ },
135
+ "weeks": {
136
+ "stale": 300,
137
+ "revalidate": 604800,
138
+ "expire": 2592000
139
+ },
140
+ "max": {
141
+ "stale": 300,
142
+ "revalidate": 2592000,
143
+ "expire": 4294967294
144
+ }
145
+ },
146
+ "cacheHandlers": {},
147
+ "cssChunking": true,
148
+ "multiZoneDraftMode": false,
149
+ "appNavFailHandling": false,
150
+ "prerenderEarlyExit": true,
151
+ "serverMinification": true,
152
+ "serverSourceMaps": false,
153
+ "linkNoTouchStart": false,
154
+ "caseSensitiveRoutes": false,
155
+ "clientSegmentCache": false,
156
+ "clientParamParsing": false,
157
+ "dynamicOnHover": false,
158
+ "preloadEntriesOnStart": true,
159
+ "clientRouterFilter": true,
160
+ "clientRouterFilterRedirects": false,
161
+ "fetchCacheKeyPrefix": "",
162
+ "middlewarePrefetch": "flexible",
163
+ "optimisticClientCache": true,
164
+ "manualClientBasePath": false,
165
+ "cpus": 19,
166
+ "memoryBasedWorkersCount": false,
167
+ "imgOptConcurrency": null,
168
+ "imgOptTimeoutInSeconds": 7,
169
+ "imgOptMaxInputPixels": 268402689,
170
+ "imgOptSequentialRead": null,
171
+ "imgOptSkipMetadata": null,
172
+ "isrFlushToDisk": true,
173
+ "workerThreads": false,
174
+ "optimizeCss": false,
175
+ "nextScriptWorkers": false,
176
+ "scrollRestoration": false,
177
+ "externalDir": false,
178
+ "disableOptimizedLoading": false,
179
+ "gzipSize": true,
180
+ "craCompat": false,
181
+ "esmExternals": true,
182
+ "fullySpecified": false,
183
+ "swcTraceProfiling": false,
184
+ "forceSwcTransforms": false,
185
+ "largePageDataBytes": 128000,
186
+ "typedEnv": false,
187
+ "parallelServerCompiles": false,
188
+ "parallelServerBuildTraces": false,
189
+ "ppr": false,
190
+ "authInterrupts": false,
191
+ "webpackMemoryOptimizations": false,
192
+ "optimizeServerReact": true,
193
+ "viewTransition": false,
194
+ "routerBFCache": false,
195
+ "removeUncaughtErrorAndRejectionListeners": false,
196
+ "validateRSCRequestHeaders": false,
197
+ "staleTimes": {
198
+ "dynamic": 0,
199
+ "static": 300
200
+ },
201
+ "serverComponentsHmrCache": true,
202
+ "staticGenerationMaxConcurrency": 8,
203
+ "staticGenerationMinPagesPerWorker": 25,
204
+ "cacheComponents": false,
205
+ "inlineCss": false,
206
+ "useCache": false,
207
+ "globalNotFound": false,
208
+ "devtoolSegmentExplorer": true,
209
+ "browserDebugInfoInTerminal": false,
210
+ "optimizeRouterScrolling": false,
211
+ "optimizePackageImports": [
212
+ "lucide-react",
213
+ "date-fns",
214
+ "lodash-es",
215
+ "ramda",
216
+ "antd",
217
+ "react-bootstrap",
218
+ "ahooks",
219
+ "@ant-design/icons",
220
+ "@headlessui/react",
221
+ "@headlessui-float/react",
222
+ "@heroicons/react/20/solid",
223
+ "@heroicons/react/24/solid",
224
+ "@heroicons/react/24/outline",
225
+ "@visx/visx",
226
+ "@tremor/react",
227
+ "rxjs",
228
+ "@mui/material",
229
+ "@mui/icons-material",
230
+ "recharts",
231
+ "react-use",
232
+ "effect",
233
+ "@effect/schema",
234
+ "@effect/platform",
235
+ "@effect/platform-node",
236
+ "@effect/platform-browser",
237
+ "@effect/platform-bun",
238
+ "@effect/sql",
239
+ "@effect/sql-mssql",
240
+ "@effect/sql-mysql2",
241
+ "@effect/sql-pg",
242
+ "@effect/sql-sqlite-node",
243
+ "@effect/sql-sqlite-bun",
244
+ "@effect/sql-sqlite-wasm",
245
+ "@effect/sql-sqlite-react-native",
246
+ "@effect/rpc",
247
+ "@effect/rpc-http",
248
+ "@effect/typeclass",
249
+ "@effect/experimental",
250
+ "@effect/opentelemetry",
251
+ "@material-ui/core",
252
+ "@material-ui/icons",
253
+ "@tabler/icons-react",
254
+ "mui-core",
255
+ "react-icons/ai",
256
+ "react-icons/bi",
257
+ "react-icons/bs",
258
+ "react-icons/cg",
259
+ "react-icons/ci",
260
+ "react-icons/di",
261
+ "react-icons/fa",
262
+ "react-icons/fa6",
263
+ "react-icons/fc",
264
+ "react-icons/fi",
265
+ "react-icons/gi",
266
+ "react-icons/go",
267
+ "react-icons/gr",
268
+ "react-icons/hi",
269
+ "react-icons/hi2",
270
+ "react-icons/im",
271
+ "react-icons/io",
272
+ "react-icons/io5",
273
+ "react-icons/lia",
274
+ "react-icons/lib",
275
+ "react-icons/lu",
276
+ "react-icons/md",
277
+ "react-icons/pi",
278
+ "react-icons/ri",
279
+ "react-icons/rx",
280
+ "react-icons/si",
281
+ "react-icons/sl",
282
+ "react-icons/tb",
283
+ "react-icons/tfi",
284
+ "react-icons/ti",
285
+ "react-icons/vsc",
286
+ "react-icons/wi"
287
+ ],
288
+ "trustHostHeader": false,
289
+ "isExperimentalCompile": false
290
+ },
291
+ "htmlLimitedBots": "[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight",
292
+ "bundlePagesRouterDependencies": false,
293
+ "configFileName": "next.config.js",
294
+ "serverExternalPackages": [
295
+ "simple-git",
296
+ "pino",
297
+ "pino-pretty",
298
+ "ws"
299
+ ],
300
+ "transpilePackages": [
301
+ "@mantine/core",
302
+ "@mantine/hooks",
303
+ "@mantine/notifications"
304
+ ],
305
+ "turbopack": {
306
+ "root": "/Users/harryyu/BDev/vibeman/apps/web"
307
+ }
308
+ },
309
+ "appDir": "/Users/harryyu/BDev/vibeman/apps/web",
310
+ "relativeAppDir": "",
311
+ "files": [
312
+ ".next/routes-manifest.json",
313
+ ".next/server/pages-manifest.json",
314
+ ".next/build-manifest.json",
315
+ ".next/prerender-manifest.json",
316
+ ".next/server/functions-config-manifest.json",
317
+ ".next/server/middleware-manifest.json",
318
+ ".next/server/middleware-build-manifest.js",
319
+ ".next/server/middleware-react-loadable-manifest.js",
320
+ ".next/react-loadable-manifest.json",
321
+ ".next/server/app-paths-manifest.json",
322
+ ".next/app-path-routes-manifest.json",
323
+ ".next/app-build-manifest.json",
324
+ ".next/server/server-reference-manifest.js",
325
+ ".next/server/server-reference-manifest.json",
326
+ ".next/BUILD_ID",
327
+ ".next/server/next-font-manifest.js",
328
+ ".next/server/next-font-manifest.json",
329
+ ".next/required-server-files.json"
330
+ ],
331
+ "ignore": [
332
+ "../../node_modules/next/dist/compiled/@ampproject/toolbox-optimizer/**/*"
333
+ ]
334
+ }
@@ -0,0 +1,62 @@
1
+ {
2
+ "version": 3,
3
+ "pages404": true,
4
+ "caseSensitive": false,
5
+ "basePath": "",
6
+ "redirects": [
7
+ {
8
+ "source": "/:path+/",
9
+ "destination": "/:path+",
10
+ "internal": true,
11
+ "statusCode": 308,
12
+ "regex": "^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))/$"
13
+ }
14
+ ],
15
+ "headers": [],
16
+ "rewrites": {
17
+ "beforeFiles": [],
18
+ "afterFiles": [],
19
+ "fallback": []
20
+ },
21
+ "dynamicRoutes": [
22
+ {
23
+ "page": "/api/images/[...path]",
24
+ "regex": "^/api/images/(.+?)(?:/)?$",
25
+ "routeKeys": {
26
+ "nxtPpath": "nxtPpath"
27
+ },
28
+ "namedRegex": "^/api/images/(?<nxtPpath>.+?)(?:/)?$"
29
+ }
30
+ ],
31
+ "staticRoutes": [
32
+ {
33
+ "page": "/",
34
+ "regex": "^/(?:/)?$",
35
+ "routeKeys": {},
36
+ "namedRegex": "^/(?:/)?$"
37
+ },
38
+ {
39
+ "page": "/_not-found",
40
+ "regex": "^/_not\\-found(?:/)?$",
41
+ "routeKeys": {},
42
+ "namedRegex": "^/_not\\-found(?:/)?$"
43
+ }
44
+ ],
45
+ "dataRoutes": [],
46
+ "rsc": {
47
+ "header": "rsc",
48
+ "varyHeader": "rsc, next-router-state-tree, next-router-prefetch, next-router-segment-prefetch",
49
+ "prefetchHeader": "next-router-prefetch",
50
+ "didPostponeHeader": "x-nextjs-postponed",
51
+ "contentTypeHeader": "text/x-component",
52
+ "suffix": ".rsc",
53
+ "prefetchSuffix": ".prefetch.rsc",
54
+ "prefetchSegmentHeader": "next-router-segment-prefetch",
55
+ "prefetchSegmentSuffix": ".segment.rsc",
56
+ "prefetchSegmentDirSuffix": ".segments"
57
+ },
58
+ "rewriteHeaders": {
59
+ "pathHeader": "x-nextjs-rewritten-path",
60
+ "queryHeader": "x-nextjs-rewritten-query"
61
+ }
62
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";(()=>{var a={};a.id=492,a.ids=[492],a.modules={261:a=>{a.exports=require("next/dist/shared/lib/router/utils/app-paths")},3295:a=>{a.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},10846:a=>{a.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},19121:a=>{a.exports=require("next/dist/server/app-render/action-async-storage.external.js")},22322:(a,b,c)=>{c.r(b),c.d(b,{GlobalError:()=>D.a,__next_app__:()=>J,handler:()=>L,pages:()=>I,routeModule:()=>K,tree:()=>H});var d=c(73653),e=c(97714),f=c(85250),g=c(37587),h=c(22369),i=c(1889),j=c(96232),k=c(22841),l=c(46537),m=c(46027),n=c(78559),o=c(75928),p=c(19374),q=c(65971),r=c(261),s=c(79898),t=c(32967),u=c(26713),v=c(40139),w=c(14248),x=c(59580),y=c(57749),z=c(53123),A=c(89745),B=c(86439),C=c(58671),D=c.n(C),E=c(18283),F=c(39818),G={};for(let a in E)0>["default","tree","pages","GlobalError","__next_app__","routeModule","handler"].indexOf(a)&&(G[a]=()=>E[a]);c.d(b,G);let H={children:["",{children:["/_not-found",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(c.t.bind(c,17983,23)),"next/dist/client/components/builtin/not-found.js"]}]},{}]},{layout:[()=>Promise.resolve().then(c.bind(c,47570)),"/Users/harryyu/BDev/vibeman/apps/web/src/app/layout.tsx"],"global-error":[()=>Promise.resolve().then(c.t.bind(c,58671,23)),"next/dist/client/components/builtin/global-error.js"],forbidden:[()=>Promise.resolve().then(c.t.bind(c,15034,23)),"next/dist/client/components/builtin/forbidden.js"],unauthorized:[()=>Promise.resolve().then(c.t.bind(c,54693,23)),"next/dist/client/components/builtin/unauthorized.js"]}]}.children,I=[],J={require:c,loadChunk:()=>Promise.resolve()},K=new d.AppPageRouteModule({definition:{kind:e.RouteKind.APP_PAGE,page:"/_not-found/page",pathname:"/_not-found",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:H},distDir:".next",relativeProjectDir:""});async function L(a,b,d){var C;let G="/_not-found/page";"/index"===G&&(G="/");let M=(0,h.getRequestMeta)(a,"postponed"),N=(0,h.getRequestMeta)(a,"minimalMode"),O=await K.prepare(a,b,{srcPage:G,multiZoneDraftMode:!1});if(!O)return b.statusCode=400,b.end("Bad Request"),null==d.waitUntil||d.waitUntil.call(d,Promise.resolve()),null;let{buildId:P,query:Q,params:R,parsedUrl: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,interceptionRoutePatterns:ae}=O,af=S.pathname||"/",ag=(0,r.normalizeAppPath)(G),{isOnDemandRevalidate:ah}=O,ai=K.match(af,$),aj=!!$.routes[aa],ak=!!(ai||aj||$.routes[ag]),al=a.headers["user-agent"]||"",am=(0,u.getBotType)(al),an=(0,p.isHtmlBotRequest)(a),ao=(0,h.getRequestMeta)(a,"isPrefetchRSCRequest")??"1"===a.headers[t.NEXT_ROUTER_PREFETCH_HEADER],ap=(0,h.getRequestMeta)(a,"isRSCRequest")??!!a.headers[t.RSC_HEADER],aq=(0,s.getIsPossibleServerAction)(a),ar=(0,m.checkIsAppPPREnabled)(ad.experimental.ppr)&&(null==(C=$.routes[ag]??$.dynamicRoutes[ag])?void 0:C.renderingMode)==="PARTIALLY_STATIC",as=!1,at=!1,au=ar?M:void 0,av=ar&&ap&&!ao,aw=(0,h.getRequestMeta)(a,"segmentPrefetchRSCRequest"),ax=!al||(0,p.shouldServeStreamingMetadata)(al,ad.htmlLimitedBots);an&&ar&&(ak=!1,ax=!1);let ay=!0===K.isDev||!ak||"string"==typeof M||av,az=an&&ar,aA=null;_||!ak||ay||aq||au||av||(aA=aa);let aB=aA;!aB&&K.isDev&&(aB=aa),K.isDev||_||!ak||!ap||av||(0,k.d)(a.headers);let aC={...E,tree:H,pages:I,GlobalError:D(),handler:L,routeModule:K,__next_app__:J};X&&Y&&(0,o.setReferenceManifestsSingleton)({page:G,clientReferenceManifest:Y,serverActionsManifest:X,serverModuleMap:(0,q.createServerModuleMap)({serverActionsManifest:X})});let aD=a.method||"GET",aE=(0,g.getTracer)(),aF=aE.getActiveScopeSpan();try{let f=K.getVaryHeader(aa,ae);b.setHeader("Vary",f);let k=async(c,d)=>{let e=new l.NodeNextRequest(a),f=new l.NodeNextResponse(b);return K.render(e,f,d).finally(()=>{if(!c)return;c.setAttributes({"http.status_code":b.statusCode,"next.rsc":!1});let d=aE.getRootSpanAttributes();if(!d)return;if(d.get("next.span_type")!==i.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${d.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let e=d.get("next.route");if(e){let a=`${aD} ${e}`;c.setAttributes({"next.route":e,"http.route":e,"next.span_name":a}),c.updateName(a)}else c.updateName(`${aD} ${a.url}`)})},m=async({span:e,postponed:f,fallbackRouteParams:g})=>{let i={query:Q,params:R,page:ag,sharedContext:{buildId:P},serverComponentsHmrCache:(0,h.getRequestMeta)(a,"serverComponentsHmrCache"),fallbackRouteParams:g,renderOpts:{App:()=>null,Document:()=>null,pageConfig:{},ComponentMod:aC,Component:(0,j.T)(aC),params:R,routeModule:K,page:G,postponed:f,shouldWaitOnAllReady:az,serveStreamingMetadata:ax,supportsDynamicResponse:"string"==typeof f||ay,buildManifest:U,nextFontManifest:V,reactLoadableManifest:W,subresourceIntegrityManifest:Z,serverActionsManifest:X,clientReferenceManifest:Y,setIsrStatus:null==ac?void 0:ac.setIsrStatus,dir:c(33873).join(process.cwd(),K.relativeProjectDir),isDraftMode:_,isRevalidate:ak&&!f&&!av,botType:am,isOnDemandRevalidate:ah,isPossibleServerAction:aq,assetPrefix:ad.assetPrefix,nextConfigOutput:ad.output,crossOrigin:ad.crossOrigin,trailingSlash:ad.trailingSlash,previewProps:$.preview,deploymentId:ad.deploymentId,enableTainting:ad.experimental.taint,htmlLimitedBots:ad.htmlLimitedBots,devtoolSegmentExplorer:ad.experimental.devtoolSegmentExplorer,reactMaxHeadersLength:ad.reactMaxHeadersLength,multiZoneDraftMode:!1,incrementalCache:(0,h.getRequestMeta)(a,"incrementalCache"),cacheLifeProfiles:ad.experimental.cacheLife,basePath:ad.basePath,serverActions:ad.experimental.serverActions,...as?{nextExport:!0,supportsDynamicResponse:!1,isStaticGeneration:!0,isRevalidate:!0,isDebugDynamicAccesses:as}:{},experimental:{isRoutePPREnabled:ar,expireTime:ad.expireTime,staleTimes:ad.experimental.staleTimes,cacheComponents:!!ad.experimental.cacheComponents,clientSegmentCache:!!ad.experimental.clientSegmentCache,clientParamParsing:!!ad.experimental.clientParamParsing,dynamicOnHover:!!ad.experimental.dynamicOnHover,inlineCss:!!ad.experimental.inlineCss,authInterrupts:!!ad.experimental.authInterrupts,clientTraceMetadata:ad.experimental.clientTraceMetadata||[]},waitUntil:d.waitUntil,onClose:a=>{b.on("close",a)},onAfterTaskError:()=>{},onInstrumentationRequestError:(b,c,d)=>K.onRequestError(a,b,d,ac),err:(0,h.getRequestMeta)(a,"invokeError"),dev:K.isDev}},l=await k(e,i),{metadata:m}=l,{cacheControl:n,headers:o={},fetchTags:p}=m;if(p&&(o[y.NEXT_CACHE_TAGS_HEADER]=p),a.fetchMetrics=m.fetchMetrics,ak&&(null==n?void 0:n.revalidate)===0&&!K.isDev&&!ar){let a=m.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:v.CachedRouteKind.APP_PAGE,html:l,headers:o,rscData:m.flightData,postponed:m.postponed,status:m.statusCode,segmentData:m.segmentData},cacheControl:n}},o=async({hasResolved:c,previousCacheEntry:f,isRevalidating:g,span:i})=>{let j,k=!1===K.isDev,l=c||b.writableEnded;if(ah&&ab&&!f&&!N)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(ai&&(j=(0,w.parseFallbackField)(ai.fallback)),j===w.FallbackMode.PRERENDER&&(0,u.isBot)(al)&&(!ar||an)&&(j=w.FallbackMode.BLOCKING_STATIC_RENDER),(null==f?void 0:f.isStale)===-1&&(ah=!0),ah&&(j!==w.FallbackMode.NOT_FOUND||f)&&(j=w.FallbackMode.BLOCKING_STATIC_RENDER),!N&&j!==w.FallbackMode.BLOCKING_STATIC_RENDER&&aB&&!l&&!_&&T&&(k||!aj)){let b;if((k||ai)&&j===w.FallbackMode.NOT_FOUND)throw new B.NoFallbackError;if(ar&&!ap){let c="string"==typeof(null==ai?void 0:ai.fallback)?ai.fallback:k?ag:null;if(b=await K.handleResponse({cacheKey:c,req:a,nextConfig:ad,routeKind:e.RouteKind.APP_PAGE,isFallback:!0,prerenderManifest:$,isRoutePPREnabled:ar,responseGenerator:async()=>m({span:i,postponed:void 0,fallbackRouteParams:k||at?(0,n.u)(ag):null}),waitUntil:d.waitUntil}),null===b)return null;if(b)return delete b.cacheControl,b}}let o=ah||g||!au?void 0:au;if(as&&void 0!==o)return{cacheControl:{revalidate:1,expire:void 0},value:{kind:v.CachedRouteKind.PAGES,html:x.default.EMPTY,pageData:{},headers:void 0,status:void 0}};let p=T&&ar&&((0,h.getRequestMeta)(a,"renderFallbackShell")||at)?(0,n.u)(af):null;return m({span:i,postponed:o,fallbackRouteParams:p})},p=async c=>{var f,g,i,j,k;let l,n=await K.handleResponse({cacheKey:aA,responseGenerator:a=>o({span:c,...a}),routeKind:e.RouteKind.APP_PAGE,isOnDemandRevalidate:ah,isRoutePPREnabled:ar,req:a,nextConfig:ad,prerenderManifest:$,waitUntil:d.waitUntil});if(_&&b.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate"),K.isDev&&b.setHeader("Cache-Control","no-store, must-revalidate"),!n){if(aA)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=n.value)?void 0:f.kind)!==v.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant app-page handler received invalid cache entry ${null==(i=n.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E707",enumerable:!1,configurable:!0});let p="string"==typeof n.value.postponed;ak&&!av&&(!p||ao)&&(N||b.setHeader("x-nextjs-cache",ah?"REVALIDATED":n.isMiss?"MISS":n.isStale?"STALE":"HIT"),b.setHeader(t.NEXT_IS_PRERENDER_HEADER,"1"));let{value:q}=n;if(au)l={revalidate:0,expire:void 0};else if(N&&ap&&!ao&&ar)l={revalidate:0,expire:void 0};else if(!K.isDev)if(_)l={revalidate:0,expire:void 0};else if(ak){if(n.cacheControl)if("number"==typeof n.cacheControl.revalidate){if(n.cacheControl.revalidate<1)throw Object.defineProperty(Error(`Invalid revalidate configuration provided: ${n.cacheControl.revalidate} < 1`),"__NEXT_ERROR_CODE",{value:"E22",enumerable:!1,configurable:!0});l={revalidate:n.cacheControl.revalidate,expire:(null==(j=n.cacheControl)?void 0:j.expire)??ad.expireTime}}else l={revalidate:y.CACHE_ONE_YEAR,expire:void 0}}else b.getHeader("Cache-Control")||(l={revalidate:0,expire:void 0});if(n.cacheControl=l,"string"==typeof aw&&(null==q?void 0:q.kind)===v.CachedRouteKind.APP_PAGE&&q.segmentData){b.setHeader(t.NEXT_DID_POSTPONE_HEADER,"2");let c=null==(k=q.headers)?void 0:k[y.NEXT_CACHE_TAGS_HEADER];N&&ak&&c&&"string"==typeof c&&b.setHeader(y.NEXT_CACHE_TAGS_HEADER,c);let d=q.segmentData.get(aw);return void 0!==d?(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:x.default.fromStatic(d,t.RSC_CONTENT_TYPE_HEADER),cacheControl:n.cacheControl}):(b.statusCode=204,(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:x.default.EMPTY,cacheControl:n.cacheControl}))}let r=(0,h.getRequestMeta)(a,"onCacheEntry");if(r&&await r({...n,value:{...n.value,kind:"PAGE"}},{url:(0,h.getRequestMeta)(a,"initURL")}))return null;if(p&&au)throw Object.defineProperty(Error("Invariant: postponed state should not be present on a resume request"),"__NEXT_ERROR_CODE",{value:"E396",enumerable:!1,configurable:!0});if(q.headers){let a={...q.headers};for(let[c,d]of(N&&ak||delete a[y.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 s=null==(g=q.headers)?void 0:g[y.NEXT_CACHE_TAGS_HEADER];if(N&&ak&&s&&"string"==typeof s&&b.setHeader(y.NEXT_CACHE_TAGS_HEADER,s),!q.status||ap&&ar||(b.statusCode=q.status),!N&&q.status&&F.RedirectStatusCode[q.status]&&ap&&(b.statusCode=200),p&&b.setHeader(t.NEXT_DID_POSTPONE_HEADER,"1"),ap&&!_){if(void 0===q.rscData){if(q.postponed)throw Object.defineProperty(Error("Invariant: Expected postponed to be undefined"),"__NEXT_ERROR_CODE",{value:"E372",enumerable:!1,configurable:!0});return(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:q.html,cacheControl:av?{revalidate:0,expire:void 0}:n.cacheControl})}return(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:x.default.fromStatic(q.rscData,t.RSC_CONTENT_TYPE_HEADER),cacheControl:n.cacheControl})}let u=q.html;if(!p||N||ap)return(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:u,cacheControl:n.cacheControl});if(as)return u.push(new ReadableStream({start(a){a.enqueue(z.ENCODED_TAGS.CLOSED.BODY_AND_HTML),a.close()}})),(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:u,cacheControl:{revalidate:0,expire:void 0}});let w=new TransformStream;return u.push(w.readable),m({span:c,postponed:q.postponed,fallbackRouteParams:null}).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)!==v.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(w.writable)}).catch(a=>{w.writable.abort(a).catch(a=>{console.error("couldn't abort transformer",a)})}),(0,A.sendRenderResult)({req:a,res:b,generateEtags:ad.generateEtags,poweredByHeader:ad.poweredByHeader,result:u,cacheControl:{revalidate:0,expire:void 0}})};if(!aF)return await aE.withPropagatedContext(a.headers,()=>aE.trace(i.BaseServerSpan.handleRequest,{spanName:`${aD} ${a.url}`,kind:g.SpanKind.SERVER,attributes:{"http.method":aD,"http.target":a.url}},p));await p(aF)}catch(b){throw aF||b instanceof B.NoFallbackError||await K.onRequestError(a,b,{routerKind:"App Router",routePath:G,routeType:"render",revalidateReason:(0,f.c)({isRevalidate:ak,isOnDemandRevalidate:ah})},ac),b}}},26713:a=>{a.exports=require("next/dist/shared/lib/router/utils/is-bot")},28354:a=>{a.exports=require("util")},29294:a=>{a.exports=require("next/dist/server/app-render/work-async-storage.external.js")},33873:a=>{a.exports=require("path")},41025:a=>{a.exports=require("next/dist/server/app-render/dynamic-access-async-storage.external.js")},63033:a=>{a.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},74552:a=>{a.exports=require("pino")},86439:a=>{a.exports=require("next/dist/shared/lib/no-fallback-error.external")}};var b=require("../../webpack-runtime.js");b.C(a);var c=b.X(0,[635,576,458],()=>b(b.s=22322));module.exports=c})();
@@ -0,0 +1 @@
1
+ {"version":1,"files":["../../../package.json","../../chunks/458.js","../../chunks/576.js","../../chunks/635.js","../../webpack-runtime.js","page_client-reference-manifest.js"]}