@shepai/cli 1.120.0 → 1.121.0-pr375.de718bc

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 (272) hide show
  1. package/apis/json-schema/PhaseTiming.yaml +17 -0
  2. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts +19 -5
  3. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts.map +1 -1
  4. package/dist/packages/core/src/application/ports/output/agents/phase-timing-repository.interface.d.ts +1 -1
  5. package/dist/packages/core/src/application/ports/output/agents/phase-timing-repository.interface.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts +3 -1
  7. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
  8. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +4 -2
  9. package/dist/packages/core/src/domain/generated/output.d.ts +22 -0
  10. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  11. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/039-add-phase-timing-extended-stats.d.ts +11 -0
  12. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/039-add-phase-timing-extended-stats.d.ts.map +1 -0
  13. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/039-add-phase-timing-extended-stats.js +25 -0
  14. package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.d.ts +1 -1
  15. package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.d.ts.map +1 -1
  16. package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.js +42 -2
  17. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +5 -0
  18. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
  19. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +38 -13
  20. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.d.ts.map +1 -1
  21. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.js +23 -2
  22. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.d.ts.map +1 -1
  23. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.js +13 -1
  24. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts.map +1 -1
  25. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.js +12 -0
  26. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  27. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +5 -0
  28. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/phase-timing-context.d.ts +5 -0
  29. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/phase-timing-context.d.ts.map +1 -1
  30. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/phase-timing-context.js +9 -0
  31. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  32. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +2 -43
  33. package/dist/src/presentation/web/app/actions/approve-feature.d.ts.map +1 -1
  34. package/dist/src/presentation/web/app/actions/approve-feature.js +9 -0
  35. package/dist/src/presentation/web/app/actions/get-feature-phase-timings.d.ts +5 -0
  36. package/dist/src/presentation/web/app/actions/get-feature-phase-timings.d.ts.map +1 -1
  37. package/dist/src/presentation/web/app/actions/get-feature-phase-timings.js +5 -0
  38. package/dist/src/presentation/web/app/actions/reject-feature.d.ts.map +1 -1
  39. package/dist/src/presentation/web/app/actions/reject-feature.js +9 -0
  40. package/dist/src/presentation/web/app/actions/stop-feature.d.ts +5 -0
  41. package/dist/src/presentation/web/app/actions/stop-feature.d.ts.map +1 -0
  42. package/dist/src/presentation/web/app/actions/stop-feature.js +30 -0
  43. package/dist/src/presentation/web/app/api/npm-version/route.d.ts.map +1 -1
  44. package/dist/src/presentation/web/app/api/npm-version/route.js +9 -1
  45. package/dist/src/presentation/web/app/api/sessions/route.d.ts.map +1 -1
  46. package/dist/src/presentation/web/app/api/sessions/route.js +43 -10
  47. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.d.ts.map +1 -1
  48. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.js +15 -6
  49. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.stories.d.ts.map +1 -1
  50. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.stories.js +35 -0
  51. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts.map +1 -1
  52. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +2 -2
  53. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts +2 -0
  54. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts.map +1 -1
  55. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.js +4 -0
  56. package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.stories.d.ts +1 -0
  57. package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.stories.d.ts.map +1 -1
  58. package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.stories.js +8 -0
  59. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +1 -0
  60. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  61. package/dist/src/presentation/web/components/common/feature-status-badges/feature-status-badges.stories.js +6 -6
  62. package/dist/src/presentation/web/components/common/feature-status-config.d.ts +1 -1
  63. package/dist/src/presentation/web/components/common/feature-status-config.d.ts.map +1 -1
  64. package/dist/src/presentation/web/components/common/feature-status-config.js +8 -1
  65. package/dist/src/presentation/web/components/common/feature-status-group/feature-status-group.stories.d.ts +1 -0
  66. package/dist/src/presentation/web/components/common/feature-status-group/feature-status-group.stories.d.ts.map +1 -1
  67. package/dist/src/presentation/web/components/common/feature-status-group/feature-status-group.stories.js +7 -0
  68. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  69. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +3 -1
  70. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +1 -0
  71. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  72. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +18 -0
  73. package/dist/src/presentation/web/hooks/sidebar-features-context.js +1 -1
  74. package/dist/src/presentation/web/lib/derive-graph.d.ts +2 -0
  75. package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
  76. package/dist/src/presentation/web/lib/derive-graph.js +5 -0
  77. package/dist/tsconfig.build.tsbuildinfo +1 -1
  78. package/package.json +3 -5
  79. package/web/.next/BUILD_ID +1 -1
  80. package/web/.next/build-manifest.json +2 -2
  81. package/web/.next/fallback-build-manifest.json +2 -2
  82. package/web/.next/prerender-manifest.json +3 -3
  83. package/web/.next/required-server-files.js +3 -3
  84. package/web/.next/required-server-files.json +3 -3
  85. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +57 -42
  86. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  87. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  88. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  89. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +69 -54
  90. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -1
  91. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  92. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  93. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +69 -54
  94. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -1
  95. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  96. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  97. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +53 -38
  98. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  99. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  100. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  101. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +57 -42
  102. package/web/.next/server/app/(dashboard)/create/page.js +1 -1
  103. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  104. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  105. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +69 -54
  106. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -1
  107. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  108. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  109. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +69 -54
  110. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -1
  111. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  112. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  113. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +53 -38
  114. package/web/.next/server/app/(dashboard)/page.js +1 -1
  115. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  116. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  117. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +53 -38
  118. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  119. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  120. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  121. package/web/.next/server/app/_global-error.html +2 -2
  122. package/web/.next/server/app/_global-error.rsc +1 -1
  123. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  124. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  125. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  126. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  127. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  128. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  129. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  130. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  131. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  132. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  133. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  134. package/web/.next/server/app/api/sessions/route.js +1 -1
  135. package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
  136. package/web/.next/server/app/settings/page/server-reference-manifest.json +6 -6
  137. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  138. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  139. package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  140. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  141. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  142. package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  143. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  144. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  145. package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  146. package/web/.next/server/app/version/page.js.nft.json +1 -1
  147. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  148. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  149. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  150. package/web/.next/server/chunks/[externals]_node:fs_ddf6f167._.js +3 -0
  151. package/web/.next/server/chunks/[externals]_node:fs_ddf6f167._.js.map +1 -0
  152. package/web/.next/server/chunks/[root-of-the-server]__3b72e8b0._.js +1 -1
  153. package/web/.next/server/chunks/[root-of-the-server]__3b72e8b0._.js.map +1 -1
  154. package/web/.next/server/chunks/[root-of-the-server]__42b7ab55._.js +1 -1
  155. package/web/.next/server/chunks/[root-of-the-server]__42b7ab55._.js.map +1 -1
  156. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  157. package/web/.next/server/chunks/[root-of-the-server]__a62bd945._.js +3 -0
  158. package/web/.next/server/chunks/[root-of-the-server]__a62bd945._.js.map +1 -0
  159. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  160. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  161. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  162. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  163. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_f30d0343.js +3 -0
  164. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_f30d0343.js.map +1 -0
  165. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_9f1775bb.js +3 -0
  166. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_9f1775bb.js.map +1 -0
  167. package/web/.next/server/chunks/ssr/[root-of-the-server]__06fef644._.js +1 -1
  168. package/web/.next/server/chunks/ssr/[root-of-the-server]__2698e9f4._.js +3 -0
  169. package/web/.next/server/chunks/ssr/[root-of-the-server]__2698e9f4._.js.map +1 -0
  170. package/web/.next/server/chunks/ssr/[root-of-the-server]__545792ab._.js +1 -1
  171. package/web/.next/server/chunks/ssr/[root-of-the-server]__545792ab._.js.map +1 -1
  172. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
  173. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js.map +1 -1
  174. package/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js +2 -2
  175. package/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js.map +1 -1
  176. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
  177. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js.map +1 -1
  178. package/web/.next/server/chunks/ssr/[root-of-the-server]__8c553503._.js +2 -2
  179. package/web/.next/server/chunks/ssr/[root-of-the-server]__8e3bf5d7._.js +3 -0
  180. package/web/.next/server/chunks/ssr/[root-of-the-server]__8e3bf5d7._.js.map +1 -0
  181. package/web/.next/server/chunks/ssr/[root-of-the-server]__a022445f._.js +2 -2
  182. package/web/.next/server/chunks/ssr/[root-of-the-server]__a022445f._.js.map +1 -1
  183. package/web/.next/server/chunks/ssr/[root-of-the-server]__a7de2711._.js +2 -2
  184. package/web/.next/server/chunks/ssr/[root-of-the-server]__a7de2711._.js.map +1 -1
  185. package/web/.next/server/chunks/ssr/[root-of-the-server]__b724df9e._.js +1 -1
  186. package/web/.next/server/chunks/ssr/[root-of-the-server]__b724df9e._.js.map +1 -1
  187. package/web/.next/server/chunks/ssr/[root-of-the-server]__c07f9f79._.js +3 -0
  188. package/web/.next/server/chunks/ssr/[root-of-the-server]__c07f9f79._.js.map +1 -0
  189. package/web/.next/server/chunks/ssr/[root-of-the-server]__c605a375._.js +3 -0
  190. package/web/.next/server/chunks/ssr/[root-of-the-server]__c605a375._.js.map +1 -0
  191. package/web/.next/server/chunks/ssr/_0dc2cfd3._.js +3 -0
  192. package/web/.next/server/chunks/ssr/_0dc2cfd3._.js.map +1 -0
  193. package/web/.next/server/chunks/ssr/{_16e2ff25._.js → _0e2fa803._.js} +2 -2
  194. package/web/.next/server/chunks/ssr/{_16e2ff25._.js.map → _0e2fa803._.js.map} +1 -1
  195. package/web/.next/server/chunks/ssr/_135edb9c._.js +1 -1
  196. package/web/.next/server/chunks/ssr/_135edb9c._.js.map +1 -1
  197. package/web/.next/server/chunks/ssr/_1bb131c4._.js.map +1 -1
  198. package/web/.next/server/chunks/ssr/_2f6f48b8._.js +1 -1
  199. package/web/.next/server/chunks/ssr/_2f6f48b8._.js.map +1 -1
  200. package/web/.next/server/chunks/ssr/{_c93f4352._.js → _86bcd0cb._.js} +2 -2
  201. package/web/.next/server/chunks/ssr/{_c93f4352._.js.map → _86bcd0cb._.js.map} +1 -1
  202. package/web/.next/server/chunks/ssr/_9cdb9131._.js +3 -0
  203. package/web/.next/server/chunks/ssr/{_503b26e9._.js.map → _9cdb9131._.js.map} +1 -1
  204. package/web/.next/server/chunks/ssr/_cc77a143._.js +1 -1
  205. package/web/.next/server/chunks/ssr/_cc77a143._.js.map +1 -1
  206. package/web/.next/server/chunks/ssr/{_f605354c._.js → _f1a649e3._.js} +3 -3
  207. package/web/.next/server/chunks/ssr/_f1a649e3._.js.map +1 -0
  208. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  209. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  210. package/web/.next/server/chunks/ssr/{src_presentation_web_0835b28e._.js → src_presentation_web_5f039db1._.js} +3 -3
  211. package/web/.next/server/chunks/ssr/{src_presentation_web_0835b28e._.js.map → src_presentation_web_5f039db1._.js.map} +1 -1
  212. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_2a52b697.js +3 -0
  213. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_2a52b697.js.map +1 -0
  214. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +1 -1
  215. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -1
  216. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +1 -1
  217. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -1
  218. package/web/.next/server/chunks/ssr/{src_presentation_web_e8034a29._.js → src_presentation_web_c4337169._.js} +3 -3
  219. package/web/.next/server/chunks/ssr/{src_presentation_web_e8034a29._.js.map → src_presentation_web_c4337169._.js.map} +1 -1
  220. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  221. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  222. package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js +1 -1
  223. package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js.map +1 -1
  224. package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js +1 -1
  225. package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js.map +1 -1
  226. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  227. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  228. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  229. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  230. package/web/.next/server/pages/500.html +2 -2
  231. package/web/.next/server/server-reference-manifest.js +1 -1
  232. package/web/.next/server/server-reference-manifest.json +311 -240
  233. package/web/.next/static/chunks/0d2af96e64960ef5.css +1 -0
  234. package/web/.next/static/chunks/{263497416e5198a3.js → 78227a8fa0b0a44f.js} +1 -1
  235. package/web/.next/static/chunks/7c121b87cbc3a987.js +1 -0
  236. package/web/.next/static/chunks/{51244236801cad96.js → 87e9e13dd05907a3.js} +1 -1
  237. package/web/.next/static/chunks/{71161130b2462279.js → 96eeeb28e06de78c.js} +1 -1
  238. package/web/.next/static/chunks/d1e8c0959d9e7e38.js +1 -0
  239. package/web/.next/static/chunks/{a5ff70a7709ec5af.js → d3ea72cbb1d42172.js} +1 -1
  240. package/web/.next/static/chunks/{700fc491c912dd68.js → e4b05f1dc8974236.js} +1 -1
  241. package/web/.next/static/chunks/f357d403bf61ec3c.js +2 -0
  242. package/web/.next/static/chunks/f4ae633779d5324c.js +11 -0
  243. package/web/.next/static/chunks/{57e0b981e00941e4.js → f62c2cfe34d12a8d.js} +1 -1
  244. package/web/.next/static/chunks/{abb2b485cb0da264.js → ff286f5ef499d263.js} +1 -1
  245. package/web/.next/server/chunks/[root-of-the-server]__0fe7788d._.js +0 -3
  246. package/web/.next/server/chunks/[root-of-the-server]__0fe7788d._.js.map +0 -1
  247. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_ed372306.js +0 -3
  248. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_ed372306.js.map +0 -1
  249. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_32e26434.js +0 -3
  250. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_32e26434.js.map +0 -1
  251. package/web/.next/server/chunks/ssr/[root-of-the-server]__3b14e5a0._.js +0 -3
  252. package/web/.next/server/chunks/ssr/[root-of-the-server]__3b14e5a0._.js.map +0 -1
  253. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b59c03e._.js +0 -3
  254. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b59c03e._.js.map +0 -1
  255. package/web/.next/server/chunks/ssr/[root-of-the-server]__994ad9fe._.js +0 -3
  256. package/web/.next/server/chunks/ssr/[root-of-the-server]__994ad9fe._.js.map +0 -1
  257. package/web/.next/server/chunks/ssr/[root-of-the-server]__c9c1cfee._.js +0 -3
  258. package/web/.next/server/chunks/ssr/[root-of-the-server]__c9c1cfee._.js.map +0 -1
  259. package/web/.next/server/chunks/ssr/_503b26e9._.js +0 -3
  260. package/web/.next/server/chunks/ssr/_ab069e13._.js +0 -3
  261. package/web/.next/server/chunks/ssr/_ab069e13._.js.map +0 -1
  262. package/web/.next/server/chunks/ssr/_f605354c._.js.map +0 -1
  263. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_e99d78dd.js +0 -3
  264. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_e99d78dd.js.map +0 -1
  265. package/web/.next/static/chunks/027d779d1dd1535e.js +0 -1
  266. package/web/.next/static/chunks/844405e9e0f44c8b.js +0 -11
  267. package/web/.next/static/chunks/943a2b78e452a2fb.js +0 -2
  268. package/web/.next/static/chunks/d2739454715e5ef2.css +0 -1
  269. package/web/.next/static/chunks/f518c011aaa1941e.js +0 -1
  270. /package/web/.next/static/{oxdz8EAvGqpg8JW3gRSSs → FKhXOv4YGg6YioBqvMlGR}/_buildManifest.js +0 -0
  271. /package/web/.next/static/{oxdz8EAvGqpg8JW3gRSSs → FKhXOv4YGg6YioBqvMlGR}/_clientMiddlewareManifest.json +0 -0
  272. /package/web/.next/static/{oxdz8EAvGqpg8JW3gRSSs → FKhXOv4YGg6YioBqvMlGR}/_ssgManifest.js +0 -0
