@shepai/cli 1.166.1 → 1.167.0-pr505.5cf8222

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 (406) hide show
  1. package/apis/json-schema/FeatureFlags.yaml +5 -0
  2. package/dist/packages/core/src/application/index.d.ts +1 -0
  3. package/dist/packages/core/src/application/index.d.ts.map +1 -1
  4. package/dist/packages/core/src/application/index.js +1 -0
  5. package/dist/packages/core/src/application/ports/output/agents/agent-run-repository.interface.d.ts +12 -0
  6. package/dist/packages/core/src/application/ports/output/agents/agent-run-repository.interface.d.ts.map +1 -1
  7. package/dist/packages/core/src/application/use-cases/features/update-feature-pinned-config.use-case.d.ts +24 -0
  8. package/dist/packages/core/src/application/use-cases/features/update-feature-pinned-config.use-case.d.ts.map +1 -0
  9. package/dist/packages/core/src/application/use-cases/features/update-feature-pinned-config.use-case.js +107 -0
  10. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  11. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
  12. package/dist/packages/core/src/domain/generated/output.d.ts +4 -0
  13. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  14. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  15. package/dist/packages/core/src/infrastructure/di/container.js +5 -0
  16. package/dist/packages/core/src/infrastructure/persistence/sqlite/legacy-migrations.d.ts.map +1 -1
  17. package/dist/packages/core/src/infrastructure/persistence/sqlite/legacy-migrations.js +11 -0
  18. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -0
  19. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  20. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +2 -0
  21. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/050-add-feature-flag-inventory.d.ts +11 -0
  22. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/050-add-feature-flag-inventory.d.ts.map +1 -0
  23. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/050-add-feature-flag-inventory.js +17 -0
  24. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.d.ts +3 -3
  25. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.js +3 -3
  26. package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.d.ts +2 -1
  27. package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.d.ts.map +1 -1
  28. package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.js +15 -0
  29. package/dist/packages/core/src/infrastructure/services/web-server.service.d.ts +3 -0
  30. package/dist/packages/core/src/infrastructure/services/web-server.service.d.ts.map +1 -1
  31. package/dist/packages/core/src/infrastructure/services/web-server.service.js +10 -0
  32. package/dist/src/presentation/web/app/actions/update-feature-pinned-config.d.ts +5 -0
  33. package/dist/src/presentation/web/app/actions/update-feature-pinned-config.d.ts.map +1 -0
  34. package/dist/src/presentation/web/app/actions/update-feature-pinned-config.js +29 -0
  35. package/dist/src/presentation/web/app/features/feature-tree-page-client.d.ts +7 -0
  36. package/dist/src/presentation/web/app/features/feature-tree-page-client.d.ts.map +1 -0
  37. package/dist/src/presentation/web/app/features/feature-tree-page-client.js +13 -0
  38. package/dist/src/presentation/web/app/features/get-feature-tree-data.d.ts +10 -0
  39. package/dist/src/presentation/web/app/features/get-feature-tree-data.d.ts.map +1 -0
  40. package/dist/src/presentation/web/app/features/get-feature-tree-data.js +47 -0
  41. package/dist/src/presentation/web/app/features/page.d.ts +4 -0
  42. package/dist/src/presentation/web/app/features/page.d.ts.map +1 -0
  43. package/dist/src/presentation/web/app/features/page.js +9 -0
  44. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
  45. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +100 -9
  46. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +4 -1
  47. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
  48. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +3 -3
  49. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts +3 -1
  50. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts.map +1 -1
  51. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +21 -10
  52. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts +4 -0
  53. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts.map +1 -1
  54. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.js +33 -0
  55. package/dist/src/presentation/web/components/common/feature-drawer-tabs/pinned-config-utils.d.ts +18 -0
  56. package/dist/src/presentation/web/components/common/feature-drawer-tabs/pinned-config-utils.d.ts.map +1 -0
  57. package/dist/src/presentation/web/components/common/feature-drawer-tabs/pinned-config-utils.js +17 -0
  58. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.d.ts.map +1 -1
  59. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.js +1 -0
  60. package/dist/src/presentation/web/components/features/feature-tree-table/feature-tree-table.d.ts +36 -0
  61. package/dist/src/presentation/web/components/features/feature-tree-table/feature-tree-table.d.ts.map +1 -0
  62. package/dist/src/presentation/web/components/features/feature-tree-table/feature-tree-table.js +196 -0
  63. package/dist/src/presentation/web/components/features/feature-tree-table/feature-tree-table.stories.d.ts +12 -0
  64. package/dist/src/presentation/web/components/features/feature-tree-table/feature-tree-table.stories.d.ts.map +1 -0
  65. package/dist/src/presentation/web/components/features/feature-tree-table/feature-tree-table.stories.js +166 -0
  66. package/dist/src/presentation/web/components/features/feature-tree-table/index.d.ts +3 -0
  67. package/dist/src/presentation/web/components/features/feature-tree-table/index.d.ts.map +1 -0
  68. package/dist/src/presentation/web/components/features/feature-tree-table/index.js +1 -0
  69. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts +2 -0
  70. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts.map +1 -1
  71. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.js +27 -0
  72. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.d.ts +10 -1
  73. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.d.ts.map +1 -1
  74. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +33 -25
  75. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  76. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +3 -0
  77. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  78. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +3 -0
  79. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  80. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +5 -0
  81. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  82. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
  83. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  84. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
  85. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
  86. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -0
  87. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
  88. package/dist/src/presentation/web/hooks/feature-flags-context.js +1 -0
  89. package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
  90. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  91. package/dist/src/presentation/web/lib/feature-flags.js +5 -0
  92. package/dist/translations/ar/web.json +3 -0
  93. package/dist/translations/de/web.json +3 -0
  94. package/dist/translations/en/web.json +3 -0
  95. package/dist/translations/es/web.json +3 -0
  96. package/dist/translations/fr/web.json +3 -0
  97. package/dist/translations/he/web.json +3 -0
  98. package/dist/translations/pt/web.json +3 -0
  99. package/dist/translations/ru/web.json +3 -0
  100. package/dist/tsconfig.build.tsbuildinfo +1 -1
  101. package/package.json +1 -1
  102. package/web/.next/BUILD_ID +1 -1
  103. package/web/.next/app-path-routes-manifest.json +1 -0
  104. package/web/.next/build-manifest.json +5 -5
  105. package/web/.next/fallback-build-manifest.json +2 -2
  106. package/web/.next/prerender-manifest.json +3 -3
  107. package/web/.next/required-server-files.js +3 -3
  108. package/web/.next/required-server-files.json +3 -3
  109. package/web/.next/routes-manifest.json +6 -0
  110. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/build-manifest.json +3 -3
  111. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  112. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -1
  113. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  114. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  115. package/web/.next/server/app/(dashboard)/@drawer/chat/page/build-manifest.json +3 -3
  116. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  117. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +1 -1
  118. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  119. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  120. package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +3 -3
  121. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +30 -30
  122. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  123. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  124. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  125. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/build-manifest.json +3 -3
  126. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +89 -74
  127. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -2
  128. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  129. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  130. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +3 -3
  131. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +89 -74
  132. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -2
  133. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  134. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  135. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/build-manifest.json +3 -3
  136. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  137. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +1 -1
  138. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  139. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  140. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +3 -3
  141. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  142. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  143. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  144. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  145. package/web/.next/server/app/(dashboard)/chat/page/build-manifest.json +3 -3
  146. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  147. package/web/.next/server/app/(dashboard)/chat/page.js +1 -1
  148. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  149. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  150. package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +3 -3
  151. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +30 -30
  152. package/web/.next/server/app/(dashboard)/create/page.js +1 -1
  153. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  154. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  155. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/build-manifest.json +3 -3
  156. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +89 -74
  157. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +2 -2
  158. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  159. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  160. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +3 -3
  161. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +89 -74
  162. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +2 -2
  163. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  164. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  165. package/web/.next/server/app/(dashboard)/page/build-manifest.json +3 -3
  166. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  167. package/web/.next/server/app/(dashboard)/page.js +1 -1
  168. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  169. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  170. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/build-manifest.json +3 -3
  171. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  172. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +1 -1
  173. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  174. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  175. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +3 -3
  176. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  177. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  178. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  179. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  180. package/web/.next/server/app/_global-error/page/build-manifest.json +3 -3
  181. package/web/.next/server/app/_global-error/page.js.nft.json +1 -1
  182. package/web/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
  183. package/web/.next/server/app/_global-error.html +2 -2
  184. package/web/.next/server/app/_global-error.rsc +1 -1
  185. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  186. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  187. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  188. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  189. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  190. package/web/.next/server/app/_not-found/page/build-manifest.json +3 -3
  191. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  192. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  193. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  194. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  195. package/web/.next/server/app/api/attachments/upload-from-path/route.js +1 -1
  196. package/web/.next/server/app/api/attachments/upload-from-path/route.js.nft.json +1 -1
  197. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  198. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  199. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  200. package/web/.next/server/app/features/page/app-paths-manifest.json +3 -0
  201. package/web/.next/server/app/features/page/build-manifest.json +18 -0
  202. package/web/.next/server/app/features/page/next-font-manifest.json +6 -0
  203. package/web/.next/server/app/features/page/react-loadable-manifest.json +8 -0
  204. package/web/.next/server/app/features/page/server-reference-manifest.json +95 -0
  205. package/web/.next/server/app/features/page.js +18 -0
  206. package/web/.next/server/app/features/page.js.map +5 -0
  207. package/web/.next/server/app/features/page.js.nft.json +1 -0
  208. package/web/.next/server/app/features/page_client-reference-manifest.js +2 -0
  209. package/web/.next/server/app/settings/page/build-manifest.json +3 -3
  210. package/web/.next/server/app/settings/page/server-reference-manifest.json +9 -9
  211. package/web/.next/server/app/settings/page.js +1 -1
  212. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  213. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  214. package/web/.next/server/app/skills/page/build-manifest.json +3 -3
  215. package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
  216. package/web/.next/server/app/skills/page.js +1 -1
  217. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  218. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  219. package/web/.next/server/app/tools/page/build-manifest.json +3 -3
  220. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  221. package/web/.next/server/app/tools/page.js +1 -1
  222. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  223. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  224. package/web/.next/server/app/version/page/build-manifest.json +3 -3
  225. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  226. package/web/.next/server/app/version/page.js.nft.json +1 -1
  227. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  228. package/web/.next/server/app-paths-manifest.json +1 -0
  229. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  230. package/web/.next/server/chunks/{[root-of-the-server]__ea653642._.js → [root-of-the-server]__a5879003._.js} +2 -2
  231. package/web/.next/server/chunks/{[root-of-the-server]__ea653642._.js.map → [root-of-the-server]__a5879003._.js.map} +1 -1
  232. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js.map +1 -1
  233. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  234. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  235. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  236. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +3 -3
  237. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  238. package/web/.next/server/chunks/ssr/[root-of-the-server]__08c912ab._.js +3 -0
  239. package/web/.next/server/chunks/ssr/[root-of-the-server]__08c912ab._.js.map +1 -0
  240. package/web/.next/server/chunks/ssr/{[root-of-the-server]__b062b383._.js → [root-of-the-server]__0c5452c3._.js} +2 -2
  241. package/web/.next/server/chunks/ssr/[root-of-the-server]__0c5452c3._.js.map +1 -0
  242. package/web/.next/server/chunks/ssr/{[root-of-the-server]__2d0c3840._.js → [root-of-the-server]__13fa44e4._.js} +2 -2
  243. package/web/.next/server/chunks/ssr/{[root-of-the-server]__2d0c3840._.js.map → [root-of-the-server]__13fa44e4._.js.map} +1 -1
  244. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
  245. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
  246. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  247. package/web/.next/server/chunks/ssr/[root-of-the-server]__4fb81977._.js +4 -0
  248. package/web/.next/server/chunks/ssr/[root-of-the-server]__4fb81977._.js.map +1 -0
  249. package/web/.next/server/chunks/ssr/{[root-of-the-server]__dffa13c5._.js → [root-of-the-server]__69dd3217._.js} +2 -2
  250. package/web/.next/server/chunks/ssr/{[root-of-the-server]__dffa13c5._.js.map → [root-of-the-server]__69dd3217._.js.map} +1 -1
  251. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js +4 -0
  252. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js.map +1 -0
  253. package/web/.next/server/chunks/ssr/[root-of-the-server]__7dcd0917._.js +4 -0
  254. package/web/.next/server/chunks/ssr/[root-of-the-server]__7dcd0917._.js.map +1 -0
  255. package/web/.next/server/chunks/ssr/{[root-of-the-server]__7562afc6._.js → [root-of-the-server]__7ffd3598._.js} +3 -3
  256. package/web/.next/server/chunks/ssr/[root-of-the-server]__7ffd3598._.js.map +1 -0
  257. package/web/.next/server/chunks/ssr/{[root-of-the-server]__248ee887._.js → [root-of-the-server]__851f6adb._.js} +2 -2
  258. package/web/.next/server/chunks/ssr/[root-of-the-server]__851f6adb._.js.map +1 -0
  259. package/web/.next/server/chunks/ssr/{[root-of-the-server]__1abe77bb._.js → [root-of-the-server]__b020c17d._.js} +3 -3
  260. package/web/.next/server/chunks/ssr/[root-of-the-server]__b020c17d._.js.map +1 -0
  261. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
  262. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
  263. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba7f5873._.js +4 -0
  264. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba7f5873._.js.map +1 -0
  265. package/web/.next/server/chunks/ssr/[root-of-the-server]__c5e09f6f._.js +4 -0
  266. package/web/.next/server/chunks/ssr/[root-of-the-server]__c5e09f6f._.js.map +1 -0
  267. package/web/.next/server/chunks/ssr/{[root-of-the-server]__8b0aac03._.js → [root-of-the-server]__e88da4ee._.js} +3 -3
  268. package/web/.next/server/chunks/ssr/{[root-of-the-server]__8b0aac03._.js.map → [root-of-the-server]__e88da4ee._.js.map} +1 -1
  269. package/web/.next/server/chunks/ssr/_0020fddd._.js +1 -1
  270. package/web/.next/server/chunks/ssr/_0020fddd._.js.map +1 -1
  271. package/web/.next/server/chunks/ssr/_02e01240._.js +1 -1
  272. package/web/.next/server/chunks/ssr/_02e01240._.js.map +1 -1
  273. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  274. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  275. package/web/.next/server/chunks/ssr/_0727935d._.js +1 -1
  276. package/web/.next/server/chunks/ssr/_0727935d._.js.map +1 -1
  277. package/web/.next/server/chunks/ssr/_0dc06d07._.js +1 -1
  278. package/web/.next/server/chunks/ssr/_0dc06d07._.js.map +1 -1
  279. package/web/.next/server/chunks/ssr/_16235e5e._.js +1 -1
  280. package/web/.next/server/chunks/ssr/_16235e5e._.js.map +1 -1
  281. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  282. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  283. package/web/.next/server/chunks/ssr/_18886033._.js +1 -1
  284. package/web/.next/server/chunks/ssr/_18886033._.js.map +1 -1
  285. package/web/.next/server/chunks/ssr/_22e00a14._.js +1 -1
  286. package/web/.next/server/chunks/ssr/_22e00a14._.js.map +1 -1
  287. package/web/.next/server/chunks/ssr/_4a4709c5._.js +4 -0
  288. package/web/.next/server/chunks/ssr/_4a4709c5._.js.map +1 -0
  289. package/web/.next/server/chunks/ssr/_5119a3df._.js.map +1 -1
  290. package/web/.next/server/chunks/ssr/_560f2971._.js +3 -0
  291. package/web/.next/server/chunks/ssr/_560f2971._.js.map +1 -0
  292. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  293. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  294. package/web/.next/server/chunks/ssr/{_0a90d28b._.js → _5c76b6b5._.js} +2 -2
  295. package/web/.next/server/chunks/ssr/{_0a90d28b._.js.map → _5c76b6b5._.js.map} +1 -1
  296. package/web/.next/server/chunks/ssr/{_a65c54ca._.js → _5f099575._.js} +2 -2
  297. package/web/.next/server/chunks/ssr/{_a65c54ca._.js.map → _5f099575._.js.map} +1 -1
  298. package/web/.next/server/chunks/ssr/_a5a5901d._.js +1 -1
  299. package/web/.next/server/chunks/ssr/_a5a5901d._.js.map +1 -1
  300. package/web/.next/server/chunks/ssr/_a69efc34._.js +3 -0
  301. package/web/.next/server/chunks/ssr/{_4d49a312._.js.map → _a69efc34._.js.map} +1 -1
  302. package/web/.next/server/chunks/ssr/_ad09f271._.js +1 -1
  303. package/web/.next/server/chunks/ssr/_ad09f271._.js.map +1 -1
  304. package/web/.next/server/chunks/ssr/_c3f595c6._.js +1 -1
  305. package/web/.next/server/chunks/ssr/_c3f595c6._.js.map +1 -1
  306. package/web/.next/server/chunks/ssr/{_05dae8d0._.js → _cac860bb._.js} +2 -2
  307. package/web/.next/server/chunks/ssr/{_05dae8d0._.js.map → _cac860bb._.js.map} +1 -1
  308. package/web/.next/server/chunks/ssr/{_506a3bc3._.js → _cc936cdc._.js} +2 -2
  309. package/web/.next/server/chunks/ssr/_cc936cdc._.js.map +1 -0
  310. package/web/.next/server/chunks/ssr/_df737cce._.js +3 -0
  311. package/web/.next/server/chunks/ssr/_df737cce._.js.map +1 -0
  312. package/web/.next/server/chunks/ssr/_ea9e1556._.js +1 -1
  313. package/web/.next/server/chunks/ssr/_ea9e1556._.js.map +1 -1
  314. package/web/.next/server/chunks/ssr/_f1ba9be6._.js +2 -2
  315. package/web/.next/server/chunks/ssr/_f1ba9be6._.js.map +1 -1
  316. package/web/.next/server/chunks/ssr/_f33cd07e._.js +2 -2
  317. package/web/.next/server/chunks/ssr/_f33cd07e._.js.map +1 -1
  318. package/web/.next/server/chunks/ssr/_f535d854._.js +3 -0
  319. package/web/.next/server/chunks/ssr/_f535d854._.js.map +1 -0
  320. package/web/.next/server/chunks/ssr/_f79e241b._.js +3 -0
  321. package/web/.next/server/chunks/ssr/{_3bcda5d7._.js.map → _f79e241b._.js.map} +1 -1
  322. package/web/.next/server/chunks/ssr/_f8b45233._.js +1 -1
  323. package/web/.next/server/chunks/ssr/_f8b45233._.js.map +1 -1
  324. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  325. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  326. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  327. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  328. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  329. package/web/.next/server/chunks/ssr/src_presentation_web_app_features_feature-tree-page-client_tsx_34c5cbbf._.js +10 -0
  330. package/web/.next/server/chunks/ssr/src_presentation_web_app_features_feature-tree-page-client_tsx_34c5cbbf._.js.map +1 -0
  331. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  332. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  333. package/web/.next/server/chunks/ssr/src_presentation_web_components_common_page-header_index_ts_bdf4db0b._.js +3 -0
  334. package/web/.next/server/chunks/ssr/src_presentation_web_components_common_page-header_index_ts_bdf4db0b._.js.map +1 -0
  335. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  336. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  337. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
  338. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
  339. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
  340. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
  341. package/web/.next/server/middleware-build-manifest.js +3 -3
  342. package/web/.next/server/pages/500.html +2 -2
  343. package/web/.next/server/server-reference-manifest.js +1 -1
  344. package/web/.next/server/server-reference-manifest.json +273 -195
  345. package/web/.next/static/chunks/{8c96c49aad817377.js → 110a8827583ae5bb.js} +1 -1
  346. package/web/.next/static/chunks/20f7cc98a013b11c.js +1 -0
  347. package/web/.next/static/chunks/{0b732842dcca8b8d.js → 2615825711ac4e81.js} +3 -3
  348. package/web/.next/static/chunks/2f711373a93c5bc3.css +1 -0
  349. package/web/.next/static/chunks/{ee270565c4bdb7e1.js → 328874065794ea9f.js} +2 -2
  350. package/web/.next/static/chunks/3e393d6a78b2ade4.js +1 -0
  351. package/web/.next/static/chunks/{c60d6c2b2f7b0593.js → 4ac6f8c2bb39a6e4.js} +1 -1
  352. package/web/.next/static/chunks/{44275180f9c50dbb.js → 4ba01cd71cfa981b.js} +1 -1
  353. package/web/.next/static/chunks/4cec255f2754e5ec.js +1 -0
  354. package/web/.next/static/chunks/5d4a8552d5b6a4a8.js +1 -0
  355. package/web/.next/static/chunks/5ed47e998707b519.js +8 -0
  356. package/web/.next/static/chunks/612750555eb00a6c.js +5 -0
  357. package/web/.next/static/chunks/647140fe96a7c88a.js +1 -0
  358. package/web/.next/static/chunks/68127a29d87ba43a.js +1 -0
  359. package/web/.next/static/chunks/92c8c994d9ad0c81.js +1 -0
  360. package/web/.next/static/chunks/{18e8b12721a9316e.js → 9c4927d092875708.js} +1 -1
  361. package/web/.next/static/chunks/{1cd31898fb6e763a.js → 9e2dcc66aa1e3ee7.js} +1 -1
  362. package/web/.next/static/chunks/a262ab91e9288145.js +1 -0
  363. package/web/.next/static/chunks/a825ba5207a10722.js +7 -0
  364. package/web/.next/static/chunks/c3ef3b892f7794ec.js +1 -0
  365. package/web/.next/static/chunks/c4874941c93f4f77.js +1 -0
  366. package/web/.next/static/chunks/c5b3a8430ab26648.css +1 -0
  367. package/web/.next/static/chunks/dc134f3f58cdf850.js +5 -0
  368. package/web/.next/static/chunks/{43eca8783fbc9558.js → f0183c225f31840b.js} +1 -1
  369. package/web/.next/static/chunks/f998b42b5cddafd6.js +1 -0
  370. package/web/.next/static/chunks/{turbopack-432ef324fc27240c.js → turbopack-62782e656a49f322.js} +1 -1
  371. package/web/package.json +2 -0
  372. package/web/.next/server/chunks/ssr/[root-of-the-server]__1abe77bb._.js.map +0 -1
  373. package/web/.next/server/chunks/ssr/[root-of-the-server]__248ee887._.js.map +0 -1
  374. package/web/.next/server/chunks/ssr/[root-of-the-server]__563e4faf._.js +0 -4
  375. package/web/.next/server/chunks/ssr/[root-of-the-server]__563e4faf._.js.map +0 -1
  376. package/web/.next/server/chunks/ssr/[root-of-the-server]__7562afc6._.js.map +0 -1
  377. package/web/.next/server/chunks/ssr/[root-of-the-server]__821a11c1._.js +0 -4
  378. package/web/.next/server/chunks/ssr/[root-of-the-server]__821a11c1._.js.map +0 -1
  379. package/web/.next/server/chunks/ssr/[root-of-the-server]__98740ee4._.js +0 -4
  380. package/web/.next/server/chunks/ssr/[root-of-the-server]__98740ee4._.js.map +0 -1
  381. package/web/.next/server/chunks/ssr/[root-of-the-server]__b062b383._.js.map +0 -1
  382. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba9f9e11._.js +0 -4
  383. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba9f9e11._.js.map +0 -1
  384. package/web/.next/server/chunks/ssr/_3bcda5d7._.js +0 -3
  385. package/web/.next/server/chunks/ssr/_4d49a312._.js +0 -3
  386. package/web/.next/server/chunks/ssr/_506a3bc3._.js.map +0 -1
  387. package/web/.next/server/chunks/ssr/_9215e9ec._.js +0 -3
  388. package/web/.next/server/chunks/ssr/_9215e9ec._.js.map +0 -1
  389. package/web/.next/server/chunks/ssr/_b5fc318a._.js +0 -3
  390. package/web/.next/server/chunks/ssr/_b5fc318a._.js.map +0 -1
  391. package/web/.next/static/chunks/16eea21868510afd.js +0 -5
  392. package/web/.next/static/chunks/1e6609edc3367244.css +0 -1
  393. package/web/.next/static/chunks/345246551a96bdb2.js +0 -1
  394. package/web/.next/static/chunks/3deefc76ea55047c.js +0 -1
  395. package/web/.next/static/chunks/40b6bcf1a2de4a0f.js +0 -1
  396. package/web/.next/static/chunks/5fde2118133bc2bb.js +0 -1
  397. package/web/.next/static/chunks/65440524d7ee7d13.js +0 -1
  398. package/web/.next/static/chunks/672e3da3ad26005b.js +0 -1
  399. package/web/.next/static/chunks/9dbfc283af013ec1.js +0 -7
  400. package/web/.next/static/chunks/c0e13e7d1601bc5d.js +0 -1
  401. package/web/.next/static/chunks/c7e793951b20a67f.js +0 -1
  402. package/web/.next/static/chunks/d5dcf6575f5f9dd8.js +0 -5
  403. package/web/.next/static/chunks/dd52a7ae78af4f7f.js +0 -1
  404. /package/web/.next/static/{RH3NxvKaE9Efp8ZrIyCm5 → xAhPAfLhIR5KWVO7DbsJR}/_buildManifest.js +0 -0
  405. /package/web/.next/static/{RH3NxvKaE9Efp8ZrIyCm5 → xAhPAfLhIR5KWVO7DbsJR}/_clientMiddlewareManifest.json +0 -0
  406. /package/web/.next/static/{RH3NxvKaE9Efp8ZrIyCm5 → xAhPAfLhIR5KWVO7DbsJR}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "009c74d4fe7139ea81e4b7bf025d85b04e9369ad68": {
3
+ "003fc594955c2079964ad448b4da320bae13c60fb5": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
6
  "moduleId": 11372,
@@ -21,13 +21,13 @@
21
21
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
22
22
  },
