@shepai/cli 1.72.8 → 1.72.9

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 (258) hide show
  1. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +2 -1
  2. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
  3. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
  4. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +1 -0
  5. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +1 -0
  7. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -1
  8. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.d.ts.map +1 -1
  9. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.js +88 -13
  10. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +1 -1
  11. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +2 -1
  12. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  13. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +3 -0
  14. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +2 -0
  15. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  16. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +16 -3
  17. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts.map +1 -1
  18. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.js +5 -1
  19. package/dist/src/presentation/web/app/actions/get-graph-data.d.ts +10 -0
  20. package/dist/src/presentation/web/app/actions/get-graph-data.d.ts.map +1 -0
  21. package/dist/src/presentation/web/app/actions/get-graph-data.js +10 -0
  22. package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
  23. package/dist/src/presentation/web/app/api/agent-events/route.js +3 -0
  24. package/dist/src/presentation/web/components/common/control-center-drawer/create-drawer-client.d.ts.map +1 -1
  25. package/dist/src/presentation/web/components/common/control-center-drawer/create-drawer-client.js +9 -8
  26. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.d.ts.map +1 -1
  27. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.js +2 -0
  28. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  29. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +95 -1
  30. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  31. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +2 -2
  32. package/dist/tsconfig.build.tsbuildinfo +1 -1
  33. package/package.json +1 -1
  34. package/web/.next/BUILD_ID +1 -1
  35. package/web/.next/build-manifest.json +2 -2
  36. package/web/.next/cache/.previewinfo +1 -1
  37. package/web/.next/cache/.rscinfo +1 -1
  38. package/web/.next/cache/.tsbuildinfo +1 -1
  39. package/web/.next/cache/config.json +3 -3
  40. package/web/.next/fallback-build-manifest.json +2 -2
  41. package/web/.next/prerender-manifest.json +3 -3
  42. package/web/.next/required-server-files.js +1 -1
  43. package/web/.next/required-server-files.json +1 -1
  44. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +43 -28
  45. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
  46. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  47. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  48. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +49 -34
  49. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +3 -3
  50. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  51. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  52. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +39 -24
  53. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +3 -3
  54. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  55. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  56. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +43 -28
  57. package/web/.next/server/app/(dashboard)/create/page.js +3 -3
  58. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  59. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  60. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +49 -34
  61. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +3 -3
  62. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  63. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  64. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +39 -24
  65. package/web/.next/server/app/(dashboard)/page.js +3 -3
  66. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  67. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  68. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +39 -24
  69. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +3 -3
  70. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  71. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  72. package/web/.next/server/app/_global-error.html +2 -2
  73. package/web/.next/server/app/_global-error.rsc +1 -1
  74. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  75. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  76. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  77. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  78. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  79. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  80. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  81. package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  82. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  83. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  84. package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  85. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  86. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  87. package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  88. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  89. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +2 -2
  90. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  91. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  92. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  93. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_3a02d8a5.js +3 -0
  94. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_3a02d8a5.js.map +1 -0
  95. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_a3044852.js +3 -0
  96. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_a3044852.js.map +1 -0
  97. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +2 -2
  98. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js.map +1 -1
  99. package/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +1 -1
  100. package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +2 -2
  101. package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js.map +1 -1
  102. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
  103. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js.map +1 -1
  104. package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +2 -2
  105. package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js.map +1 -1
  106. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
  107. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js.map +1 -1
  108. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
  109. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  110. package/web/.next/server/chunks/ssr/[root-of-the-server]__cbae9863._.js +1 -1
  111. package/web/.next/server/chunks/ssr/[root-of-the-server]__cbae9863._.js.map +1 -1
  112. package/web/.next/server/chunks/ssr/[root-of-the-server]__e5e09f72._.js +1 -1
  113. package/web/.next/server/chunks/ssr/[root-of-the-server]__e5e09f72._.js.map +1 -1
  114. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js +1 -1
  115. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js.map +1 -1
  116. package/web/.next/server/chunks/ssr/{_47ef589d._.js → _38d24563._.js} +2 -2
  117. package/web/.next/server/chunks/ssr/{_47ef589d._.js.map → _38d24563._.js.map} +1 -1
  118. package/web/.next/server/chunks/ssr/_61351ed3._.js +1 -1
  119. package/web/.next/server/chunks/ssr/_61351ed3._.js.map +1 -1
  120. package/web/.next/server/chunks/ssr/_6e08ce21._.js +3 -0
  121. package/web/.next/server/chunks/ssr/_6e08ce21._.js.map +1 -0
  122. package/web/.next/server/chunks/ssr/_8400c8bb._.js +1 -1
  123. package/web/.next/server/chunks/ssr/_8400c8bb._.js.map +1 -1
  124. package/web/.next/server/chunks/ssr/_9f940437._.js +1 -1
  125. package/web/.next/server/chunks/ssr/_9f940437._.js.map +1 -1
  126. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_1a32dbcb._.js → server/chunks/ssr/src_presentation_web_0a49d9ee._.js} +3 -3
  127. package/web/.next/server/chunks/ssr/{src_presentation_web_1a32dbcb._.js.map → src_presentation_web_0a49d9ee._.js.map} +1 -1
  128. package/web/.next/server/chunks/ssr/{src_presentation_web_398553b0._.js → src_presentation_web_5ea689db._.js} +2 -2
  129. package/web/.next/server/chunks/ssr/{src_presentation_web_398553b0._.js.map → src_presentation_web_5ea689db._.js.map} +1 -1
  130. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_398553b0._.js → server/chunks/ssr/src_presentation_web_7188a290._.js} +2 -2
  131. package/web/.next/server/chunks/ssr/{src_presentation_web_5c87e8e4._.js.map → src_presentation_web_7188a290._.js.map} +1 -1
  132. package/web/.next/server/chunks/ssr/{src_presentation_web_1a32dbcb._.js → src_presentation_web_79b0305a._.js} +3 -3
  133. package/web/.next/server/chunks/ssr/{src_presentation_web_c1bc6240._.js.map → src_presentation_web_79b0305a._.js.map} +1 -1
  134. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_cc16bd01.js +3 -0
  135. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_cc16bd01.js.map +1 -0
  136. package/web/.next/server/chunks/ssr/src_presentation_web_app_(dashboard)_get-graph-data_ts_b018483e._.js +3 -0
  137. package/web/.next/server/chunks/ssr/src_presentation_web_app_(dashboard)_get-graph-data_ts_b018483e._.js.map +1 -0
  138. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  139. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  140. package/web/.next/server/pages/500.html +2 -2
  141. package/web/.next/server/server-reference-manifest.js +1 -1
  142. package/web/.next/server/server-reference-manifest.json +175 -118
  143. package/web/.next/standalone/src/presentation/web/.next/BUILD_ID +1 -1
  144. package/web/.next/standalone/src/presentation/web/.next/build-manifest.json +2 -2
  145. package/web/.next/standalone/src/presentation/web/.next/prerender-manifest.json +3 -3
  146. package/web/.next/standalone/src/presentation/web/.next/required-server-files.json +1 -1
  147. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +43 -28
  148. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
  149. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  150. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  151. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +49 -34
  152. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +3 -3
  153. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  154. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  155. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +39 -24
  156. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +3 -3
  157. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  158. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  159. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +43 -28
  160. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js +3 -3
  161. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  162. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  163. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +49 -34
  164. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +3 -3
  165. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  166. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  167. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +39 -24
  168. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js +3 -3
  169. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  170. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  171. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +39 -24
  172. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +3 -3
  173. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  174. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  175. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.html +2 -2
  176. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.rsc +1 -1
  177. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  178. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  179. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  180. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  181. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  182. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  183. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  184. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  185. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js.nft.json +1 -1
  186. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  187. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  188. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js.nft.json +1 -1
  189. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  190. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  191. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  192. package/web/.next/standalone/src/presentation/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +2 -2
  193. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  194. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_3a02d8a5.js +3 -0
  195. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_a3044852.js +3 -0
  196. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +2 -2
  197. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +1 -1
  198. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +2 -2
  199. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
  200. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +2 -2
  201. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
  202. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
  203. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__cbae9863._.js +1 -1
  204. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__e5e09f72._.js +1 -1
  205. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_0e9d6bf7._.js +1 -1
  206. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{_47ef589d._.js → _38d24563._.js} +2 -2
  207. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_61351ed3._.js +1 -1
  208. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6e08ce21._.js +3 -0
  209. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_8400c8bb._.js +1 -1
  210. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9f940437._.js +1 -1
  211. package/web/.next/{server/chunks/ssr/src_presentation_web_c1bc6240._.js → standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_0a49d9ee._.js} +3 -3
  212. package/web/.next/{server/chunks/ssr/src_presentation_web_5c87e8e4._.js → standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_5ea689db._.js} +2 -2
  213. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{src_presentation_web_5c87e8e4._.js → src_presentation_web_7188a290._.js} +2 -2
  214. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{src_presentation_web_c1bc6240._.js → src_presentation_web_79b0305a._.js} +3 -3
  215. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_cc16bd01.js +3 -0
  216. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_app_(dashboard)_get-graph-data_ts_b018483e._.js +3 -0
  217. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  218. package/web/.next/standalone/src/presentation/web/.next/server/pages/500.html +2 -2
  219. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.js +1 -1
  220. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.json +175 -118
  221. package/web/.next/standalone/src/presentation/web/CLAUDE.md +147 -0
  222. package/web/.next/standalone/src/presentation/web/app/actions/get-graph-data.ts +12 -0
  223. package/web/.next/standalone/src/presentation/web/app/api/agent-events/route.ts +4 -1
  224. package/web/.next/standalone/src/presentation/web/components/common/control-center-drawer/create-drawer-client.tsx +9 -8
  225. package/web/.next/standalone/src/presentation/web/components/common/feature-node/derive-feature-state.ts +2 -0
  226. package/web/.next/standalone/src/presentation/web/components/features/control-center/use-control-center-state.ts +107 -1
  227. package/web/.next/standalone/src/presentation/web/components/features/features-canvas/features-canvas.tsx +21 -23
  228. package/web/.next/standalone/src/presentation/web/server.js +1 -1
  229. package/web/.next/static/chunks/{ebf172a84c9596ed.js → 10cd08dae8c210ff.js} +1 -1
  230. package/web/.next/static/chunks/{5cd24ca47061a21d.js → 15bf7ee1da91eb46.js} +1 -1
  231. package/web/.next/static/chunks/{8682dcb376de62de.js → 64850cf4081a2950.js} +1 -1
  232. package/web/.next/static/chunks/{71cf72022f08a8c9.js → 6cc840197626843b.js} +1 -1
  233. package/web/.next/static/chunks/{1c07b21eb8b32f25.js → c83897e9213881bf.js} +1 -1
  234. package/web/.next/static/chunks/{fcafb841e3860687.js → d4492cd12fdf0891.js} +1 -1
  235. package/web/.next/static/chunks/{c71589df79020ecb.js → e3239b6c18cf8b96.js} +1 -1
  236. package/web/.next/static/chunks/{fabfa54940973cc7.js → e9cc53ce8a7bdea6.js} +1 -1
  237. package/web/.next/static/chunks/ef916db8c537211a.js +1 -0
  238. package/web/.next/trace +1 -1
  239. package/web/.next/trace-build +1 -1
  240. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_2b7834f6.js +0 -3
  241. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_2b7834f6.js.map +0 -1
  242. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_6923c575.js +0 -3
  243. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_6923c575.js.map +0 -1
  244. package/web/.next/server/chunks/ssr/_250a63ae._.js +0 -3
  245. package/web/.next/server/chunks/ssr/_250a63ae._.js.map +0 -1
  246. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_f4952172.js +0 -3
  247. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_f4952172.js.map +0 -1
  248. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +0 -3
  249. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +0 -1
  250. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_2b7834f6.js +0 -3
  251. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_6923c575.js +0 -3
  252. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_250a63ae._.js +0 -3
  253. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_f4952172.js +0 -3
  254. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +0 -3
  255. package/web/.next/static/chunks/991d4490d7a338d8.js +0 -1
  256. /package/web/.next/static/{IKuYPxAuMvc4BtwKHlj30 → Atrl1oUfRQej2kgJ972uS}/_buildManifest.js +0 -0
  257. /package/web/.next/static/{IKuYPxAuMvc4BtwKHlj30 → Atrl1oUfRQej2kgJ972uS}/_clientMiddlewareManifest.json +0 -0
  258. /package/web/.next/static/{IKuYPxAuMvc4BtwKHlj30 → Atrl1oUfRQej2kgJ972uS}/_ssgManifest.js +0 -0
