@shipit-ai/cli 1.166.2 → 1.167.1

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 (506) hide show
  1. package/README.md +26 -5
  2. package/apis/json-schema/AgentConfig.yaml +3 -0
  3. package/apis/json-schema/AgentPermissionSettings.yaml +23 -0
  4. package/apis/json-schema/AgentType.yaml +0 -1
  5. package/apis/json-schema/ClaudeCodePermissionMode.yaml +9 -0
  6. package/apis/json-schema/CodexPermissionMode.yaml +8 -0
  7. package/apis/json-schema/CopilotPermissionMode.yaml +8 -0
  8. package/apis/json-schema/CursorPermissionMode.yaml +7 -0
  9. package/apis/json-schema/Feature.yaml +3 -0
  10. package/apis/json-schema/GeminiPermissionMode.yaml +8 -0
  11. package/apis/json-schema/RovoDevPermissionMode.yaml +8 -0
  12. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts +8 -0
  13. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts.map +1 -1
  14. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +1 -0
  15. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
  16. package/dist/packages/core/src/application/ports/output/agents/interactive-agent-executor.interface.d.ts +3 -0
  17. package/dist/packages/core/src/application/ports/output/agents/interactive-agent-executor.interface.d.ts.map +1 -1
  18. package/dist/packages/core/src/application/ports/output/services/index.d.ts +1 -0
  19. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  20. package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts +13 -0
  21. package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts.map +1 -0
  22. package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.js +1 -0
  23. package/dist/packages/core/src/application/use-cases/agents/configure-agent.use-case.d.ts.map +1 -1
  24. package/dist/packages/core/src/application/use-cases/agents/configure-agent.use-case.js +4 -6
  25. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
  26. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +1 -0
  27. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  28. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +2 -0
  29. package/dist/packages/core/src/application/use-cases/features/create/types.d.ts +2 -0
  30. package/dist/packages/core/src/application/use-cases/features/create/types.d.ts.map +1 -1
  31. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
  32. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +1 -0
  33. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
  34. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +1 -0
  35. package/dist/packages/core/src/application/use-cases/settings/complete-onboarding.use-case.d.ts +2 -0
  36. package/dist/packages/core/src/application/use-cases/settings/complete-onboarding.use-case.d.ts.map +1 -1
  37. package/dist/packages/core/src/application/use-cases/settings/complete-onboarding.use-case.js +23 -0
  38. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  39. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +9 -1
  40. package/dist/packages/core/src/domain/generated/output.d.ts +68 -2
  41. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  42. package/dist/packages/core/src/domain/generated/output.js +36 -1
  43. package/dist/packages/core/src/infrastructure/di/modules/agents.module.d.ts.map +1 -1
  44. package/dist/packages/core/src/infrastructure/di/modules/agents.module.js +4 -2
  45. package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts.map +1 -1
  46. package/dist/packages/core/src/infrastructure/di/modules/services.module.js +2 -0
  47. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +1 -0
  48. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
  49. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +4 -0
  50. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +6 -0
  51. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  52. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +31 -0
  53. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-agent-permission-modes.d.ts +21 -0
  54. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-agent-permission-modes.d.ts.map +1 -0
  55. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-agent-permission-modes.js +35 -0
  56. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-feature-permission-mode.d.ts +14 -0
  57. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-feature-permission-mode.d.ts.map +1 -0
  58. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-feature-permission-mode.js +19 -0
  59. package/dist/packages/core/src/infrastructure/services/agents/analyze-repo/analyze-repository-graph.d.ts +3 -1
  60. package/dist/packages/core/src/infrastructure/services/agents/analyze-repo/analyze-repository-graph.d.ts.map +1 -1
  61. package/dist/packages/core/src/infrastructure/services/agents/analyze-repo/analyze-repository-graph.js +18 -7
  62. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts +1 -1
  63. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts.map +1 -1
  64. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.js +1 -6
  65. package/dist/packages/core/src/infrastructure/services/agents/common/agent-permissions.d.ts +21 -0
  66. package/dist/packages/core/src/infrastructure/services/agents/common/agent-permissions.d.ts.map +1 -0
  67. package/dist/packages/core/src/infrastructure/services/agents/common/agent-permissions.js +49 -0
  68. package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.d.ts +3 -1
  69. package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.d.ts.map +1 -1
  70. package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.js +4 -3
  71. package/dist/packages/core/src/infrastructure/services/agents/common/agent-validator.service.d.ts.map +1 -1
  72. package/dist/packages/core/src/infrastructure/services/agents/common/agent-validator.service.js +0 -3
  73. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
  74. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +11 -0
  75. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.d.ts.map +1 -1
  76. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.js +1 -1
  77. package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.d.ts.map +1 -1
  78. package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.js +4 -1
  79. package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts.map +1 -1
  80. package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.js +11 -4
  81. package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts.map +1 -1
  82. package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.js +11 -1
  83. package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.d.ts.map +1 -1
  84. package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.js +2 -1
  85. package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.d.ts.map +1 -1
  86. package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.js +11 -4
  87. package/dist/packages/core/src/infrastructure/services/agents/common/structured-agent-caller.service.d.ts +3 -1
  88. package/dist/packages/core/src/infrastructure/services/agents/common/structured-agent-caller.service.d.ts.map +1 -1
  89. package/dist/packages/core/src/infrastructure/services/agents/common/structured-agent-caller.service.js +13 -6
  90. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts +3 -1
  91. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts.map +1 -1
  92. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.js +12 -3
  93. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +5 -0
  94. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
  95. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +18 -1
  96. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
  97. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +1 -0
  98. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  99. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +3 -0
  100. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +1 -0
  101. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  102. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +8 -0
  103. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.d.ts +3 -1
  104. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.d.ts.map +1 -1
  105. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.js +3 -2
  106. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/ci-watch-fix-loop.d.ts +3 -0
  107. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/ci-watch-fix-loop.d.ts.map +1 -1
  108. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/ci-watch-fix-loop.js +1 -1
  109. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts +3 -0
  110. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts.map +1 -1
  111. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.js +2 -1
  112. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts +11 -3
  113. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  114. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +20 -5
  115. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/repair.node.d.ts.map +1 -1
  116. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/repair.node.js +6 -0
  117. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +1 -0
  118. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
  119. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +4 -0
  120. package/dist/packages/core/src/infrastructure/services/settings-reader.service.d.ts +7 -0
  121. package/dist/packages/core/src/infrastructure/services/settings-reader.service.d.ts.map +1 -0
  122. package/dist/packages/core/src/infrastructure/services/settings-reader.service.js +25 -0
  123. package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
  124. package/dist/src/presentation/cli/commands/feat/new.command.js +18 -0
  125. package/dist/src/presentation/cli/commands/feat/show.command.d.ts.map +1 -1
  126. package/dist/src/presentation/cli/commands/feat/show.command.js +2 -1
  127. package/dist/src/presentation/cli/commands/settings/agent.command.js +2 -2
  128. package/dist/src/presentation/cli/commands/settings/index.d.ts.map +1 -1
  129. package/dist/src/presentation/cli/commands/settings/index.js +3 -1
  130. package/dist/src/presentation/cli/commands/settings/permission-modes.d.ts +19 -0
  131. package/dist/src/presentation/cli/commands/settings/permission-modes.d.ts.map +1 -0
  132. package/dist/src/presentation/cli/commands/settings/permission-modes.js +38 -0
  133. package/dist/src/presentation/cli/commands/settings/permissions.command.d.ts +16 -0
  134. package/dist/src/presentation/cli/commands/settings/permissions.command.d.ts.map +1 -0
  135. package/dist/src/presentation/cli/commands/settings/permissions.command.js +147 -0
  136. package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts +4 -10
  137. package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
  138. package/dist/src/presentation/tui/prompts/agent-select.prompt.js +8 -13
  139. package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.d.ts +5 -3
  140. package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.d.ts.map +1 -1
  141. package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.js +10 -5
  142. package/dist/src/presentation/tui/wizards/onboarding/steps/agent-permissions.step.d.ts +17 -0
  143. package/dist/src/presentation/tui/wizards/onboarding/steps/agent-permissions.step.d.ts.map +1 -0
  144. package/dist/src/presentation/tui/wizards/onboarding/steps/agent-permissions.step.js +48 -0
  145. package/dist/src/presentation/tui/wizards/onboarding/types.d.ts +2 -0
  146. package/dist/src/presentation/tui/wizards/onboarding/types.d.ts.map +1 -1
  147. package/dist/src/presentation/web/app/actions/agent-permissions.d.ts +14 -0
  148. package/dist/src/presentation/web/app/actions/agent-permissions.d.ts.map +1 -0
  149. package/dist/src/presentation/web/app/actions/agent-permissions.js +181 -0
  150. package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts.map +1 -1
  151. package/dist/src/presentation/web/app/actions/check-agent-auth.js +2 -5
  152. package/dist/src/presentation/web/app/actions/check-agent-tool.js +1 -1
  153. package/dist/src/presentation/web/app/actions/get-all-agent-models.d.ts.map +1 -1
  154. package/dist/src/presentation/web/app/actions/get-all-agent-models.js +2 -17
  155. package/dist/src/presentation/web/app/actions/get-merge-review-data.d.ts.map +1 -1
  156. package/dist/src/presentation/web/app/actions/get-merge-review-data.js +5 -0
  157. package/dist/src/presentation/web/app/actions/open-shell.d.ts.map +1 -1
  158. package/dist/src/presentation/web/app/actions/open-shell.js +5 -0
  159. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
  160. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +43 -9
  161. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
  162. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +1 -1
  163. package/dist/src/presentation/web/components/common/feature-create-drawer/types.d.ts +2 -0
  164. package/dist/src/presentation/web/components/common/feature-create-drawer/types.d.ts.map +1 -1
  165. package/dist/src/presentation/web/components/common/feature-create-drawer/use-feature-create-form.d.ts +2 -0
  166. package/dist/src/presentation/web/components/common/feature-create-drawer/use-feature-create-form.d.ts.map +1 -1
  167. package/dist/src/presentation/web/components/common/feature-create-drawer/use-feature-create-form.js +6 -0
  168. package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.d.ts +7 -1
  169. package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.d.ts.map +1 -1
  170. package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.js +24 -3
  171. package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.stories.d.ts.map +1 -1
  172. package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.stories.js +3 -0
  173. package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.stories.js +2 -2
  174. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts +2 -2
  175. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts.map +1 -1
  176. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.js +4 -11
  177. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.d.ts +1 -1
  178. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.d.ts.map +1 -1
  179. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.js +5 -6
  180. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +2 -0
  181. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  182. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  183. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +2 -2
  184. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +10 -10
  185. package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +1 -1
  186. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +2 -2
  187. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts +1 -1
  188. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts.map +1 -1
  189. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.js +3 -3
  190. package/dist/src/presentation/web/components/features/settings/agent-permission-picker.d.ts +8 -0
  191. package/dist/src/presentation/web/components/features/settings/agent-permission-picker.d.ts.map +1 -0
  192. package/dist/src/presentation/web/components/features/settings/agent-permission-picker.js +33 -0
  193. package/dist/src/presentation/web/components/features/settings/agent-permission-picker.stories.d.ts +15 -0
  194. package/dist/src/presentation/web/components/features/settings/agent-permission-picker.stories.d.ts.map +1 -0
  195. package/dist/src/presentation/web/components/features/settings/agent-permission-picker.stories.js +75 -0
  196. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
  197. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +32 -4
  198. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +1 -1
  199. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -1
  200. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +2 -2
  201. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +2 -2
  202. package/dist/src/presentation/web/lib/path-sanitizers.d.ts.map +1 -1
  203. package/dist/src/presentation/web/lib/path-sanitizers.js +5 -0
  204. package/dist/translations/ar/cli.json +16 -0
  205. package/dist/translations/ar/tui.json +12 -10
  206. package/dist/translations/ar/web.json +15 -0
  207. package/dist/translations/de/cli.json +16 -0
  208. package/dist/translations/de/tui.json +13 -5
  209. package/dist/translations/de/web.json +15 -0
  210. package/dist/translations/en/cli.json +16 -0
  211. package/dist/translations/en/tui.json +12 -10
  212. package/dist/translations/en/web.json +15 -0
  213. package/dist/translations/es/cli.json +16 -0
  214. package/dist/translations/es/tui.json +12 -10
  215. package/dist/translations/es/web.json +15 -0
  216. package/dist/translations/fr/cli.json +16 -0
  217. package/dist/translations/fr/tui.json +12 -10
  218. package/dist/translations/fr/web.json +15 -0
  219. package/dist/translations/he/cli.json +16 -0
  220. package/dist/translations/he/tui.json +12 -10
  221. package/dist/translations/he/web.json +15 -0
  222. package/dist/translations/pt/cli.json +16 -0
  223. package/dist/translations/pt/tui.json +12 -10
  224. package/dist/translations/pt/web.json +15 -0
  225. package/dist/translations/ru/cli.json +16 -0
  226. package/dist/translations/ru/tui.json +12 -10
  227. package/dist/translations/ru/web.json +15 -0
  228. package/dist/tsconfig.build.tsbuildinfo +1 -1
  229. package/package.json +1 -1
  230. package/web/.next/BUILD_ID +1 -1
  231. package/web/.next/build-manifest.json +3 -3
  232. package/web/.next/fallback-build-manifest.json +3 -3
  233. package/web/.next/prerender-manifest.json +3 -3
  234. package/web/.next/required-server-files.js +2 -2
  235. package/web/.next/required-server-files.json +2 -2
  236. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  237. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +2 -3
  238. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  239. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  240. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  241. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +2 -3
  242. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  243. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  244. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +72 -60
  245. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
  246. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  247. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  248. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
  249. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +3 -4
  250. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  251. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  252. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +37 -37
  253. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +3 -4
  254. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  255. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  256. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  257. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +2 -3
  258. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  259. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  260. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  261. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +2 -3
  262. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  263. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  264. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  265. package/web/.next/server/app/(dashboard)/chat/page.js +2 -3
  266. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  267. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  268. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +72 -60
  269. package/web/.next/server/app/(dashboard)/create/page.js +3 -3
  270. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  271. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  272. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
  273. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +3 -4
  274. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  275. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  276. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +37 -37
  277. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +3 -4
  278. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  279. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  280. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  281. package/web/.next/server/app/(dashboard)/page.js +2 -3
  282. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  283. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  284. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  285. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +2 -3
  286. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  287. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  288. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  289. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +2 -3
  290. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  291. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  292. package/web/.next/server/app/_global-error.html +1 -1
  293. package/web/.next/server/app/_global-error.rsc +1 -1
  294. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  295. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  296. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  297. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  298. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  299. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  300. package/web/.next/server/app/_not-found/page.js +2 -3
  301. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  302. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  303. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  304. package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
  305. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  306. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  307. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  308. package/web/.next/server/app/settings/page/server-reference-manifest.json +11 -11
  309. package/web/.next/server/app/settings/page.js +3 -4
  310. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  311. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  312. package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
  313. package/web/.next/server/app/skills/page.js +3 -3
  314. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  315. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  316. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  317. package/web/.next/server/app/tools/page.js +3 -3
  318. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  319. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  320. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  321. package/web/.next/server/app/version/page.js +2 -3
  322. package/web/.next/server/app/version/page.js.nft.json +1 -1
  323. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  324. package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js +1 -1
  325. package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js.map +1 -1
  326. package/web/.next/server/chunks/[root-of-the-server]__0_-chcy._.js.map +1 -1
  327. package/web/.next/server/chunks/[root-of-the-server]__0e9p7em._.js.map +1 -1
  328. package/web/.next/server/chunks/[root-of-the-server]__0tb~wwk._.js +1 -1
  329. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js +1 -1
  330. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js.map +1 -1
  331. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js +2 -2
  332. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js.map +1 -1
  333. package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js +1 -1
  334. package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js.map +1 -1
  335. package/web/.next/server/chunks/ssr/{_01mq~sm._.js → 11es_next_0q-kz~8._.js} +2 -2
  336. package/web/.next/server/chunks/ssr/11es_next_0q-kz~8._.js.map +1 -0
  337. package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js +1 -1
  338. package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js.map +1 -1
  339. package/web/.next/server/chunks/ssr/[root-of-the-server]__02.89uf._.js +4 -0
  340. package/web/.next/server/chunks/ssr/[root-of-the-server]__02.89uf._.js.map +1 -0
  341. package/web/.next/server/chunks/ssr/[root-of-the-server]__04rq9lr._.js +4 -0
  342. package/web/.next/server/chunks/ssr/[root-of-the-server]__04rq9lr._.js.map +1 -0
  343. package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js +4 -0
  344. package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js.map +1 -0
  345. package/web/.next/server/chunks/ssr/[root-of-the-server]__0c0xoi_._.js +3 -0
  346. package/web/.next/server/chunks/ssr/[root-of-the-server]__0c0xoi_._.js.map +1 -0
  347. package/web/.next/server/chunks/ssr/[root-of-the-server]__0r5zhk.._.js +4 -0
  348. package/web/.next/server/chunks/ssr/[root-of-the-server]__0r5zhk.._.js.map +1 -0
  349. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js +1 -1
  350. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js +4 -0
  351. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js.map +1 -0
  352. package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js +4 -0
  353. package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js.map +1 -0
  354. package/web/.next/server/chunks/ssr/[root-of-the-server]__0uy_5rw._.js +4 -0
  355. package/web/.next/server/chunks/ssr/[root-of-the-server]__0uy_5rw._.js.map +1 -0
  356. package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js +4 -0
  357. package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js.map +1 -0
  358. package/web/.next/server/chunks/ssr/{_04rrcmm._.js → _0-.ckn5._.js} +2 -2
  359. package/web/.next/server/chunks/ssr/_0-.ckn5._.js.map +1 -0
  360. package/web/.next/server/chunks/ssr/_00k65h-._.js.map +1 -1
  361. package/web/.next/server/chunks/ssr/_01sesw0._.js +1 -1
  362. package/web/.next/server/chunks/ssr/_01sesw0._.js.map +1 -1
  363. package/web/.next/server/chunks/ssr/_069y.js._.js +6 -0
  364. package/web/.next/server/chunks/ssr/_069y.js._.js.map +1 -0
  365. package/web/.next/server/chunks/ssr/_0__4si~._.js +4 -0
  366. package/web/.next/server/chunks/ssr/_0__4si~._.js.map +1 -0
  367. package/web/.next/server/chunks/ssr/_0_m17kl._.js +4 -0
  368. package/web/.next/server/chunks/ssr/_0_m17kl._.js.map +1 -0
  369. package/web/.next/server/chunks/ssr/_0aaotn-._.js +3 -0
  370. package/web/.next/server/chunks/ssr/_0aaotn-._.js.map +1 -0
  371. package/web/.next/server/chunks/ssr/_0d4miu.._.js +4 -0
  372. package/web/.next/server/chunks/ssr/_0d4miu.._.js.map +1 -0
  373. package/web/.next/server/chunks/ssr/_0e8ern9._.js +4 -0
  374. package/web/.next/server/chunks/ssr/_0e8ern9._.js.map +1 -0
  375. package/web/.next/server/chunks/ssr/{_109n-y4._.js → _0n.magx._.js} +2 -2
  376. package/web/.next/server/chunks/ssr/_0n.magx._.js.map +1 -0
  377. package/web/.next/server/chunks/ssr/_0p3~u8u._.js +6 -0
  378. package/web/.next/server/chunks/ssr/_0p3~u8u._.js.map +1 -0
  379. package/web/.next/server/chunks/ssr/_0r.3n~3._.js +4 -0
  380. package/web/.next/server/chunks/ssr/_0r.3n~3._.js.map +1 -0
  381. package/web/.next/server/chunks/ssr/_0t59q8r._.js +4 -0
  382. package/web/.next/server/chunks/ssr/_0t59q8r._.js.map +1 -0
  383. package/web/.next/server/chunks/ssr/_0tcccbb._.js +3 -0
  384. package/web/.next/server/chunks/ssr/_0tcccbb._.js.map +1 -0
  385. package/web/.next/server/chunks/ssr/_0vyfc4b._.js +1 -1
  386. package/web/.next/server/chunks/ssr/_0vyfc4b._.js.map +1 -1
  387. package/web/.next/server/chunks/ssr/_0w-_hww._.js +1 -1
  388. package/web/.next/server/chunks/ssr/_0w-_hww._.js.map +1 -1
  389. package/web/.next/server/chunks/ssr/_0zk-h5w._.js +4 -0
  390. package/web/.next/server/chunks/ssr/_0zk-h5w._.js.map +1 -0
  391. package/web/.next/server/chunks/ssr/_0~7lwu_._.js +1 -1
  392. package/web/.next/server/chunks/ssr/_0~7lwu_._.js.map +1 -1
  393. package/web/.next/server/chunks/ssr/_1161g9x._.js +4 -0
  394. package/web/.next/server/chunks/ssr/_1161g9x._.js.map +1 -0
  395. package/web/.next/server/chunks/ssr/{_0c497sr._.js → _138qywk._.js} +2 -2
  396. package/web/.next/server/chunks/ssr/{_0c497sr._.js.map → _138qywk._.js.map} +1 -1
  397. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js +3 -0
  398. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js.map +1 -0
  399. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js +3 -0
  400. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js.map +1 -0
  401. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js +1 -1
  402. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js.map +1 -1
  403. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js +1 -1
  404. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js.map +1 -1
  405. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js +1 -1
  406. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js.map +1 -1
  407. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js +1 -1
  408. package/web/.next/server/middleware-build-manifest.js +3 -3
  409. package/web/.next/server/pages/500.html +1 -1
  410. package/web/.next/server/server-reference-manifest.js +1 -1
  411. package/web/.next/server/server-reference-manifest.json +127 -109
  412. package/web/.next/static/chunks/0-woqr2brccx_.js +3 -0
  413. package/web/.next/static/chunks/{0ex35-_jtxyjc.js → 022nrd6snse79.js} +1 -1
  414. package/web/.next/static/chunks/{0t_6hx6ul7umb.js → 02phgt~f2c-2q.js} +1 -1
  415. package/web/.next/static/chunks/{0whez3wju~9ok.js → 03s7z6w1lj0w~.js} +1 -1
  416. package/web/.next/static/chunks/04~sw.nhpwy6s.css +1 -0
  417. package/web/.next/static/chunks/05enics63g._-.js +7 -0
  418. package/web/.next/static/chunks/08611baheit.t.js +1 -0
  419. package/web/.next/static/chunks/0_9k2ybutuphq.js +1 -0
  420. package/web/.next/static/chunks/{0oq-cvtg8rjjp.js → 0j.wph28jrce1.js} +1 -1
  421. package/web/.next/static/chunks/{0k~55i.ofbdeb.js → 0ls0v8h_qbctm.js} +1 -1
  422. package/web/.next/static/chunks/0ma7k9iohb3bb.js +1 -0
  423. package/web/.next/static/chunks/0ps5sykbi-z5-.js +1 -0
  424. package/web/.next/static/chunks/{0c_bi0dck80dt.js → 0q7ohuqneuur4.js} +1 -1
  425. package/web/.next/static/chunks/{07gx-h_y91lay.js → 0q8ax~44oybo2.js} +2 -2
  426. package/web/.next/static/chunks/15rbgqykl.er8.js +1 -0
  427. package/web/.next/static/chunks/{04xk1iouwcfcq.js → 17z2sq7c5z8cr.js} +3 -3
  428. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.d.ts +0 -12
  429. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.d.ts.map +0 -1
  430. package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.js +0 -233
  431. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/plan.fixture.d.ts +0 -8
  432. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/plan.fixture.d.ts.map +0 -1
  433. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/plan.fixture.js +0 -94
  434. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/research.fixture.d.ts +0 -8
  435. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/research.fixture.d.ts.map +0 -1
  436. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/research.fixture.js +0 -140
  437. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.d.ts +0 -8
  438. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.d.ts.map +0 -1
  439. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.js +0 -81
  440. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.d.ts +0 -8
  441. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.d.ts.map +0 -1
  442. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.js +0 -131
  443. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/tasks.fixture.d.ts +0 -6
  444. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/tasks.fixture.d.ts.map +0 -1
  445. package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/tasks.fixture.js +0 -146
  446. package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_00~eq5i.js +0 -3
  447. package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_00~eq5i.js.map +0 -1
  448. package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_0979_c..js +0 -3
  449. package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_0979_c..js.map +0 -1
  450. package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_chat_page_actions_0dqll_1.js +0 -3
  451. package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_chat_page_actions_0dqll_1.js.map +0 -1
  452. package/web/.next/server/chunks/ssr/[root-of-the-server]__04nnbmc._.js +0 -3
  453. package/web/.next/server/chunks/ssr/[root-of-the-server]__04nnbmc._.js.map +0 -1
  454. package/web/.next/server/chunks/ssr/[root-of-the-server]__07740t6._.js +0 -3
  455. package/web/.next/server/chunks/ssr/[root-of-the-server]__07740t6._.js.map +0 -1
  456. package/web/.next/server/chunks/ssr/[root-of-the-server]__0l~puw4._.js +0 -3
  457. package/web/.next/server/chunks/ssr/[root-of-the-server]__0l~puw4._.js.map +0 -1
  458. package/web/.next/server/chunks/ssr/[root-of-the-server]__0o3qggc._.js +0 -3
  459. package/web/.next/server/chunks/ssr/[root-of-the-server]__0o3qggc._.js.map +0 -1
  460. package/web/.next/server/chunks/ssr/[root-of-the-server]__0vwjc_m._.js +0 -3
  461. package/web/.next/server/chunks/ssr/[root-of-the-server]__0vwjc_m._.js.map +0 -1
  462. package/web/.next/server/chunks/ssr/[root-of-the-server]__0w4__yd._.js +0 -4
  463. package/web/.next/server/chunks/ssr/[root-of-the-server]__0w4__yd._.js.map +0 -1
  464. package/web/.next/server/chunks/ssr/_0.rsra~._.js +0 -3
  465. package/web/.next/server/chunks/ssr/_0.rsra~._.js.map +0 -1
  466. package/web/.next/server/chunks/ssr/_01mq~sm._.js.map +0 -1
  467. package/web/.next/server/chunks/ssr/_04rrcmm._.js.map +0 -1
  468. package/web/.next/server/chunks/ssr/_0c741v_._.js +0 -3
  469. package/web/.next/server/chunks/ssr/_0c741v_._.js.map +0 -1
  470. package/web/.next/server/chunks/ssr/_0jpbsh_._.js +0 -4
  471. package/web/.next/server/chunks/ssr/_0jpbsh_._.js.map +0 -1
  472. package/web/.next/server/chunks/ssr/_109n-y4._.js.map +0 -1
  473. package/web/.next/server/chunks/ssr/src_presentation_web_0.e4~xc._.js +0 -3
  474. package/web/.next/server/chunks/ssr/src_presentation_web_0.e4~xc._.js.map +0 -1
  475. package/web/.next/server/chunks/ssr/src_presentation_web_00dvh.m._.js +0 -3
  476. package/web/.next/server/chunks/ssr/src_presentation_web_00dvh.m._.js.map +0 -1
  477. package/web/.next/server/chunks/ssr/src_presentation_web_06b6~lt._.js +0 -5
  478. package/web/.next/server/chunks/ssr/src_presentation_web_06b6~lt._.js.map +0 -1
  479. package/web/.next/server/chunks/ssr/src_presentation_web_08fy2mf._.js +0 -3
  480. package/web/.next/server/chunks/ssr/src_presentation_web_08fy2mf._.js.map +0 -1
  481. package/web/.next/server/chunks/ssr/src_presentation_web_0f~udu1._.js +0 -3
  482. package/web/.next/server/chunks/ssr/src_presentation_web_0f~udu1._.js.map +0 -1
  483. package/web/.next/server/chunks/ssr/src_presentation_web_0qys821._.js +0 -5
  484. package/web/.next/server/chunks/ssr/src_presentation_web_0qys821._.js.map +0 -1
  485. package/web/.next/server/chunks/ssr/src_presentation_web_0q~dt0o._.js +0 -3
  486. package/web/.next/server/chunks/ssr/src_presentation_web_0q~dt0o._.js.map +0 -1
  487. package/web/.next/server/chunks/ssr/src_presentation_web_11jrkxt._.js +0 -3
  488. package/web/.next/server/chunks/ssr/src_presentation_web_11jrkxt._.js.map +0 -1
  489. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_1199d3x.js +0 -3
  490. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_1199d3x.js.map +0 -1
  491. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app__not-found_page_actions_0m2jqxx.js +0 -3
  492. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app__not-found_page_actions_0m2jqxx.js.map +0 -1
  493. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_version_page_actions_0krkh_0.js +0 -3
  494. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_version_page_actions_0krkh_0.js.map +0 -1
  495. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_load-settings_ts_0b8f3pf._.js +0 -3
  496. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_load-settings_ts_0b8f3pf._.js.map +0 -1
  497. package/web/.next/static/chunks/0-fy~80ui.5os.js +0 -7
  498. package/web/.next/static/chunks/039ic1ygq-to3.js +0 -1
  499. package/web/.next/static/chunks/07a4jt64wdipb.js +0 -1
  500. package/web/.next/static/chunks/0_imq4rg3q.fe.js +0 -3
  501. package/web/.next/static/chunks/0i084mozx131g.js +0 -1
  502. package/web/.next/static/chunks/0j_0i2qsrwh-c.js +0 -1
  503. package/web/.next/static/chunks/0r5dju6f1-i38.css +0 -1
  504. /package/web/.next/static/{ynyh_sSxbFA995FRvBUxs → GSG_c1emY-f_AA00vD56y}/_buildManifest.js +0 -0
  505. /package/web/.next/static/{ynyh_sSxbFA995FRvBUxs → GSG_c1emY-f_AA00vD56y}/_clientMiddlewareManifest.js +0 -0
  506. /package/web/.next/static/{ynyh_sSxbFA995FRvBUxs → GSG_c1emY-f_AA00vD56y}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "00673293d55e3d5c2321b617280b92c924b9c274ef": {
3
+ "0086c5b619a2c7688c2d770674d578f317e0551f3a": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
6
  "moduleId": 81306,
@@ -15,7 +15,7 @@
15
15
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
16
16
  },