23
23
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
24
- "moduleId": 36915,
24
+ "moduleId": 67370,
25
25
  "async": false,
26
26
  "exportedName": "getAllAgentModels",
27
27
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
28
28
  },
29
29
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
30
- "moduleId": 99644,
30
+ "moduleId": 44147,
31
31
  "async": false,
32
32
  "exportedName": "getAllAgentModels",
33
33
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -57,13 +57,13 @@
57
57
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
58
58
  },
59
59
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
60
- "moduleId": 84390,
60
+ "moduleId": 22039,
61
61
  "async": false,
62
62
  "exportedName": "getAllAgentModels",
63
63
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
64
64
  },
65
65
  "app/(dashboard)/feature/[featureId]/page": {
66
- "moduleId": 73293,
66
+ "moduleId": 82235,
67
67
  "async": false,
68
68
  "exportedName": "getAllAgentModels",
69
69
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -92,6 +92,12 @@
92
92
  "exportedName": "getAllAgentModels",
93
93
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
94
94
  },
95
+ "app/features/page": {
96
+ "moduleId": 88774,
97
+ "async": false,
98
+ "exportedName": "getAllAgentModels",
99
+ "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
100
+ },
95
101
  "app/settings/page": {
96
102
  "moduleId": 97423,
97
103
  "async": false,
@@ -133,6 +139,7 @@
133
139
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
134
140
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
135
141
  "app/_not-found/page": "action-browser",
142
+ "app/features/page": "action-browser",
136
143
  "app/settings/page": "action-browser",
137
144
  "app/skills/page": "action-browser",
138
145
  "app/tools/page": "action-browser",
@@ -141,7 +148,7 @@
141
148
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts",
142
149
  "exportedName": "getAllAgentModels"
143
150
  },