@@ -1,45 +1,45 @@
1
1
  {
2
2
  "node": {
3
- "00a8fdb8cb1de3d31a3d3e7707208656242c9c97fc": {
3
+ "001371803ca5b5df95115f5adbcfaaa141151b092b": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/create/page": {
6
- "moduleId": 42016,
6
+ "moduleId": 98460,
7
7
  "async": false,
8
8
  "exportedName": "pickFolder",
9
9
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
10
10
  },
11
11
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
12
- "moduleId": 53432,
12
+ "moduleId": 1125,
13
13
  "async": false,
14
14
  "exportedName": "pickFolder",
15
15
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
16
16
  },
17
17
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
18
- "moduleId": 12834,
18
+ "moduleId": 15659,
19
19
  "async": false,
20
20
  "exportedName": "pickFolder",
21
21
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
22
22
  },
23
23
  "app/(dashboard)/create/page": {
24
- "moduleId": 15434,
24
+ "moduleId": 63016,
25
25
  "async": false,
26
26
  "exportedName": "pickFolder",
27
27
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
28
28
  },
29
29
  "app/(dashboard)/feature/[featureId]/page": {
30
- "moduleId": 24734,
30
+ "moduleId": 96804,
31
31
  "async": false,
32
32
  "exportedName": "pickFolder",
33
33
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
34
34
  },
