@shepai/cli 1.176.0 → 1.177.0-pr538.aa9ace4

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 (268) hide show
  1. package/dist/eslint.config.mjs +2 -0
  2. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts +15 -0
  3. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts.map +1 -1
  4. package/dist/packages/core/src/application/ports/output/services/i-browser-opener.d.ts +28 -0
  5. package/dist/packages/core/src/application/ports/output/services/i-browser-opener.d.ts.map +1 -0
  6. package/dist/packages/core/src/application/ports/output/services/i-browser-opener.js +13 -0
  7. package/dist/packages/core/src/application/ports/output/services/i-desktop-notifier.d.ts +29 -0
  8. package/dist/packages/core/src/application/ports/output/services/i-desktop-notifier.d.ts.map +1 -0
  9. package/dist/packages/core/src/application/ports/output/services/i-desktop-notifier.js +13 -0
  10. package/dist/packages/core/src/application/ports/output/services/index.d.ts +2 -0
  11. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  12. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts +46 -3
  13. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
  14. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +153 -5
  15. package/dist/packages/core/src/application/use-cases/features/reparent-feature.use-case.d.ts +31 -0
  16. package/dist/packages/core/src/application/use-cases/features/reparent-feature.use-case.d.ts.map +1 -0
  17. package/dist/packages/core/src/application/use-cases/features/reparent-feature.use-case.js +127 -0
  18. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  19. package/dist/packages/core/src/infrastructure/di/container.js +10 -0
  20. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
  21. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.js +20 -6
  22. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  23. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +27 -4
  24. package/dist/packages/core/src/infrastructure/services/browser-opener.service.d.ts +2 -1
  25. package/dist/packages/core/src/infrastructure/services/browser-opener.service.d.ts.map +1 -1
  26. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +1 -0
  27. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
  28. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +53 -0
  29. package/dist/packages/core/src/infrastructure/services/notifications/desktop-notifier.d.ts +2 -1
  30. package/dist/packages/core/src/infrastructure/services/notifications/desktop-notifier.d.ts.map +1 -1
  31. package/dist/src/presentation/cli/commands/daemon/start-daemon.d.ts +1 -1
  32. package/dist/src/presentation/cli/commands/daemon/start-daemon.js +2 -3
  33. package/dist/src/presentation/cli/commands/ui.command.js +1 -2
  34. package/dist/src/presentation/web/app/actions/reparent-feature.d.ts +5 -0
  35. package/dist/src/presentation/web/app/actions/reparent-feature.d.ts.map +1 -0
  36. package/dist/src/presentation/web/app/actions/reparent-feature.js +16 -0
  37. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  38. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +2 -2
  39. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  40. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +2 -2
  41. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +1 -0
  42. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  43. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +47 -4
  44. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.d.ts +1 -0
  45. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.d.ts.map +1 -1
  46. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.js +18 -6
  47. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.stories.d.ts +3 -0
  48. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.stories.d.ts.map +1 -1
  49. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.stories.js +27 -1
  50. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts +2 -1
  51. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  52. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +14 -3
  53. package/dist/src/presentation/web/hooks/use-graph-state.d.ts +7 -0
  54. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  55. package/dist/src/presentation/web/hooks/use-graph-state.js +74 -0
  56. package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
  57. package/dist/src/presentation/web/lib/derive-graph.js +5 -1
  58. package/dist/tsconfig.build.tsbuildinfo +1 -1
  59. package/package.json +10 -2
  60. package/web/.next/BUILD_ID +1 -1
  61. package/web/.next/build-manifest.json +2 -2
  62. package/web/.next/fallback-build-manifest.json +2 -2
  63. package/web/.next/prerender-manifest.json +3 -3
  64. package/web/.next/required-server-files.js +3 -3
  65. package/web/.next/required-server-files.json +3 -3
  66. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +73 -58
  67. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -1
  68. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  69. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  70. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +69 -54
  71. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +1 -1
  72. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  73. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  74. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +75 -60
  75. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  76. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  77. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  78. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +91 -76
  79. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -1
  80. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  81. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  82. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +91 -76
  83. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -1
  84. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  85. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  86. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +71 -56
  87. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +1 -1
  88. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  89. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  90. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +71 -56
  91. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  92. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  93. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  94. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +69 -54
  95. package/web/.next/server/app/(dashboard)/chat/page.js +1 -1
  96. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  97. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  98. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +75 -60
  99. package/web/.next/server/app/(dashboard)/create/page.js +1 -1
  100. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  101. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  102. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +91 -76
  103. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -1
  104. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  105. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  106. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +91 -76
  107. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -1
  108. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  109. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  110. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +69 -54
  111. package/web/.next/server/app/(dashboard)/page.js +1 -1
  112. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  113. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  114. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +71 -56
  115. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +1 -1
  116. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  117. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  118. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +71 -56
  119. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  120. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  121. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  122. package/web/.next/server/app/_global-error.html +2 -2
  123. package/web/.next/server/app/_global-error.rsc +1 -1
  124. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  125. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  126. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  127. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  128. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  129. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  130. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  131. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  132. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  133. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  134. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  135. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  136. package/web/.next/server/app/features/page/server-reference-manifest.json +6 -6
  137. package/web/.next/server/app/features/page.js.nft.json +1 -1
  138. package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
  139. package/web/.next/server/app/settings/page/server-reference-manifest.json +9 -9
  140. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  141. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  142. package/web/.next/server/app/skills/page/server-reference-manifest.json +13 -13
  143. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  144. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  145. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  146. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  147. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  148. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  149. package/web/.next/server/app/version/page.js.nft.json +1 -1
  150. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  151. package/web/.next/server/chunks/[root-of-the-server]__332c8d91._.js +1 -1
  152. package/web/.next/server/chunks/[root-of-the-server]__332c8d91._.js.map +1 -1
  153. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  154. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4869a7bb.js +3 -0
  155. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4869a7bb.js.map +1 -0
  156. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_d92cb436.js +3 -0
  157. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_d92cb436.js.map +1 -0
  158. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_16dd74be.js +3 -0
  159. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_16dd74be.js.map +1 -0
  160. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  161. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  162. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  163. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  164. package/web/.next/server/chunks/ssr/{[root-of-the-server]__a932cd3a._.js → [root-of-the-server]__000567d1._.js} +2 -2
  165. package/web/.next/server/chunks/ssr/{[root-of-the-server]__51ec77a8._.js.map → [root-of-the-server]__000567d1._.js.map} +1 -1
  166. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js +1 -1
  167. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js.map +1 -1
  168. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
  169. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
  170. package/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +1 -1
  171. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  172. package/web/.next/server/chunks/ssr/{[root-of-the-server]__51ec77a8._.js → [root-of-the-server]__466d5d10._.js} +2 -2
  173. package/web/.next/server/chunks/ssr/{[root-of-the-server]__a932cd3a._.js.map → [root-of-the-server]__466d5d10._.js.map} +1 -1
  174. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js +2 -2
  175. package/web/.next/server/chunks/ssr/{[root-of-the-server]__66047a1b._.js → [root-of-the-server]__60b640ad._.js} +2 -2
  176. package/web/.next/server/chunks/ssr/{[root-of-the-server]__aa72e794._.js.map → [root-of-the-server]__60b640ad._.js.map} +1 -1
  177. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js +1 -1
  178. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js.map +1 -1
  179. package/web/.next/server/chunks/ssr/[root-of-the-server]__7528eb6f._.js +1 -1
  180. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
  181. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
  182. package/web/.next/server/chunks/ssr/{[root-of-the-server]__aa72e794._.js → [root-of-the-server]__e68e2b52._.js} +2 -2
  183. package/web/.next/server/chunks/ssr/{[root-of-the-server]__66047a1b._.js.map → [root-of-the-server]__e68e2b52._.js.map} +1 -1
  184. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  185. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  186. package/web/.next/server/chunks/ssr/{_8f0d3f07._.js → _09bef7ab._.js} +2 -2
  187. package/web/.next/server/chunks/ssr/{_8f0d3f07._.js.map → _09bef7ab._.js.map} +1 -1
  188. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  189. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  190. package/web/.next/server/chunks/ssr/_2b6293f3._.js +4 -0
  191. package/web/.next/server/chunks/ssr/{_388d1127._.js.map → _2b6293f3._.js.map} +1 -1
  192. package/web/.next/server/chunks/ssr/_4cbb7f95._.js +1 -1
  193. package/web/.next/server/chunks/ssr/_4cbb7f95._.js.map +1 -1
  194. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  195. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  196. package/web/.next/server/chunks/ssr/_6abfa39e._.js +1 -1
  197. package/web/.next/server/chunks/ssr/_6abfa39e._.js.map +1 -1
  198. package/web/.next/server/chunks/ssr/_ebb12cc5._.js +3 -0
  199. package/web/.next/server/chunks/ssr/{_98d94927._.js.map → _ebb12cc5._.js.map} +1 -1
  200. package/web/.next/server/chunks/ssr/_f8c55130._.js +1 -1
  201. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  202. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  203. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  204. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  205. package/web/.next/server/chunks/ssr/{src_presentation_web_807cba76._.js → src_presentation_web_06387c54._.js} +2 -2
  206. package/web/.next/server/chunks/ssr/src_presentation_web_06387c54._.js.map +1 -0
  207. package/web/.next/server/chunks/ssr/{src_presentation_web_e3a30e30._.js → src_presentation_web_1ccf607e._.js} +2 -2
  208. package/web/.next/server/chunks/ssr/src_presentation_web_1ccf607e._.js.map +1 -0
  209. package/web/.next/server/chunks/ssr/{src_presentation_web_7b7b9e3b._.js → src_presentation_web_2c992e9f._.js} +3 -3
  210. package/web/.next/server/chunks/ssr/{src_presentation_web_7b7b9e3b._.js.map → src_presentation_web_2c992e9f._.js.map} +1 -1
  211. package/web/.next/server/chunks/ssr/{src_presentation_web_54b02639._.js → src_presentation_web_476ed91c._.js} +3 -3
  212. package/web/.next/server/chunks/ssr/{src_presentation_web_54b02639._.js.map → src_presentation_web_476ed91c._.js.map} +1 -1
  213. package/web/.next/server/chunks/ssr/{src_presentation_web_17d39233._.js → src_presentation_web_5b78146e._.js} +2 -2
  214. package/web/.next/server/chunks/ssr/src_presentation_web_5b78146e._.js.map +1 -0
  215. package/web/.next/server/chunks/ssr/{src_presentation_web_e1cd1869._.js → src_presentation_web_796d2fd5._.js} +2 -2
  216. package/web/.next/server/chunks/ssr/src_presentation_web_796d2fd5._.js.map +1 -0
  217. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_3a934437.js +3 -0
  218. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_3a934437.js.map +1 -0
  219. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js +1 -1
  220. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js.map +1 -1
  221. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js +1 -1
  222. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js.map +1 -1
  223. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  224. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -1
  225. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  226. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  227. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  228. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  229. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
  230. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
  231. package/web/.next/server/pages/500.html +2 -2
  232. package/web/.next/server/server-reference-manifest.js +1 -1
  233. package/web/.next/server/server-reference-manifest.json +590 -484
  234. package/web/.next/static/chunks/{a20f2d6f76f469b7.css → 0cf210e5b787a08b.css} +1 -1
  235. package/web/.next/static/chunks/{0ffb3738269e15c3.js → 129ec6d253f86319.js} +1 -1
  236. package/web/.next/static/chunks/{afa7e5d2a48cabc7.js → 2fe9740f9397711d.js} +1 -1
  237. package/web/.next/static/chunks/{4ff21d16947ec853.js → 37035f72d4f041f4.js} +1 -1
  238. package/web/.next/static/chunks/{eda9ee3c22b71a69.js → 4a5e1ebbe4a3fd87.js} +1 -1
  239. package/web/.next/static/chunks/{476873a9bac35ec8.js → 7a0b03e168a882e6.js} +1 -1
  240. package/web/.next/static/chunks/8692d79a48d07b5c.js +3 -0
  241. package/web/.next/static/chunks/8c60a1781664e9f3.js +2 -0
  242. package/web/.next/static/chunks/96b30c2bf69bb538.js +1 -0
  243. package/web/.next/static/chunks/{2cfc6022d74e2716.js → a3c5ab40fc61b2c2.js} +3 -3
  244. package/web/.next/static/chunks/{f17d2d0279b8db35.js → abdbfb54cbb73702.js} +1 -1
  245. package/web/.next/static/chunks/{236744ff71b1aadf.js → bbb9fcc0697d77b8.js} +1 -1
  246. package/web/.next/static/chunks/{eab3d361f7a24510.js → eb612d2c2229399e.js} +1 -1
  247. package/web/.next/static/chunks/{885bb8fc631bf477.js → eccf3cd99bc580a4.js} +1 -1
  248. package/web/.next/static/chunks/{6304540c7cf2b46a.js → fa3bbfc6b0934358.js} +1 -1
  249. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js +0 -3
  250. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js.map +0 -1
  251. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js +0 -3
  252. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js.map +0 -1
  253. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js +0 -3
  254. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js.map +0 -1
  255. package/web/.next/server/chunks/ssr/_388d1127._.js +0 -4
  256. package/web/.next/server/chunks/ssr/_98d94927._.js +0 -3
  257. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js.map +0 -1
  258. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js.map +0 -1
  259. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js +0 -3
  260. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js.map +0 -1
  261. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js.map +0 -1
  262. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js.map +0 -1
  263. package/web/.next/static/chunks/302f474e4978cc80.js +0 -3
  264. package/web/.next/static/chunks/626277ca9a4cc477.js +0 -1
  265. package/web/.next/static/chunks/71a07df9dcb42227.js +0 -2
  266. /package/web/.next/static/{36ONyC02R4wfFe7iWMQLU → pZ9nz6LLItDQ4YUlAE7tc}/_buildManifest.js +0 -0
  267. /package/web/.next/static/{36ONyC02R4wfFe7iWMQLU → pZ9nz6LLItDQ4YUlAE7tc}/_clientMiddlewareManifest.json +0 -0
  268. /package/web/.next/static/{36ONyC02R4wfFe7iWMQLU → pZ9nz6LLItDQ4YUlAE7tc}/_ssgManifest.js +0 -0
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "node": {
3
- "00cb4868a4b7146a9f1023c717655da67499a44058": {
3
+ "00f5f6528e3736c0137504026645c45b1ff8234666": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
6
- "moduleId": 44147,
6
+ "moduleId": 48359,
7
7
  "async": false,
8
8
  "exportedName": "getAllAgentModels",
9
9
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -15,10 +15,10 @@
15
15
  "exportedName": "getAllAgentModels",
16
16
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
17
17
  },
18
- "6049e2f63b32532f1895fb86204d9826a0607af502": {
18
+ "60d76479f0e493970305acc7fd287564dc4b12765e": {
19
19
  "workers": {
20
20
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
21
- "moduleId": 44147,
21
+ "moduleId": 48359,
22
22
  "async": false,
23
23
  "exportedName": "updateAgentAndModel",
24
24
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -30,10 +30,10 @@
30
30
  "exportedName": "updateAgentAndModel",
31
31
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
32
32
  },
33
- "00c179925804b3919e8aed99ca361ccef1e2dc65f0": {
33
+ "00bf4aad5f1befac8a35bf980cc51d984f9c90b028": {
34
34
  "workers": {
35
35
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
36
- "moduleId": 44147,
36
+ "moduleId": 48359,
37
37
  "async": false,
38
38
  "exportedName": "pickFolder",
39
39
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -45,10 +45,10 @@
45
45
  "exportedName": "pickFolder",
46
46
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
47
47
  },
48
- "4006eeb8ddc83bea53598447ecbf340f72dd2b2ebb": {
48
+ "40dc68114a21a0b3777b0e8981fe888bbd9e733ae4": {
49
49
  "workers": {
50
50
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
51
- "moduleId": 44147,
51
+ "moduleId": 48359,
52
52
  "async": false,
53
53
  "exportedName": "listGitHubRepositories",
54
54
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -60,10 +60,10 @@
60
60
  "exportedName": "listGitHubRepositories",
61
61
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
62
62
  },
63
- "0012f06d38b91b2175fbacc4bf48de652a053999a4": {
63
+ "00db40961c1be8f6cb1e2873a19726d440b4005802": {
64
64
  "workers": {
65
65
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
66
- "moduleId": 44147,
66
+ "moduleId": 48359,
67
67
  "async": false,
68
68
  "exportedName": "listGitHubOrganizations",
69
69
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -75,10 +75,10 @@
75
75
  "exportedName": "listGitHubOrganizations",
76
76
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
77
77
  },
78
- "40a6c4468fe3a1c35435541a6d1a9ded40b221d698": {
78
+ "40ee586c1937edc1cd3c82f082fbaa8ca9850036ae": {
79
79
  "workers": {
80
80
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
81
- "moduleId": 44147,
81
+ "moduleId": 48359,
82
82
  "async": false,
83
83
  "exportedName": "importGitHubRepository",
84
84
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -90,10 +90,10 @@
90
90
  "exportedName": "importGitHubRepository",
91
91
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
92
92
  },
93
- "40eabdcebf76a89d9e128b6dc9efd531de1814e5a1": {
93
+ "40f7fc46504b96e6a991d99f091ae5885883574611": {
94
94
  "workers": {
95
95
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
96
- "moduleId": 44147,
96
+ "moduleId": 48359,
97
97
  "async": false,
98
98
  "exportedName": "deployFeature",
99
99
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -105,10 +105,10 @@
105
105
  "exportedName": "deployFeature",
106
106
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
107
107
  },
108
- "400920ccce2e36a81197e83126c82017b8c5bb28bf": {
108
+ "40d05a7a07629212cfc72b500c379f1fc53998ed35": {
109
109
  "workers": {
110
110
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
111
- "moduleId": 44147,
111
+ "moduleId": 48359,
112
112
  "async": false,
113
113
  "exportedName": "deployRepository",
114
114
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -120,10 +120,10 @@
120
120
  "exportedName": "deployRepository",
121
121
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
122
122
  },
123
- "40412c259e7ed86b5c5bed876d6169ddb58b0e1c22": {
123
+ "4027e00f99ce989619dc083f1dad06cc3b9fa0aa95": {
124
124
  "workers": {
125
125
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
126
- "moduleId": 44147,
126
+ "moduleId": 48359,
127
127
  "async": false,
128
128
  "exportedName": "stopDeployment",
129
129
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -135,10 +135,10 @@
135
135
  "exportedName": "stopDeployment",
136
136
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
137
137
  },
138
- "4098572abb3a79b59093633e79c0fad599b39fedec": {
138
+ "40a819e7777d4c74cc3292556cbe55e85d18e9c545": {
139
139
  "workers": {
140
140
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
141
- "moduleId": 44147,
141
+ "moduleId": 48359,
142
142
  "async": false,
143
143
  "exportedName": "getDeploymentStatus",
144
144
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -150,10 +150,10 @@
150
150
  "exportedName": "getDeploymentStatus",
151
151
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
152
152
  },
153
- "40c228bbfcca5b0129345918301facd8cb0b8055de": {
153
+ "40b1542af669f0c1d46d79ddf6b7947f8ea35bf121": {
154
154
  "workers": {
155
155
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
156
- "moduleId": 44147,
156
+ "moduleId": 48359,
157
157
  "async": false,
158
158
  "exportedName": "openIde",
159
159
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -165,10 +165,10 @@
165
165
  "exportedName": "openIde",
166
166
  "filename": "src/presentation/web/app/actions/open-ide.ts"
167
167
  },
168
- "40c12efff0cc27df11235b3f9d5bbe3164c3a36916": {
168
+ "40b69f850f7549d0e306e1e7d4706608b9cd1d08da": {
169
169
  "workers": {
170
170
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
171
- "moduleId": 44147,
171
+ "moduleId": 48359,
172
172
  "async": false,
173
173
  "exportedName": "openShell",
174
174
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -180,10 +180,10 @@
180
180
  "exportedName": "openShell",
181
181
  "filename": "src/presentation/web/app/actions/open-shell.ts"
182
182
  },
183
- "404792d31168d107ad87bc02363979145921ab65d9": {
183
+ "40bd8d8e1f2289bbfba406a25e6c818e3568210dc8": {
184
184
  "workers": {
185
185
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
186
- "moduleId": 44147,
186
+ "moduleId": 48359,
187
187
  "async": false,
188
188
  "exportedName": "openFolder",
189
189
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -195,10 +195,10 @@
195
195
  "exportedName": "openFolder",
196
196
  "filename": "src/presentation/web/app/actions/open-folder.ts"
197
197
  },
198
- "4094b7af021965e5579b93de307e17349083e40021": {
198
+ "401787aa2f872f190550cd0623ffeafa8715653e55": {
199
199
  "workers": {
200
200
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
201
- "moduleId": 44147,
201
+ "moduleId": 48359,
202
202
  "async": false,
203
203
  "exportedName": "syncRepository",
204
204
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
@@ -210,10 +210,10 @@
210
210
  "exportedName": "syncRepository",
211
211
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
212
212
  },
213
- "40293dd2ddd89ddcdd643d20d332ac8a777bff22c2": {
213
+ "4064f0cba1566a658bb1a88800b6036daa5b6701da": {
214
214
  "workers": {
215
215
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
216
- "moduleId": 44147,
216
+ "moduleId": 48359,
217
217
  "async": false,
218
218
  "exportedName": "getDeploymentLogs",
219
219
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -225,10 +225,10 @@
225
225
  "exportedName": "getDeploymentLogs",
226
226
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
227
227
  },
228
- "00ef11de499d068feb4794f6de3ceefe0a173d79b4": {
228
+ "00c5fe0b02746d57b89adbdfc484e09fed04d35809": {
229
229
  "workers": {
230
230
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
231
- "moduleId": 44147,
231
+ "moduleId": 48359,
232
232
  "async": false,
233
233
  "exportedName": "isAgentSetupComplete",
234
234
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -240,10 +240,10 @@
240
240
  "exportedName": "isAgentSetupComplete",
241
241
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
242
242
  },
243
- "00775d024616e92c4cb6e9952c0ee7a4e2514316f7": {
243
+ "002227bc208cbfe02b9f658e679cea28b3c23c1fd4": {
244
244
  "workers": {
245
245
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
246
- "moduleId": 44147,
246
+ "moduleId": 48359,
247
247
  "async": false,
248
248
  "exportedName": "checkAgentAuth",
249
249
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -255,10 +255,10 @@
255
255
  "exportedName": "checkAgentAuth",
256
256
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
257
257
  },
258
- "00027a7915f5562784875f344d2d1e03b5837fc22d": {
258
+ "00010b818388f887add1d73b4f95c7fa256eb92ed5": {
259
259
  "workers": {
260
260
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
261
- "moduleId": 44147,
261
+ "moduleId": 48359,
262
262
  "async": false,
263
263
  "exportedName": "checkToolStatus",
264
264
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -270,10 +270,10 @@
270
270
  "exportedName": "checkToolStatus",
271
271
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
272
272
  },
273
- "40edd174e47370c4488df8c569998add1992ff7a48": {
273
+ "4095de484fcf24aa4d0120f51a1eafba7e076d5c18": {
274
274
  "workers": {
275
275
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
276
- "moduleId": 44147,
276
+ "moduleId": 48359,
277
277
  "async": false,
278
278
  "exportedName": "archiveFeature",
279
279
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
@@ -285,10 +285,10 @@
285
285
  "exportedName": "archiveFeature",
286
286
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
287
287
  },
288
- "787bc790ab1e2a4289d12d1c9a358efa7df605dada": {
288
+ "78e60469092c92fd2a69eac5855fe59727ab3053ad": {
289
289
  "workers": {
290
290
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
291
- "moduleId": 44147,
291
+ "moduleId": 48359,
292
292
  "async": false,
293
293
  "exportedName": "deleteFeature",
294
294
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -300,10 +300,10 @@
300
300
  "exportedName": "deleteFeature",
301
301
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
302
302
  },
303
- "405a7935e2bd13c8485be930114fef892ebabc6964": {
303
+ "404130a91674097a79035b441534e12664d0ea819d": {
304
304
  "workers": {
305
305
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
306
- "moduleId": 44147,
306
+ "moduleId": 48359,
307
307
  "async": false,
308
308
  "exportedName": "resumeFeature",
309
309
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -315,10 +315,10 @@
315
315
  "exportedName": "resumeFeature",
316
316
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
317
317
  },
318
- "405baa7c37fbb6dab024508a0077fc15fbc28a54b9": {
318
+ "403350576c7ba9d9ba9e37faf42ae58eaf1ae995de": {
319
319
  "workers": {
320
320
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
321
- "moduleId": 44147,
321
+ "moduleId": 48359,
322
322
  "async": false,
323
323
  "exportedName": "startFeature",
324
324
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -330,10 +330,10 @@
330
330
  "exportedName": "startFeature",
331
331
  "filename": "src/presentation/web/app/actions/start-feature.ts"
332
332
  },
333
- "40d16d90977f0b4418f4a0fad1616967ae3c05c16b": {
333
+ "4081dd1b565214fc477f74f61ce1ef37f3c590d68d": {
334
334
  "workers": {
335
335
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
336
- "moduleId": 44147,
336
+ "moduleId": 48359,
337
337
  "async": false,
338
338
  "exportedName": "stopFeature",
339
339
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -345,10 +345,10 @@
345
345
  "exportedName": "stopFeature",
346
346
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
347
347
  },
348
- "40104b4815f382df45d03e12412f8826989f04a7e9": {
348
+ "4089d06726098372bb9dd0914f6b95e69a4fc5830d": {
349
349
  "workers": {
350
350
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
351
- "moduleId": 44147,
351
+ "moduleId": 48359,
352
352
  "async": false,
353
353
  "exportedName": "unarchiveFeature",
354
354
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
@@ -360,10 +360,10 @@
360
360
  "exportedName": "unarchiveFeature",
361
361
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
362
362
  },
363
- "4083ce0a20d5adde7024ddd43c6a27b2e277d2282d": {
363
+ "4010329ab280d3926a0097db30dfd4380f33a0b91a": {
364
364
  "workers": {
365
365
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
366
- "moduleId": 44147,
366
+ "moduleId": 48359,
367
367
  "async": false,
368
368
  "exportedName": "addRepository",
369
369
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -375,10 +375,10 @@
375
375
  "exportedName": "addRepository",
376
376
  "filename": "src/presentation/web/app/actions/add-repository.ts"
377
377
  },
378
- "4005559e0fa5f81a5bb522d8856bde92f7260c3d83": {
378
+ "40f0856a0f4d678c5430253ea8bf2e69e624cdeb57": {
379
379
  "workers": {
380
380
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
381
- "moduleId": 44147,
381
+ "moduleId": 48359,
382
382
  "async": false,
383
383
  "exportedName": "deleteRepository",
384
384
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -390,10 +390,10 @@
390
390
  "exportedName": "deleteRepository",
391
391
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
392
392
  },
393
- "40a8392d06310c04eaa52c7ae0644d60ca6749efae": {
393
+ "40e039b11ba6f321de2bb77e29624b4bfe7500efd2": {
394
394
  "workers": {
395
395
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
396
- "moduleId": 44147,
396
+ "moduleId": 48359,
397
397
  "async": false,
398
398
  "exportedName": "getFeatureMetadata",
399
399
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -405,10 +405,25 @@
405
405
  "exportedName": "getFeatureMetadata",
406
406
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
407
407
  },
408
- "60ebb41233749948f27409d46993ff484115f0e3c6": {
408
+ "607b1f9c19220c4b1fc5726161c60e3aa7b09e04e6": {
409
409
  "workers": {
410
410
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
411
- "moduleId": 44147,
411
+ "moduleId": 48359,
412
+ "async": false,
413
+ "exportedName": "reparentFeature",
414
+ "filename": "src/presentation/web/app/actions/reparent-feature.ts"
415
+ }
416
+ },
417
+ "layer": {
418
+ "app/(dashboard)/@drawer/feature/[featureId]/page": "action-browser"
419
+ },
420
+ "exportedName": "reparentFeature",
421
+ "filename": "src/presentation/web/app/actions/reparent-feature.ts"
422
+ },
423
+ "60aad1a55ec75079cf53eeea28eafc23e9612a0245": {
424
+ "workers": {
425
+ "app/(dashboard)/@drawer/feature/[featureId]/page": {
426
+ "moduleId": 48359,
412
427
  "async": false,
413
428
  "exportedName": "approveFeature",
414
429
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
@@ -420,10 +435,10 @@
420
435
  "exportedName": "approveFeature",
421
436
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
422
437
  },
423
- "70778834f63ec7fa71f03f045d9e282c5a32a6ad7f": {
438
+ "705f7bfbf2d4a69e2b87fc81511527dcae957d85fe": {
424
439
  "workers": {
425
440
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
426
- "moduleId": 44147,
441
+ "moduleId": 48359,
427
442
  "async": false,
428
443
  "exportedName": "rejectFeature",
429
444
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
@@ -435,10 +450,10 @@
435
450
  "exportedName": "rejectFeature",
436
451
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
437
452
  },
438
- "40898b4bcc4ebfe6bfa5189231cef82767ef92d41e": {
453
+ "40dae658b237c51584bbab2dbfa3af8d4fa176709f": {
439
454
  "workers": {
440
455
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
441
- "moduleId": 44147,
456
+ "moduleId": 48359,
442
457
  "async": false,
443
458
  "exportedName": "getFeatureArtifact",
444
459
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
@@ -450,10 +465,10 @@
450
465
  "exportedName": "getFeatureArtifact",
451
466
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
452
467
  },
453
- "40bf976700934c9f16c7465028f5eb4d5a0cf0fdbf": {
468
+ "40d8a56ede01c61f6f2e200d737ded7bab6b978921": {
454
469
  "workers": {
455
470
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
456
- "moduleId": 44147,
471
+ "moduleId": 48359,
457
472
  "async": false,
458
473
  "exportedName": "getResearchArtifact",
459
474
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
@@ -465,10 +480,10 @@
465
480
  "exportedName": "getResearchArtifact",
466
481
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
467
482
  },
468
- "4049f53511fa42e28ae508460f5e93ce6ce8ab3687": {
483
+ "40f7cb22a4717180a644468f3bc8d9ae81be173bc0": {
469
484
  "workers": {
470
485
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
471
- "moduleId": 44147,
486
+ "moduleId": 48359,
472
487
  "async": false,
473
488
  "exportedName": "getMergeReviewData",
474
489
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
@@ -480,10 +495,10 @@
480
495
  "exportedName": "getMergeReviewData",
481
496
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
482
497
  },
483
- "405aba6007c981f130a6835b62253dba6711d991bd": {
498
+ "401afff024ee790d2a5c69b1733c74e781249b8680": {
484
499
  "workers": {
485
500
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
486
- "moduleId": 44147,
501
+ "moduleId": 48359,
487
502
  "async": false,
488
503
  "exportedName": "getFeaturePhaseTimings",
489
504
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
@@ -495,10 +510,10 @@
495
510
  "exportedName": "getFeaturePhaseTimings",
496
511
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
497
512
  },
498
- "401d55491c73634411a9963823939b353c1d17dab7": {
513
+ "405462bba54c4a9817f95fea374fdf9b650f066217": {
499
514
  "workers": {
500
515
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
501
- "moduleId": 44147,
516
+ "moduleId": 48359,
502
517
  "async": false,
503
518
  "exportedName": "getFeaturePlan",
504
519
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts"
@@ -510,10 +525,10 @@
510
525
  "exportedName": "getFeaturePlan",
511
526
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts"
512
527
  },
513
- "4017285a8f07fe49e2dc5538f9d9389c89f710a99b": {
528
+ "40108def545cedea54f4a691fb4b110c0b0a406739": {
514
529
  "workers": {
515
530
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
516
- "moduleId": 44147,
531
+ "moduleId": 48359,
517
532
  "async": false,
518
533
  "exportedName": "rebaseFeature",
519
534
  "filename": "src/presentation/web/app/actions/rebase-feature.ts"
@@ -525,10 +540,10 @@
525
540
  "exportedName": "rebaseFeature",
526
541
  "filename": "src/presentation/web/app/actions/rebase-feature.ts"
527
542
  },
528
- "403bda958c664ee512a3c3f1e48dc6351dadb75628": {
543
+ "40945c0a4db6bd0bd40d971b78a0bccdaf3b4a08be": {
529
544
  "workers": {
530
545
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
531
- "moduleId": 44147,
546
+ "moduleId": 48359,
532
547
  "async": false,
533
548
  "exportedName": "getFeatureDrawerData",
534
549
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
@@ -540,10 +555,10 @@
540
555
  "exportedName": "getFeatureDrawerData",
541
556
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
542
557
  },
543
- "4059aa45dedb0b77a9467e4b4ddb2136bc4d4bcd18": {
558
+ "402a58a7609c1573a9414b4d9ca92245d0624d57b9": {
544
559
  "workers": {
545
560
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
546
- "moduleId": 44147,
561
+ "moduleId": 48359,
547
562
  "async": false,
548
563
  "exportedName": "getBranchSyncStatus",
549
564
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts"
@@ -555,10 +570,10 @@
555
570
  "exportedName": "getBranchSyncStatus",
556
571
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts"
557
572
  },
558
- "705c7a0d430e2cff393a181c8026507f24c6d0ded8": {
573
+ "707d942ec76ade02e8d65f35561a9206610e76502e": {
559
574
  "workers": {
560
575
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
561
- "moduleId": 44147,
576
+ "moduleId": 48359,
562
577
  "async": false,
563
578
  "exportedName": "updateFeaturePinnedConfig",
564
579
  "filename": "src/presentation/web/app/actions/update-feature-pinned-config.ts"
@@ -18,6 +18,6 @@ R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
18
18
  R.c("server/chunks/ssr/src_presentation_web_app_(dashboard)_feature_[featureId]_page_tsx_797907a1._.js")
19
19
  R.c("server/chunks/ssr/_f8c55130._.js")
20
20
  R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js")
21
- R.c("server/chunks/ssr/[root-of-the-server]__aa72e794._.js")
21
+ R.c("server/chunks/ssr/[root-of-the-server]__60b640ad._.js")
22
22
  R.m(41194)
23
23
  module.exports=R.m(41194).exports