144
- "60a963d5ef44ff212cbe10d48bc881f32a603472da": {
151
+ "6009153b46e0397fb016b3d90d8b9c2fecc13ab2c7": {
145
152
  "workers": {
146
153
  "app/(dashboard)/@drawer/adopt/page": {
147
154
  "moduleId": 11372,
@@ -162,13 +169,13 @@
162
169
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
163
170
  },
164
171
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
165
- "moduleId": 36915,
172
+ "moduleId": 67370,
166
173
  "async": false,
167
174
  "exportedName": "updateAgentAndModel",
168
175
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
169
176
  },
170
177
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
171
- "moduleId": 99644,
178
+ "moduleId": 44147,
172
179
  "async": false,
173
180
  "exportedName": "updateAgentAndModel",
174
181
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -198,13 +205,13 @@
198
205
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
199
206
  },
200
207
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
201
- "moduleId": 84390,
208
+ "moduleId": 22039,
202
209
  "async": false,
203
210
  "exportedName": "updateAgentAndModel",
204
211
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
205
212
  },
206
213
  "app/(dashboard)/feature/[featureId]/page": {
207
- "moduleId": 73293,
214
+ "moduleId": 82235,
208
215
  "async": false,
209
216
  "exportedName": "updateAgentAndModel",
210
217
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -233,6 +240,12 @@
233
240
  "exportedName": "updateAgentAndModel",
234
241
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
235
242
  },
243
+ "app/features/page": {
244
+ "moduleId": 88774,
245
+ "async": false,
246
+ "exportedName": "updateAgentAndModel",
247
+ "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
248
+ },
236
249
  "app/settings/page": {
237
250
  "moduleId": 97423,
238
251
  "async": false,
@@ -274,6 +287,7 @@
274
287
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
275
288
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
276
289
  "app/_not-found/page": "action-browser",
290
+ "app/features/page": "action-browser",
277
291
  "app/settings/page": "action-browser",
278
292
  "app/skills/page": "action-browser",
279
293
  "app/tools/page": "action-browser",
@@ -282,7 +296,7 @@
282
296
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts",
283
297
  "exportedName": "updateAgentAndModel"
284
298
  },
285
- "002cc99e7936a11f0d917a2ae0ebc36c0617c491dc": {
299
+ "003fc591b52d6a4e07a9d6a2ef449d20d5c967ffc4": {
286
300
  "workers": {
287
301
  "app/(dashboard)/@drawer/adopt/page": {
288
302
  "moduleId": 11372,
@@ -303,13 +317,13 @@
303
317
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
304
318
  },
305
319
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
306
- "moduleId": 36915,
320
+ "moduleId": 67370,
307
321
  "async": false,
308
322
  "exportedName": "pickFolder",
309
323
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
310
324
  },
311
325
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
312
- "moduleId": 99644,
326
+ "moduleId": 44147,
313
327
  "async": false,
314
328
  "exportedName": "pickFolder",
315
329
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -339,13 +353,13 @@
339
353
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
340
354
  },
341
355
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
342
- "moduleId": 84390,
356
+ "moduleId": 22039,
343
357
  "async": false,
344
358
  "exportedName": "pickFolder",
345
359
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
346
360
  },
347
361
  "app/(dashboard)/feature/[featureId]/page": {
348
- "moduleId": 73293,
362
+ "moduleId": 82235,
349
363
  "async": false,
350
364
  "exportedName": "pickFolder",
351
365
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -374,6 +388,12 @@
374
388
  "exportedName": "pickFolder",
375
389
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
376
390
  },
391
+ "app/features/page": {
392
+ "moduleId": 88774,
393
+ "async": false,
394
+ "exportedName": "pickFolder",
395
+ "filename": "src/presentation/web/app/actions/pick-folder.ts"
396
+ },
377
397
  "app/settings/page": {
378
398
  "moduleId": 97423,
379
399
  "async": false,
@@ -415,6 +435,7 @@
415
435
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
416
436
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
417
437
  "app/_not-found/page": "action-browser",
438
+ "app/features/page": "action-browser",
418
439
  "app/settings/page": "action-browser",
419
440
  "app/skills/page": "action-browser",
420
441
  "app/tools/page": "action-browser",
@@ -423,7 +444,7 @@
423
444
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
424
445
  "exportedName": "pickFolder"
425
446
  },
426
- "40024929d5d4c0365a9bb2dadf15708a77771ad28b": {
447
+ "400a1146de6542e981abddab0540629cfc8de726cc": {
427
448
  "workers": {
428
449
  "app/(dashboard)/@drawer/adopt/page": {
429
450
  "moduleId": 11372,
@@ -444,13 +465,13 @@
444
465
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
445
466
  },
446
467
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
447
- "moduleId": 36915,
468
+ "moduleId": 67370,
448
469
  "async": false,
449
470
  "exportedName": "listGitHubRepositories",
450
471
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
451
472
  },
452
473
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
453
- "moduleId": 99644,
474
+ "moduleId": 44147,
454
475
  "async": false,
455
476
  "exportedName": "listGitHubRepositories",
456
477
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -480,13 +501,13 @@
480
501
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
481
502
  },
482
503
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
483
- "moduleId": 84390,
504
+ "moduleId": 22039,
484
505
  "async": false,
485
506
  "exportedName": "listGitHubRepositories",
486
507
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
487
508
  },
488
509
  "app/(dashboard)/feature/[featureId]/page": {
489
- "moduleId": 73293,
510
+ "moduleId": 82235,
490
511
  "async": false,
491
512
  "exportedName": "listGitHubRepositories",
492
513
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -515,6 +536,12 @@
515
536
  "exportedName": "listGitHubRepositories",
516
537
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
517
538
  },
539
+ "app/features/page": {
540
+ "moduleId": 88774,
541
+ "async": false,
542
+ "exportedName": "listGitHubRepositories",
543
+ "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
544
+ },
518
545
  "app/settings/page": {
519
546
  "moduleId": 97423,
520
547
  "async": false,
@@ -556,6 +583,7 @@
556
583
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
557
584
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
558
585
  "app/_not-found/page": "action-browser",
586
+ "app/features/page": "action-browser",
559
587
  "app/settings/page": "action-browser",
560
588
  "app/skills/page": "action-browser",
561
589
  "app/tools/page": "action-browser",
@@ -564,7 +592,7 @@
564
592
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts",
565
593
  "exportedName": "listGitHubRepositories"
566
594
  },