@@ -1,2 +1,2 @@
1
1
  globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
2
- globalThis.__RSC_MANIFEST["/(dashboard)/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/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx <module evaluation>":{"id":75921,"name":"*","chunks":["/_next/static/chunks/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx":{"id":75921,"name":"*","chunks":["/_next/static/chunks/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx <module evaluation>":{"id":48246,"name":"*","chunks":["/_next/static/chunks/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/027d779d1dd1535e.js","/_next/static/chunks/263497416e5198a3.js","/_next/static/chunks/a5ff70a7709ec5af.js","/_next/static/chunks/abb2b485cb0da264.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx":{"id":48246,"name":"*","chunks":["/_next/static/chunks/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/027d779d1dd1535e.js","/_next/static/chunks/263497416e5198a3.js","/_next/static/chunks/a5ff70a7709ec5af.js","/_next/static/chunks/abb2b485cb0da264.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/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/027d779d1dd1535e.js","/_next/static/chunks/263497416e5198a3.js","/_next/static/chunks/a5ff70a7709ec5af.js","/_next/static/chunks/abb2b485cb0da264.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts":{"id":17840,"name":"*","chunks":["/_next/static/chunks/844405e9e0f44c8b.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/71161130b2462279.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/027d779d1dd1535e.js","/_next/static/chunks/263497416e5198a3.js","/_next/static/chunks/a5ff70a7709ec5af.js","/_next/static/chunks/abb2b485cb0da264.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]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f605354c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f605354c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"75921":{"*":{"id":21333,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f605354c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"48246":{"*":{"id":59949,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f605354c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_503b26e9._.js","server/chunks/ssr/_ab069e13._.js","server/chunks/ssr/_c93f4352._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_cc77a143._.js"],"async":false}},"17840":{"*":{"id":16533,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f605354c._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_503b26e9._.js","server/chunks/ssr/_ab069e13._.js","server/chunks/ssr/_c93f4352._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_cc77a143._.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}}},"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/d2739454715e5ef2.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/d2739454715e5ef2.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/844405e9e0f44c8b.js","static/chunks/52b56677c842e45f.js","static/chunks/71161130b2462279.js","static/chunks/e2ef95d904c360f3.js","static/chunks/672e3da3ad26005b.js"],"[project]/src/presentation/web/app/(dashboard)/layout":["static/chunks/844405e9e0f44c8b.js","static/chunks/52b56677c842e45f.js","static/chunks/71161130b2462279.js","static/chunks/e2ef95d904c360f3.js","static/chunks/672e3da3ad26005b.js","static/chunks/027d779d1dd1535e.js","static/chunks/263497416e5198a3.js","static/chunks/a5ff70a7709ec5af.js","static/chunks/abb2b485cb0da264.js"]}}
2
+ globalThis.__RSC_MANIFEST["/(dashboard)/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/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx <module evaluation>":{"id":75921,"name":"*","chunks":["/_next/static/chunks/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx":{"id":75921,"name":"*","chunks":["/_next/static/chunks/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx <module evaluation>":{"id":48246,"name":"*","chunks":["/_next/static/chunks/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js","/_next/static/chunks/7c121b87cbc3a987.js","/_next/static/chunks/78227a8fa0b0a44f.js","/_next/static/chunks/d3ea72cbb1d42172.js","/_next/static/chunks/ff286f5ef499d263.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx":{"id":48246,"name":"*","chunks":["/_next/static/chunks/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js","/_next/static/chunks/7c121b87cbc3a987.js","/_next/static/chunks/78227a8fa0b0a44f.js","/_next/static/chunks/d3ea72cbb1d42172.js","/_next/static/chunks/ff286f5ef499d263.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/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js","/_next/static/chunks/7c121b87cbc3a987.js","/_next/static/chunks/78227a8fa0b0a44f.js","/_next/static/chunks/d3ea72cbb1d42172.js","/_next/static/chunks/ff286f5ef499d263.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts":{"id":17840,"name":"*","chunks":["/_next/static/chunks/f4ae633779d5324c.js","/_next/static/chunks/52b56677c842e45f.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/e2ef95d904c360f3.js","/_next/static/chunks/96eeeb28e06de78c.js","/_next/static/chunks/7c121b87cbc3a987.js","/_next/static/chunks/78227a8fa0b0a44f.js","/_next/static/chunks/d3ea72cbb1d42172.js","/_next/static/chunks/ff286f5ef499d263.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]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f1a649e3._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f1a649e3._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"75921":{"*":{"id":21333,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f1a649e3._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"48246":{"*":{"id":59949,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f1a649e3._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_9cdb9131._.js","server/chunks/ssr/_0dc2cfd3._.js","server/chunks/ssr/_86bcd0cb._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_cc77a143._.js"],"async":false}},"17840":{"*":{"id":16533,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__545792ab._.js","server/chunks/ssr/_0e506641._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_f1a649e3._.js","server/chunks/ssr/_9ac70f88._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_1bb131c4._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_9cdb9131._.js","server/chunks/ssr/_0dc2cfd3._.js","server/chunks/ssr/_86bcd0cb._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/_cc77a143._.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}}},"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/0d2af96e64960ef5.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/0d2af96e64960ef5.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/f4ae633779d5324c.js","static/chunks/52b56677c842e45f.js","static/chunks/672e3da3ad26005b.js","static/chunks/e2ef95d904c360f3.js","static/chunks/96eeeb28e06de78c.js"],"[project]/src/presentation/web/app/(dashboard)/layout":["static/chunks/f4ae633779d5324c.js","static/chunks/52b56677c842e45f.js","static/chunks/672e3da3ad26005b.js","static/chunks/e2ef95d904c360f3.js","static/chunks/96eeeb28e06de78c.js","static/chunks/7c121b87cbc3a987.js","static/chunks/78227a8fa0b0a44f.js","static/chunks/d3ea72cbb1d42172.js","static/chunks/ff286f5ef499d263.js"]}}
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "node": {
3
- "002a3e43325941b23804fc333284bf6706f1442b57": {
3
+ "00ca1a72d893d82167ce9fe84d506236a0b85546be": {
4
4
  "workers": {
5
5
  "app/(dashboard)/repository/[repositoryId]/page": {
6
- "moduleId": 76669,
6
+ "moduleId": 42639,
7
7
  "async": false,
8
8
  "exportedName": "pickFolder",
9
9
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -15,10 +15,10 @@
15
15
  "exportedName": "pickFolder",
16
16
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
17
17
  },
18
- "405df776f04e555f55e87c541cb8d78960e3d6e412": {
18
+ "402775705908b6716e135072facfbfdc742a01fec0": {
19
19
  "workers": {
20
20
  "app/(dashboard)/repository/[repositoryId]/page": {
21
- "moduleId": 76669,
21
+ "moduleId": 42639,
22
22
  "async": false,
23
23
  "exportedName": "getDeploymentLogs",
24
24
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -30,10 +30,10 @@
30
30
  "exportedName": "getDeploymentLogs",
31
31
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
32
32
  },
33
- "408c434a42f5933b1316c6962fb23f17b2b04b8279": {
33
+ "4039492d5268843e211d265b4503439b3dc2b96bfc": {
34
34
  "workers": {
35
35
  "app/(dashboard)/repository/[repositoryId]/page": {
36
- "moduleId": 76669,
36
+ "moduleId": 42639,
37
37
  "async": false,
38
38
  "exportedName": "deployFeature",
39
39
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -45,10 +45,10 @@
45
45
  "exportedName": "deployFeature",
46
46
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
47
47
  },
48
- "403168fc6184f738b6545828a36461497ded4523ff": {
48
+ "40a7d485f496b11eca7edba233a35bdae3b39c07f7": {
49
49
  "workers": {
50
50
  "app/(dashboard)/repository/[repositoryId]/page": {
51
- "moduleId": 76669,
51
+ "moduleId": 42639,
52
52
  "async": false,
53
53
  "exportedName": "deployRepository",
54
54
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -60,10 +60,10 @@
60
60
  "exportedName": "deployRepository",
61
61
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
62
62
  },
63
- "4051e864c01392c7226112807139c0acac684a65e9": {
63
+ "4004df5f785b8e98f03016745d2ddbdb25e0eb056a": {
64
64
  "workers": {
65
65
  "app/(dashboard)/repository/[repositoryId]/page": {
66
- "moduleId": 76669,
66
+ "moduleId": 42639,
67
67
  "async": false,
68
68
  "exportedName": "stopDeployment",
69
69
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -75,10 +75,10 @@
75
75
  "exportedName": "stopDeployment",
76
76
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
77
77
  },
78
- "4024314f8ec9ae176c3ce812df1dbe5d2e565faba9": {
78
+ "4079b0d91d4aeddbf2a454b93bfc05c2a3ccd8d6ae": {
79
79
  "workers": {
80
80
  "app/(dashboard)/repository/[repositoryId]/page": {
81
- "moduleId": 76669,
81
+ "moduleId": 42639,
82
82
  "async": false,
83
83
  "exportedName": "getDeploymentStatus",
84
84
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -90,10 +90,10 @@
90
90
  "exportedName": "getDeploymentStatus",
91
91
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
92
92
  },
93
- "4086ae478c11bad20c273ddf1bfcb7a31008a2acbe": {
93
+ "40a401f8515f46855445bba35a5264c058115df5b9": {
94
94
  "workers": {
95
95
  "app/(dashboard)/repository/[repositoryId]/page": {
96
- "moduleId": 76669,
96
+ "moduleId": 42639,
97
97
  "async": false,
98
98
  "exportedName": "openIde",
99
99
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -105,10 +105,10 @@
105
105
  "exportedName": "openIde",
106
106
  "filename": "src/presentation/web/app/actions/open-ide.ts"
107
107
  },
108
- "40924061abebca73f102855d3c908ce3b1edf845de": {
108
+ "40f807c3ae34388da97a63f105e234a2aad11fb40f": {
109
109
  "workers": {
110
110
  "app/(dashboard)/repository/[repositoryId]/page": {
111
- "moduleId": 76669,
111
+ "moduleId": 42639,
112
112
  "async": false,
113
113
  "exportedName": "openShell",
114
114
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -120,10 +120,10 @@
120
120
  "exportedName": "openShell",
121
121
  "filename": "src/presentation/web/app/actions/open-shell.ts"
122
122
  },
123
- "40600c159079cb5d863e397573336914c0615a122d": {
123
+ "40b7c119c235bad74295da9dc44615cb067d06d35f": {
124
124
  "workers": {
125
125
  "app/(dashboard)/repository/[repositoryId]/page": {
126
- "moduleId": 76669,
126
+ "moduleId": 42639,
127
127
  "async": false,
128
128
  "exportedName": "openFolder",
129
129
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -135,10 +135,10 @@
135
135
  "exportedName": "openFolder",
136
136
  "filename": "src/presentation/web/app/actions/open-folder.ts"
137
137
  },
138
- "0027d1800d51be25fc33068875d403e79554693f56": {
138
+ "0048b882e47869f0d475166940f183856869ae4d71": {
139
139
  "workers": {
140
140
  "app/(dashboard)/repository/[repositoryId]/page": {
141
- "moduleId": 76669,
141
+ "moduleId": 42639,
142
142
  "async": false,
143
143
  "exportedName": "isAgentSetupComplete",
144
144
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -150,10 +150,10 @@
150
150
  "exportedName": "isAgentSetupComplete",
151
151
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
152
152
  },
153
- "004ef0831498d8ec96aed67ec5c1fa1cc41961faac": {
153
+ "007cf9c45bb4178b1ec01689d31dafa867e59608ca": {
154
154
  "workers": {
155
155
  "app/(dashboard)/repository/[repositoryId]/page": {
156
- "moduleId": 76669,
156
+ "moduleId": 42639,
157
157
  "async": false,
158
158
  "exportedName": "checkAgentAuth",
159
159
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -165,10 +165,10 @@
165
165
  "exportedName": "checkAgentAuth",
166
166
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
167
167
  },
168
- "00fbd910614f811201cb63e1d55722e0d87d6d6d13": {
168
+ "0016d2f2b9d30bb81f4320e06165646630330ebbfa": {
169
169
  "workers": {
170
170
  "app/(dashboard)/repository/[repositoryId]/page": {
171
- "moduleId": 76669,
171
+ "moduleId": 42639,
172
172
  "async": false,
173
173
  "exportedName": "getAllAgentModels",
174
174
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -180,10 +180,10 @@
180
180
  "exportedName": "getAllAgentModels",
181
181
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
182
182
  },
183
- "603d22d68a333b54bac78b112ee4464a92f099e2b5": {
183
+ "60d60275ce38584945420ec369f9831bafe214c9b3": {
184
184
  "workers": {
185
185
  "app/(dashboard)/repository/[repositoryId]/page": {
186
- "moduleId": 76669,
186
+ "moduleId": 42639,
187
187
  "async": false,
188
188
  "exportedName": "updateAgentAndModel",
189
189
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -195,10 +195,10 @@
195
195
  "exportedName": "updateAgentAndModel",
196
196
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
197
197
  },
198
- "70a7e014690ef99d4bda089ae4b72a76a02d5135f6": {
198
+ "7072f5e0c77b169c54e835ef0815a00311216c5ea3": {
199
199
  "workers": {
200
200
  "app/(dashboard)/repository/[repositoryId]/page": {
201
- "moduleId": 76669,
201
+ "moduleId": 42639,
202
202
  "async": false,
203
203
  "exportedName": "deleteFeature",
204
204
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -210,10 +210,10 @@
210
210
  "exportedName": "deleteFeature",
211
211
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
212
212
  },
213
- "406f21923fe818a3e15277ed0e6ddb952549066d08": {
213
+ "406c254361e25d76e92890ab7687067baec2f23de7": {
214
214
  "workers": {
215
215
  "app/(dashboard)/repository/[repositoryId]/page": {
216
- "moduleId": 76669,
216
+ "moduleId": 42639,
217
217
  "async": false,
218
218
  "exportedName": "resumeFeature",
219
219
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -225,10 +225,10 @@
225
225
  "exportedName": "resumeFeature",
226
226
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
227
227
  },
228
- "4003cf843fe4119e2aaa46d2876c416e18d3d63f77": {
228
+ "40efd25d98ff79f80cd97c4075c956d55737e858de": {
229
229
  "workers": {
230
230
  "app/(dashboard)/repository/[repositoryId]/page": {
231
- "moduleId": 76669,
231
+ "moduleId": 42639,
232
232
  "async": false,
233
233
  "exportedName": "startFeature",
234
234
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -240,10 +240,25 @@
240
240
  "exportedName": "startFeature",
241
241
  "filename": "src/presentation/web/app/actions/start-feature.ts"
242
242
  },
243
- "40079f9319ef6b45a240322e970f356b2e5727baf0": {
243
+ "40e32ec0a3b86d1412dfbb77be0a0e2be4127c319f": {
244
244
  "workers": {
245
245
  "app/(dashboard)/repository/[repositoryId]/page": {
246
- "moduleId": 76669,
246
+ "moduleId": 42639,
247
+ "async": false,
248
+ "exportedName": "stopFeature",
249
+ "filename": "src/presentation/web/app/actions/stop-feature.ts"
250
+ }
251
+ },
252
+ "layer": {
253
+ "app/(dashboard)/repository/[repositoryId]/page": "action-browser"
254
+ },
255
+ "exportedName": "stopFeature",
256
+ "filename": "src/presentation/web/app/actions/stop-feature.ts"
257
+ },
258
+ "4075a46c1477678cd68d3c740c4e2e75445acde20a": {
259
+ "workers": {
260
+ "app/(dashboard)/repository/[repositoryId]/page": {
261
+ "moduleId": 42639,
247
262
  "async": false,
248
263
  "exportedName": "addRepository",
249
264
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -255,10 +270,10 @@
255
270
  "exportedName": "addRepository",
256
271
  "filename": "src/presentation/web/app/actions/add-repository.ts"
257
272
  },
258
- "406894ffe3bf8e4a140bc21a53f7815aa332c0cb14": {
273
+ "40c5057c961a83ef3642f5ca89cb3506fddfebea47": {
259
274
  "workers": {
260
275
  "app/(dashboard)/repository/[repositoryId]/page": {
261
- "moduleId": 76669,
276
+ "moduleId": 42639,
262
277
  "async": false,
263
278
  "exportedName": "deleteRepository",
264
279
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -270,10 +285,10 @@
270
285
  "exportedName": "deleteRepository",
271
286
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
272
287
  },
273
- "40d77887b58e7e7d5b2a08a988addf1a08a8058643": {
288
+ "402a24431282f4f4678a9bdcea90d5dc9dac85966b": {
274
289
  "workers": {
275
290
  "app/(dashboard)/repository/[repositoryId]/page": {
276
- "moduleId": 76669,
291
+ "moduleId": 42639,
277
292
  "async": false,
278
293
  "exportedName": "getFeatureMetadata",
279
294
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -14,7 +14,7 @@ R.c("server/chunks/ssr/403f9_next_dist_client_components_builtin_unauthorized_a2
14
14
  R.c("server/chunks/ssr/[root-of-the-server]__b724df9e._.js")
15
15
  R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
16
16
  R.c("server/chunks/ssr/src_presentation_web_app_(dashboard)_repository_[repositoryId]_page_tsx_7d738911._.js")
17
- R.c("server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_32e26434.js")
17
+ R.c("server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_9f1775bb.js")
18
18
  R.c("server/chunks/ssr/[root-of-the-server]__a022445f._.js")
19
19
  R.m(42447)
20
20
  module.exports=R.m(42447).exports