17
17
  "app/(dashboard)/@drawer/create/page": {
18
- "moduleId": 71100,
18
+ "moduleId": 81881,
19
19
  "async": false,
20
20
  "exportedName": "getAllAgentModels",
21
21
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -51,7 +51,7 @@
51
51
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
52
52
  },
53
53
  "app/(dashboard)/create/page": {
54
- "moduleId": 37644,
54
+ "moduleId": 65101,
55
55
  "async": false,
56
56
  "exportedName": "getAllAgentModels",
57
57
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -120,7 +120,7 @@
120
120
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts",
121
121
  "exportedName": "getAllAgentModels"
122
122
  },
123
- "609be691f502322cf39cd20fd3d57dc07e8f0fb0a3": {
123
+ "60e03e2b32b2e6ef0f3959da5f546f1829e41c0331": {
124
124
  "workers": {
125
125
  "app/(dashboard)/@drawer/adopt/page": {
126
126
  "moduleId": 81306,
@@ -135,7 +135,7 @@
135
135
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
136
136
  },
137
137
  "app/(dashboard)/@drawer/create/page": {
138
- "moduleId": 71100,
138
+ "moduleId": 81881,
139
139
  "async": false,
140
140
  "exportedName": "updateAgentAndModel",
141
141
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -171,7 +171,7 @@
171
171
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
172
172
  },
173
173
  "app/(dashboard)/create/page": {
174
- "moduleId": 37644,
174
+ "moduleId": 65101,
175
175
  "async": false,
176
176
  "exportedName": "updateAgentAndModel",
177
177
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -240,7 +240,7 @@
240
240
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts",
241
241
  "exportedName": "updateAgentAndModel"
242
242
  },
243
- "00749653789364ef64460b4cd9a8e87d8864d12fc5": {
243
+ "00ea228127ac18606161ce9cb8812c4f137123b655": {
244
244
  "workers": {
245
245
  "app/(dashboard)/@drawer/adopt/page": {
246
246
  "moduleId": 81306,
@@ -255,7 +255,7 @@
255
255
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
256
256
  },
257
257
  "app/(dashboard)/@drawer/create/page": {
258
- "moduleId": 71100,
258
+ "moduleId": 81881,
259
259
  "async": false,
260
260
  "exportedName": "pickFolder",
261
261
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -291,7 +291,7 @@
291
291
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
292
292
  },
293
293
  "app/(dashboard)/create/page": {
294
- "moduleId": 37644,
294
+ "moduleId": 65101,
295
295
  "async": false,
296
296
  "exportedName": "pickFolder",
297
297
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -360,7 +360,7 @@
360
360
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
361
361
  "exportedName": "pickFolder"
362
362
  },
363
- "40c992eef9eeddd4305120d6c18763fdf82131e265": {
363
+ "404ef28f7033751ea5088eeb4eed9d603e6408c9ff": {
364
364
  "workers": {
365
365
  "app/(dashboard)/@drawer/adopt/page": {
366
366
  "moduleId": 81306,
@@ -375,7 +375,7 @@
375
375
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
376
376
  },
377
377
  "app/(dashboard)/@drawer/create/page": {
378
- "moduleId": 71100,
378
+ "moduleId": 81881,
379
379
  "async": false,
380
380
  "exportedName": "listGitHubRepositories",
381
381
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -411,7 +411,7 @@
411
411
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
412
412
  },
413
413
  "app/(dashboard)/create/page": {
414
- "moduleId": 37644,
414
+ "moduleId": 65101,
415
415
  "async": false,
416
416
  "exportedName": "listGitHubRepositories",
417
417
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -480,7 +480,7 @@
480
480
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts",
481
481
  "exportedName": "listGitHubRepositories"
482
482
  },
483
- "00b467d9fd0fce7099e8b248187d7a68abab9c5ea5": {
483
+ "000e07b0fee197bbb9883c456356a27dd5a461fa0c": {
484
484
  "workers": {
485
485
  "app/(dashboard)/@drawer/adopt/page": {
486
486
  "moduleId": 81306,
@@ -495,7 +495,7 @@
495
495
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
496
496
  },
497
497
  "app/(dashboard)/@drawer/create/page": {
498
- "moduleId": 71100,
498
+ "moduleId": 81881,
499
499
  "async": false,
500
500
  "exportedName": "listGitHubOrganizations",
501
501
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -531,7 +531,7 @@
531
531
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
532
532
  },
533
533
  "app/(dashboard)/create/page": {
534
- "moduleId": 37644,
534
+ "moduleId": 65101,
535
535
  "async": false,
536
536
  "exportedName": "listGitHubOrganizations",
537
537
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -600,7 +600,7 @@
600
600
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts",
601
601
  "exportedName": "listGitHubOrganizations"
602
602
  },
603
- "40b828bf45ef188283d9a89163d392dfbb46325a07": {
603
+ "40f9f1c6b44ed613d89ca546ee32fc98aac07d88eb": {
604
604
  "workers": {
605
605
  "app/(dashboard)/@drawer/adopt/page": {
606
606
  "moduleId": 81306,
@@ -615,7 +615,7 @@
615
615
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
616
616
  },
617
617
  "app/(dashboard)/@drawer/create/page": {
618
- "moduleId": 71100,
618
+ "moduleId": 81881,
619
619
  "async": false,
620
620
  "exportedName": "importGitHubRepository",
621
621
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -651,7 +651,7 @@
651
651
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
652
652
  },
653
653
  "app/(dashboard)/create/page": {
654
- "moduleId": 37644,
654
+ "moduleId": 65101,
655
655
  "async": false,
656
656
  "exportedName": "importGitHubRepository",
657
657
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -720,7 +720,7 @@
720
720
  "filename": "src/presentation/web/app/actions/import-github-repository.ts",
721
721
  "exportedName": "importGitHubRepository"
722
722
  },
723
- "4072874e5fb8b3baba18dc19335d0abd9e51cc46c9": {
723
+ "404b5999bc6f96926423c290ad57510ec557128832": {
724
724
  "workers": {
725
725
  "app/(dashboard)/@drawer/adopt/page": {
726
726
  "moduleId": 81306,
@@ -735,7 +735,7 @@
735
735
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
736
736
  },
737
737
  "app/(dashboard)/@drawer/create/page": {
738
- "moduleId": 71100,
738
+ "moduleId": 81881,
739
739
  "async": false,
740
740
  "exportedName": "deployFeature",
741
741
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -771,7 +771,7 @@
771
771
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
772
772
  },
773
773
  "app/(dashboard)/create/page": {
774
- "moduleId": 37644,
774
+ "moduleId": 65101,
775
775
  "async": false,
776
776
  "exportedName": "deployFeature",
777
777
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -822,7 +822,7 @@
822
822
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
823
823
  "exportedName": "deployFeature"
824
824
  },
825
- "403dcf9658fd4554fd78615a972d2dcd376a65c0f5": {
825
+ "40e59c0a6c3e3a01829eb5f700ab316233fff8bf04": {
826
826
  "workers": {
827
827
  "app/(dashboard)/@drawer/adopt/page": {
828
828
  "moduleId": 81306,
@@ -837,7 +837,7 @@
837
837
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
838
838
  },
839
839
  "app/(dashboard)/@drawer/create/page": {
840
- "moduleId": 71100,
840
+ "moduleId": 81881,
841
841
  "async": false,
842
842
  "exportedName": "deployRepository",
843
843
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -873,7 +873,7 @@
873
873
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
874
874
  },
875
875
  "app/(dashboard)/create/page": {
876
- "moduleId": 37644,
876
+ "moduleId": 65101,
877
877
  "async": false,
878
878
  "exportedName": "deployRepository",
879
879
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -924,7 +924,7 @@
924
924
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
925
925
  "exportedName": "deployRepository"
926
926
  },
927
- "4095d29929fbcf0399b2f887e72da80c9a493c2daa": {
927
+ "40edd08872ca1b2ff19b22b0c1da3d720f7133c7ab": {
928
928
  "workers": {
929
929
  "app/(dashboard)/@drawer/adopt/page": {
930
930
  "moduleId": 81306,
@@ -939,7 +939,7 @@
939
939
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
940
940
  },
941
941
  "app/(dashboard)/@drawer/create/page": {
942
- "moduleId": 71100,
942
+ "moduleId": 81881,
943
943
  "async": false,
944
944
  "exportedName": "stopDeployment",
945
945
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -975,7 +975,7 @@
975
975
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
976
976
  },
977
977
  "app/(dashboard)/create/page": {
978
- "moduleId": 37644,
978
+ "moduleId": 65101,
979
979
  "async": false,
980
980
  "exportedName": "stopDeployment",
981
981
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -1026,7 +1026,7 @@
1026
1026
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
1027
1027
  "exportedName": "stopDeployment"
1028
1028
  },
1029
- "40e215e3d1fc214b574bc0a2abb1fe319f6107ad02": {
1029
+ "40e192a818a5b7bc1a5380b2a3a023ee6fa5bd962b": {
1030
1030
  "workers": {
1031
1031
  "app/(dashboard)/@drawer/adopt/page": {
1032
1032
  "moduleId": 81306,
@@ -1041,7 +1041,7 @@
1041
1041
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1042
1042
  },
1043
1043
  "app/(dashboard)/@drawer/create/page": {
1044
- "moduleId": 71100,
1044
+ "moduleId": 81881,
1045
1045
  "async": false,
1046
1046
  "exportedName": "getDeploymentStatus",
1047
1047
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -1077,7 +1077,7 @@
1077
1077
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1078
1078
  },
1079
1079
  "app/(dashboard)/create/page": {
1080
- "moduleId": 37644,
1080
+ "moduleId": 65101,
1081
1081
  "async": false,
1082
1082
  "exportedName": "getDeploymentStatus",
1083
1083
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -1128,7 +1128,7 @@
1128
1128
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
1129
1129
  "exportedName": "getDeploymentStatus"
1130
1130
  },
1131
- "4007721bb168054f860a3df6cd060e0f3807aad0b7": {
1131
+ "40bd95378f85d9fc8677f238428349adf4a666b28d": {
1132
1132
  "workers": {
1133
1133
  "app/(dashboard)/@drawer/adopt/page": {
1134
1134
  "moduleId": 81306,
@@ -1143,7 +1143,7 @@
1143
1143
  "filename": "src/presentation/web/app/actions/open-ide.ts"
1144
1144
  },
1145
1145
  "app/(dashboard)/@drawer/create/page": {
1146
- "moduleId": 71100,
1146
+ "moduleId": 81881,
1147
1147
  "async": false,
1148
1148
  "exportedName": "openIde",
1149
1149
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -1179,7 +1179,7 @@
1179
1179
  "filename": "src/presentation/web/app/actions/open-ide.ts"
1180
1180
  },
1181
1181
  "app/(dashboard)/create/page": {
1182
- "moduleId": 37644,
1182
+ "moduleId": 65101,
1183
1183
  "async": false,
1184
1184
  "exportedName": "openIde",
1185
1185
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -1218,7 +1218,7 @@
1218
1218
  "filename": "src/presentation/web/app/actions/open-ide.ts",
1219
1219
  "exportedName": "openIde"
1220
1220
  },
1221
- "4004781548c34747283fe284c8d195ca487357e06e": {
1221
+ "40eb980e322cab0e8eec73a5d80533863ac11b71f8": {
1222
1222
  "workers": {
1223
1223
  "app/(dashboard)/@drawer/adopt/page": {
1224
1224
  "moduleId": 81306,
@@ -1233,7 +1233,7 @@
1233
1233
  "filename": "src/presentation/web/app/actions/open-shell.ts"
1234
1234
  },
1235
1235
  "app/(dashboard)/@drawer/create/page": {
1236
- "moduleId": 71100,
1236
+ "moduleId": 81881,
1237
1237
  "async": false,
1238
1238
  "exportedName": "openShell",
1239
1239
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -1269,7 +1269,7 @@
1269
1269
  "filename": "src/presentation/web/app/actions/open-shell.ts"
1270
1270
  },
1271
1271
  "app/(dashboard)/create/page": {
1272
- "moduleId": 37644,
1272
+ "moduleId": 65101,
1273
1273
  "async": false,
1274
1274
  "exportedName": "openShell",
1275
1275
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -1308,7 +1308,7 @@
1308
1308
  "filename": "src/presentation/web/app/actions/open-shell.ts",
1309
1309
  "exportedName": "openShell"
1310
1310
  },
1311
- "4079ba07e5d8c86c4880360723f3c69e3f51f09301": {
1311
+ "4008539e4d47c679220460e3e897439c27791e86f3": {
1312
1312
  "workers": {
1313
1313
  "app/(dashboard)/@drawer/adopt/page": {
1314
1314
  "moduleId": 81306,
@@ -1323,7 +1323,7 @@
1323
1323
  "filename": "src/presentation/web/app/actions/open-folder.ts"
1324
1324
  },
1325
1325
  "app/(dashboard)/@drawer/create/page": {
1326
- "moduleId": 71100,
1326
+ "moduleId": 81881,
1327
1327
  "async": false,
1328
1328
  "exportedName": "openFolder",
1329
1329
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -1359,7 +1359,7 @@
1359
1359
  "filename": "src/presentation/web/app/actions/open-folder.ts"
1360
1360
  },
1361
1361
  "app/(dashboard)/create/page": {
1362
- "moduleId": 37644,
1362
+ "moduleId": 65101,
1363
1363
  "async": false,
1364
1364
  "exportedName": "openFolder",
1365
1365
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -1398,7 +1398,7 @@
1398
1398
  "filename": "src/presentation/web/app/actions/open-folder.ts",
1399
1399
  "exportedName": "openFolder"
1400
1400
  },
1401
- "40056e63d366d69696c57d7b5a4664d89f6b096689": {
1401
+ "40092b620bf789d5f068a5a6ca6ff5f9a9da65ad18": {
1402
1402
  "workers": {
1403
1403
  "app/(dashboard)/@drawer/adopt/page": {
1404
1404
  "moduleId": 81306,
@@ -1413,7 +1413,7 @@
1413
1413
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
1414
1414
  },
1415
1415
  "app/(dashboard)/@drawer/create/page": {
1416
- "moduleId": 71100,
1416
+ "moduleId": 81881,
1417
1417
  "async": false,
1418
1418
  "exportedName": "syncRepository",
1419
1419
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
@@ -1449,7 +1449,7 @@
1449
1449
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
1450
1450
  },
1451
1451
  "app/(dashboard)/create/page": {
1452
- "moduleId": 37644,
1452
+ "moduleId": 65101,
1453
1453
  "async": false,
1454
1454
  "exportedName": "syncRepository",
1455
1455
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
@@ -1488,7 +1488,7 @@
1488
1488
  "filename": "src/presentation/web/app/actions/sync-repository.ts",
1489
1489
  "exportedName": "syncRepository"
1490
1490
  },
1491
- "402204882070179404ea9fa5e8df27c20e3b047b7b": {
1491
+ "402d65513b1f6015d46a7c893966623bcf1c9a8c43": {
1492
1492
  "workers": {
1493
1493
  "app/(dashboard)/@drawer/adopt/page": {
1494
1494
  "moduleId": 81306,
@@ -1503,7 +1503,7 @@
1503
1503
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1504
1504
  },
1505
1505
  "app/(dashboard)/@drawer/create/page": {
1506
- "moduleId": 71100,
1506
+ "moduleId": 81881,
1507
1507
  "async": false,
1508
1508
  "exportedName": "getDeploymentLogs",
1509
1509
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -1539,7 +1539,7 @@
1539
1539
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1540
1540
  },
1541
1541
  "app/(dashboard)/create/page": {
1542
- "moduleId": 37644,
1542
+ "moduleId": 65101,
1543
1543
  "async": false,
1544
1544
  "exportedName": "getDeploymentLogs",
1545
1545
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -1590,7 +1590,7 @@
1590
1590
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
1591
1591
  "exportedName": "getDeploymentLogs"
1592
1592
  },
1593
- "004c1cd5bd750d92e24559b76d2d8a527b9fcb81f2": {
1593
+ "00330a8d9cee885d7bc3f693f2860bd1c8047adfda": {
1594
1594
  "workers": {
1595
1595
  "app/(dashboard)/@drawer/adopt/page": {
1596
1596
  "moduleId": 81306,
@@ -1605,7 +1605,7 @@
1605
1605
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
1606
1606
  },
1607
1607
  "app/(dashboard)/@drawer/create/page": {
1608
- "moduleId": 71100,
1608
+ "moduleId": 81881,
1609
1609
  "async": false,
1610
1610
  "exportedName": "isAgentSetupComplete",
1611
1611
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -1641,7 +1641,7 @@
1641
1641
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
1642
1642
  },
1643
1643
  "app/(dashboard)/create/page": {
1644
- "moduleId": 37644,
1644
+ "moduleId": 65101,
1645
1645
  "async": false,
1646
1646
  "exportedName": "isAgentSetupComplete",
1647
1647
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -1680,7 +1680,7 @@
1680
1680
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts",
1681
1681
  "exportedName": "isAgentSetupComplete"
1682
1682
  },
1683
- "008bb64e62c8da45930ed722f946b39495438d9fe4": {
1683
+ "00d8d6691808e46f24a12aba9a772e135fabe25dc9": {
1684
1684
  "workers": {
1685
1685
  "app/(dashboard)/@drawer/adopt/page": {
1686
1686
  "moduleId": 81306,
@@ -1695,7 +1695,7 @@
1695
1695
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
1696
1696
  },
1697
1697
  "app/(dashboard)/@drawer/create/page": {
1698
- "moduleId": 71100,
1698
+ "moduleId": 81881,
1699
1699
  "async": false,
1700
1700
  "exportedName": "checkAgentAuth",
1701
1701
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -1731,7 +1731,7 @@
1731
1731
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
1732
1732
  },
1733
1733
  "app/(dashboard)/create/page": {
1734
- "moduleId": 37644,
1734
+ "moduleId": 65101,
1735
1735
  "async": false,
1736
1736
  "exportedName": "checkAgentAuth",
1737
1737
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -1770,7 +1770,7 @@
1770
1770
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts",
1771
1771
  "exportedName": "checkAgentAuth"
1772
1772
  },
1773
- "002809c4bbafc76cdc68bbb45f0e98f2c4f4a2c326": {
1773
+ "001be5d686fc82310b2a13cd91f69f4763cd8a7179": {
1774
1774
  "workers": {
1775
1775
  "app/(dashboard)/@drawer/adopt/page": {
1776
1776
  "moduleId": 81306,
@@ -1785,7 +1785,7 @@
1785
1785
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
1786
1786
  },
1787
1787
  "app/(dashboard)/@drawer/create/page": {
1788
- "moduleId": 71100,
1788
+ "moduleId": 81881,
1789
1789
  "async": false,
1790
1790
  "exportedName": "checkToolStatus",
1791
1791
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -1821,7 +1821,7 @@
1821
1821
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
1822
1822
  },
1823
1823
  "app/(dashboard)/create/page": {
1824
- "moduleId": 37644,
1824
+ "moduleId": 65101,
1825
1825
  "async": false,
1826
1826
  "exportedName": "checkToolStatus",
1827
1827
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -1860,7 +1860,7 @@
1860
1860
  "filename": "src/presentation/web/app/actions/check-tool-status.ts",
1861
1861
  "exportedName": "checkToolStatus"
1862
1862
  },
1863
- "405c0161a824d7c6bfb099b9a201402629f9a809f4": {
1863
+ "404ca6022a436889616459953ffb37ff50f4e907ca": {
1864
1864
  "workers": {
1865
1865
  "app/(dashboard)/@drawer/adopt/page": {
1866
1866
  "moduleId": 81306,
@@ -1875,7 +1875,7 @@
1875
1875
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
1876
1876
  },
1877
1877
  "app/(dashboard)/@drawer/create/page": {
1878
- "moduleId": 71100,
1878
+ "moduleId": 81881,
1879
1879
  "async": false,
1880
1880
  "exportedName": "getFeatureMetadata",
1881
1881
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -1911,7 +1911,7 @@
1911
1911
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
1912
1912
  },
1913
1913
  "app/(dashboard)/create/page": {
1914
- "moduleId": 37644,
1914
+ "moduleId": 65101,
1915
1915
  "async": false,
1916
1916
  "exportedName": "getFeatureMetadata",
1917
1917
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -1950,7 +1950,7 @@
1950
1950
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts",
1951
1951
  "exportedName": "getFeatureMetadata"
1952
1952
  },
1953
- "40a85456a342184720e7bd43147ef6d61ed80fe86a": {
1953
+ "402b0d65d22ce49539f2d2f698460e94770f7e8b2d": {
1954
1954
  "workers": {
1955
1955
  "app/(dashboard)/@drawer/adopt/page": {
1956
1956
  "moduleId": 81306,
@@ -1965,7 +1965,7 @@
1965
1965
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
1966
1966
  },
1967
1967
  "app/(dashboard)/@drawer/create/page": {
1968
- "moduleId": 71100,
1968
+ "moduleId": 81881,
1969
1969
  "async": false,
1970
1970
  "exportedName": "archiveFeature",
1971
1971
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
@@ -2001,7 +2001,7 @@
2001
2001
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
2002
2002
  },
2003
2003
  "app/(dashboard)/create/page": {
2004
- "moduleId": 37644,
2004
+ "moduleId": 65101,
2005
2005
  "async": false,
2006
2006
  "exportedName": "archiveFeature",
2007
2007
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
@@ -2040,7 +2040,7 @@
2040
2040
  "filename": "src/presentation/web/app/actions/archive-feature.ts",
2041
2041
  "exportedName": "archiveFeature"
2042
2042
  },
2043
- "7830a0050246cf0a7c64eb408158d03b581fa9fd2d": {
2043
+ "78905067eb607d1d1fee68a4dad95b6851ba1e358c": {
2044
2044
  "workers": {
2045
2045
  "app/(dashboard)/@drawer/adopt/page": {
2046
2046
  "moduleId": 81306,
@@ -2055,7 +2055,7 @@
2055
2055
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
2056
2056
  },
2057
2057
  "app/(dashboard)/@drawer/create/page": {
2058
- "moduleId": 71100,
2058
+ "moduleId": 81881,
2059
2059
  "async": false,
2060
2060
  "exportedName": "deleteFeature",
2061
2061
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -2091,7 +2091,7 @@
2091
2091
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
2092
2092
  },
2093
2093
  "app/(dashboard)/create/page": {
2094
- "moduleId": 37644,
2094
+ "moduleId": 65101,
2095
2095
  "async": false,
2096
2096
  "exportedName": "deleteFeature",
2097
2097
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -2130,7 +2130,7 @@
2130
2130
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
2131
2131
  "exportedName": "deleteFeature"
2132
2132
  },
2133
- "40cc33d9eef0ed0ff39c963fb96616983a83d163c9": {
2133
+ "40a8a21574a49332d0e088f4fb98d173266a767b8c": {
2134
2134
  "workers": {
2135
2135
  "app/(dashboard)/@drawer/adopt/page": {
2136
2136
  "moduleId": 81306,
@@ -2145,7 +2145,7 @@
2145
2145
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
2146
2146
  },
2147
2147
  "app/(dashboard)/@drawer/create/page": {
2148
- "moduleId": 71100,
2148
+ "moduleId": 81881,
2149
2149
  "async": false,
2150
2150
  "exportedName": "resumeFeature",
2151
2151
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -2181,7 +2181,7 @@
2181
2181
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
2182
2182
  },
2183
2183
  "app/(dashboard)/create/page": {
2184
- "moduleId": 37644,
2184
+ "moduleId": 65101,
2185
2185
  "async": false,
2186
2186
  "exportedName": "resumeFeature",
2187
2187
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -2220,7 +2220,7 @@
2220
2220
  "filename": "src/presentation/web/app/actions/resume-feature.ts",
2221
2221
  "exportedName": "resumeFeature"
2222
2222
  },
2223
- "409a12726d14b0171bed27175fc895f1737e25a59f": {
2223
+ "40acd38b09e329a002b25937d82d210ce17904a8b5": {
2224
2224
  "workers": {
2225
2225
  "app/(dashboard)/@drawer/adopt/page": {
2226
2226
  "moduleId": 81306,
@@ -2235,7 +2235,7 @@
2235
2235
  "filename": "src/presentation/web/app/actions/start-feature.ts"
2236
2236
  },
2237
2237
  "app/(dashboard)/@drawer/create/page": {
2238
- "moduleId": 71100,
2238
+ "moduleId": 81881,
2239
2239
  "async": false,
2240
2240
  "exportedName": "startFeature",
2241
2241
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -2271,7 +2271,7 @@
2271
2271
  "filename": "src/presentation/web/app/actions/start-feature.ts"
2272
2272
  },
2273
2273
  "app/(dashboard)/create/page": {
2274
- "moduleId": 37644,
2274
+ "moduleId": 65101,
2275
2275
  "async": false,
2276
2276
  "exportedName": "startFeature",
2277
2277
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -2310,7 +2310,7 @@
2310
2310
  "filename": "src/presentation/web/app/actions/start-feature.ts",
2311
2311
  "exportedName": "startFeature"
2312
2312
  },
2313
- "409ca41fe22f43beef5f6007804d4ea4af1c742d6e": {
2313
+ "40362cbf555132f34944afb3ede38cbee4149319bb": {
2314
2314
  "workers": {
2315
2315
  "app/(dashboard)/@drawer/adopt/page": {
2316
2316
  "moduleId": 81306,
@@ -2325,7 +2325,7 @@
2325
2325
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
2326
2326
  },
2327
2327
  "app/(dashboard)/@drawer/create/page": {
2328
- "moduleId": 71100,
2328
+ "moduleId": 81881,
2329
2329
  "async": false,
2330
2330
  "exportedName": "stopFeature",
2331
2331
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -2361,7 +2361,7 @@
2361
2361
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
2362
2362
  },
2363
2363
  "app/(dashboard)/create/page": {
2364
- "moduleId": 37644,
2364
+ "moduleId": 65101,
2365
2365
  "async": false,
2366
2366
  "exportedName": "stopFeature",
2367
2367
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -2400,7 +2400,7 @@
2400
2400
  "filename": "src/presentation/web/app/actions/stop-feature.ts",
2401
2401
  "exportedName": "stopFeature"
2402
2402
  },
2403
- "401724219fbd15d0044167e2ceadcb426a1b88b6f1": {
2403
+ "406ce7604dcd3a981529cce29e8f800f01766b4619": {
2404
2404
  "workers": {
2405
2405
  "app/(dashboard)/@drawer/adopt/page": {
2406
2406
  "moduleId": 81306,
@@ -2415,7 +2415,7 @@
2415
2415
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
2416
2416
  },
2417
2417
  "app/(dashboard)/@drawer/create/page": {
2418
- "moduleId": 71100,
2418
+ "moduleId": 81881,
2419
2419
  "async": false,
2420
2420
  "exportedName": "unarchiveFeature",
2421
2421
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
@@ -2451,7 +2451,7 @@
2451
2451
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
2452
2452
  },
2453
2453
  "app/(dashboard)/create/page": {
2454
- "moduleId": 37644,
2454
+ "moduleId": 65101,
2455
2455
  "async": false,
2456
2456
  "exportedName": "unarchiveFeature",
2457
2457
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
@@ -2490,7 +2490,7 @@
2490
2490
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts",
2491
2491
  "exportedName": "unarchiveFeature"
2492
2492
  },
2493
- "40eabff44164a320ffdbb4d78762d986a3a08e9cb3": {
2493
+ "4066e37c6a9d686acc8b9b189bce05732045800364": {
2494
2494
  "workers": {
2495
2495
  "app/(dashboard)/@drawer/adopt/page": {
2496
2496
  "moduleId": 81306,
@@ -2505,7 +2505,7 @@
2505
2505
  "filename": "src/presentation/web/app/actions/add-repository.ts"
2506
2506
  },
2507
2507
  "app/(dashboard)/@drawer/create/page": {
2508
- "moduleId": 71100,
2508
+ "moduleId": 81881,
2509
2509
  "async": false,
2510
2510
  "exportedName": "addRepository",
2511
2511
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -2541,7 +2541,7 @@
2541
2541
  "filename": "src/presentation/web/app/actions/add-repository.ts"
2542
2542
  },
2543
2543
  "app/(dashboard)/create/page": {
2544
- "moduleId": 37644,
2544
+ "moduleId": 65101,
2545
2545
  "async": false,
2546
2546
  "exportedName": "addRepository",
2547
2547
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -2580,7 +2580,7 @@
2580
2580
  "filename": "src/presentation/web/app/actions/add-repository.ts",
2581
2581
  "exportedName": "addRepository"
2582
2582
  },
2583
- "4094b8bc3c9b9c623df2845c71dc8335b7bc03f8dc": {
2583
+ "4041a5239db59b27ce7c01c1528406ce2fc3d85c95": {
2584
2584
  "workers": {
2585
2585
  "app/(dashboard)/@drawer/adopt/page": {
2586
2586
  "moduleId": 81306,
@@ -2595,7 +2595,7 @@
2595
2595
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
2596
2596
  },
2597
2597
  "app/(dashboard)/@drawer/create/page": {
2598
- "moduleId": 71100,
2598
+ "moduleId": 81881,
2599
2599
  "async": false,
2600
2600
  "exportedName": "deleteRepository",
2601
2601
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -2631,7 +2631,7 @@
2631
2631
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
2632
2632
  },
2633
2633
  "app/(dashboard)/create/page": {
2634
- "moduleId": 37644,
2634
+ "moduleId": 65101,
2635
2635
  "async": false,
2636
2636
  "exportedName": "deleteRepository",
2637
2637
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -2670,7 +2670,7 @@
2670
2670
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
2671
2671
  "exportedName": "deleteRepository"
2672
2672
  },
2673
- "405837b4453af7d11bb5147e8549164bb07c3498aa": {
2673
+ "408f3b274cbb59d13b83f5c155d4ffe193165c81c7": {
2674
2674
  "workers": {
2675
2675
  "app/(dashboard)/@drawer/adopt/page": {
2676
2676
  "moduleId": 81306,
@@ -2682,7 +2682,7 @@
2682
2682
  "filename": "src/presentation/web/app/actions/adopt-branch.ts",
2683
2683
  "exportedName": "adoptBranch"
2684
2684
  },
2685
- "4079a468b0b951a6378b2be3db901e6e77fd012006": {
2685
+ "400bbc614170cb2895f0093a9049f68bf554f266e8": {
2686
2686
  "workers": {
2687
2687
  "app/(dashboard)/@drawer/adopt/page": {
2688
2688
  "moduleId": 81306,
@@ -2694,16 +2694,16 @@
2694
2694
  "filename": "src/presentation/web/app/actions/list-branches.ts",
2695
2695
  "exportedName": "listBranches"
2696
2696
  },
2697
- "0077ff8e3caff3c6fabcad2f6bff8628109175a216": {
2697
+ "0079998cf76fa50ee98b5752d71cdef87c5318afad": {
2698
2698
  "workers": {
2699
2699
  "app/(dashboard)/@drawer/create/page": {
2700
- "moduleId": 71100,
2700
+ "moduleId": 81881,
2701
2701
  "async": false,
2702
2702
  "exportedName": "getWorkflowDefaults",
2703
2703
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
2704
2704
  },
2705
2705
  "app/(dashboard)/create/page": {
2706
- "moduleId": 37644,
2706
+ "moduleId": 65101,
2707
2707
  "async": false,
2708
2708
  "exportedName": "getWorkflowDefaults",
2709
2709
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
@@ -2712,16 +2712,16 @@
2712
2712
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
2713
2713
  "exportedName": "getWorkflowDefaults"
2714
2714
  },
2715
- "4000c3d622a047ce5ff8274ebf92673619f27fcf4d": {
2715
+ "4069f57f0d34e289af3cfa0734279177b177dd6959": {
2716
2716
  "workers": {
2717
2717
  "app/(dashboard)/@drawer/create/page": {
2718
- "moduleId": 71100,
2718
+ "moduleId": 81881,
2719
2719
  "async": false,
2720
2720
  "exportedName": "getViewerPermission",
2721
2721
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts"
2722
2722
  },
2723
2723
  "app/(dashboard)/create/page": {
2724
- "moduleId": 37644,
2724
+ "moduleId": 65101,
2725
2725
  "async": false,
2726
2726
  "exportedName": "getViewerPermission",
2727
2727
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts"
@@ -2730,16 +2730,16 @@
2730
2730
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts",
2731
2731
  "exportedName": "getViewerPermission"
2732
2732
  },
2733
- "4076d2cfd2387db790d42e50db2e3575cbd6f6fe71": {
2733
+ "40878c40fdd8bf1158c65705e258db24c352cc63fa": {
2734
2734
  "workers": {
2735
2735
  "app/(dashboard)/@drawer/create/page": {
2736
- "moduleId": 71100,
2736
+ "moduleId": 81881,
2737
2737
  "async": false,
2738
2738
  "exportedName": "createFeature",
2739
2739
  "filename": "src/presentation/web/app/actions/create-feature.ts"
2740
2740
  },
2741
2741
  "app/(dashboard)/create/page": {
2742
- "moduleId": 37644,
2742
+ "moduleId": 65101,
2743
2743
  "async": false,
2744
2744
  "exportedName": "createFeature",
2745
2745
  "filename": "src/presentation/web/app/actions/create-feature.ts"
@@ -2748,7 +2748,25 @@
2748
2748
  "filename": "src/presentation/web/app/actions/create-feature.ts",
2749
2749
  "exportedName": "createFeature"
2750
2750
  },
2751
- "60689dec393bb57eb8170127c394ab7f00e05019c5": {
2751
+ "40f5d7c31967e1f2aba3b4d8dc6783df53c1d7fbf3": {
2752
+ "workers": {
2753
+ "app/(dashboard)/@drawer/create/page": {
2754
+ "moduleId": 81881,
2755
+ "async": false,
2756
+ "exportedName": "getAgentPermissionOptions",
2757
+ "filename": "src/presentation/web/app/actions/agent-permissions.ts"
2758
+ },
2759
+ "app/(dashboard)/create/page": {
2760
+ "moduleId": 65101,
2761
+ "async": false,
2762
+ "exportedName": "getAgentPermissionOptions",
2763
+ "filename": "src/presentation/web/app/actions/agent-permissions.ts"
2764
+ }
2765
+ },
2766
+ "filename": "src/presentation/web/app/actions/agent-permissions.ts",
2767
+ "exportedName": "getAgentPermissionOptions"
2768
+ },
2769
+ "60abd10dc8e5b4f83bf853f3f21fa9cccad2241971": {
2752
2770
  "workers": {
2753
2771
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2754
2772
  "moduleId": 23461,
@@ -2778,7 +2796,7 @@
2778
2796
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
2779
2797
  "exportedName": "approveFeature"
2780
2798
  },
2781
- "70adbccc4c78ee69299a2bde00266139f0341860be": {
2799
+ "70a1d4481d01fe36d34e84b6ef71b544f7c7ab721f": {
2782
2800
  "workers": {
2783
2801
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2784
2802
  "moduleId": 23461,
@@ -2808,7 +2826,7 @@
2808
2826
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
2809
2827
  "exportedName": "rejectFeature"
2810
2828
  },
2811
- "40a83fa725c2f75508f2b9ba7d6816e13884c7659f": {
2829
+ "40622e25d96a4251c71fbe074ba00eebf8991f8a09": {
2812
2830
  "workers": {
2813
2831
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2814
2832
  "moduleId": 23461,
@@ -2838,7 +2856,7 @@
2838
2856
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
2839
2857
  "exportedName": "getFeatureArtifact"
2840
2858
  },
2841
- "4050fd20d52031d9698bf1953fa5c10615821470c6": {
2859
+ "40e686489c0aa1bbb1d260e2f5e75991aa10c7da00": {
2842
2860
  "workers": {
2843
2861
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2844
2862
  "moduleId": 23461,
@@ -2868,7 +2886,7 @@
2868
2886
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
2869
2887
  "exportedName": "getResearchArtifact"
2870
2888
  },
2871
- "40037ffafa5e4eb9ee0759209945d33ce90e13fec6": {
2889
+ "40676280ec04a8fb9911aed35526add3d5dcabceb5": {
2872
2890
  "workers": {
2873
2891
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2874
2892
  "moduleId": 23461,
@@ -2898,7 +2916,7 @@
2898
2916
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts",
2899
2917
  "exportedName": "getMergeReviewData"
2900
2918
  },
2901
- "409704dd26135c11b1ee535a5b0931db4a0671ee53": {
2919
+ "4059ed1e505eac67da32c3c78bbe4d6b1a03c745aa": {
2902
2920
  "workers": {
2903
2921
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2904
2922
  "moduleId": 23461,
@@ -2928,7 +2946,7 @@
2928
2946
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts",
2929
2947
  "exportedName": "getFeaturePhaseTimings"
2930
2948
  },
2931
- "404fdeb8fe6c6592d1a804ef02373bf3d1a61a304a": {
2949
+ "40264a0e8aa31093405bf11a13dc53f8246fcdcda8": {
2932
2950
  "workers": {
2933
2951
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2934
2952
  "moduleId": 23461,
@@ -2958,7 +2976,7 @@
2958
2976
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts",
2959
2977
  "exportedName": "getFeaturePlan"
2960
2978
  },
2961
- "404496b843a41bc21643f6b485b84215fd77c150ca": {
2979
+ "40b4c5ddade5ca3e5a4ed744a9be304f8878f61126": {
2962
2980
  "workers": {
2963
2981
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2964
2982
  "moduleId": 23461,
@@ -2988,7 +3006,7 @@
2988
3006
  "filename": "src/presentation/web/app/actions/rebase-feature.ts",
2989
3007
  "exportedName": "rebaseFeature"
2990
3008
  },
2991
- "4062d5cf9c269e046e5423814b3253cc1631dafb7c": {
3009
+ "4092844beeec7e69b4215ca3d5e9572a3e5d9dee9a": {
2992
3010
  "workers": {
2993
3011
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2994
3012
  "moduleId": 23461,
@@ -3018,7 +3036,7 @@
3018
3036
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts",
3019
3037
  "exportedName": "getFeatureDrawerData"
3020
3038
  },
3021
- "4080d17ee3d972352038c8cf9aa734fa11727ba2f5": {
3039
+ "402a277279e72c3716df12ecb249365a389b42e49a": {
3022
3040
  "workers": {
3023
3041
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3024
3042
  "moduleId": 23461,
@@ -3048,7 +3066,7 @@
3048
3066
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts",
3049
3067
  "exportedName": "getBranchSyncStatus"
3050
3068
  },
3051
- "60e1c42bf74f980785da4aa85327ddfae0b5d9bc68": {
3069
+ "60b248e3d45b17fcf6b37eb400bccba94bfb271dc9": {
3052
3070
  "workers": {
3053
3071
  "app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page": {
3054
3072
  "moduleId": 59044,
@@ -3078,7 +3096,7 @@
3078
3096
  "filename": "src/presentation/web/app/actions/get-git-log.ts",
3079
3097
  "exportedName": "getGitRepoInfo"
3080
3098
  },
3081
- "0003df294c388fb598cec985c2a93dded3f0599a5e": {
3099
+ "00d3b7d863598d5b96861124277559aba0b6119f79": {
3082
3100
  "workers": {
3083
3101
  "app/settings/page": {
3084
3102
  "moduleId": 87459,
@@ -3090,7 +3108,7 @@
3090
3108
  "filename": "src/presentation/web/app/actions/load-settings.ts",
3091
3109
  "exportedName": "loadSettings"
3092
3110
  },
3093
- "00ade0c1968c419328283e854002f40f25b8bcc3c1": {
3111
+ "005356b37b1e7a2bf8939e5a6e2930c2f4bd689531": {
3094
3112
  "workers": {
3095
3113
  "app/settings/page": {
3096
3114
  "moduleId": 87459,
@@ -3102,7 +3120,7 @@
3102
3120
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts",
3103
3121
  "exportedName": "getAvailableTerminals"
3104
3122
  },
3105
- "00af9752e2e7c8520f0a159ceaed7ae50240072383": {
3123
+ "006d7cfcba3b311669fdcaab30a602f13b78b7e10a": {
3106
3124
  "workers": {
3107
3125
  "app/settings/page": {
3108
3126
  "moduleId": 87459,
@@ -3114,7 +3132,7 @@
3114
3132
  "filename": "src/presentation/web/app/actions/get-available-editors.ts",
3115
3133
  "exportedName": "getAvailableEditors"
3116
3134
  },
3117
- "0056046435a13014c0903d2304b0ee98e27c22d1ae": {
3135
+ "00061a0f7d7a5aba05b0a74877adf2b1d7303d1a44": {
3118
3136
  "workers": {
3119
3137
  "app/settings/page": {
3120
3138
  "moduleId": 87459,
@@ -3126,7 +3144,7 @@
3126
3144
  "filename": "src/presentation/web/app/actions/get-available-shells.ts",
3127
3145
  "exportedName": "getAvailableShells"
3128
3146
  },
3129
- "40b792d8a3fe8cdeb46b24bc6c745ee929daa9a77e": {
3147
+ "409785c8993760b4652102f4e96f3c920af1587f7f": {
3130
3148
  "workers": {
3131
3149
  "app/settings/page": {
3132
3150
  "moduleId": 87459,
@@ -3140,5 +3158,5 @@
3140
3158
  }
3141
3159
  },
3142
3160
  "edge": {},
3143
- "encryptionKey": "+Ghb5S4ovuHuCjMnuSYCrb/ZrkaJtO9Iee7p+ufPWhg="
3161
+ "encryptionKey": "wNrNQaM4/GCbqFgjeIZG28WhwmBDxqSbZC/6ZKOmI9k="
3144
3162
  }