567
- "00de6986c900e01f8420c57cc472222c4e83dd57a8": {
595
+ "003061ab331bbd363ff088fc832dd078a2c666dc02": {
568
596
  "workers": {
569
597
  "app/(dashboard)/@drawer/adopt/page": {
570
598
  "moduleId": 11372,
@@ -585,13 +613,13 @@
585
613
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
586
614
  },
587
615
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
588
- "moduleId": 36915,
616
+ "moduleId": 67370,
589
617
  "async": false,
590
618
  "exportedName": "listGitHubOrganizations",
591
619
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
592
620
  },
593
621
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
594
- "moduleId": 99644,
622
+ "moduleId": 44147,
595
623
  "async": false,
596
624
  "exportedName": "listGitHubOrganizations",
597
625
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -621,13 +649,13 @@
621
649
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
622
650
  },
623
651
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
624
- "moduleId": 84390,
652
+ "moduleId": 22039,
625
653
  "async": false,
626
654
  "exportedName": "listGitHubOrganizations",
627
655
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
628
656
  },
629
657
  "app/(dashboard)/feature/[featureId]/page": {
630
- "moduleId": 73293,
658
+ "moduleId": 82235,
631
659
  "async": false,
632
660
  "exportedName": "listGitHubOrganizations",
633
661
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -656,6 +684,12 @@
656
684
  "exportedName": "listGitHubOrganizations",
657
685
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
658
686
  },
687
+ "app/features/page": {
688
+ "moduleId": 88774,
689
+ "async": false,
690
+ "exportedName": "listGitHubOrganizations",
691
+ "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
692
+ },
659
693
  "app/settings/page": {
660
694
  "moduleId": 97423,
661
695
  "async": false,
@@ -697,6 +731,7 @@
697
731
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
698
732
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
699
733
  "app/_not-found/page": "action-browser",
734
+ "app/features/page": "action-browser",
700
735
  "app/settings/page": "action-browser",
701
736
  "app/skills/page": "action-browser",
702
737
  "app/tools/page": "action-browser",
@@ -705,7 +740,7 @@
705
740
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts",
706
741
  "exportedName": "listGitHubOrganizations"
707
742
  },
708
- "4038145bac460b7bf86b59d670e1cabbe64e3610d4": {
743
+ "405b635c661c8719d91e807f8bc814ad9ee6881aaa": {
709
744
  "workers": {
710
745
  "app/(dashboard)/@drawer/adopt/page": {
711
746
  "moduleId": 11372,
@@ -726,13 +761,13 @@
726
761
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
727
762
  },
728
763
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
729
- "moduleId": 36915,
764
+ "moduleId": 67370,
730
765
  "async": false,
731
766
  "exportedName": "importGitHubRepository",
732
767
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
733
768
  },
734
769
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
735
- "moduleId": 99644,
770
+ "moduleId": 44147,
736
771
  "async": false,
737
772
  "exportedName": "importGitHubRepository",
738
773
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -762,13 +797,13 @@
762
797
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
763
798
  },
764
799
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
765
- "moduleId": 84390,
800
+ "moduleId": 22039,
766
801
  "async": false,
767
802
  "exportedName": "importGitHubRepository",
768
803
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
769
804
  },
770
805
  "app/(dashboard)/feature/[featureId]/page": {
771
- "moduleId": 73293,
806
+ "moduleId": 82235,
772
807
  "async": false,
773
808
  "exportedName": "importGitHubRepository",
774
809
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -797,6 +832,12 @@
797
832
  "exportedName": "importGitHubRepository",
798
833
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
799
834
  },
835
+ "app/features/page": {
836
+ "moduleId": 88774,
837
+ "async": false,
838
+ "exportedName": "importGitHubRepository",
839
+ "filename": "src/presentation/web/app/actions/import-github-repository.ts"
840
+ },
800
841
  "app/settings/page": {
801
842
  "moduleId": 97423,
802
843
  "async": false,
@@ -838,6 +879,7 @@
838
879
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
839
880
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
840
881
  "app/_not-found/page": "action-browser",
882
+ "app/features/page": "action-browser",
841
883
  "app/settings/page": "action-browser",
842
884
  "app/skills/page": "action-browser",
843
885
  "app/tools/page": "action-browser",
@@ -846,7 +888,7 @@
846
888
  "filename": "src/presentation/web/app/actions/import-github-repository.ts",
847
889
  "exportedName": "importGitHubRepository"
848
890
  },
849
- "404c512ce26a492c56e2df15252ec3715d91a91048": {
891
+ "40aed0d4860900f0b0a70b2875ef21b685a17f03bc": {
850
892
  "workers": {
851
893
  "app/(dashboard)/@drawer/adopt/page": {
852
894
  "moduleId": 11372,
@@ -867,13 +909,13 @@
867
909
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
868
910
  },
869
911
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
870
- "moduleId": 36915,
912
+ "moduleId": 67370,
871
913
  "async": false,
872
914
  "exportedName": "deployFeature",
873
915
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
874
916
  },
875
917
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
876
- "moduleId": 99644,
918
+ "moduleId": 44147,
877
919
  "async": false,
878
920
  "exportedName": "deployFeature",
879
921
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -903,13 +945,13 @@
903
945
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
904
946
  },
905
947
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
906
- "moduleId": 84390,
948
+ "moduleId": 22039,
907
949
  "async": false,
908
950
  "exportedName": "deployFeature",
909
951
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
910
952
  },
911
953
  "app/(dashboard)/feature/[featureId]/page": {
912
- "moduleId": 73293,
954
+ "moduleId": 82235,
913
955
  "async": false,
914
956
  "exportedName": "deployFeature",
915
957
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -966,7 +1008,7 @@
966
1008
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
967
1009
  "exportedName": "deployFeature"
968
1010
  },
969
- "404a59f44f37132aef8dc564ce415a08942a43a643": {
1011
+ "406af9d33478b636d39811a531ec245370e36ca3ff": {
970
1012
  "workers": {
971
1013
  "app/(dashboard)/@drawer/adopt/page": {
972
1014
  "moduleId": 11372,
@@ -987,13 +1029,13 @@
987
1029
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
988
1030
  },
989
1031
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
990
- "moduleId": 36915,
1032
+ "moduleId": 67370,
991
1033
  "async": false,
992
1034
  "exportedName": "deployRepository",
993
1035
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
994
1036
  },
995
1037
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
996
- "moduleId": 99644,
1038
+ "moduleId": 44147,
997
1039
  "async": false,
998
1040
  "exportedName": "deployRepository",
999
1041
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -1023,13 +1065,13 @@
1023
1065
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
1024
1066
  },
1025
1067
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1026
- "moduleId": 84390,
1068
+ "moduleId": 22039,
1027
1069
  "async": false,
1028
1070
  "exportedName": "deployRepository",
1029
1071
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
1030
1072
  },
1031
1073
  "app/(dashboard)/feature/[featureId]/page": {
1032
- "moduleId": 73293,
1074
+ "moduleId": 82235,
1033
1075
  "async": false,
1034
1076
  "exportedName": "deployRepository",
1035
1077
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -1086,7 +1128,7 @@
1086
1128
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
1087
1129
  "exportedName": "deployRepository"
1088
1130
  },
1089
- "40affd15961f84197b0fbcd8522db31fb1ea249cb4": {
1131
+ "403da0391784578733d904f7791d3829b68e17472b": {
1090
1132
  "workers": {
1091
1133
  "app/(dashboard)/@drawer/adopt/page": {
1092
1134
  "moduleId": 11372,
@@ -1107,13 +1149,13 @@
1107
1149
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1108
1150
  },
1109
1151
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
1110
- "moduleId": 36915,
1152
+ "moduleId": 67370,
1111
1153
  "async": false,
1112
1154
  "exportedName": "stopDeployment",
1113
1155
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1114
1156
  },
1115
1157
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1116
- "moduleId": 99644,
1158
+ "moduleId": 44147,
1117
1159
  "async": false,
1118
1160
  "exportedName": "stopDeployment",
1119
1161
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -1143,13 +1185,13 @@
1143
1185
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1144
1186
  },
1145
1187
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1146
- "moduleId": 84390,
1188
+ "moduleId": 22039,
1147
1189
  "async": false,
1148
1190
  "exportedName": "stopDeployment",
1149
1191
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1150
1192
  },
1151
1193
  "app/(dashboard)/feature/[featureId]/page": {
1152
- "moduleId": 73293,
1194
+ "moduleId": 82235,
1153
1195
  "async": false,
1154
1196
  "exportedName": "stopDeployment",
1155
1197
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -1206,7 +1248,7 @@
1206
1248
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
1207
1249
  "exportedName": "stopDeployment"
1208
1250
  },
1209
- "40d72ff4008b066200aedcf068273497a412004591": {
1251
+ "4075619b1e4272e8bafa5d2950e49dfce9d01d234d": {
1210
1252
  "workers": {
1211
1253
  "app/(dashboard)/@drawer/adopt/page": {
1212
1254
  "moduleId": 11372,
@@ -1227,13 +1269,13 @@
1227
1269
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1228
1270
  },
1229
1271
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
1230
- "moduleId": 36915,
1272
+ "moduleId": 67370,
1231
1273
  "async": false,
1232
1274
  "exportedName": "getDeploymentStatus",
1233
1275
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1234
1276
  },
1235
1277
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1236
- "moduleId": 99644,
1278
+ "moduleId": 44147,
1237
1279
  "async": false,
1238
1280
  "exportedName": "getDeploymentStatus",
1239
1281
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -1263,13 +1305,13 @@
1263
1305
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1264
1306
  },
1265
1307
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1266
- "moduleId": 84390,
1308
+ "moduleId": 22039,
1267
1309
  "async": false,
1268
1310
  "exportedName": "getDeploymentStatus",
1269
1311
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1270
1312
  },
1271
1313
  "app/(dashboard)/feature/[featureId]/page": {
1272
- "moduleId": 73293,
1314
+ "moduleId": 82235,
1273
1315
  "async": false,
1274
1316
  "exportedName": "getDeploymentStatus",
1275
1317
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -1326,7 +1368,7 @@
1326
1368
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
1327
1369
  "exportedName": "getDeploymentStatus"
1328
1370
  },
1329
- "405b79412d6f487aebaba9d1615ebe124475c781d0": {
1371
+ "401bacb63aee21201cd3f550550f502e5a966fd091": {
1330
1372
  "workers": {
1331
1373
  "app/(dashboard)/@drawer/adopt/page": {
1332
1374
  "moduleId": 11372,
@@ -1347,13 +1389,13 @@
1347
1389
  "filename": "src/presentation/web/app/actions/open-ide.ts"
1348
1390
  },
1349
1391
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
1350
- "moduleId": 36915,
1392
+ "moduleId": 67370,
1351
1393
  "async": false,
1352
1394
  "exportedName": "openIde",
1353
1395
  "filename": "src/presentation/web/app/actions/open-ide.ts"
1354
1396
  },
1355
1397
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1356
- "moduleId": 99644,
1398
+ "moduleId": 44147,
1357
1399
  "async": false,
1358
1400
  "exportedName": "openIde",
1359
1401
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -1383,13 +1425,13 @@
1383
1425
  "filename": "src/presentation/web/app/actions/open-ide.ts"
1384
1426
  },
1385
1427
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1386
- "moduleId": 84390,
1428
+ "moduleId": 22039,
1387
1429
  "async": false,
1388
1430
  "exportedName": "openIde",
1389
1431
  "filename": "src/presentation/web/app/actions/open-ide.ts"
1390
1432
  },
1391
1433
  "app/(dashboard)/feature/[featureId]/page": {
1392
- "moduleId": 73293,
1434
+ "moduleId": 82235,
1393
1435
  "async": false,
1394
1436
  "exportedName": "openIde",
1395
1437
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -1432,7 +1474,7 @@
1432
1474
  "filename": "src/presentation/web/app/actions/open-ide.ts",
1433
1475
  "exportedName": "openIde"
1434
1476
  },