35
35
  "app/(dashboard)/page": {
36
- "moduleId": 21365,
36
+ "moduleId": 14110,
37
37
  "async": false,
38
38
  "exportedName": "pickFolder",
39
39
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
40
40
  },
41
41
  "app/(dashboard)/repository/[repositoryId]/page": {
42
- "moduleId": 43068,
42
+ "moduleId": 5887,
43
43
  "async": false,
44
44
  "exportedName": "pickFolder",
45
45
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -85,46 +85,46 @@
85
85
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
86
86
  "exportedName": "pickFolder"
87
87
  },
88
- "40adee815cfc876d8e6a2bd8b1a7570991f50a8c96": {
88
+ "40b6feaf5146e5dace370644c824609a2ca38bd631": {
89
89
  "workers": {
90
90
  "app/(dashboard)/@drawer/create/page": {
91
- "moduleId": 42016,
91
+ "moduleId": 98460,
92
92
  "async": false,
93
93
  "exportedName": "getDeploymentLogs",
94
94
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
95
95
  },
96
96
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
97
- "moduleId": 53432,
97
+ "moduleId": 1125,
98
98
  "async": false,
99
99
  "exportedName": "getDeploymentLogs",
100
100
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
101
101
  },
102
102
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
103
- "moduleId": 12834,
103
+ "moduleId": 15659,
104
104
  "async": false,
105
105
  "exportedName": "getDeploymentLogs",
106
106
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
107
107
  },
108
108
  "app/(dashboard)/create/page": {
109
- "moduleId": 15434,
109
+ "moduleId": 63016,
110
110
  "async": false,
111
111
  "exportedName": "getDeploymentLogs",
112
112
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
113
113
  },
114
114
  "app/(dashboard)/feature/[featureId]/page": {
115
- "moduleId": 24734,
115
+ "moduleId": 96804,
116
116
  "async": false,
117
117
  "exportedName": "getDeploymentLogs",
118
118
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
119
119
  },
120
120
  "app/(dashboard)/page": {
121
- "moduleId": 21365,
121
+ "moduleId": 14110,
122
122
  "async": false,
123
123
  "exportedName": "getDeploymentLogs",
124
124
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
125
125
  },
126
126
  "app/(dashboard)/repository/[repositoryId]/page": {
127
- "moduleId": 43068,
127
+ "moduleId": 5887,
128
128
  "async": false,
129
129
  "exportedName": "getDeploymentLogs",
130
130
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -156,46 +156,46 @@
156
156
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
157
157
  "exportedName": "getDeploymentLogs"
158
158
  },
159
- "401253a87fdf3f293e34e7653bb3f4e1b471a84378": {
159
+ "40b004efd44fc5651f2277b5956d82f2ba62c36a1f": {
160
160
  "workers": {
161
161
  "app/(dashboard)/@drawer/create/page": {
162
- "moduleId": 42016,
162
+ "moduleId": 98460,
163
163
  "async": false,
164
164
  "exportedName": "deployFeature",
165
165
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
166
166
  },
167
167
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
168
- "moduleId": 53432,
168
+ "moduleId": 1125,
169
169
  "async": false,
170
170
  "exportedName": "deployFeature",
171
171
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
172
172
  },
173
173
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
174
- "moduleId": 12834,
174
+ "moduleId": 15659,
175
175
  "async": false,
176
176
  "exportedName": "deployFeature",
177
177
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
178
178
  },
179
179
  "app/(dashboard)/create/page": {
180
- "moduleId": 15434,
180
+ "moduleId": 63016,
181
181
  "async": false,
182
182
  "exportedName": "deployFeature",
183
183
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
184
184
  },
185
185
  "app/(dashboard)/feature/[featureId]/page": {
186
- "moduleId": 24734,
186
+ "moduleId": 96804,
187
187
  "async": false,
188
188
  "exportedName": "deployFeature",
189
189
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
190
190
  },
191
191
  "app/(dashboard)/page": {
192
- "moduleId": 21365,
192
+ "moduleId": 14110,
193
193
  "async": false,
194
194
  "exportedName": "deployFeature",
195
195
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
196
196
  },
197
197
  "app/(dashboard)/repository/[repositoryId]/page": {
198
- "moduleId": 43068,
198
+ "moduleId": 5887,
199
199
  "async": false,
200
200
  "exportedName": "deployFeature",
201
201
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -227,46 +227,46 @@
227
227
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
228
228
  "exportedName": "deployFeature"
229
229
  },
230
- "40002741a23e5c45f351e6e1374905e6d95cae8c3f": {
230
+ "40abb76f454a24958782acf5a3bdb6ef67d098950f": {
231
231
  "workers": {
232
232
  "app/(dashboard)/@drawer/create/page": {
233
- "moduleId": 42016,
233
+ "moduleId": 98460,
234
234
  "async": false,
235
235
  "exportedName": "deployRepository",
236
236
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
237
237
  },
238
238
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
239
- "moduleId": 53432,
239
+ "moduleId": 1125,
240
240
  "async": false,
241
241
  "exportedName": "deployRepository",
242
242
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
243
243
  },
244
244
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
245
- "moduleId": 12834,
245
+ "moduleId": 15659,
246
246
  "async": false,
247
247
  "exportedName": "deployRepository",
248
248
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
249
249
  },
250
250
  "app/(dashboard)/create/page": {
251
- "moduleId": 15434,
251
+ "moduleId": 63016,
252
252
  "async": false,
253
253
  "exportedName": "deployRepository",
254
254
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
255
255
  },
256
256
  "app/(dashboard)/feature/[featureId]/page": {
257
- "moduleId": 24734,
257
+ "moduleId": 96804,
258
258
  "async": false,
259
259
  "exportedName": "deployRepository",
260
260
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
261
261
  },
262
262
  "app/(dashboard)/page": {
263
- "moduleId": 21365,
263
+ "moduleId": 14110,
264
264
  "async": false,
265
265
  "exportedName": "deployRepository",
266
266
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
267
267
  },
268
268
  "app/(dashboard)/repository/[repositoryId]/page": {
269
- "moduleId": 43068,
269
+ "moduleId": 5887,
270
270
  "async": false,
271
271
  "exportedName": "deployRepository",
272
272
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -298,46 +298,46 @@
298
298
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
299
299
  "exportedName": "deployRepository"
300
300
  },
301
- "4011a70ee2d6620e60f4401dc1c8dc99759a1d17fb": {
301
+ "40a6742c551959e67baa13b1fad2fe82afaee624db": {
302
302
  "workers": {
303
303
  "app/(dashboard)/@drawer/create/page": {
304
- "moduleId": 42016,
304
+ "moduleId": 98460,
305
305
  "async": false,
306
306
  "exportedName": "stopDeployment",
307
307
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
308
308
  },
309
309
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
310
- "moduleId": 53432,
310
+ "moduleId": 1125,
311
311
  "async": false,
312
312
  "exportedName": "stopDeployment",
313
313
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
314
314
  },
315
315
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
316
- "moduleId": 12834,
316
+ "moduleId": 15659,
317
317
  "async": false,
318
318
  "exportedName": "stopDeployment",
319
319
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
320
320
  },
321
321
  "app/(dashboard)/create/page": {
322
- "moduleId": 15434,
322
+ "moduleId": 63016,
323
323
  "async": false,
324
324
  "exportedName": "stopDeployment",
325
325
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
326
326
  },
327
327
  "app/(dashboard)/feature/[featureId]/page": {
328
- "moduleId": 24734,
328
+ "moduleId": 96804,
329
329
  "async": false,
330
330
  "exportedName": "stopDeployment",
331
331
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
332
332
  },
333
333
  "app/(dashboard)/page": {
334
- "moduleId": 21365,
334
+ "moduleId": 14110,
335
335
  "async": false,
336
336
  "exportedName": "stopDeployment",
337
337
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
338
338
  },
339
339
  "app/(dashboard)/repository/[repositoryId]/page": {
340
- "moduleId": 43068,
340
+ "moduleId": 5887,
341
341
  "async": false,
342
342
  "exportedName": "stopDeployment",
343
343
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -369,46 +369,46 @@
369
369
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
370
370
  "exportedName": "stopDeployment"
371
371
  },
372
- "40d2a352c4d7295ef068429c398513dcfa4487e53b": {
372
+ "40ba7a570fa466996033c33faf37f42958682a43b1": {
373
373
  "workers": {
374
374
  "app/(dashboard)/@drawer/create/page": {
375
- "moduleId": 42016,
375
+ "moduleId": 98460,
376
376
  "async": false,
377
377
  "exportedName": "getDeploymentStatus",
378
378
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
379
379
  },
380
380
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
381
- "moduleId": 53432,
381
+ "moduleId": 1125,
382
382
  "async": false,
383
383
  "exportedName": "getDeploymentStatus",
384
384
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
385
385
  },
386
386
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
387
- "moduleId": 12834,
387
+ "moduleId": 15659,
388
388
  "async": false,
389
389
  "exportedName": "getDeploymentStatus",
390
390
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
391
391
  },
392
392
  "app/(dashboard)/create/page": {
393
- "moduleId": 15434,
393
+ "moduleId": 63016,
394
394
  "async": false,
395
395
  "exportedName": "getDeploymentStatus",
396
396
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
397
397
  },
398
398
  "app/(dashboard)/feature/[featureId]/page": {
399
- "moduleId": 24734,
399
+ "moduleId": 96804,
400
400
  "async": false,
401
401
  "exportedName": "getDeploymentStatus",
402
402
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
403
403
  },
404
404
  "app/(dashboard)/page": {
405
- "moduleId": 21365,
405
+ "moduleId": 14110,
406
406
  "async": false,
407
407
  "exportedName": "getDeploymentStatus",
408
408
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
409
409
  },
410
410
  "app/(dashboard)/repository/[repositoryId]/page": {
411
- "moduleId": 43068,
411
+ "moduleId": 5887,
412
412
  "async": false,
413
413
  "exportedName": "getDeploymentStatus",
414
414
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -440,46 +440,46 @@
440
440
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
441
441
  "exportedName": "getDeploymentStatus"
442
442
  },
443
- "4037014fa5f937432bde709dfe7aaa45bdfa8d3f7b": {
443
+ "40fa7bf016071a726e373736f1493a448cd0cab4a0": {
444
444
  "workers": {
445
445
  "app/(dashboard)/@drawer/create/page": {
446
- "moduleId": 42016,
446
+ "moduleId": 98460,
447
447
  "async": false,
448
448
  "exportedName": "openIde",
449
449
  "filename": "src/presentation/web/app/actions/open-ide.ts"
450
450
  },
451
451
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
452
- "moduleId": 53432,
452
+ "moduleId": 1125,
453
453
  "async": false,
454
454
  "exportedName": "openIde",
455
455
  "filename": "src/presentation/web/app/actions/open-ide.ts"
456
456
  },
457
457
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
458
- "moduleId": 12834,
458
+ "moduleId": 15659,
459
459
  "async": false,
460
460
  "exportedName": "openIde",
461
461
  "filename": "src/presentation/web/app/actions/open-ide.ts"
462
462
  },
463
463
  "app/(dashboard)/create/page": {
464
- "moduleId": 15434,
464
+ "moduleId": 63016,
465
465
  "async": false,
466
466
  "exportedName": "openIde",
467
467
  "filename": "src/presentation/web/app/actions/open-ide.ts"
468
468
  },
469
469
  "app/(dashboard)/feature/[featureId]/page": {
470
- "moduleId": 24734,
470
+ "moduleId": 96804,
471
471
  "async": false,
472
472
  "exportedName": "openIde",
473
473
  "filename": "src/presentation/web/app/actions/open-ide.ts"
474
474
  },
475
475
  "app/(dashboard)/page": {
476
- "moduleId": 21365,
476
+ "moduleId": 14110,
477
477
  "async": false,
478
478
  "exportedName": "openIde",
479
479
  "filename": "src/presentation/web/app/actions/open-ide.ts"
480
480
  },
481
481
  "app/(dashboard)/repository/[repositoryId]/page": {
482
- "moduleId": 43068,
482
+ "moduleId": 5887,
483
483
  "async": false,
484
484
  "exportedName": "openIde",
485
485
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -497,46 +497,46 @@
497
497
  "filename": "src/presentation/web/app/actions/open-ide.ts",
498
498
  "exportedName": "openIde"
499
499
  },
500
- "40bcd44b03b17f68cfcbbf3a225c8241a02b924cc5": {
500
+ "40c225e64b357fe5db604b18e7353574f011e2fee5": {
501
501
  "workers": {
502
502
  "app/(dashboard)/@drawer/create/page": {
503
- "moduleId": 42016,
503
+ "moduleId": 98460,
504
504
  "async": false,
505
505
  "exportedName": "openShell",
506
506
  "filename": "src/presentation/web/app/actions/open-shell.ts"
507
507
  },
508
508
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
509
- "moduleId": 53432,
509
+ "moduleId": 1125,
510
510
  "async": false,
511
511
  "exportedName": "openShell",
512
512
  "filename": "src/presentation/web/app/actions/open-shell.ts"
513
513
  },
514
514
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
515
- "moduleId": 12834,
515
+ "moduleId": 15659,
516
516
  "async": false,
517
517
  "exportedName": "openShell",
518
518
  "filename": "src/presentation/web/app/actions/open-shell.ts"
519
519
  },
520
520
  "app/(dashboard)/create/page": {
521
- "moduleId": 15434,
521
+ "moduleId": 63016,
522
522
  "async": false,
523
523
  "exportedName": "openShell",
524
524
  "filename": "src/presentation/web/app/actions/open-shell.ts"
525
525
  },
526
526
  "app/(dashboard)/feature/[featureId]/page": {
527
- "moduleId": 24734,
527
+ "moduleId": 96804,
528
528
  "async": false,
529
529
  "exportedName": "openShell",
530
530
  "filename": "src/presentation/web/app/actions/open-shell.ts"
531
531
  },
532
532
  "app/(dashboard)/page": {
533
- "moduleId": 21365,
533
+ "moduleId": 14110,
534
534
  "async": false,
535
535
  "exportedName": "openShell",
536
536
  "filename": "src/presentation/web/app/actions/open-shell.ts"
537
537
  },
538
538
  "app/(dashboard)/repository/[repositoryId]/page": {
539
- "moduleId": 43068,
539
+ "moduleId": 5887,
540
540
  "async": false,
541
541
  "exportedName": "openShell",
542
542
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -554,46 +554,46 @@
554
554
  "filename": "src/presentation/web/app/actions/open-shell.ts",
555
555
  "exportedName": "openShell"
556
556
  },
557
- "40d62e97704edba84d5dd3a77038bafd906ced71e2": {
557
+ "406dc518f376e232c7ecde857988216e06c2881960": {
558
558
  "workers": {
559
559
  "app/(dashboard)/@drawer/create/page": {
560
- "moduleId": 42016,
560
+ "moduleId": 98460,
561
561
  "async": false,
562
562
  "exportedName": "openFolder",
563
563
  "filename": "src/presentation/web/app/actions/open-folder.ts"
564
564
  },
565
565
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
566
- "moduleId": 53432,
566
+ "moduleId": 1125,
567
567
  "async": false,
568
568
  "exportedName": "openFolder",
569
569
  "filename": "src/presentation/web/app/actions/open-folder.ts"
570
570
  },
571
571
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
572
- "moduleId": 12834,
572
+ "moduleId": 15659,
573
573
  "async": false,
574
574
  "exportedName": "openFolder",
575
575
  "filename": "src/presentation/web/app/actions/open-folder.ts"
576
576
  },
577
577
  "app/(dashboard)/create/page": {
578
- "moduleId": 15434,
578
+ "moduleId": 63016,
579
579
  "async": false,
580
580
  "exportedName": "openFolder",
581
581
  "filename": "src/presentation/web/app/actions/open-folder.ts"
582
582
  },
583
583
  "app/(dashboard)/feature/[featureId]/page": {
584
- "moduleId": 24734,
584
+ "moduleId": 96804,
585
585
  "async": false,
586
586
  "exportedName": "openFolder",
587
587
  "filename": "src/presentation/web/app/actions/open-folder.ts"
588
588
  },
589
589
  "app/(dashboard)/page": {
590
- "moduleId": 21365,
590
+ "moduleId": 14110,
591
591
  "async": false,
592
592
  "exportedName": "openFolder",
593
593
  "filename": "src/presentation/web/app/actions/open-folder.ts"
594
594
  },
595
595
  "app/(dashboard)/repository/[repositoryId]/page": {
596
- "moduleId": 43068,
596
+ "moduleId": 5887,
597
597
  "async": false,
598
598
  "exportedName": "openFolder",
599
599
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -611,46 +611,46 @@
611
611
  "filename": "src/presentation/web/app/actions/open-folder.ts",
612
612
  "exportedName": "openFolder"
613
613
  },
614
- "409e5f10f8309eeb2f56fb6670691a54b591e6f8b2": {
614
+ "40c245c3415412e961be7dc5228e817e3c0ec65b57": {
615
615
  "workers": {
616
616
  "app/(dashboard)/@drawer/create/page": {
617
- "moduleId": 42016,
617
+ "moduleId": 98460,
618
618
  "async": false,
619
619
  "exportedName": "deleteFeature",
620
620
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
621
621
  },
622
622
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
623
- "moduleId": 53432,
623
+ "moduleId": 1125,
624
624
  "async": false,
625
625
  "exportedName": "deleteFeature",
626
626
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
627
627
  },
628
628
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
629
- "moduleId": 12834,
629
+ "moduleId": 15659,
630
630
  "async": false,
631
631
  "exportedName": "deleteFeature",
632
632
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
633
633
  },
634
634
  "app/(dashboard)/create/page": {
635
- "moduleId": 15434,
635
+ "moduleId": 63016,
636
636
  "async": false,
637
637
  "exportedName": "deleteFeature",
638
638
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
639
639
  },
640
640
  "app/(dashboard)/feature/[featureId]/page": {
641
- "moduleId": 24734,
641
+ "moduleId": 96804,
642
642
  "async": false,
643
643
  "exportedName": "deleteFeature",
644
644
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
645
645
  },
646
646
  "app/(dashboard)/page": {
647
- "moduleId": 21365,
647
+ "moduleId": 14110,
648
648
  "async": false,
649
649
  "exportedName": "deleteFeature",
650
650
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
651
651
  },
652
652
  "app/(dashboard)/repository/[repositoryId]/page": {
653
- "moduleId": 43068,
653
+ "moduleId": 5887,
654
654
  "async": false,
655
655
  "exportedName": "deleteFeature",
656
656
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -668,46 +668,46 @@
668
668
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
669
669
  "exportedName": "deleteFeature"
670
670
  },
671
- "40eeba94d31644b2cd9ba1d188e3c54b833ae00831": {
671
+ "4020b77600fa943c69172d4d40f593668a0072add4": {
672
672
  "workers": {
673
673
  "app/(dashboard)/@drawer/create/page": {
674
- "moduleId": 42016,
674
+ "moduleId": 98460,
675
675
  "async": false,
676
676
  "exportedName": "addRepository",
677
677
  "filename": "src/presentation/web/app/actions/add-repository.ts"
678
678
  },
679
679
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
680
- "moduleId": 53432,
680
+ "moduleId": 1125,
681
681
  "async": false,
682
682
  "exportedName": "addRepository",
683
683
  "filename": "src/presentation/web/app/actions/add-repository.ts"
684
684
  },
685
685
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
686
- "moduleId": 12834,
686
+ "moduleId": 15659,
687
687
  "async": false,
688
688
  "exportedName": "addRepository",
689
689
  "filename": "src/presentation/web/app/actions/add-repository.ts"
690
690
  },
691
691
  "app/(dashboard)/create/page": {
692
- "moduleId": 15434,
692
+ "moduleId": 63016,
693
693
  "async": false,
694
694
  "exportedName": "addRepository",
695
695
  "filename": "src/presentation/web/app/actions/add-repository.ts"
696
696
  },
697
697
  "app/(dashboard)/feature/[featureId]/page": {
698
- "moduleId": 24734,
698
+ "moduleId": 96804,
699
699
  "async": false,
700
700
  "exportedName": "addRepository",
701
701
  "filename": "src/presentation/web/app/actions/add-repository.ts"
702
702
  },
703
703
  "app/(dashboard)/page": {
704
- "moduleId": 21365,
704
+ "moduleId": 14110,
705
705
  "async": false,
706
706
  "exportedName": "addRepository",
707
707
  "filename": "src/presentation/web/app/actions/add-repository.ts"
708
708
  },
709
709
  "app/(dashboard)/repository/[repositoryId]/page": {
710
- "moduleId": 43068,
710
+ "moduleId": 5887,
711
711
  "async": false,
712
712
  "exportedName": "addRepository",
713
713
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -725,46 +725,46 @@
725
725
  "filename": "src/presentation/web/app/actions/add-repository.ts",
726
726
  "exportedName": "addRepository"
727
727
  },
728
- "40813d9dd5069a2de6303822d205d6b4b8e96b8d57": {
728
+ "40a6c37dc19cccd46b181a694da2959e1c602ca305": {
729
729
  "workers": {
730
730
  "app/(dashboard)/@drawer/create/page": {
731
- "moduleId": 42016,
731
+ "moduleId": 98460,
732
732
  "async": false,
733
733
  "exportedName": "deleteRepository",
734
734
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
735
735
  },
736
736
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
737
- "moduleId": 53432,
737
+ "moduleId": 1125,
738
738
  "async": false,
739
739
  "exportedName": "deleteRepository",
740
740
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
741
741
  },
742
742
  "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
743
- "moduleId": 12834,
743
+ "moduleId": 15659,
744
744
  "async": false,
745
745
  "exportedName": "deleteRepository",
746
746
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
747
747
  },
748
748
  "app/(dashboard)/create/page": {
749
- "moduleId": 15434,
749
+ "moduleId": 63016,
750
750
  "async": false,
751
751
  "exportedName": "deleteRepository",
752
752
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
753
753
  },
754
754
  "app/(dashboard)/feature/[featureId]/page": {
755
- "moduleId": 24734,
755
+ "moduleId": 96804,
756
756
  "async": false,
757
757
  "exportedName": "deleteRepository",
758
758
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
759
759
  },
760
760
  "app/(dashboard)/page": {
761
- "moduleId": 21365,
761
+ "moduleId": 14110,
762
762
  "async": false,
763
763
  "exportedName": "deleteRepository",
764
764
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
765
765
  },
766
766
  "app/(dashboard)/repository/[repositoryId]/page": {
767
- "moduleId": 43068,
767
+ "moduleId": 5887,
768
768
  "async": false,
769
769
  "exportedName": "deleteRepository",
770
770
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -782,16 +782,73 @@
782
782
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
783
783
  "exportedName": "deleteRepository"
784
784
  },
785
- "00ae4964adfbf828a4e7682340f3e5529992e9f412": {
785
+ "001489ceacff468fa3035dfc3f2f379a3dab260c8f": {
786
786
  "workers": {
787
787
  "app/(dashboard)/@drawer/create/page": {
788
- "moduleId": 42016,
788
+ "moduleId": 98460,
789
+ "async": false,
790
+ "exportedName": "fetchGraphData",
791
+ "filename": "src/presentation/web/app/actions/get-graph-data.ts"
792
+ },
793
+ "app/(dashboard)/@drawer/feature/[featureId]/page": {
794
+ "moduleId": 1125,
795
+ "async": false,
796
+ "exportedName": "fetchGraphData",
797
+ "filename": "src/presentation/web/app/actions/get-graph-data.ts"
798
+ },
799
+ "app/(dashboard)/@drawer/repository/[repositoryId]/page": {
800
+ "moduleId": 15659,
801
+ "async": false,
802
+ "exportedName": "fetchGraphData",
803
+ "filename": "src/presentation/web/app/actions/get-graph-data.ts"
804
+ },
805
+ "app/(dashboard)/create/page": {
806
+ "moduleId": 63016,
807
+ "async": false,
808
+ "exportedName": "fetchGraphData",
809
+ "filename": "src/presentation/web/app/actions/get-graph-data.ts"
810
+ },
811
+ "app/(dashboard)/feature/[featureId]/page": {
812
+ "moduleId": 96804,
813
+ "async": false,
814
+ "exportedName": "fetchGraphData",
815
+ "filename": "src/presentation/web/app/actions/get-graph-data.ts"
816
+ },
817
+ "app/(dashboard)/page": {
818
+ "moduleId": 14110,
819
+ "async": false,
820
+ "exportedName": "fetchGraphData",
821
+ "filename": "src/presentation/web/app/actions/get-graph-data.ts"
822
+ },
823
+ "app/(dashboard)/repository/[repositoryId]/page": {
824
+ "moduleId": 5887,
825
+ "async": false,
826
+ "exportedName": "fetchGraphData",
827
+ "filename": "src/presentation/web/app/actions/get-graph-data.ts"
828
+ }
829
+ },
830
+ "layer": {
831
+ "app/(dashboard)/@drawer/create/page": "action-browser",
832
+ "app/(dashboard)/@drawer/feature/[featureId]/page": "action-browser",
833
+ "app/(dashboard)/@drawer/repository/[repositoryId]/page": "action-browser",
834
+ "app/(dashboard)/create/page": "action-browser",
835
+ "app/(dashboard)/feature/[featureId]/page": "action-browser",
836
+ "app/(dashboard)/page": "action-browser",
837
+ "app/(dashboard)/repository/[repositoryId]/page": "action-browser"
838
+ },
839
+ "filename": "src/presentation/web/app/actions/get-graph-data.ts",
840
+ "exportedName": "fetchGraphData"
841
+ },
842
+ "00322b9f5da0f19406001f72c83f17749ad8812f8a": {
843
+ "workers": {
844
+ "app/(dashboard)/@drawer/create/page": {
845
+ "moduleId": 98460,
789
846
  "async": false,
790
847
  "exportedName": "getWorkflowDefaults",
791
848
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
792
849
  },
793
850
  "app/(dashboard)/create/page": {
794
- "moduleId": 15434,
851
+ "moduleId": 63016,
795
852
  "async": false,
796
853
  "exportedName": "getWorkflowDefaults",
797
854
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
@@ -804,16 +861,16 @@
804
861
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
805
862
  "exportedName": "getWorkflowDefaults"
806
863
  },
807
- "40438c4a9b92f90f4630366f041139f0f5229ab900": {
864
+ "40834ccb8fa6b1abe2bd23ab0b97b47070dc3072c7": {
808
865
  "workers": {
809
866
  "app/(dashboard)/@drawer/create/page": {
810
- "moduleId": 42016,
867
+ "moduleId": 98460,
811
868
  "async": false,
812
869
  "exportedName": "createFeature",
813
870
  "filename": "src/presentation/web/app/actions/create-feature.ts"
814
871
  },
815
872
  "app/(dashboard)/create/page": {
816
- "moduleId": 15434,
873
+ "moduleId": 63016,
817
874
  "async": false,
818
875
  "exportedName": "createFeature",
819
876
  "filename": "src/presentation/web/app/actions/create-feature.ts"
@@ -826,16 +883,16 @@
826
883
  "filename": "src/presentation/web/app/actions/create-feature.ts",
827
884
  "exportedName": "createFeature"
828
885
  },
829
- "60cec049bb4efc8ec15d8244bc4415de121c3684fc": {
886
+ "604057126134b5ebffaa4c5cf2250b242975d444b1": {
830
887
  "workers": {
831
888
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
832
- "moduleId": 53432,
889
+ "moduleId": 1125,
833
890
  "async": false,
834
891
  "exportedName": "approveFeature",
835
892
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
836
893
  },
837
894
  "app/(dashboard)/feature/[featureId]/page": {
838
- "moduleId": 24734,
895
+ "moduleId": 96804,
839
896
  "async": false,
840
897
  "exportedName": "approveFeature",
841
898
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
@@ -848,16 +905,16 @@
848
905
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
849
906
  "exportedName": "approveFeature"
850
907
  },
851
- "609225f1e588118dc779683ca1731dd73514be825b": {
908
+ "6092c6aa1c9b70347178e54c42a87e52e8b72a7f3b": {
852
909
  "workers": {
853
910
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
854
- "moduleId": 53432,
911
+ "moduleId": 1125,
855
912
  "async": false,
856
913
  "exportedName": "rejectFeature",
857
914
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
858
915
  },
859
916
  "app/(dashboard)/feature/[featureId]/page": {
860
- "moduleId": 24734,
917
+ "moduleId": 96804,
861
918
  "async": false,
862
919
  "exportedName": "rejectFeature",
863
920
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
@@ -870,16 +927,16 @@
870
927
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
871
928
  "exportedName": "rejectFeature"
872
929
  },
873
- "408f81b288be3f8c97f40dd5beb8d3771bf990888f": {
930
+ "409919afac55e8d35425e7ba33840b0c0fced3de05": {
874
931
  "workers": {
875
932
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
876
- "moduleId": 53432,
933
+ "moduleId": 1125,
877
934
  "async": false,
878
935
  "exportedName": "getFeatureArtifact",
879
936
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
880
937
  },
881
938
  "app/(dashboard)/feature/[featureId]/page": {
882
- "moduleId": 24734,
939
+ "moduleId": 96804,
883
940
  "async": false,
884
941
  "exportedName": "getFeatureArtifact",
885
942
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
@@ -892,16 +949,16 @@
892
949
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
893
950
  "exportedName": "getFeatureArtifact"
894
951
  },
895
- "40fe893906fa08108cf240f79d01082590efae36a4": {
952
+ "40a35778cd98454ea1d163688b0a8ab798932953bd": {
896
953
  "workers": {
897
954
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
898
- "moduleId": 53432,
955
+ "moduleId": 1125,
899
956
  "async": false,
900
957
  "exportedName": "getResearchArtifact",
901
958
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
902
959
  },
903
960
  "app/(dashboard)/feature/[featureId]/page": {
904
- "moduleId": 24734,
961
+ "moduleId": 96804,
905
962
  "async": false,
906
963
  "exportedName": "getResearchArtifact",
907
964
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
@@ -914,16 +971,16 @@
914
971
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
915
972
  "exportedName": "getResearchArtifact"
916
973
  },
917
- "40d42a20222866854a38a60e5939d3e9d46716e083": {
974
+ "401e7452c1a2e4ba515295669811e4e56d4702569b": {
918
975
  "workers": {
919
976
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
920
- "moduleId": 53432,
977
+ "moduleId": 1125,
921
978
  "async": false,
922
979
  "exportedName": "getMergeReviewData",
923
980
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
924
981
  },
925
982
  "app/(dashboard)/feature/[featureId]/page": {
926
- "moduleId": 24734,
983
+ "moduleId": 96804,
927
984
  "async": false,
928
985
  "exportedName": "getMergeReviewData",
929
986
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
@@ -938,5 +995,5 @@
938
995
  }
939
996
  },
940
997
  "edge": {},
941
- "encryptionKey": "g81IDG7L07lyUbIQ3hUkOTQTu6qCbfN18luqBs7qqgo="
998
+ "encryptionKey": "tSFlc2pVd44Df7TjseaFP8jH5xj97EqxC9qDd8ZfFmo="
942
999
  }