@shepai/cli 1.107.1 → 1.107.2-pr331.6ae9402

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 (221) hide show
  1. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  2. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +2 -2
  3. package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.d.ts +5 -0
  4. package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.d.ts.map +1 -1
  5. package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.js +31 -13
  6. package/dist/packages/core/src/application/use-cases/repositories/add-repository.use-case.d.ts.map +1 -1
  7. package/dist/packages/core/src/application/use-cases/repositories/add-repository.use-case.js +6 -2
  8. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  9. package/dist/packages/core/src/infrastructure/di/container.js +13 -3
  10. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.js +4 -4
  11. package/dist/packages/core/src/infrastructure/repositories/sqlite-repository.repository.js +4 -4
  12. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
  13. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +9 -0
  14. package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts.map +1 -1
  15. package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.js +17 -7
  16. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.d.ts.map +1 -1
  17. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.js +5 -3
  18. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  19. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +1 -0
  20. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/evidence-prompts.d.ts.map +1 -1
  21. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/evidence-prompts.js +4 -3
  22. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/repair.node.d.ts.map +1 -1
  23. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/repair.node.js +2 -1
  24. package/dist/packages/core/src/infrastructure/services/agents/sessions/claude-code-session.repository.js +1 -1
  25. package/dist/packages/core/src/infrastructure/services/attachment-storage.service.js +3 -3
  26. package/dist/packages/core/src/infrastructure/services/deployment/deployment.service.d.ts +1 -1
  27. package/dist/packages/core/src/infrastructure/services/deployment/deployment.service.d.ts.map +1 -1
  28. package/dist/packages/core/src/infrastructure/services/deployment/deployment.service.js +8 -7
  29. package/dist/packages/core/src/infrastructure/services/git/worktree.service.d.ts.map +1 -1
  30. package/dist/packages/core/src/infrastructure/services/git/worktree.service.js +18 -5
  31. package/dist/packages/core/src/infrastructure/services/ide-launchers/compute-worktree-path.js +1 -1
  32. package/dist/packages/core/src/infrastructure/services/ide-launchers/json-driven-ide-launcher.service.d.ts.map +1 -1
  33. package/dist/packages/core/src/infrastructure/services/ide-launchers/json-driven-ide-launcher.service.js +6 -8
  34. package/dist/packages/core/src/infrastructure/services/process/tree-kill.d.ts +12 -0
  35. package/dist/packages/core/src/infrastructure/services/process/tree-kill.d.ts.map +1 -0
  36. package/dist/packages/core/src/infrastructure/services/process/tree-kill.js +11 -0
  37. package/dist/packages/core/src/infrastructure/services/tool-installer/binary-exists.d.ts +25 -0
  38. package/dist/packages/core/src/infrastructure/services/tool-installer/binary-exists.d.ts.map +1 -0
  39. package/dist/packages/core/src/infrastructure/services/tool-installer/binary-exists.js +32 -0
  40. package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.d.ts.map +1 -1
  41. package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.js +4 -27
  42. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/alacritty.json +3 -2
  43. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/claude-code.json +3 -2
  44. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/cursor-cli.json +3 -2
  45. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/cursor.json +2 -1
  46. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/gh.json +2 -1
  47. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/git.json +2 -1
  48. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/vscode.json +2 -1
  49. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/warp.json +3 -2
  50. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/windsurf.json +3 -2
  51. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/zed.json +3 -2
  52. package/dist/src/presentation/cli/commands/daemon/start-daemon.d.ts.map +1 -1
  53. package/dist/src/presentation/cli/commands/daemon/start-daemon.js +1 -0
  54. package/dist/src/presentation/cli/commands/daemon/stop-daemon.d.ts.map +1 -1
  55. package/dist/src/presentation/cli/commands/daemon/stop-daemon.js +5 -4
  56. package/dist/src/presentation/cli/commands/upgrade.command.d.ts.map +1 -1
  57. package/dist/src/presentation/cli/commands/upgrade.command.js +4 -0
  58. package/dist/src/presentation/web/app/actions/deploy-repository.d.ts.map +1 -1
  59. package/dist/src/presentation/web/app/actions/deploy-repository.js +2 -1
  60. package/dist/src/presentation/web/app/actions/open-folder.d.ts.map +1 -1
  61. package/dist/src/presentation/web/app/actions/open-folder.js +4 -2
  62. package/dist/src/presentation/web/app/actions/open-ide.d.ts.map +1 -1
  63. package/dist/src/presentation/web/app/actions/open-ide.js +2 -1
  64. package/dist/src/presentation/web/app/actions/open-shell.d.ts.map +1 -1
  65. package/dist/src/presentation/web/app/actions/open-shell.js +4 -2
  66. package/dist/src/presentation/web/app/build-feature-node-data.d.ts.map +1 -1
  67. package/dist/src/presentation/web/app/build-feature-node-data.js +1 -0
  68. package/dist/src/presentation/web/app/build-graph-nodes.d.ts.map +1 -1
  69. package/dist/src/presentation/web/app/build-graph-nodes.js +9 -5
  70. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
  71. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +10 -20
  72. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
  73. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +1 -4
  74. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.stories.d.ts.map +1 -1
  75. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.stories.js +4 -0
  76. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +2 -0
  77. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  78. package/dist/src/presentation/web/components/common/merge-review/diff-view.js +1 -1
  79. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  80. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +12 -0
  81. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  82. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +32 -8
  83. package/dist/src/presentation/web/hooks/use-graph-state.d.ts +14 -0
  84. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  85. package/dist/src/presentation/web/hooks/use-graph-state.js +35 -1
  86. package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
  87. package/dist/src/presentation/web/lib/derive-graph.js +4 -2
  88. package/dist/tsconfig.build.tsbuildinfo +1 -1
  89. package/package.json +10 -6
  90. package/web/.next/BUILD_ID +1 -1
  91. package/web/.next/build-manifest.json +2 -2
  92. package/web/.next/fallback-build-manifest.json +2 -2
  93. package/web/.next/prerender-manifest.json +3 -3
  94. package/web/.next/required-server-files.js +3 -3
  95. package/web/.next/required-server-files.json +3 -3
  96. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +20 -20
  97. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  98. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  99. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +26 -26
  100. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  101. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  102. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +26 -26
  103. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  104. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  105. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +18 -18
  106. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  107. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  108. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +20 -20
  109. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  110. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  111. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +26 -26
  112. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  113. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  114. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +26 -26
  115. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  116. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  117. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +18 -18
  118. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  119. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  120. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +18 -18
  121. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  122. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  123. package/web/.next/server/app/_global-error.html +2 -2
  124. package/web/.next/server/app/_global-error.rsc +1 -1
  125. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  126. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  127. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  128. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  129. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  130. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  131. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  132. package/web/.next/server/app/settings/page/server-reference-manifest.json +5 -5
  133. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  134. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  135. package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  136. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  137. package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  138. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  139. package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  140. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  141. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  142. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  143. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  144. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  145. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  146. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_a1104008.js +1 -1
  147. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_a1104008.js.map +1 -1
  148. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_92642200.js +1 -1
  149. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_92642200.js.map +1 -1
  150. package/web/.next/server/chunks/ssr/[root-of-the-server]__039967e3._.js +1 -1
  151. package/web/.next/server/chunks/ssr/[root-of-the-server]__039967e3._.js.map +1 -1
  152. package/web/.next/server/chunks/ssr/[root-of-the-server]__07a39ff2._.js +1 -1
  153. package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +1 -1
  154. package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js.map +1 -1
  155. package/web/.next/server/chunks/ssr/[root-of-the-server]__24dd0927._.js +2 -2
  156. package/web/.next/server/chunks/ssr/[root-of-the-server]__24dd0927._.js.map +1 -1
  157. package/web/.next/server/chunks/ssr/[root-of-the-server]__2773312c._.js +1 -1
  158. package/web/.next/server/chunks/ssr/[root-of-the-server]__2773312c._.js.map +1 -1
  159. package/web/.next/server/chunks/ssr/[root-of-the-server]__5d87af2e._.js +1 -1
  160. package/web/.next/server/chunks/ssr/[root-of-the-server]__845a9d2a._.js +1 -1
  161. package/web/.next/server/chunks/ssr/[root-of-the-server]__845a9d2a._.js.map +1 -1
  162. package/web/.next/server/chunks/ssr/[root-of-the-server]__89e8a5cc._.js +2 -2
  163. package/web/.next/server/chunks/ssr/[root-of-the-server]__89e8a5cc._.js.map +1 -1
  164. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +2 -2
  165. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  166. package/web/.next/server/chunks/ssr/[root-of-the-server]__cbd8062c._.js +1 -1
  167. package/web/.next/server/chunks/ssr/[root-of-the-server]__cbd8062c._.js.map +1 -1
  168. package/web/.next/server/chunks/ssr/[root-of-the-server]__e70c5627._.js +1 -1
  169. package/web/.next/server/chunks/ssr/[root-of-the-server]__e70c5627._.js.map +1 -1
  170. package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +1 -1
  171. package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js.map +1 -1
  172. package/web/.next/server/chunks/ssr/{_3c0076bc._.js → _03abb839._.js} +2 -2
  173. package/web/.next/server/chunks/ssr/{_3c0076bc._.js.map → _03abb839._.js.map} +1 -1
  174. package/web/.next/server/chunks/ssr/_135edb9c._.js +1 -1
  175. package/web/.next/server/chunks/ssr/_135edb9c._.js.map +1 -1
  176. package/web/.next/server/chunks/ssr/{_89745126._.js → _23900994._.js} +2 -2
  177. package/web/.next/server/chunks/ssr/{_89745126._.js.map → _23900994._.js.map} +1 -1
  178. package/web/.next/server/chunks/ssr/_8dacd1e7._.js +1 -1
  179. package/web/.next/server/chunks/ssr/_8dacd1e7._.js.map +1 -1
  180. package/web/.next/server/chunks/ssr/_cc77a143._.js +1 -1
  181. package/web/.next/server/chunks/ssr/_cc77a143._.js.map +1 -1
  182. package/web/.next/server/chunks/ssr/{_4d49c223._.js → _e471b10e._.js} +2 -2
  183. package/web/.next/server/chunks/ssr/_e471b10e._.js.map +1 -0
  184. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  185. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  186. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_888633e1.js +1 -1
  187. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_888633e1.js.map +1 -1
  188. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +1 -1
  189. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -1
  190. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +1 -1
  191. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -1
  192. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  193. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  194. package/web/.next/server/chunks/ssr/src_presentation_web_ce7cbc3c._.js +2 -2
  195. package/web/.next/server/chunks/ssr/src_presentation_web_ce7cbc3c._.js.map +1 -1
  196. package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js +1 -1
  197. package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js +1 -1
  198. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  199. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  200. package/web/.next/server/chunks/ssr/src_presentation_web_e2604413._.js +2 -2
  201. package/web/.next/server/chunks/ssr/src_presentation_web_e2604413._.js.map +1 -1
  202. package/web/.next/server/pages/500.html +2 -2
  203. package/web/.next/server/server-reference-manifest.js +1 -1
  204. package/web/.next/server/server-reference-manifest.json +31 -31
  205. package/web/.next/static/chunks/{dd30ae99bcec5f69.js → 0259f68e8cba1232.js} +2 -2
  206. package/web/.next/static/chunks/390cd175f31c23bd.js +1 -0
  207. package/web/.next/static/chunks/{e429067d6277ac20.js → 3aa0a3c375e171b7.js} +1 -1
  208. package/web/.next/static/chunks/3c0e42848df65f47.js +1 -0
  209. package/web/.next/static/chunks/49ea25f05cfe275e.js +2 -0
  210. package/web/.next/static/chunks/{f28d2411c36c308b.js → 66e7d64dec0f9b4e.js} +1 -1
  211. package/web/.next/static/chunks/{2eab3bb5550eccac.js → 6d451179fe680a0b.js} +1 -1
  212. package/web/.next/static/chunks/{eed22af4cf55faea.js → a6e126cfd67b6226.js} +1 -1
  213. package/web/.next/static/chunks/{5ebc63ae73de50a3.js → b6281225de926d14.js} +1 -1
  214. package/web/.next/static/chunks/{9751a0c871920841.js → d9de031d0650842c.js} +1 -1
  215. package/web/.next/server/chunks/ssr/_4d49c223._.js.map +0 -1
  216. package/web/.next/static/chunks/281782a712ea79cb.js +0 -2
  217. package/web/.next/static/chunks/2c6298885de1484c.js +0 -1
  218. package/web/.next/static/chunks/fa27e698e0daf727.js +0 -1
  219. /package/web/.next/static/{OYucSKP83TUMTV1zRbeB8 → 9CJ-N5fAJggr638PxfA5a}/_buildManifest.js +0 -0
  220. /package/web/.next/static/{OYucSKP83TUMTV1zRbeB8 → 9CJ-N5fAJggr638PxfA5a}/_clientMiddlewareManifest.json +0 -0
  221. /package/web/.next/static/{OYucSKP83TUMTV1zRbeB8 → 9CJ-N5fAJggr638PxfA5a}/_ssgManifest.js +0 -0