1435
- "408406c5aa4f9d0111a9c6bf9098a3438da0b43b1d": {
1477
+ "40f2198a5591ee22262899ee8d7bcf15c6254947b5": {
1436
1478
  "workers": {
1437
1479
  "app/(dashboard)/@drawer/adopt/page": {
1438
1480
  "moduleId": 11372,
@@ -1453,13 +1495,13 @@
1453
1495
  "filename": "src/presentation/web/app/actions/open-shell.ts"
1454
1496
  },
1455
1497
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
1456
- "moduleId": 36915,
1498
+ "moduleId": 67370,
1457
1499
  "async": false,
1458
1500
  "exportedName": "openShell",
1459
1501
  "filename": "src/presentation/web/app/actions/open-shell.ts"
1460
1502
  },
1461
1503
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1462
- "moduleId": 99644,
1504
+ "moduleId": 44147,
1463
1505
  "async": false,
1464
1506
  "exportedName": "openShell",
1465
1507
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -1489,13 +1531,13 @@
1489
1531
  "filename": "src/presentation/web/app/actions/open-shell.ts"
1490
1532
  },
1491
1533
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1492
- "moduleId": 84390,
1534
+ "moduleId": 22039,
1493
1535
  "async": false,
1494
1536
  "exportedName": "openShell",
1495
1537
  "filename": "src/presentation/web/app/actions/open-shell.ts"
1496
1538
  },
1497
1539
  "app/(dashboard)/feature/[featureId]/page": {
1498
- "moduleId": 73293,
1540
+ "moduleId": 82235,
1499
1541
  "async": false,
1500
1542
  "exportedName": "openShell",
1501
1543
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -1538,7 +1580,7 @@
1538
1580
  "filename": "src/presentation/web/app/actions/open-shell.ts",
1539
1581
  "exportedName": "openShell"
1540
1582
  },
1541
- "40af2b7e93664554f11acda059617b8df9f462b697": {
1583
+ "4074dd1a6801255bee5d5b5c53b754b36f0035acce": {
1542
1584
  "workers": {
1543
1585
  "app/(dashboard)/@drawer/adopt/page": {
1544
1586
  "moduleId": 11372,
@@ -1559,13 +1601,13 @@
1559
1601
  "filename": "src/presentation/web/app/actions/open-folder.ts"
1560
1602
  },
1561
1603
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
1562
- "moduleId": 36915,
1604
+ "moduleId": 67370,
1563
1605
  "async": false,
1564
1606
  "exportedName": "openFolder",
1565
1607
  "filename": "src/presentation/web/app/actions/open-folder.ts"
1566
1608
  },
1567
1609
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1568
- "moduleId": 99644,
1610
+ "moduleId": 44147,
1569
1611
  "async": false,
1570
1612
  "exportedName": "openFolder",
1571
1613
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -1595,13 +1637,13 @@
1595
1637
  "filename": "src/presentation/web/app/actions/open-folder.ts"
1596
1638
  },
1597
1639
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1598
- "moduleId": 84390,
1640
+ "moduleId": 22039,
1599
1641
  "async": false,
1600
1642
  "exportedName": "openFolder",
1601
1643
  "filename": "src/presentation/web/app/actions/open-folder.ts"
1602
1644
  },
1603
1645
  "app/(dashboard)/feature/[featureId]/page": {
1604
- "moduleId": 73293,
1646
+ "moduleId": 82235,
1605
1647
  "async": false,
1606
1648
  "exportedName": "openFolder",
1607
1649
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -1644,7 +1686,7 @@
1644
1686
  "filename": "src/presentation/web/app/actions/open-folder.ts",
1645
1687
  "exportedName": "openFolder"
1646
1688
  },
1647
- "407d5ac17e89a1663be7cc838ba77a117b7de5be35": {
1689
+ "40308e92e220186a00bfd937bd494d8694e69dbbda": {
1648
1690
  "workers": {
1649
1691
  "app/(dashboard)/@drawer/adopt/page": {
1650
1692
  "moduleId": 11372,
@@ -1665,13 +1707,13 @@
1665
1707
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
1666
1708
  },
1667
1709
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
1668
- "moduleId": 36915,
1710
+ "moduleId": 67370,
1669
1711
  "async": false,
1670
1712
  "exportedName": "syncRepository",
1671
1713
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
1672
1714
  },
1673
1715
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1674
- "moduleId": 99644,
1716
+ "moduleId": 44147,
1675
1717
  "async": false,
1676
1718
  "exportedName": "syncRepository",
1677
1719
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
@@ -1701,13 +1743,13 @@
1701
1743
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
1702
1744
  },
1703
1745
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1704
- "moduleId": 84390,
1746
+ "moduleId": 22039,
1705
1747
  "async": false,
1706
1748
  "exportedName": "syncRepository",
1707
1749
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
1708
1750
  },
1709
1751
  "app/(dashboard)/feature/[featureId]/page": {
1710
- "moduleId": 73293,
1752
+ "moduleId": 82235,
1711
1753
  "async": false,
1712
1754
  "exportedName": "syncRepository",
1713
1755
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
@@ -1750,7 +1792,7 @@
1750
1792
  "filename": "src/presentation/web/app/actions/sync-repository.ts",
1751
1793
  "exportedName": "syncRepository"
1752
1794
  },
1753
- "4009fdd44647847ceb6b4c23590768369f29176ec3": {
1795
+ "4097b9d59df9d989e9a2d4112d86e70a2e1b192b66": {
1754
1796
  "workers": {
1755
1797
  "app/(dashboard)/@drawer/adopt/page": {
1756
1798
  "moduleId": 11372,
@@ -1771,13 +1813,13 @@
1771
1813
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1772
1814
  },
1773
1815
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
1774
- "moduleId": 36915,
1816
+ "moduleId": 67370,
1775
1817
  "async": false,
1776
1818
  "exportedName": "getDeploymentLogs",
1777
1819
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1778
1820
  },
1779
1821
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1780
- "moduleId": 99644,
1822
+ "moduleId": 44147,
1781
1823
  "async": false,
1782
1824
  "exportedName": "getDeploymentLogs",
1783
1825
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -1807,13 +1849,13 @@
1807
1849
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1808
1850
  },
1809
1851
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1810
- "moduleId": 84390,
1852
+ "moduleId": 22039,
1811
1853
  "async": false,
1812
1854
  "exportedName": "getDeploymentLogs",
1813
1855
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1814
1856
  },
1815
1857
  "app/(dashboard)/feature/[featureId]/page": {
1816
- "moduleId": 73293,
1858
+ "moduleId": 82235,
1817
1859
  "async": false,
1818
1860
  "exportedName": "getDeploymentLogs",
1819
1861
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -1870,7 +1912,7 @@
1870
1912
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
1871
1913
  "exportedName": "getDeploymentLogs"
1872
1914
  },
1873
- "008326672b3c7166e6aff06b2b8b729d61b909b1c2": {
1915
+ "005b3567d2d588acfa7648fac71b3e7e9f62a0702f": {
1874
1916
  "workers": {
1875
1917
  "app/(dashboard)/@drawer/adopt/page": {
1876
1918
  "moduleId": 11372,
@@ -1891,13 +1933,13 @@
1891
1933
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
1892
1934
  },
1893
1935
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
1894
- "moduleId": 36915,
1936
+ "moduleId": 67370,
1895
1937
  "async": false,
1896
1938
  "exportedName": "isAgentSetupComplete",
1897
1939
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
1898
1940
  },
1899
1941
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1900
- "moduleId": 99644,
1942
+ "moduleId": 44147,
1901
1943
  "async": false,
1902
1944
  "exportedName": "isAgentSetupComplete",
1903
1945
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -1927,13 +1969,13 @@
1927
1969
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
1928
1970
  },
1929
1971
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
1930
- "moduleId": 84390,
1972
+ "moduleId": 22039,
1931
1973
  "async": false,
1932
1974
  "exportedName": "isAgentSetupComplete",
1933
1975
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
1934
1976
  },
1935
1977
  "app/(dashboard)/feature/[featureId]/page": {
1936
- "moduleId": 73293,
1978
+ "moduleId": 82235,
1937
1979
  "async": false,
1938
1980
  "exportedName": "isAgentSetupComplete",
1939
1981
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -1976,7 +2018,7 @@
1976
2018
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts",
1977
2019
  "exportedName": "isAgentSetupComplete"
1978
2020
  },
1979
- "0027850ee1fc156c0beeb0142b46ed4cbf401e7b06": {
2021
+ "00717272899534b58cb1a23b1ef34e12976ef36d8b": {
1980
2022
  "workers": {
1981
2023
  "app/(dashboard)/@drawer/adopt/page": {
1982
2024
  "moduleId": 11372,
@@ -1997,13 +2039,13 @@
1997
2039
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
1998
2040
  },
1999
2041
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2000
- "moduleId": 36915,
2042
+ "moduleId": 67370,
2001
2043
  "async": false,
2002
2044
  "exportedName": "checkAgentAuth",
2003
2045
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
2004
2046
  },
2005
2047
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2006
- "moduleId": 99644,
2048
+ "moduleId": 44147,
2007
2049
  "async": false,
2008
2050
  "exportedName": "checkAgentAuth",
2009
2051
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -2033,13 +2075,13 @@
2033
2075
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
2034
2076
  },
2035
2077
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2036
- "moduleId": 84390,
2078
+ "moduleId": 22039,
2037
2079
  "async": false,
2038
2080
  "exportedName": "checkAgentAuth",
2039
2081
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
2040
2082
  },
2041
2083
  "app/(dashboard)/feature/[featureId]/page": {
2042
- "moduleId": 73293,
2084
+ "moduleId": 82235,
2043
2085
  "async": false,
2044
2086
  "exportedName": "checkAgentAuth",
2045
2087
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -2082,7 +2124,7 @@
2082
2124
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts",
2083
2125
  "exportedName": "checkAgentAuth"
2084
2126
  },
2085
- "006a0ff0d7f0a2b154dae1bb50be61286ace4c9bcc": {
2127
+ "009748f4083c45ac72ee29a6f08cb2c8576356034a": {
2086
2128
  "workers": {
2087
2129
  "app/(dashboard)/@drawer/adopt/page": {
2088
2130
  "moduleId": 11372,
@@ -2103,13 +2145,13 @@
2103
2145
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
2104
2146
  },
2105
2147
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2106
- "moduleId": 36915,
2148
+ "moduleId": 67370,
2107
2149
  "async": false,
2108
2150
  "exportedName": "checkToolStatus",
2109
2151
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
2110
2152
  },
2111
2153
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2112
- "moduleId": 99644,
2154
+ "moduleId": 44147,
2113
2155
  "async": false,
2114
2156
  "exportedName": "checkToolStatus",
2115
2157
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -2139,13 +2181,13 @@
2139
2181
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
2140
2182
  },
2141
2183
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2142
- "moduleId": 84390,
2184
+ "moduleId": 22039,
2143
2185
  "async": false,
2144
2186
  "exportedName": "checkToolStatus",
2145
2187
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
2146
2188
  },
2147
2189
  "app/(dashboard)/feature/[featureId]/page": {
2148
- "moduleId": 73293,
2190
+ "moduleId": 82235,
2149
2191
  "async": false,
2150
2192
  "exportedName": "checkToolStatus",
2151
2193
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -2188,7 +2230,7 @@
2188
2230
  "filename": "src/presentation/web/app/actions/check-tool-status.ts",
2189
2231
  "exportedName": "checkToolStatus"
2190
2232
  },