@@ -1,2 +1,2 @@
1
1
  globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
2
- globalThis.__RSC_MANIFEST["/(dashboard)/@drawer/feature/[featureId]/[tab]/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx <module evaluation>":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx <module evaluation>":{"id":87292,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx <module evaluation>":{"id":75921,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx":{"id":75921,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx <module evaluation>":{"id":48246,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/2eab3bb5550eccac.js","/_next/static/chunks/5ebc63ae73de50a3.js","/_next/static/chunks/e429067d6277ac20.js","/_next/static/chunks/dd30ae99bcec5f69.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx":{"id":48246,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/2eab3bb5550eccac.js","/_next/static/chunks/5ebc63ae73de50a3.js","/_next/static/chunks/e429067d6277ac20.js","/_next/static/chunks/dd30ae99bcec5f69.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts <module evaluation>":{"id":17840,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/2eab3bb5550eccac.js","/_next/static/chunks/5ebc63ae73de50a3.js","/_next/static/chunks/e429067d6277ac20.js","/_next/static/chunks/dd30ae99bcec5f69.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts":{"id":17840,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/2eab3bb5550eccac.js","/_next/static/chunks/5ebc63ae73de50a3.js","/_next/static/chunks/e429067d6277ac20.js","/_next/static/chunks/dd30ae99bcec5f69.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.tsx <module evaluation>":{"id":36986,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/2eab3bb5550eccac.js","/_next/static/chunks/5ebc63ae73de50a3.js","/_next/static/chunks/e429067d6277ac20.js","/_next/static/chunks/dd30ae99bcec5f69.js","/_next/static/chunks/07b853e29af1e5f2.js","/_next/static/chunks/281782a712ea79cb.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.tsx":{"id":36986,"name":"*","chunks":["/_next/static/chunks/f28d2411c36c308b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/2eab3bb5550eccac.js","/_next/static/chunks/5ebc63ae73de50a3.js","/_next/static/chunks/e429067d6277ac20.js","/_next/static/chunks/dd30ae99bcec5f69.js","/_next/static/chunks/07b853e29af1e5f2.js","/_next/static/chunks/281782a712ea79cb.js"],"async":false}},"ssrModuleMapping":{"40799":{"*":{"id":69218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"73006":{"*":{"id":76926,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"67804":{"*":{"id":78378,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"50122":{"*":{"id":18508,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"19292":{"*":{"id":55259,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"30088":{"*":{"id":33028,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"66658":{"*":{"id":42422,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"98295":{"*":{"id":84831,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"87292":{"*":{"id":66560,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"75921":{"*":{"id":21333,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"48246":{"*":{"id":59949,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_3c0076bc._.js","server/chunks/ssr/_cc77a143._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_4d49c223._.js"],"async":false}},"17840":{"*":{"id":16533,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_3c0076bc._.js","server/chunks/ssr/_cc77a143._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_4d49c223._.js"],"async":false}},"36986":{"*":{"id":64885,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_3c0076bc._.js","server/chunks/ssr/_cc77a143._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_4d49c223._.js","server/chunks/ssr/[root-of-the-server]__d91fdd51._.js","server/chunks/ssr/[root-of-the-server]__aad040c0._.js","server/chunks/ssr/_f5316e67._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40799":{"*":{"id":48035,"name":"*","chunks":[],"async":false}},"73006":{"*":{"id":22994,"name":"*","chunks":[],"async":false}},"67804":{"*":{"id":21809,"name":"*","chunks":[],"async":false}},"50122":{"*":{"id":70251,"name":"*","chunks":[],"async":false}},"19292":{"*":{"id":39498,"name":"*","chunks":[],"async":false}},"30088":{"*":{"id":2021,"name":"*","chunks":[],"async":false}},"66658":{"*":{"id":47390,"name":"*","chunks":[],"async":false}},"98295":{"*":{"id":73449,"name":"*","chunks":[],"async":false}},"87292":{"*":{"id":34168,"name":"*","chunks":[],"async":false}},"25251":{"*":{"id":11900,"name":"*","chunks":[],"async":false}},"75921":{"*":{"id":59259,"name":"*","chunks":[],"async":false}},"48246":{"*":{"id":87979,"name":"*","chunks":[],"async":false}},"17840":{"*":{"id":81035,"name":"*","chunks":[],"async":false}},"36986":{"*":{"id":57863,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/presentation/web/app/global-error":[],"[project]/src/presentation/web/app/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/5558a658fa82a01f.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/5558a658fa82a01f.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/5558a658fa82a01f.css","inlined":false}]},"entryJSFiles":{"[project]/src/presentation/web/app/global-error":["static/chunks/356ebc89a2a97627.js","static/chunks/fe70e73feb07bcfd.js"],"[project]/src/presentation/web/app/layout":["static/chunks/f28d2411c36c308b.js","static/chunks/52b56677c842e45f.js","static/chunks/672e3da3ad26005b.js","static/chunks/0102ce60a2a42fab.js","static/chunks/3bb35e0689e8b6b7.js"],"[project]/src/presentation/web/app/(dashboard)/layout":["static/chunks/f28d2411c36c308b.js","static/chunks/52b56677c842e45f.js","static/chunks/672e3da3ad26005b.js","static/chunks/0102ce60a2a42fab.js","static/chunks/3bb35e0689e8b6b7.js","static/chunks/2eab3bb5550eccac.js","static/chunks/5ebc63ae73de50a3.js","static/chunks/e429067d6277ac20.js","static/chunks/dd30ae99bcec5f69.js"],"[project]/src/presentation/web/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page":["static/chunks/f28d2411c36c308b.js","static/chunks/52b56677c842e45f.js","static/chunks/672e3da3ad26005b.js","static/chunks/0102ce60a2a42fab.js","static/chunks/3bb35e0689e8b6b7.js","static/chunks/2eab3bb5550eccac.js","static/chunks/5ebc63ae73de50a3.js","static/chunks/e429067d6277ac20.js","static/chunks/dd30ae99bcec5f69.js","static/chunks/07b853e29af1e5f2.js","static/chunks/281782a712ea79cb.js"]}}
2
+ globalThis.__RSC_MANIFEST["/(dashboard)/@drawer/feature/[featureId]/[tab]/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx <module evaluation>":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx <module evaluation>":{"id":87292,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx <module evaluation>":{"id":75921,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx":{"id":75921,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx <module evaluation>":{"id":48246,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/6d451179fe680a0b.js","/_next/static/chunks/b6281225de926d14.js","/_next/static/chunks/3aa0a3c375e171b7.js","/_next/static/chunks/0259f68e8cba1232.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx":{"id":48246,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/6d451179fe680a0b.js","/_next/static/chunks/b6281225de926d14.js","/_next/static/chunks/3aa0a3c375e171b7.js","/_next/static/chunks/0259f68e8cba1232.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts <module evaluation>":{"id":17840,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/6d451179fe680a0b.js","/_next/static/chunks/b6281225de926d14.js","/_next/static/chunks/3aa0a3c375e171b7.js","/_next/static/chunks/0259f68e8cba1232.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts":{"id":17840,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/6d451179fe680a0b.js","/_next/static/chunks/b6281225de926d14.js","/_next/static/chunks/3aa0a3c375e171b7.js","/_next/static/chunks/0259f68e8cba1232.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.tsx <module evaluation>":{"id":36986,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/6d451179fe680a0b.js","/_next/static/chunks/b6281225de926d14.js","/_next/static/chunks/3aa0a3c375e171b7.js","/_next/static/chunks/0259f68e8cba1232.js","/_next/static/chunks/07b853e29af1e5f2.js","/_next/static/chunks/49ea25f05cfe275e.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.tsx":{"id":36986,"name":"*","chunks":["/_next/static/chunks/66e7d64dec0f9b4e.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/0102ce60a2a42fab.js","/_next/static/chunks/3bb35e0689e8b6b7.js","/_next/static/chunks/6d451179fe680a0b.js","/_next/static/chunks/b6281225de926d14.js","/_next/static/chunks/3aa0a3c375e171b7.js","/_next/static/chunks/0259f68e8cba1232.js","/_next/static/chunks/07b853e29af1e5f2.js","/_next/static/chunks/49ea25f05cfe275e.js"],"async":false}},"ssrModuleMapping":{"40799":{"*":{"id":69218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"73006":{"*":{"id":76926,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"67804":{"*":{"id":78378,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"50122":{"*":{"id":18508,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"19292":{"*":{"id":55259,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"30088":{"*":{"id":33028,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"66658":{"*":{"id":42422,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"98295":{"*":{"id":84831,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"87292":{"*":{"id":66560,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"75921":{"*":{"id":21333,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"48246":{"*":{"id":59949,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_03abb839._.js","server/chunks/ssr/_cc77a143._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_e471b10e._.js"],"async":false}},"17840":{"*":{"id":16533,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_03abb839._.js","server/chunks/ssr/_cc77a143._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_e471b10e._.js"],"async":false}},"36986":{"*":{"id":64885,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__845a9d2a._.js","server/chunks/ssr/_e6f2da4f._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_a68d7e1c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_03abb839._.js","server/chunks/ssr/_cc77a143._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_e471b10e._.js","server/chunks/ssr/[root-of-the-server]__d91fdd51._.js","server/chunks/ssr/[root-of-the-server]__aad040c0._.js","server/chunks/ssr/_f5316e67._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40799":{"*":{"id":48035,"name":"*","chunks":[],"async":false}},"73006":{"*":{"id":22994,"name":"*","chunks":[],"async":false}},"67804":{"*":{"id":21809,"name":"*","chunks":[],"async":false}},"50122":{"*":{"id":70251,"name":"*","chunks":[],"async":false}},"19292":{"*":{"id":39498,"name":"*","chunks":[],"async":false}},"30088":{"*":{"id":2021,"name":"*","chunks":[],"async":false}},"66658":{"*":{"id":47390,"name":"*","chunks":[],"async":false}},"98295":{"*":{"id":73449,"name":"*","chunks":[],"async":false}},"87292":{"*":{"id":34168,"name":"*","chunks":[],"async":false}},"25251":{"*":{"id":11900,"name":"*","chunks":[],"async":false}},"75921":{"*":{"id":59259,"name":"*","chunks":[],"async":false}},"48246":{"*":{"id":87979,"name":"*","chunks":[],"async":false}},"17840":{"*":{"id":81035,"name":"*","chunks":[],"async":false}},"36986":{"*":{"id":57863,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/presentation/web/app/global-error":[],"[project]/src/presentation/web/app/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/5558a658fa82a01f.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/5558a658fa82a01f.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/5558a658fa82a01f.css","inlined":false}]},"entryJSFiles":{"[project]/src/presentation/web/app/global-error":["static/chunks/356ebc89a2a97627.js","static/chunks/fe70e73feb07bcfd.js"],"[project]/src/presentation/web/app/layout":["static/chunks/66e7d64dec0f9b4e.js","static/chunks/52b56677c842e45f.js","static/chunks/672e3da3ad26005b.js","static/chunks/0102ce60a2a42fab.js","static/chunks/3bb35e0689e8b6b7.js"],"[project]/src/presentation/web/app/(dashboard)/layout":["static/chunks/66e7d64dec0f9b4e.js","static/chunks/52b56677c842e45f.js","static/chunks/672e3da3ad26005b.js","static/chunks/0102ce60a2a42fab.js","static/chunks/3bb35e0689e8b6b7.js","static/chunks/6d451179fe680a0b.js","static/chunks/b6281225de926d14.js","static/chunks/3aa0a3c375e171b7.js","static/chunks/0259f68e8cba1232.js"],"[project]/src/presentation/web/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page":["static/chunks/66e7d64dec0f9b4e.js","static/chunks/52b56677c842e45f.js","static/chunks/672e3da3ad26005b.js","static/chunks/0102ce60a2a42fab.js","static/chunks/3bb35e0689e8b6b7.js","static/chunks/6d451179fe680a0b.js","static/chunks/b6281225de926d14.js","static/chunks/3aa0a3c375e171b7.js","static/chunks/0259f68e8cba1232.js","static/chunks/07b853e29af1e5f2.js","static/chunks/49ea25f05cfe275e.js"]}}
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "00ae9a8021dc93638f12741b6fe113e06f28a5b2ae": {
3
+ "008e1587b6afc5062bf0f2108b7737722ac86d99d4": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
6
6
  "moduleId": 56238,
@@ -15,7 +15,7 @@
15
15
  "exportedName": "pickFolder",
16
16
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
17
17
  },
18
- "4053e82e0043b4de0bf6e7852ea13385ceb718efb1": {
18
+ "40a9965a0a189300522e59b8aea5bb507e9b02065d": {
19
19
  "workers": {
20
20
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
21
21
  "moduleId": 56238,
@@ -30,7 +30,7 @@
30
30
  "exportedName": "getDeploymentLogs",
31
31
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
32
32
  },
33
- "40a1e81089153829e95811c28f321be891ee487f1f": {
33
+ "408a61972c0c82aefa0eab4e8286ad45d65b43b768": {
34
34
  "workers": {
35
35
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
36
36
  "moduleId": 56238,
@@ -45,7 +45,7 @@
45
45
  "exportedName": "deployFeature",
46
46
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
47
47
  },
48
- "40c1f6eec21848341ada88a412a58842f93c6e2e68": {
48
+ "405691b203b6d2157afb42d7a2a6387929487e0354": {
49
49
  "workers": {
50
50
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
51
51
  "moduleId": 56238,
@@ -60,7 +60,7 @@
60
60
  "exportedName": "deployRepository",
61
61
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
62
62
  },
63
- "404d92cd9c2e1246035f204305e6cb1a4062482979": {
63
+ "400fffe1e6362205871171cc74b52aa03ed1bc77dc": {
64
64
  "workers": {
65
65
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
66
66
  "moduleId": 56238,
@@ -75,7 +75,7 @@
75
75
  "exportedName": "stopDeployment",
76
76
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
77
77
  },
78
- "40ce57ada7bfc1a967ca56a168d78956e4307f1b31": {
78
+ "407f3e052d0acab5fc7a9bc797c1014cf30302b4a5": {
79
79
  "workers": {
80
80
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
81
81
  "moduleId": 56238,
@@ -90,7 +90,7 @@
90
90
  "exportedName": "getDeploymentStatus",
91
91
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
92
92
  },
93
- "409a2ccc7866e41dc7761a90586e00bc9d0a2e6cd7": {
93
+ "4017adad65ecd1c902eabcf4810cd845b295e21ff1": {
94
94
  "workers": {
95
95
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
96
96
  "moduleId": 56238,
@@ -105,7 +105,7 @@
105
105
  "exportedName": "openIde",
106
106
  "filename": "src/presentation/web/app/actions/open-ide.ts"
107
107
  },
108
- "401547937aebda9dfb7c394ed41ba88c72556dae42": {
108
+ "407a22c13c875398e4159a590b05227199cfc9c210": {
109
109
  "workers": {
110
110
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
111
111
  "moduleId": 56238,
@@ -120,7 +120,7 @@
120
120
  "exportedName": "openShell",
121
121
  "filename": "src/presentation/web/app/actions/open-shell.ts"
122
122
  },
123
- "400bcee3e53ff68a1c49139c3736724f2a9a9cf3fd": {
123
+ "401332f3d2391e337d5f8ab79843ce5582f30d3103": {
124
124
  "workers": {
125
125
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
126
126
  "moduleId": 56238,
@@ -135,7 +135,7 @@
135
135
  "exportedName": "openFolder",
136
136
  "filename": "src/presentation/web/app/actions/open-folder.ts"
137
137
  },
138
- "000ba1939438b40345a88caae2e786047e6ce50cf9": {
138
+ "00f1fe86ebfd423db237661f012d15b0de1ab2089a": {
139
139
  "workers": {
140
140
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
141
141
  "moduleId": 56238,
@@ -150,7 +150,7 @@
150
150
  "exportedName": "isAgentSetupComplete",
151
151
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
152
152
  },
153
- "000813b697c218dbacde6c623baacf123025069e12": {
153
+ "00d27dcbf23e4fe66eb73759cc81210cec3fd5dcf5": {
154
154
  "workers": {
155
155
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
156
156
  "moduleId": 56238,
@@ -165,7 +165,7 @@
165
165
  "exportedName": "checkAgentAuth",
166
166
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
167
167
  },
168
- "00bdfe1225351f0a9af687f69a83600471fe1eeade": {
168
+ "0096096798edd39ab5a37c34ffc62475e2132ac102": {
169
169
  "workers": {
170
170
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
171
171
  "moduleId": 56238,
@@ -180,7 +180,7 @@
180
180
  "exportedName": "getAllAgentModels",
181
181
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
182
182
  },
183
- "601e0cddf3b94cc76892d9af8782dca0f856023966": {
183
+ "608ab268cc74ba43f10a785df874420c25edfb88be": {
184
184
  "workers": {
185
185
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
186
186
  "moduleId": 56238,
@@ -195,7 +195,7 @@
195
195
  "exportedName": "updateAgentAndModel",
196
196
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
197
197
  },
198
- "605191daf099fbcd9ff472aef76e321fb8605f5f93": {
198
+ "60b0e87fb676688a2d8dc5e3993192640ac850a49f": {
199
199
  "workers": {
200
200
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
201
201
  "moduleId": 56238,
@@ -210,7 +210,7 @@
210
210
  "exportedName": "deleteFeature",
211
211
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
212
212
  },
213
- "40c53de7a6077ae65f663ac6582d7763992252de48": {
213
+ "400e88f5fcd055a296b5ca2a4ec729a6bf32f7265c": {
214
214
  "workers": {
215
215
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
216
216
  "moduleId": 56238,
@@ -225,7 +225,7 @@
225
225
  "exportedName": "resumeFeature",
226
226
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
227
227
  },
228
- "40c5f22ff2ab5bf138c5b7902ed4314dd9e08a93ea": {
228
+ "40e9e3e1189a7951b10e5fea1322fdfd43c6b0c2e2": {
229
229
  "workers": {
230
230
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
231
231
  "moduleId": 56238,
@@ -240,7 +240,7 @@
240
240
  "exportedName": "addRepository",
241
241
  "filename": "src/presentation/web/app/actions/add-repository.ts"
242
242
  },
243
- "406ee7f41d7caec86d7fe9a86ead9eb9504d8fdce9": {
243
+ "40da5c61b7ea6a55ca33e2328b30075c9eaac2701e": {
244
244
  "workers": {
245
245
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
246
246
  "moduleId": 56238,
@@ -255,7 +255,7 @@
255
255
  "exportedName": "deleteRepository",
256
256
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
257
257
  },
258
- "4052d7d8f07ec0842fee069d828c0c367556d41c89": {
258
+ "40f317bf736daf0213658ebc6f543e2cf45890580d": {
259
259
  "workers": {
260
260
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
261
261
  "moduleId": 56238,
@@ -270,7 +270,7 @@
270
270
  "exportedName": "getFeatureMetadata",
271
271
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
272
272
  },
273
- "6066d275ca5897251f50e3c5019750c4f2e84fad67": {
273
+ "60a2e8873843a110fbeb44e858ea071605be2b39e2": {
274
274
  "workers": {
275
275
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
276
276
  "moduleId": 56238,
@@ -285,7 +285,7 @@
285
285
  "exportedName": "approveFeature",
286
286
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
287
287
  },
288
- "70e6d8953159940d4b6456a5642ff3915984629e18": {
288
+ "7003818f57d68e87ccd521e4a5e58bfdfc000dbe3f": {
289
289
  "workers": {
290
290
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
291
291
  "moduleId": 56238,
@@ -300,7 +300,7 @@
300
300
  "exportedName": "rejectFeature",
301
301
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
302
302
  },
303
- "4021a39e1c8e4a6765c5b5762958d3a1ad8e8fe2c2": {
303
+ "40dcb88a85fc974da0ee87623681729b308b7fde21": {
304
304
  "workers": {
305
305
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
306
306
  "moduleId": 56238,
@@ -315,7 +315,7 @@
315
315
  "exportedName": "getFeatureArtifact",
316
316
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
317
317
  },
318
- "40cfbceed2cdf0872d663e79d33d3126b5c32068b0": {
318
+ "4045b5b8751b52975923d7650ce9afd7e637946f85": {
319
319
  "workers": {
320
320
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
321
321
  "moduleId": 56238,
@@ -330,7 +330,7 @@
330
330
  "exportedName": "getResearchArtifact",
331
331
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
332
332
  },
333
- "4084684cf5198364c8f2f126d1b5b9ea7128e7e991": {
333
+ "40aab3c51f297da9281b14aa2ee2bda858f261c97d": {
334
334
  "workers": {
335
335
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
336
336
  "moduleId": 56238,
@@ -345,7 +345,7 @@
345
345
  "exportedName": "getMergeReviewData",
346
346
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
347
347
  },
348
- "4074bedd1eed005b2ef956a064a68f4f33b29f6fd5": {
348
+ "40f3ea8f64f2cdad33a4ab44a6106c7e903c5c421a": {
349
349
  "workers": {
350
350
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
351
351
  "moduleId": 56238,
@@ -360,7 +360,7 @@
360
360
  "exportedName": "getFeaturePhaseTimings",
361
361
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
362
362
  },
363
- "403b462835a8d4e9e9a933c121780886b185e9cb3e": {
363
+ "40488368a3ea6277166f4def8fa8a5b2c543a332d9": {
364
364
  "workers": {
365
365
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
366
366
  "moduleId": 56238,
@@ -375,7 +375,7 @@
375
375
  "exportedName": "getFeaturePlan",
376
376
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts"
377
377
  },
378
- "40687fc19a1d3683f61c23cc6220a021eda3deba7c": {
378
+ "408bf1c7742280a22798d68a2f8ea0efb1decbd50a": {
379
379
  "workers": {
380
380
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
381
381
  "moduleId": 56238,