2191
- "403d6d80ed3919f27cb4844ee7d2fa51bc40dbfa69": {
2233
+ "407267b90519a388ec2217c4410a60ff2d47c01cd5": {
2192
2234
  "workers": {
2193
2235
  "app/(dashboard)/@drawer/adopt/page": {
2194
2236
  "moduleId": 11372,
@@ -2209,13 +2251,13 @@
2209
2251
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
2210
2252
  },
2211
2253
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2212
- "moduleId": 36915,
2254
+ "moduleId": 67370,
2213
2255
  "async": false,
2214
2256
  "exportedName": "archiveFeature",
2215
2257
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
2216
2258
  },
2217
2259
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2218
- "moduleId": 99644,
2260
+ "moduleId": 44147,
2219
2261
  "async": false,
2220
2262
  "exportedName": "archiveFeature",
2221
2263
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
@@ -2245,13 +2287,13 @@
2245
2287
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
2246
2288
  },
2247
2289
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2248
- "moduleId": 84390,
2290
+ "moduleId": 22039,
2249
2291
  "async": false,
2250
2292
  "exportedName": "archiveFeature",
2251
2293
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
2252
2294
  },
2253
2295
  "app/(dashboard)/feature/[featureId]/page": {
2254
- "moduleId": 73293,
2296
+ "moduleId": 82235,
2255
2297
  "async": false,
2256
2298
  "exportedName": "archiveFeature",
2257
2299
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
@@ -2294,7 +2336,7 @@
2294
2336
  "filename": "src/presentation/web/app/actions/archive-feature.ts",
2295
2337
  "exportedName": "archiveFeature"
2296
2338
  },
2297
- "7849b259428b836a447342b408c82b8da848c00d0a": {
2339
+ "786b0385de8f9c0af3e3fd3495b1f540119228b003": {
2298
2340
  "workers": {
2299
2341
  "app/(dashboard)/@drawer/adopt/page": {
2300
2342
  "moduleId": 11372,
@@ -2315,13 +2357,13 @@
2315
2357
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
2316
2358
  },
2317
2359
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2318
- "moduleId": 36915,
2360
+ "moduleId": 67370,
2319
2361
  "async": false,
2320
2362
  "exportedName": "deleteFeature",
2321
2363
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
2322
2364
  },
2323
2365
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2324
- "moduleId": 99644,
2366
+ "moduleId": 44147,
2325
2367
  "async": false,
2326
2368
  "exportedName": "deleteFeature",
2327
2369
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -2351,13 +2393,13 @@
2351
2393
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
2352
2394
  },
2353
2395
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2354
- "moduleId": 84390,
2396
+ "moduleId": 22039,
2355
2397
  "async": false,
2356
2398
  "exportedName": "deleteFeature",
2357
2399
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
2358
2400
  },
2359
2401
  "app/(dashboard)/feature/[featureId]/page": {
2360
- "moduleId": 73293,
2402
+ "moduleId": 82235,
2361
2403
  "async": false,
2362
2404
  "exportedName": "deleteFeature",
2363
2405
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -2400,7 +2442,7 @@
2400
2442
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
2401
2443
  "exportedName": "deleteFeature"
2402
2444
  },
2403
- "40894cc410889bf332212bc290ddf570f8b324e434": {
2445
+ "40dbd187288e38db7517e595d3436bc7cfe397bb47": {
2404
2446
  "workers": {
2405
2447
  "app/(dashboard)/@drawer/adopt/page": {
2406
2448
  "moduleId": 11372,
@@ -2421,13 +2463,13 @@
2421
2463
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
2422
2464
  },
2423
2465
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2424
- "moduleId": 36915,
2466
+ "moduleId": 67370,
2425
2467
  "async": false,
2426
2468
  "exportedName": "resumeFeature",
2427
2469
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
2428
2470
  },
2429
2471
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2430
- "moduleId": 99644,
2472
+ "moduleId": 44147,
2431
2473
  "async": false,
2432
2474
  "exportedName": "resumeFeature",
2433
2475
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -2457,13 +2499,13 @@
2457
2499
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
2458
2500
  },
2459
2501
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2460
- "moduleId": 84390,
2502
+ "moduleId": 22039,
2461
2503
  "async": false,
2462
2504
  "exportedName": "resumeFeature",
2463
2505
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
2464
2506
  },
2465
2507
  "app/(dashboard)/feature/[featureId]/page": {
2466
- "moduleId": 73293,
2508
+ "moduleId": 82235,
2467
2509
  "async": false,
2468
2510
  "exportedName": "resumeFeature",
2469
2511
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -2506,7 +2548,7 @@
2506
2548
  "filename": "src/presentation/web/app/actions/resume-feature.ts",
2507
2549
  "exportedName": "resumeFeature"
2508
2550
  },
2509
- "40b4a3c9dc0debc7762ef41d6b25c37837243667d2": {
2551
+ "401f47d1ef09206af44b3f293fb7ac260fbb2cbeb6": {
2510
2552
  "workers": {
2511
2553
  "app/(dashboard)/@drawer/adopt/page": {
2512
2554
  "moduleId": 11372,
@@ -2527,13 +2569,13 @@
2527
2569
  "filename": "src/presentation/web/app/actions/start-feature.ts"
2528
2570
  },
2529
2571
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2530
- "moduleId": 36915,
2572
+ "moduleId": 67370,
2531
2573
  "async": false,
2532
2574
  "exportedName": "startFeature",
2533
2575
  "filename": "src/presentation/web/app/actions/start-feature.ts"
2534
2576
  },
2535
2577
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2536
- "moduleId": 99644,
2578
+ "moduleId": 44147,
2537
2579
  "async": false,
2538
2580
  "exportedName": "startFeature",
2539
2581
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -2563,13 +2605,13 @@
2563
2605
  "filename": "src/presentation/web/app/actions/start-feature.ts"
2564
2606
  },
2565
2607
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2566
- "moduleId": 84390,
2608
+ "moduleId": 22039,
2567
2609
  "async": false,
2568
2610
  "exportedName": "startFeature",
2569
2611
  "filename": "src/presentation/web/app/actions/start-feature.ts"
2570
2612
  },
2571
2613
  "app/(dashboard)/feature/[featureId]/page": {
2572
- "moduleId": 73293,
2614
+ "moduleId": 82235,
2573
2615
  "async": false,
2574
2616
  "exportedName": "startFeature",
2575
2617
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -2612,7 +2654,7 @@
2612
2654
  "filename": "src/presentation/web/app/actions/start-feature.ts",
2613
2655
  "exportedName": "startFeature"
2614
2656
  },
2615
- "40608505dd05dc2d90935d1409a9005e7f90ac48f4": {
2657
+ "40921385f29bf089d42d4f2195fdcbb254d53b0a39": {
2616
2658
  "workers": {
2617
2659
  "app/(dashboard)/@drawer/adopt/page": {
2618
2660
  "moduleId": 11372,
@@ -2633,13 +2675,13 @@
2633
2675
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
2634
2676
  },
2635
2677
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2636
- "moduleId": 36915,
2678
+ "moduleId": 67370,
2637
2679
  "async": false,
2638
2680
  "exportedName": "stopFeature",
2639
2681
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
2640
2682
  },
2641
2683
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2642
- "moduleId": 99644,
2684
+ "moduleId": 44147,
2643
2685
  "async": false,
2644
2686
  "exportedName": "stopFeature",
2645
2687
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -2669,13 +2711,13 @@
2669
2711
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
2670
2712
  },
2671
2713
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2672
- "moduleId": 84390,
2714
+ "moduleId": 22039,
2673
2715
  "async": false,
2674
2716
  "exportedName": "stopFeature",
2675
2717
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
2676
2718
  },
2677
2719
  "app/(dashboard)/feature/[featureId]/page": {
2678
- "moduleId": 73293,
2720
+ "moduleId": 82235,
2679
2721
  "async": false,
2680
2722
  "exportedName": "stopFeature",
2681
2723
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -2718,7 +2760,7 @@
2718
2760
  "filename": "src/presentation/web/app/actions/stop-feature.ts",
2719
2761
  "exportedName": "stopFeature"
2720
2762
  },
2721
- "4074563d8c91d2892ba3cca61e019480ebbad58764": {
2763
+ "406b019806d683901193a85a76ecf19a0bfe479bef": {
2722
2764
  "workers": {
2723
2765
  "app/(dashboard)/@drawer/adopt/page": {
2724
2766
  "moduleId": 11372,
@@ -2739,13 +2781,13 @@
2739
2781
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
2740
2782
  },
2741
2783
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2742
- "moduleId": 36915,
2784
+ "moduleId": 67370,
2743
2785
  "async": false,
2744
2786
  "exportedName": "unarchiveFeature",
2745
2787
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
2746
2788
  },
2747
2789
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2748
- "moduleId": 99644,
2790
+ "moduleId": 44147,
2749
2791
  "async": false,
2750
2792
  "exportedName": "unarchiveFeature",
2751
2793
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
@@ -2775,13 +2817,13 @@
2775
2817
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
2776
2818
  },
2777
2819
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2778
- "moduleId": 84390,
2820
+ "moduleId": 22039,
2779
2821
  "async": false,
2780
2822
  "exportedName": "unarchiveFeature",
2781
2823
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
2782
2824
  },
2783
2825
  "app/(dashboard)/feature/[featureId]/page": {
2784
- "moduleId": 73293,
2826
+ "moduleId": 82235,
2785
2827
  "async": false,
2786
2828
  "exportedName": "unarchiveFeature",
2787
2829
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
@@ -2824,7 +2866,7 @@
2824
2866
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts",
2825
2867
  "exportedName": "unarchiveFeature"
2826
2868
  },
2827
- "4024a3de7d4bca433338dbc92a0815bbdfaf74c1e7": {
2869
+ "40f01bac999c0509848ea3eb631ea2af3a2ebf20a5": {
2828
2870
  "workers": {
2829
2871
  "app/(dashboard)/@drawer/adopt/page": {
2830
2872
  "moduleId": 11372,
@@ -2845,13 +2887,13 @@
2845
2887
  "filename": "src/presentation/web/app/actions/add-repository.ts"
2846
2888
  },
2847
2889
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2848
- "moduleId": 36915,
2890
+ "moduleId": 67370,
2849
2891
  "async": false,
2850
2892
  "exportedName": "addRepository",
2851
2893
  "filename": "src/presentation/web/app/actions/add-repository.ts"
2852
2894
  },
2853
2895
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2854
- "moduleId": 99644,
2896
+ "moduleId": 44147,
2855
2897
  "async": false,
2856
2898
  "exportedName": "addRepository",
2857
2899
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -2881,13 +2923,13 @@
2881
2923
  "filename": "src/presentation/web/app/actions/add-repository.ts"
2882
2924
  },
2883
2925
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2884
- "moduleId": 84390,
2926
+ "moduleId": 22039,
2885
2927
  "async": false,
2886
2928
  "exportedName": "addRepository",
2887
2929
  "filename": "src/presentation/web/app/actions/add-repository.ts"
2888
2930
  },
2889
2931
  "app/(dashboard)/feature/[featureId]/page": {
2890
- "moduleId": 73293,
2932
+ "moduleId": 82235,
2891
2933
  "async": false,
2892
2934
  "exportedName": "addRepository",
2893
2935
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -2930,7 +2972,7 @@
2930
2972
  "filename": "src/presentation/web/app/actions/add-repository.ts",
2931
2973
  "exportedName": "addRepository"
2932
2974
  },
2933
- "40137684fd63eebcad885a0c17faed754a30c1711e": {
2975
+ "4028b01070d081d384aadb17581e21a463f228abc2": {
2934
2976
  "workers": {
2935
2977
  "app/(dashboard)/@drawer/adopt/page": {
2936
2978
  "moduleId": 11372,
@@ -2951,13 +2993,13 @@
2951
2993
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
2952
2994
  },
2953
2995
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2954
- "moduleId": 36915,
2996
+ "moduleId": 67370,
2955
2997
  "async": false,
2956
2998
  "exportedName": "deleteRepository",
2957
2999
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
2958
3000
  },
2959
3001
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
2960
- "moduleId": 99644,
3002
+ "moduleId": 44147,
2961
3003
  "async": false,
2962
3004
  "exportedName": "deleteRepository",
2963
3005
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -2987,13 +3029,13 @@
2987
3029
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
2988
3030
  },
2989
3031
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
2990
- "moduleId": 84390,
3032
+ "moduleId": 22039,
2991
3033
  "async": false,
2992
3034
  "exportedName": "deleteRepository",
2993
3035
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
2994
3036
  },
2995
3037
  "app/(dashboard)/feature/[featureId]/page": {
2996
- "moduleId": 73293,
3038
+ "moduleId": 82235,
2997
3039
  "async": false,
2998
3040
  "exportedName": "deleteRepository",
2999
3041
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -3036,7 +3078,7 @@
3036
3078
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
3037
3079
  "exportedName": "deleteRepository"
3038
3080
  },
3039
- "40b8ec6d49b277ba0652a1ccaafd71dc7a325ceacc": {
3081
+ "402a61f7328fa4c07b94db4034fa4470501c0e3357": {
3040
3082
  "workers": {
3041
3083
  "app/(dashboard)/@drawer/adopt/page": {
3042
3084
  "moduleId": 11372,
@@ -3057,13 +3099,13 @@
3057
3099
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
3058
3100
  },
3059
3101
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3060
- "moduleId": 36915,
3102
+ "moduleId": 67370,
3061
3103
  "async": false,
3062
3104
  "exportedName": "getFeatureMetadata",
3063
3105
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
3064
3106
  },
3065
3107
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3066
- "moduleId": 99644,
3108
+ "moduleId": 44147,
3067
3109
  "async": false,
3068
3110
  "exportedName": "getFeatureMetadata",
3069
3111
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -3093,13 +3135,13 @@
3093
3135
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
3094
3136
  },
3095
3137
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3096
- "moduleId": 84390,
3138
+ "moduleId": 22039,
3097
3139
  "async": false,
3098
3140
  "exportedName": "getFeatureMetadata",
3099
3141
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
3100
3142
  },
3101
3143
  "app/(dashboard)/feature/[featureId]/page": {
3102
- "moduleId": 73293,
3144
+ "moduleId": 82235,
3103
3145
  "async": false,
3104
3146
  "exportedName": "getFeatureMetadata",
3105
3147
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -3142,7 +3184,7 @@
3142
3184
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts",
3143
3185
  "exportedName": "getFeatureMetadata"
3144
3186
  },
3145
- "40f66a54a753dbb5c3378368d1ab578564c50129f1": {
3187
+ "404dfd800fc620028cda83584c3ba72c7c5d7046ad": {
3146
3188
  "workers": {
3147
3189
  "app/(dashboard)/@drawer/adopt/page": {
3148
3190
  "moduleId": 11372,
@@ -3157,7 +3199,7 @@
3157
3199
  "filename": "src/presentation/web/app/actions/adopt-branch.ts",
3158
3200
  "exportedName": "adoptBranch"
3159
3201
  },
3160
- "40386472ed89e2fb0861d0bfade928bbb736e7d583": {
3202
+ "405fcdff87d0f32a7f10b60417ed0031b2f5a3ffee": {
3161
3203
  "workers": {
3162
3204
  "app/(dashboard)/@drawer/adopt/page": {
3163
3205
  "moduleId": 11372,
@@ -3172,7 +3214,7 @@
3172
3214
  "filename": "src/presentation/web/app/actions/list-branches.ts",
3173
3215
  "exportedName": "listBranches"
3174
3216
  },
3175
- "00219954ac39506aa988c66ebbc3095bd5ed85d538": {
3217
+ "00dd591c69b347f6c2be9d4945161f5a697e0fb86f": {
3176
3218
  "workers": {
3177
3219
  "app/(dashboard)/@drawer/create/page": {
3178
3220
  "moduleId": 88099,
@@ -3194,7 +3236,7 @@
3194
3236
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
3195
3237
  "exportedName": "getWorkflowDefaults"
3196
3238
  },
3197
- "40485443b95e6675243ceea1f67be91b8f97cda689": {
3239
+ "40daaf188fc550cd7e3fa26165b5caaef6e4b12709": {
3198
3240
  "workers": {
3199
3241
  "app/(dashboard)/@drawer/create/page": {
3200
3242
  "moduleId": 88099,
@@ -3216,7 +3258,7 @@
3216
3258
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts",
3217
3259
  "exportedName": "getViewerPermission"
3218
3260
  },
3219
- "40ebd8bf8afa1593741a7b34b3596fbac805ee71b2": {
3261
+ "40b87c4b093df234ab68eb276414149c70fddb0cda": {
3220
3262
  "workers": {
3221
3263
  "app/(dashboard)/@drawer/create/page": {
3222
3264
  "moduleId": 88099,
@@ -3238,28 +3280,28 @@
3238
3280
  "filename": "src/presentation/web/app/actions/create-feature.ts",
3239
3281
  "exportedName": "createFeature"
3240
3282
  },
3241
- "600a6145247ef21c77f39c1df7ec40b0bf9a1cb36b": {
3283
+ "60021c22ed1da1979b92fb371074a8ffd4531db81c": {
3242
3284
  "workers": {
3243
3285
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3244
- "moduleId": 36915,
3286
+ "moduleId": 67370,
3245
3287
  "async": false,
3246
3288
  "exportedName": "approveFeature",
3247
3289
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
3248
3290
  },
3249
3291
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3250
- "moduleId": 99644,
3292
+ "moduleId": 44147,
3251
3293
  "async": false,
3252
3294
  "exportedName": "approveFeature",
3253
3295
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
3254
3296
  },
3255
3297
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3256
- "moduleId": 84390,
3298
+ "moduleId": 22039,
3257
3299
  "async": false,
3258
3300
  "exportedName": "approveFeature",
3259
3301
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
3260
3302
  },
3261
3303
  "app/(dashboard)/feature/[featureId]/page": {
3262
- "moduleId": 73293,
3304
+ "moduleId": 82235,
3263
3305
  "async": false,
3264
3306
  "exportedName": "approveFeature",
3265
3307
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
@@ -3274,28 +3316,28 @@
3274
3316
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
3275
3317
  "exportedName": "approveFeature"
3276
3318
  },
3277
- "70aaeccbf7bb01fa74a291855baf762ef2d55b8481": {
3319
+ "7056aff0cd35658a0ad6cc695d5dcb073fda84879a": {
3278
3320
  "workers": {
3279
3321
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3280
- "moduleId": 36915,
3322
+ "moduleId": 67370,
3281
3323
  "async": false,
3282
3324
  "exportedName": "rejectFeature",
3283
3325
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
3284
3326
  },
3285
3327
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3286
- "moduleId": 99644,
3328
+ "moduleId": 44147,
3287
3329
  "async": false,
3288
3330
  "exportedName": "rejectFeature",
3289
3331
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
3290
3332
  },
3291
3333
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3292
- "moduleId": 84390,
3334
+ "moduleId": 22039,
3293
3335
  "async": false,
3294
3336
  "exportedName": "rejectFeature",
3295
3337
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
3296
3338
  },
3297
3339
  "app/(dashboard)/feature/[featureId]/page": {
3298
- "moduleId": 73293,
3340
+ "moduleId": 82235,
3299
3341
  "async": false,
3300
3342
  "exportedName": "rejectFeature",
3301
3343
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
@@ -3310,28 +3352,28 @@
3310
3352
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
3311
3353
  "exportedName": "rejectFeature"
3312
3354
  },
3313
- "40b579a84aeab716e8387d52533e71ca8a2cffd991": {
3355
+ "4041a99ef1f695f96cc2b0b91315f38f507f395602": {
3314
3356
  "workers": {
3315
3357
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3316
- "moduleId": 36915,
3358
+ "moduleId": 67370,
3317
3359
  "async": false,
3318
3360
  "exportedName": "getFeatureArtifact",
3319
3361
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
3320
3362
  },
3321
3363
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3322
- "moduleId": 99644,
3364
+ "moduleId": 44147,
3323
3365
  "async": false,
3324
3366
  "exportedName": "getFeatureArtifact",
3325
3367
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
3326
3368
  },
3327
3369
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3328
- "moduleId": 84390,
3370
+ "moduleId": 22039,
3329
3371
  "async": false,
3330
3372
  "exportedName": "getFeatureArtifact",
3331
3373
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
3332
3374
  },
3333
3375
  "app/(dashboard)/feature/[featureId]/page": {
3334
- "moduleId": 73293,
3376
+ "moduleId": 82235,
3335
3377
  "async": false,
3336
3378
  "exportedName": "getFeatureArtifact",
3337
3379
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
@@ -3346,28 +3388,28 @@
3346
3388
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
3347
3389
  "exportedName": "getFeatureArtifact"
3348
3390
  },
3349
- "40d5c3e82d1f234c8c5342db5958e49313352b8a48": {
3391
+ "407c161cd061f13c85b40c2a05cd7dfa4350edf57d": {
3350
3392
  "workers": {
3351
3393
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3352
- "moduleId": 36915,
3394
+ "moduleId": 67370,
3353
3395
  "async": false,
3354
3396
  "exportedName": "getResearchArtifact",
3355
3397
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
3356
3398
  },
3357
3399
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3358
- "moduleId": 99644,
3400
+ "moduleId": 44147,
3359
3401
  "async": false,
3360
3402
  "exportedName": "getResearchArtifact",
3361
3403
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
3362
3404
  },
3363
3405
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3364
- "moduleId": 84390,
3406
+ "moduleId": 22039,
3365
3407
  "async": false,
3366
3408
  "exportedName": "getResearchArtifact",
3367
3409
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
3368
3410
  },
3369
3411
  "app/(dashboard)/feature/[featureId]/page": {
3370
- "moduleId": 73293,
3412
+ "moduleId": 82235,
3371
3413
  "async": false,
3372
3414
  "exportedName": "getResearchArtifact",
3373
3415
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
@@ -3382,28 +3424,28 @@
3382
3424
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
3383
3425
  "exportedName": "getResearchArtifact"
3384
3426
  },
3385
- "40ef44d64a2222f6528ce3ffb05ce3ff5c5e568e69": {
3427
+ "403294a4a798af22189f7340d5c834435ba4c7a638": {
3386
3428
  "workers": {
3387
3429
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3388
- "moduleId": 36915,
3430
+ "moduleId": 67370,
3389
3431
  "async": false,
3390
3432
  "exportedName": "getMergeReviewData",
3391
3433
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
3392
3434
  },
3393
3435
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3394
- "moduleId": 99644,
3436
+ "moduleId": 44147,
3395
3437
  "async": false,
3396
3438
  "exportedName": "getMergeReviewData",
3397
3439
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
3398
3440
  },
3399
3441
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3400
- "moduleId": 84390,
3442
+ "moduleId": 22039,
3401
3443
  "async": false,
3402
3444
  "exportedName": "getMergeReviewData",
3403
3445
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
3404
3446
  },
3405
3447
  "app/(dashboard)/feature/[featureId]/page": {
3406
- "moduleId": 73293,
3448
+ "moduleId": 82235,
3407
3449
  "async": false,
3408
3450
  "exportedName": "getMergeReviewData",
3409
3451
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
@@ -3418,28 +3460,28 @@
3418
3460
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts",
3419
3461
  "exportedName": "getMergeReviewData"
3420
3462
  },
3421
- "4012275561a8465e6a97c26132d1daef19b12d1fb5": {
3463
+ "401f31d69d7ce947bdb44f12c1c9b1fa6a804e5330": {
3422
3464
  "workers": {
3423
3465
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3424
- "moduleId": 36915,
3466
+ "moduleId": 67370,
3425
3467
  "async": false,
3426
3468
  "exportedName": "getFeaturePhaseTimings",
3427
3469
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
3428
3470
  },
3429
3471
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3430
- "moduleId": 99644,
3472
+ "moduleId": 44147,
3431
3473
  "async": false,
3432
3474
  "exportedName": "getFeaturePhaseTimings",
3433
3475
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
3434
3476
  },
3435
3477
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3436
- "moduleId": 84390,
3478
+ "moduleId": 22039,
3437
3479
  "async": false,
3438
3480
  "exportedName": "getFeaturePhaseTimings",
3439
3481
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
3440
3482
  },
3441
3483
  "app/(dashboard)/feature/[featureId]/page": {
3442
- "moduleId": 73293,
3484
+ "moduleId": 82235,
3443
3485
  "async": false,
3444
3486
  "exportedName": "getFeaturePhaseTimings",
3445
3487
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
@@ -3454,28 +3496,28 @@
3454
3496
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts",
3455
3497
  "exportedName": "getFeaturePhaseTimings"
3456
3498
  },
3457
- "40335654be7492a326f31a3af6db462d6b4abcaea1": {
3499
+ "40683d33e3500c179ebb012a3344da01529baf0c15": {
3458
3500
  "workers": {
3459
3501
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3460
- "moduleId": 36915,
3502
+ "moduleId": 67370,
3461
3503
  "async": false,
3462
3504
  "exportedName": "getFeaturePlan",
3463
3505
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts"
3464
3506
  },
3465
3507
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3466
- "moduleId": 99644,
3508
+ "moduleId": 44147,
3467
3509
  "async": false,
3468
3510
  "exportedName": "getFeaturePlan",
3469
3511
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts"
3470
3512
  },
3471
3513
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3472
- "moduleId": 84390,
3514
+ "moduleId": 22039,
3473
3515
  "async": false,
3474
3516
  "exportedName": "getFeaturePlan",
3475
3517
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts"
3476
3518
  },
3477
3519
  "app/(dashboard)/feature/[featureId]/page": {
3478
- "moduleId": 73293,
3520
+ "moduleId": 82235,
3479
3521
  "async": false,
3480
3522
  "exportedName": "getFeaturePlan",
3481
3523
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts"
@@ -3490,28 +3532,28 @@
3490
3532
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts",
3491
3533
  "exportedName": "getFeaturePlan"
3492
3534
  },
3493
- "4001f4b48b8e379deb1ea7a81ea24ba857c51ee46f": {
3535
+ "40685d915d40058d3ed817b8b1ec834544be494d8d": {
3494
3536
  "workers": {
3495
3537
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3496
- "moduleId": 36915,
3538
+ "moduleId": 67370,
3497
3539
  "async": false,
3498
3540
  "exportedName": "rebaseFeature",
3499
3541
  "filename": "src/presentation/web/app/actions/rebase-feature.ts"
3500
3542
  },
3501
3543
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3502
- "moduleId": 99644,
3544
+ "moduleId": 44147,
3503
3545
  "async": false,
3504
3546
  "exportedName": "rebaseFeature",
3505
3547
  "filename": "src/presentation/web/app/actions/rebase-feature.ts"
3506
3548
  },
3507
3549
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3508
- "moduleId": 84390,
3550
+ "moduleId": 22039,
3509
3551
  "async": false,
3510
3552
  "exportedName": "rebaseFeature",
3511
3553
  "filename": "src/presentation/web/app/actions/rebase-feature.ts"
3512
3554
  },
3513
3555
  "app/(dashboard)/feature/[featureId]/page": {
3514
- "moduleId": 73293,
3556
+ "moduleId": 82235,
3515
3557
  "async": false,
3516
3558
  "exportedName": "rebaseFeature",
3517
3559
  "filename": "src/presentation/web/app/actions/rebase-feature.ts"
@@ -3526,28 +3568,28 @@
3526
3568
  "filename": "src/presentation/web/app/actions/rebase-feature.ts",
3527
3569
  "exportedName": "rebaseFeature"
3528
3570
  },
3529
- "4090eec9c7d23acf0334af5e6cd02ad494327a55ce": {
3571
+ "400c6906adbfe216e30db5ad786f7433a4cafe4d60": {
3530
3572
  "workers": {
3531
3573
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3532
- "moduleId": 36915,
3574
+ "moduleId": 67370,
3533
3575
  "async": false,
3534
3576
  "exportedName": "getFeatureDrawerData",
3535
3577
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
3536
3578
  },
3537
3579
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3538
- "moduleId": 99644,
3580
+ "moduleId": 44147,
3539
3581
  "async": false,
3540
3582
  "exportedName": "getFeatureDrawerData",
3541
3583
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
3542
3584
  },
3543
3585
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3544
- "moduleId": 84390,
3586
+ "moduleId": 22039,
3545
3587
  "async": false,
3546
3588
  "exportedName": "getFeatureDrawerData",
3547
3589
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
3548
3590
  },
3549
3591
  "app/(dashboard)/feature/[featureId]/page": {
3550
- "moduleId": 73293,
3592
+ "moduleId": 82235,
3551
3593
  "async": false,
3552
3594
  "exportedName": "getFeatureDrawerData",
3553
3595
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
@@ -3562,28 +3604,28 @@
3562
3604
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts",
3563
3605
  "exportedName": "getFeatureDrawerData"
3564
3606
  },
3565
- "40614d12d34a16dfa33766cb82518bdb56bdc1b247": {
3607
+ "40e50ec9cc34e4a02b777bef703f8eaaca00eded20": {
3566
3608
  "workers": {
3567
3609
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3568
- "moduleId": 36915,
3610
+ "moduleId": 67370,
3569
3611
  "async": false,
3570
3612
  "exportedName": "getBranchSyncStatus",
3571
3613
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts"
3572
3614
  },
3573
3615
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
3574
- "moduleId": 99644,
3616
+ "moduleId": 44147,
3575
3617
  "async": false,
3576
3618
  "exportedName": "getBranchSyncStatus",
3577
3619
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts"
3578
3620
  },
3579
3621
  "app/(dashboard)/feature/[featureId]/[tab]/page": {
3580
- "moduleId": 84390,
3622
+ "moduleId": 22039,
3581
3623
  "async": false,
3582
3624
  "exportedName": "getBranchSyncStatus",
3583
3625
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts"
3584
3626
  },
3585
3627
  "app/(dashboard)/feature/[featureId]/page": {
3586
- "moduleId": 73293,
3628
+ "moduleId": 82235,
3587
3629
  "async": false,
3588
3630
  "exportedName": "getBranchSyncStatus",
3589
3631
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts"
@@ -3598,7 +3640,43 @@
3598
3640
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts",
3599
3641
  "exportedName": "getBranchSyncStatus"
3600
3642
  },
3601
- "60c9ffcaa58285565bbf843e0ad2ea1b92807c962e": {
3643
+ "70a5b956a410907cc9a3e6093fffda583a1ebcd63e": {
3644
+ "workers": {
3645
+ "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3646
+ "moduleId": 67370,
3647
+ "async": false,
3648
+ "exportedName": "updateFeaturePinnedConfig",
3649
+ "filename": "src/presentation/web/app/actions/update-feature-pinned-config.ts"
3650
+ },
3651
+ "app/(dashboard)/@drawer/feature/[featureId]/page": {
3652
+ "moduleId": 44147,
3653
+ "async": false,
3654
+ "exportedName": "updateFeaturePinnedConfig",
3655
+ "filename": "src/presentation/web/app/actions/update-feature-pinned-config.ts"
3656
+ },
3657
+ "app/(dashboard)/feature/[featureId]/[tab]/page": {
3658
+ "moduleId": 22039,
3659
+ "async": false,
3660
+ "exportedName": "updateFeaturePinnedConfig",
3661
+ "filename": "src/presentation/web/app/actions/update-feature-pinned-config.ts"
3662
+ },
3663
+ "app/(dashboard)/feature/[featureId]/page": {
3664
+ "moduleId": 82235,
3665
+ "async": false,
3666
+ "exportedName": "updateFeaturePinnedConfig",
3667
+ "filename": "src/presentation/web/app/actions/update-feature-pinned-config.ts"
3668
+ }
3669
+ },
3670
+ "layer": {
3671
+ "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": "action-browser",
3672
+ "app/(dashboard)/@drawer/feature/[featureId]/page": "action-browser",
3673
+ "app/(dashboard)/feature/[featureId]/[tab]/page": "action-browser",
3674
+ "app/(dashboard)/feature/[featureId]/page": "action-browser"
3675
+ },
3676
+ "filename": "src/presentation/web/app/actions/update-feature-pinned-config.ts",
3677
+ "exportedName": "updateFeaturePinnedConfig"
3678
+ },
3679
+ "60bb0ab4593a06d214b96ecc6f34e2c47f6fac752f": {
3602
3680
  "workers": {
3603
3681
  "app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page": {
3604
3682
  "moduleId": 3531,
@@ -3634,7 +3712,7 @@
3634
3712
  "filename": "src/presentation/web/app/actions/get-git-log.ts",
3635
3713
  "exportedName": "getGitRepoInfo"
3636
3714
  },
3637
- "00c948fd23b5ffe9f95830a33d4f012e8ce51d140d": {
3715
+ "00ab83562e5d1809d7451e96a7aafe554be10aa0da": {
3638
3716
  "workers": {
3639
3717
  "app/settings/page": {
3640
3718
  "moduleId": 97423,
@@ -3649,7 +3727,7 @@
3649
3727
  "filename": "src/presentation/web/app/actions/load-settings.ts",
3650
3728
  "exportedName": "loadSettings"
3651
3729
  },
3652
- "0086e47db44f876faaaa08b0b8531cfa25b91de665": {
3730
+ "0058a4c2b83cf7928f43911d453a80244a74818977": {
3653
3731
  "workers": {
3654
3732
  "app/settings/page": {
3655
3733
  "moduleId": 97423,
@@ -3664,7 +3742,7 @@
3664
3742
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts",
3665
3743
  "exportedName": "getAvailableTerminals"
3666
3744
  },
3667
- "404546bb27f2e35d48049cc0ca42e36ef6e7b2f9d8": {
3745
+ "40eb3c78a982c3a976751431a84a8b4fb933ebbd68": {
3668
3746
  "workers": {
3669
3747
  "app/settings/page": {
3670
3748
  "moduleId": 97423,
@@ -3681,5 +3759,5 @@
3681
3759
  }
3682
3760
  },
3683
3761
  "edge": {},
3684
- "encryptionKey": "yFeNPZW7C8iZK7bvOeV7ebEebojkMKAaClq6x2FGfdA="
3762
+ "encryptionKey": "KM+k21h40lweU7u3ji4zV9XL6OZD2xHnBHXItcX2Sxs="
3685
3763
  }