@shepai/cli 1.182.1 → 1.183.0

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 (519) hide show
  1. package/apis/json-schema/Application.yaml +7 -0
  2. package/dist/packages/core/src/application/ports/output/repositories/application-repository.interface.d.ts +1 -1
  3. package/dist/packages/core/src/application/ports/output/repositories/application-repository.interface.d.ts.map +1 -1
  4. package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.d.ts +3 -3
  5. package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.js +13 -21
  7. package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.d.ts +19 -3
  8. package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.d.ts.map +1 -1
  9. package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.js +37 -4
  10. package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.d.ts +30 -0
  11. package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.d.ts.map +1 -0
  12. package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.js +122 -0
  13. package/dist/packages/core/src/domain/generated/output.d.ts +8 -0
  14. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  15. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  16. package/dist/packages/core/src/infrastructure/di/container.js +5 -0
  17. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.d.ts +2 -0
  18. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.d.ts.map +1 -1
  19. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.js +4 -0
  20. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.d.ts +5 -0
  21. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.d.ts.map +1 -0
  22. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.js +10 -0
  23. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.d.ts +5 -0
  24. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.d.ts.map +1 -0
  25. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.js +10 -0
  26. package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.d.ts +1 -1
  27. package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.d.ts.map +1 -1
  28. package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.js +10 -2
  29. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  30. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +4 -1
  31. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts.map +1 -1
  32. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.js +4 -1
  33. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.d.ts.map +1 -1
  34. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.js +4 -1
  35. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.d.ts.map +1 -1
  36. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.js +11 -6
  37. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.d.ts +2 -2
  38. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.d.ts.map +1 -1
  39. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.js +2 -2
  40. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
  41. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +3 -2
  42. package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts +16 -5
  43. package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts.map +1 -1
  44. package/dist/packages/core/src/infrastructure/services/git/pr-branding.js +38 -7
  45. package/dist/src/presentation/web/app/api/applications/[id]/resume/route.d.ts +20 -0
  46. package/dist/src/presentation/web/app/api/applications/[id]/resume/route.d.ts.map +1 -0
  47. package/dist/src/presentation/web/app/api/applications/[id]/resume/route.js +25 -0
  48. package/dist/src/presentation/web/app/api/applications/[id]/route.d.ts +19 -0
  49. package/dist/src/presentation/web/app/api/applications/[id]/route.d.ts.map +1 -0
  50. package/dist/src/presentation/web/app/api/applications/[id]/route.js +46 -0
  51. package/dist/src/presentation/web/app/api/applications/route.d.ts +9 -0
  52. package/dist/src/presentation/web/app/api/applications/route.d.ts.map +1 -0
  53. package/dist/src/presentation/web/app/api/applications/route.js +20 -0
  54. package/dist/src/presentation/web/app/application/[id]/page.d.ts +4 -4
  55. package/dist/src/presentation/web/app/application/[id]/page.d.ts.map +1 -1
  56. package/dist/src/presentation/web/app/application/[id]/page.js +2 -61
  57. package/dist/src/presentation/web/app/applications/page.d.ts +2 -0
  58. package/dist/src/presentation/web/app/applications/page.d.ts.map +1 -0
  59. package/dist/src/presentation/web/app/applications/page.js +5 -0
  60. package/dist/src/presentation/web/components/assistant-ui/thread.js +2 -2
  61. package/dist/src/presentation/web/components/common/application-node/application-node.d.ts.map +1 -1
  62. package/dist/src/presentation/web/components/common/application-node/application-node.js +3 -37
  63. package/dist/src/presentation/web/components/features/application-page/application-page-loader.d.ts +4 -0
  64. package/dist/src/presentation/web/components/features/application-page/application-page-loader.d.ts.map +1 -0
  65. package/dist/src/presentation/web/components/features/application-page/application-page-loader.js +47 -0
  66. package/dist/src/presentation/web/components/features/application-page/application-page.d.ts.map +1 -1
  67. package/dist/src/presentation/web/components/features/application-page/application-page.js +75 -54
  68. package/dist/src/presentation/web/components/features/application-page/application-page.stories.d.ts.map +1 -1
  69. package/dist/src/presentation/web/components/features/application-page/application-page.stories.js +1 -0
  70. package/dist/src/presentation/web/components/features/application-page/run-dev-button.d.ts +3 -1
  71. package/dist/src/presentation/web/components/features/application-page/run-dev-button.d.ts.map +1 -1
  72. package/dist/src/presentation/web/components/features/application-page/run-dev-button.js +6 -2
  73. package/dist/src/presentation/web/components/features/applications/application-card.d.ts +7 -0
  74. package/dist/src/presentation/web/components/features/applications/application-card.d.ts.map +1 -0
  75. package/dist/src/presentation/web/components/features/applications/application-card.js +82 -0
  76. package/dist/src/presentation/web/components/features/applications/application-card.stories.d.ts +13 -0
  77. package/dist/src/presentation/web/components/features/applications/application-card.stories.d.ts.map +1 -0
  78. package/dist/src/presentation/web/components/features/applications/application-card.stories.js +69 -0
  79. package/dist/src/presentation/web/components/features/applications/applications-page-client.d.ts +5 -0
  80. package/dist/src/presentation/web/components/features/applications/applications-page-client.d.ts.map +1 -0
  81. package/dist/src/presentation/web/components/features/applications/applications-page-client.js +28 -0
  82. package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.d.ts +10 -0
  83. package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.d.ts.map +1 -0
  84. package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.js +93 -0
  85. package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts +3 -1
  86. package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts.map +1 -1
  87. package/dist/src/presentation/web/components/features/chat/ChatComposer.js +2 -2
  88. package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts +3 -1
  89. package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts.map +1 -1
  90. package/dist/src/presentation/web/components/features/chat/ChatTab.js +4 -3
  91. package/dist/src/presentation/web/components/features/chat/StepTracker.d.ts +6 -1
  92. package/dist/src/presentation/web/components/features/chat/StepTracker.d.ts.map +1 -1
  93. package/dist/src/presentation/web/components/features/chat/StepTracker.js +23 -20
  94. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  95. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +3 -2
  96. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts +3 -1
  97. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  98. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +2 -2
  99. package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts.map +1 -1
  100. package/dist/src/presentation/web/components/features/settings/language-settings-section.js +1 -0
  101. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts +1 -0
  102. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts.map +1 -1
  103. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.js +5 -0
  104. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  105. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +23 -3
  106. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  107. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
  108. package/dist/src/presentation/web/lib/derive-app-status.d.ts +23 -0
  109. package/dist/src/presentation/web/lib/derive-app-status.d.ts.map +1 -0
  110. package/dist/src/presentation/web/lib/derive-app-status.js +89 -0
  111. package/dist/src/presentation/web/lib/i18n.d.ts.map +1 -1
  112. package/dist/src/presentation/web/lib/i18n.js +3 -0
  113. package/dist/translations/ar/web.json +2 -1
  114. package/dist/translations/de/web.json +2 -1
  115. package/dist/translations/en/web.json +2 -1
  116. package/dist/translations/es/web.json +2 -1
  117. package/dist/translations/fr/web.json +2 -1
  118. package/dist/translations/he/web.json +2 -1
  119. package/dist/translations/pt/web.json +2 -1
  120. package/dist/translations/ru/web.json +2 -1
  121. package/dist/translations/uk/web.json +2 -1
  122. package/dist/tsconfig.build.tsbuildinfo +1 -1
  123. package/package.json +1 -1
  124. package/web/.next/BUILD_ID +1 -1
  125. package/web/.next/app-path-routes-manifest.json +4 -0
  126. package/web/.next/build-manifest.json +2 -2
  127. package/web/.next/fallback-build-manifest.json +2 -2
  128. package/web/.next/prerender-manifest.json +3 -3
  129. package/web/.next/required-server-files.js +2 -2
  130. package/web/.next/required-server-files.json +2 -2
  131. package/web/.next/routes-manifest.json +28 -0
  132. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +32 -32
  133. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +5 -5
  134. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  135. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  136. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +30 -30
  137. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +5 -5
  138. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  139. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  140. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +33 -33
  141. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +5 -5
  142. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  143. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  144. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +41 -41
  145. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +5 -5
  146. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  147. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  148. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +41 -41
  149. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +5 -5
  150. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  151. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  152. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +31 -31
  153. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +5 -5
  154. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  155. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  156. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +31 -31
  157. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +5 -5
  158. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  159. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  160. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +30 -30
  161. package/web/.next/server/app/(dashboard)/chat/page.js +5 -5
  162. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  163. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  164. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +33 -33
  165. package/web/.next/server/app/(dashboard)/create/page.js +5 -5
  166. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  167. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  168. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +41 -41
  169. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +5 -5
  170. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  171. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  172. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +41 -41
  173. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +5 -5
  174. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  175. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  176. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +30 -30
  177. package/web/.next/server/app/(dashboard)/page.js +5 -5
  178. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  179. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  180. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +31 -31
  181. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +5 -5
  182. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  183. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  184. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +31 -31
  185. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +5 -5
  186. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  187. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  188. package/web/.next/server/app/_global-error/page.js +1 -1
  189. package/web/.next/server/app/_global-error/page.js.nft.json +1 -1
  190. package/web/.next/server/app/_global-error.html +2 -2
  191. package/web/.next/server/app/_global-error.rsc +1 -1
  192. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  193. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  194. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  195. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  196. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  197. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +7 -7
  198. package/web/.next/server/app/_not-found/page.js +1 -1
  199. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  200. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  201. package/web/.next/server/app/api/applications/[id]/resume/route/app-paths-manifest.json +3 -0
  202. package/web/.next/server/app/api/applications/[id]/resume/route/build-manifest.json +11 -0
  203. package/web/.next/server/app/api/applications/[id]/resume/route/server-reference-manifest.json +4 -0
  204. package/web/.next/server/app/api/applications/[id]/resume/route.js +7 -0
  205. package/web/.next/server/app/api/applications/[id]/resume/route.js.map +5 -0
  206. package/web/.next/server/app/api/applications/[id]/resume/route.js.nft.json +1 -0
  207. package/web/.next/server/app/api/applications/[id]/resume/route_client-reference-manifest.js +2 -0
  208. package/web/.next/server/app/api/applications/[id]/route/app-paths-manifest.json +3 -0
  209. package/web/.next/server/app/api/applications/[id]/route/build-manifest.json +11 -0
  210. package/web/.next/server/app/api/applications/[id]/route/server-reference-manifest.json +4 -0
  211. package/web/.next/server/app/api/applications/[id]/route.js +7 -0
  212. package/web/.next/server/app/api/applications/[id]/route.js.map +5 -0
  213. package/web/.next/server/app/api/applications/[id]/route.js.nft.json +1 -0
  214. package/web/.next/server/app/api/applications/[id]/route_client-reference-manifest.js +2 -0
  215. package/web/.next/server/app/api/applications/route/app-paths-manifest.json +3 -0
  216. package/web/.next/server/app/api/applications/route/build-manifest.json +11 -0
  217. package/web/.next/server/app/api/applications/route/server-reference-manifest.json +4 -0
  218. package/web/.next/server/app/api/applications/route.js +7 -0
  219. package/web/.next/server/app/api/applications/route.js.map +5 -0
  220. package/web/.next/server/app/api/applications/route.js.nft.json +1 -0
  221. package/web/.next/server/app/api/applications/route_client-reference-manifest.js +2 -0
  222. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  223. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  224. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  225. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  226. package/web/.next/server/app/application/[id]/page/server-reference-manifest.json +45 -30
  227. package/web/.next/server/app/application/[id]/page.js +3 -3
  228. package/web/.next/server/app/application/[id]/page.js.nft.json +1 -1
  229. package/web/.next/server/app/application/[id]/page_client-reference-manifest.js +1 -1
  230. package/web/.next/server/app/applications/page/app-paths-manifest.json +3 -0
  231. package/web/.next/server/app/applications/page/build-manifest.json +18 -0
  232. package/web/.next/server/app/applications/page/next-font-manifest.json +6 -0
  233. package/web/.next/server/app/applications/page/react-loadable-manifest.json +1 -0
  234. package/web/.next/server/app/applications/page/server-reference-manifest.json +230 -0
  235. package/web/.next/server/app/applications/page.js +19 -0
  236. package/web/.next/server/app/applications/page.js.map +5 -0
  237. package/web/.next/server/app/applications/page.js.nft.json +1 -0
  238. package/web/.next/server/app/applications/page_client-reference-manifest.js +2 -0
  239. package/web/.next/server/app/features/page/server-reference-manifest.json +7 -7
  240. package/web/.next/server/app/features/page.js +1 -1
  241. package/web/.next/server/app/features/page.js.nft.json +1 -1
  242. package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
  243. package/web/.next/server/app/settings/page/server-reference-manifest.json +10 -10
  244. package/web/.next/server/app/settings/page.js +1 -1
  245. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  246. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  247. package/web/.next/server/app/skills/page/server-reference-manifest.json +15 -15
  248. package/web/.next/server/app/skills/page.js +1 -1
  249. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  250. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  251. package/web/.next/server/app/tools/page/server-reference-manifest.json +13 -13
  252. package/web/.next/server/app/tools/page.js +1 -1
  253. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  254. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  255. package/web/.next/server/app/version/page/server-reference-manifest.json +7 -7
  256. package/web/.next/server/app/version/page.js +1 -1
  257. package/web/.next/server/app/version/page.js.nft.json +1 -1
  258. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  259. package/web/.next/server/app-paths-manifest.json +4 -0
  260. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_[id]_route_actions_e31b426d.js +3 -0
  261. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_[id]_route_actions_e31b426d.js.map +1 -0
  262. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_route_actions_2b7d20d0.js +3 -0
  263. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_route_actions_2b7d20d0.js.map +1 -0
  264. package/web/.next/server/chunks/[root-of-the-server]__3bb635e8._.js +3 -0
  265. package/web/.next/server/chunks/[root-of-the-server]__3bb635e8._.js.map +1 -0
  266. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  267. package/web/.next/server/chunks/[root-of-the-server]__ac0027b4._.js +3 -0
  268. package/web/.next/server/chunks/[root-of-the-server]__ac0027b4._.js.map +1 -0
  269. package/web/.next/server/chunks/[root-of-the-server]__b2a4bfcc._.js.map +1 -1
  270. package/web/.next/server/chunks/[root-of-the-server]__c8f90b29._.js +1 -1
  271. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  272. package/web/.next/server/chunks/[root-of-the-server]__ce82df38._.js +3 -0
  273. package/web/.next/server/chunks/[root-of-the-server]__ce82df38._.js.map +1 -0
  274. package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_applications_[id]_resume_route_actions_3a66d646.js +3 -0
  275. package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_applications_[id]_resume_route_actions_3a66d646.js.map +1 -0
  276. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4f9eef62.js +3 -0
  277. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4f9eef62.js.map +1 -0
  278. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_ffa16a22.js +3 -0
  279. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_ffa16a22.js.map +1 -0
  280. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_a1a998f9.js +3 -0
  281. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_a1a998f9.js.map +1 -0
  282. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  283. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  284. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  285. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  286. package/web/.next/server/chunks/ssr/744ca_web_components_features_applications_applications-page-client_tsx_d0db9938._.js +3 -0
  287. package/web/.next/server/chunks/ssr/744ca_web_components_features_applications_applications-page-client_tsx_d0db9938._.js.map +1 -0
  288. package/web/.next/server/chunks/ssr/[root-of-the-server]__04f4895b._.js +3 -0
  289. package/web/.next/server/chunks/ssr/[root-of-the-server]__04f4895b._.js.map +1 -0
  290. package/web/.next/server/chunks/ssr/[root-of-the-server]__17dadd08._.js +1 -1
  291. package/web/.next/server/chunks/ssr/[root-of-the-server]__17dadd08._.js.map +1 -1
  292. package/web/.next/server/chunks/ssr/[root-of-the-server]__1925bef0._.js +1 -1
  293. package/web/.next/server/chunks/ssr/[root-of-the-server]__1a9687c4._.js +1 -1
  294. package/web/.next/server/chunks/ssr/[root-of-the-server]__1a9687c4._.js.map +1 -1
  295. package/web/.next/server/chunks/ssr/[root-of-the-server]__347fd0f6._.js +3 -0
  296. package/web/.next/server/chunks/ssr/[root-of-the-server]__347fd0f6._.js.map +1 -0
  297. package/web/.next/server/chunks/ssr/[root-of-the-server]__46dd2baf._.js +3 -0
  298. package/web/.next/server/chunks/ssr/[root-of-the-server]__46dd2baf._.js.map +1 -0
  299. package/web/.next/server/chunks/ssr/[root-of-the-server]__4ee8be85._.js +1 -1
  300. package/web/.next/server/chunks/ssr/[root-of-the-server]__73cb4ff6._.js +3 -0
  301. package/web/.next/server/chunks/ssr/[root-of-the-server]__73cb4ff6._.js.map +1 -0
  302. package/web/.next/server/chunks/ssr/{[root-of-the-server]__87bc4dac._.js → [root-of-the-server]__86ff0bc5._.js} +3 -3
  303. package/web/.next/server/chunks/ssr/[root-of-the-server]__86ff0bc5._.js.map +1 -0
  304. package/web/.next/server/chunks/ssr/[root-of-the-server]__91c50abe._.js +3 -0
  305. package/web/.next/server/chunks/ssr/[root-of-the-server]__91c50abe._.js.map +1 -0
  306. package/web/.next/server/chunks/ssr/[root-of-the-server]__a48af49f._.js +3 -0
  307. package/web/.next/server/chunks/ssr/[root-of-the-server]__a48af49f._.js.map +1 -0
  308. package/web/.next/server/chunks/ssr/[root-of-the-server]__bb391c45._.js +1 -1
  309. package/web/.next/server/chunks/ssr/[root-of-the-server]__bb391c45._.js.map +1 -1
  310. package/web/.next/server/chunks/ssr/[root-of-the-server]__d5e22d1a._.js +3 -0
  311. package/web/.next/server/chunks/ssr/{[root-of-the-server]__7aa484f5._.js.map → [root-of-the-server]__d5e22d1a._.js.map} +1 -1
  312. package/web/.next/server/chunks/ssr/[root-of-the-server]__dd3e834e._.js +1 -1
  313. package/web/.next/server/chunks/ssr/[root-of-the-server]__dd3e834e._.js.map +1 -1
  314. package/web/.next/server/chunks/ssr/[root-of-the-server]__e0aa2bcb._.js +3 -0
  315. package/web/.next/server/chunks/ssr/[root-of-the-server]__e0aa2bcb._.js.map +1 -0
  316. package/web/.next/server/chunks/ssr/[root-of-the-server]__e265da61._.js +1 -1
  317. package/web/.next/server/chunks/ssr/[root-of-the-server]__ef0b8905._.js +12 -0
  318. package/web/.next/server/chunks/ssr/[root-of-the-server]__ef0b8905._.js.map +1 -0
  319. package/web/.next/server/chunks/ssr/[root-of-the-server]__f5614810._.js +3 -0
  320. package/web/.next/server/chunks/ssr/{[root-of-the-server]__090f24cb._.js.map → [root-of-the-server]__f5614810._.js.map} +1 -1
  321. package/web/.next/server/chunks/ssr/[root-of-the-server]__fe5db6b2._.js +3 -0
  322. package/web/.next/server/chunks/ssr/[root-of-the-server]__fe5db6b2._.js.map +1 -0
  323. package/web/.next/server/chunks/ssr/_037e85c7._.js +3 -0
  324. package/web/.next/server/chunks/ssr/_037e85c7._.js.map +1 -0
  325. package/web/.next/server/chunks/ssr/{_774cbf7d._.js → _133ae3de._.js} +2 -2
  326. package/web/.next/server/chunks/ssr/{_774cbf7d._.js.map → _133ae3de._.js.map} +1 -1
  327. package/web/.next/server/chunks/ssr/_1879404a._.js +1 -1
  328. package/web/.next/server/chunks/ssr/_1879404a._.js.map +1 -1
  329. package/web/.next/server/chunks/ssr/_295fffde._.js.map +1 -1
  330. package/web/.next/server/chunks/ssr/_29b8ed64._.js +3 -0
  331. package/web/.next/server/chunks/ssr/_29b8ed64._.js.map +1 -0
  332. package/web/.next/server/chunks/ssr/_2bc302d1._.js +3 -0
  333. package/web/.next/server/chunks/ssr/_2bc302d1._.js.map +1 -0
  334. package/web/.next/server/chunks/ssr/_35294e79._.js +3 -0
  335. package/web/.next/server/chunks/ssr/_35294e79._.js.map +1 -0
  336. package/web/.next/server/chunks/ssr/_3683083e._.js +3 -0
  337. package/web/.next/server/chunks/ssr/_3683083e._.js.map +1 -0
  338. package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
  339. package/web/.next/server/chunks/ssr/_4b57bcc3._.js +9 -0
  340. package/web/.next/server/chunks/ssr/_4b57bcc3._.js.map +1 -0
  341. package/web/.next/server/chunks/ssr/_519d77a9._.js +3 -0
  342. package/web/.next/server/chunks/ssr/_519d77a9._.js.map +1 -0
  343. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  344. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  345. package/web/.next/server/chunks/ssr/_82db03fd._.js +3 -0
  346. package/web/.next/server/chunks/ssr/_82db03fd._.js.map +1 -0
  347. package/web/.next/server/chunks/ssr/_8c3086bf._.js +3 -0
  348. package/web/.next/server/chunks/ssr/_8c3086bf._.js.map +1 -0
  349. package/web/.next/server/chunks/ssr/_9173e475._.js +21 -0
  350. package/web/.next/server/chunks/ssr/_9173e475._.js.map +1 -0
  351. package/web/.next/server/chunks/ssr/_946a7fc6._.js +1 -1
  352. package/web/.next/server/chunks/ssr/_946a7fc6._.js.map +1 -1
  353. package/web/.next/server/chunks/ssr/{_81e7a131._.js → _a08047ef._.js} +2 -2
  354. package/web/.next/server/chunks/ssr/_a08047ef._.js.map +1 -0
  355. package/web/.next/server/chunks/ssr/_bc03ac82._.js +4 -0
  356. package/web/.next/server/chunks/ssr/_bc03ac82._.js.map +1 -0
  357. package/web/.next/server/chunks/ssr/_d4c0792b._.js +3 -0
  358. package/web/.next/server/chunks/ssr/_d4c0792b._.js.map +1 -0
  359. package/web/.next/server/chunks/ssr/_e61d032d._.js +3 -0
  360. package/web/.next/server/chunks/ssr/_e61d032d._.js.map +1 -0
  361. package/web/.next/server/chunks/ssr/_e65abbd1._.js +3 -0
  362. package/web/.next/server/chunks/ssr/_e65abbd1._.js.map +1 -0
  363. package/web/.next/server/chunks/ssr/_f86fc1bf._.js +1 -1
  364. package/web/.next/server/chunks/ssr/_f86fc1bf._.js.map +1 -1
  365. package/web/.next/server/chunks/ssr/_f8c55130._.js +1 -1
  366. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  367. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  368. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  369. package/web/.next/server/chunks/ssr/node_modules__pnpm_28a53b5d._.js +3 -0
  370. package/web/.next/server/chunks/ssr/node_modules__pnpm_28a53b5d._.js.map +1 -0
  371. package/web/.next/server/chunks/ssr/src_presentation_web_47181610._.js +3 -0
  372. package/web/.next/server/chunks/ssr/src_presentation_web_47181610._.js.map +1 -0
  373. package/web/.next/server/chunks/ssr/src_presentation_web_5d3f4199._.js +3 -0
  374. package/web/.next/server/chunks/ssr/src_presentation_web_5d3f4199._.js.map +1 -0
  375. package/web/.next/server/chunks/ssr/src_presentation_web_6159fef8._.js +1 -1
  376. package/web/.next/server/chunks/ssr/src_presentation_web_6159fef8._.js.map +1 -1
  377. package/web/.next/server/chunks/ssr/src_presentation_web_61d96ba8._.js +3 -0
  378. package/web/.next/server/chunks/ssr/src_presentation_web_61d96ba8._.js.map +1 -0
  379. package/web/.next/server/chunks/ssr/src_presentation_web_6994959a._.js +3 -0
  380. package/web/.next/server/chunks/ssr/src_presentation_web_6994959a._.js.map +1 -0
  381. package/web/.next/server/chunks/ssr/src_presentation_web_77dadf68._.js +32 -0
  382. package/web/.next/server/chunks/ssr/src_presentation_web_77dadf68._.js.map +1 -0
  383. package/web/.next/server/chunks/ssr/src_presentation_web_9a543843._.js +3 -0
  384. package/web/.next/server/chunks/ssr/src_presentation_web_9a543843._.js.map +1 -0
  385. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_c3f6f57e.js +3 -0
  386. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_c3f6f57e.js.map +1 -0
  387. package/web/.next/server/chunks/ssr/src_presentation_web_ad42cc73._.js +1 -1
  388. package/web/.next/server/chunks/ssr/src_presentation_web_ad42cc73._.js.map +1 -1
  389. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_8514dfcd._.js +32 -0
  390. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_8514dfcd._.js.map +1 -0
  391. package/web/.next/server/chunks/ssr/src_presentation_web_b95ed206._.js +3 -0
  392. package/web/.next/server/chunks/ssr/src_presentation_web_b95ed206._.js.map +1 -0
  393. package/web/.next/server/chunks/ssr/src_presentation_web_bade80bd._.js +3 -0
  394. package/web/.next/server/chunks/ssr/src_presentation_web_bade80bd._.js.map +1 -0
  395. package/web/.next/server/chunks/ssr/src_presentation_web_c543cf3e._.js +3 -0
  396. package/web/.next/server/chunks/ssr/src_presentation_web_c543cf3e._.js.map +1 -0
  397. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  398. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  399. package/web/.next/server/chunks/ssr/src_presentation_web_components_common_base-drawer_base-drawer_tsx_97dfbbc8._.js +1 -1
  400. package/web/.next/server/chunks/ssr/src_presentation_web_components_common_base-drawer_base-drawer_tsx_97dfbbc8._.js.map +1 -1
  401. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
  402. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
  403. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_dropdown-menu_tsx_229332e3._.js +3 -0
  404. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_dropdown-menu_tsx_229332e3._.js.map +1 -0
  405. package/web/.next/server/chunks/ssr/translations_1562ae1a._.js +3 -0
  406. package/web/.next/server/chunks/ssr/translations_1562ae1a._.js.map +1 -0
  407. package/web/.next/server/pages/500.html +2 -2
  408. package/web/.next/server/server-reference-manifest.js +1 -1
  409. package/web/.next/server/server-reference-manifest.json +184 -72
  410. package/web/.next/static/chunks/019e71634c720ede.js +1 -0
  411. package/web/.next/static/chunks/040c5ff84a8ae1a3.js +7 -0
  412. package/web/.next/static/chunks/092ac28f5a4422a0.js +19 -0
  413. package/web/.next/static/chunks/0bd78b0cf1c1421f.js +1 -0
  414. package/web/.next/static/chunks/{996e4ea45364bf3c.js → 18c21c4f9f58b69a.js} +3 -3
  415. package/web/.next/static/chunks/2b5aea3575387b3a.js +1 -0
  416. package/web/.next/static/chunks/2cbe80f8e84d59a8.js +1 -0
  417. package/web/.next/static/chunks/{503d2e86f83285f9.js → 3219b06f6a34e573.js} +1 -1
  418. package/web/.next/static/chunks/37e434e579ecfa02.js +1 -0
  419. package/web/.next/static/chunks/4a7cf3b09e0495a4.js +1 -0
  420. package/web/.next/static/chunks/{83fc7ea32e18c9a5.js → 4ea617a22e21fb04.js} +1 -1
  421. package/web/.next/static/chunks/54d1d5a646a12d76.js +1 -0
  422. package/web/.next/static/chunks/{9e9b60f127270dfd.js → 553be530f22710a7.js} +1 -1
  423. package/web/.next/static/chunks/5795b9f399523c9e.js +1 -0
  424. package/web/.next/static/chunks/{d488e6b5cbbc6833.js → 6a88df64eaeb6322.js} +1 -1
  425. package/web/.next/static/chunks/{2fe20598e1b4793a.js → 6b2859ea368e7df3.js} +3 -3
  426. package/web/.next/static/chunks/6d8cae68371a845d.js +1 -0
  427. package/web/.next/static/chunks/{a2601dbbcb657c7d.js → 78607d521d916531.js} +1 -1
  428. package/web/.next/static/chunks/{7bf6ed16395220c4.js → 7d5a7551d452463d.js} +2 -2
  429. package/web/.next/static/chunks/80e778136b2f4c92.js +1 -0
  430. package/web/.next/static/chunks/a62fb058d660bea3.js +3 -0
  431. package/web/.next/static/chunks/adf16efe8bac05e9.css +1 -0
  432. package/web/.next/static/chunks/b0474319e5a50043.js +1 -0
  433. package/web/.next/static/chunks/b85532fb1545927c.js +5 -0
  434. package/web/.next/static/chunks/e0ae4dbd97b7af4c.js +1 -0
  435. package/web/.next/static/chunks/{2af89379fde6831d.js → f70998ac93012aef.js} +1 -1
  436. package/web/.next/server/chunks/ssr/[root-of-the-server]__013a0318._.js +0 -3
  437. package/web/.next/server/chunks/ssr/[root-of-the-server]__013a0318._.js.map +0 -1
  438. package/web/.next/server/chunks/ssr/[root-of-the-server]__090f24cb._.js +0 -3
  439. package/web/.next/server/chunks/ssr/[root-of-the-server]__24756fa9._.js +0 -12
  440. package/web/.next/server/chunks/ssr/[root-of-the-server]__24756fa9._.js.map +0 -1
  441. package/web/.next/server/chunks/ssr/[root-of-the-server]__70986695._.js +0 -3
  442. package/web/.next/server/chunks/ssr/[root-of-the-server]__70986695._.js.map +0 -1
  443. package/web/.next/server/chunks/ssr/[root-of-the-server]__7aa484f5._.js +0 -3
  444. package/web/.next/server/chunks/ssr/[root-of-the-server]__87bc4dac._.js.map +0 -1
  445. package/web/.next/server/chunks/ssr/[root-of-the-server]__a3a4ddef._.js +0 -3
  446. package/web/.next/server/chunks/ssr/[root-of-the-server]__a3a4ddef._.js.map +0 -1
  447. package/web/.next/server/chunks/ssr/[root-of-the-server]__a4222b95._.js +0 -3
  448. package/web/.next/server/chunks/ssr/[root-of-the-server]__a4222b95._.js.map +0 -1
  449. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5ea76a6._.js +0 -3
  450. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5ea76a6._.js.map +0 -1
  451. package/web/.next/server/chunks/ssr/[root-of-the-server]__a6f2b763._.js +0 -3
  452. package/web/.next/server/chunks/ssr/[root-of-the-server]__a6f2b763._.js.map +0 -1
  453. package/web/.next/server/chunks/ssr/[root-of-the-server]__f3ca7bea._.js +0 -3
  454. package/web/.next/server/chunks/ssr/[root-of-the-server]__f3ca7bea._.js.map +0 -1
  455. package/web/.next/server/chunks/ssr/_0277d3b5._.js +0 -21
  456. package/web/.next/server/chunks/ssr/_0277d3b5._.js.map +0 -1
  457. package/web/.next/server/chunks/ssr/_44531b76._.js +0 -9
  458. package/web/.next/server/chunks/ssr/_44531b76._.js.map +0 -1
  459. package/web/.next/server/chunks/ssr/_5dec4047._.js +0 -3
  460. package/web/.next/server/chunks/ssr/_5dec4047._.js.map +0 -1
  461. package/web/.next/server/chunks/ssr/_73aa3b20._.js +0 -3
  462. package/web/.next/server/chunks/ssr/_73aa3b20._.js.map +0 -1
  463. package/web/.next/server/chunks/ssr/_81e7a131._.js.map +0 -1
  464. package/web/.next/server/chunks/ssr/_869a3a15._.js +0 -3
  465. package/web/.next/server/chunks/ssr/_869a3a15._.js.map +0 -1
  466. package/web/.next/server/chunks/ssr/_b227ff50._.js +0 -3
  467. package/web/.next/server/chunks/ssr/_b227ff50._.js.map +0 -1
  468. package/web/.next/server/chunks/ssr/_d75dcb43._.js +0 -3
  469. package/web/.next/server/chunks/ssr/_d75dcb43._.js.map +0 -1
  470. package/web/.next/server/chunks/ssr/_e071ba48._.js +0 -3
  471. package/web/.next/server/chunks/ssr/_e071ba48._.js.map +0 -1
  472. package/web/.next/server/chunks/ssr/_eff1b518._.js +0 -3
  473. package/web/.next/server/chunks/ssr/_eff1b518._.js.map +0 -1
  474. package/web/.next/server/chunks/ssr/_f227429a._.js +0 -3
  475. package/web/.next/server/chunks/ssr/_f227429a._.js.map +0 -1
  476. package/web/.next/server/chunks/ssr/src_presentation_web_36f2bc45._.js +0 -3
  477. package/web/.next/server/chunks/ssr/src_presentation_web_36f2bc45._.js.map +0 -1
  478. package/web/.next/server/chunks/ssr/src_presentation_web_486908de._.js +0 -3
  479. package/web/.next/server/chunks/ssr/src_presentation_web_486908de._.js.map +0 -1
  480. package/web/.next/server/chunks/ssr/src_presentation_web_5c3596bc._.js +0 -3
  481. package/web/.next/server/chunks/ssr/src_presentation_web_5c3596bc._.js.map +0 -1
  482. package/web/.next/server/chunks/ssr/src_presentation_web_6326f81e._.js +0 -3
  483. package/web/.next/server/chunks/ssr/src_presentation_web_6326f81e._.js.map +0 -1
  484. package/web/.next/server/chunks/ssr/src_presentation_web_6b2fdcd8._.js +0 -3
  485. package/web/.next/server/chunks/ssr/src_presentation_web_6b2fdcd8._.js.map +0 -1
  486. package/web/.next/server/chunks/ssr/src_presentation_web_74703c9f._.js +0 -3
  487. package/web/.next/server/chunks/ssr/src_presentation_web_74703c9f._.js.map +0 -1
  488. package/web/.next/server/chunks/ssr/src_presentation_web_a8056dac._.js +0 -3
  489. package/web/.next/server/chunks/ssr/src_presentation_web_a8056dac._.js.map +0 -1
  490. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +0 -32
  491. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +0 -1
  492. package/web/.next/server/chunks/ssr/src_presentation_web_b00bfb08._.js +0 -3
  493. package/web/.next/server/chunks/ssr/src_presentation_web_b00bfb08._.js.map +0 -1
  494. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +0 -3
  495. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +0 -1
  496. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +0 -3
  497. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +0 -1
  498. package/web/.next/server/chunks/ssr/src_presentation_web_f1edcf5e._.js +0 -3
  499. package/web/.next/server/chunks/ssr/src_presentation_web_f1edcf5e._.js.map +0 -1
  500. package/web/.next/server/chunks/ssr/src_presentation_web_f9436804._.js +0 -3
  501. package/web/.next/server/chunks/ssr/src_presentation_web_f9436804._.js.map +0 -1
  502. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +0 -3
  503. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +0 -1
  504. package/web/.next/static/chunks/06b9d6dbf635c370.css +0 -1
  505. package/web/.next/static/chunks/1ae0cf5be30ef398.js +0 -1
  506. package/web/.next/static/chunks/3a71cab38909921e.js +0 -1
  507. package/web/.next/static/chunks/4e53adb5d07b7e3d.js +0 -1
  508. package/web/.next/static/chunks/5e7ac3508bef115f.js +0 -1
  509. package/web/.next/static/chunks/761a7c542b358739.js +0 -1
  510. package/web/.next/static/chunks/927442d2628f6e22.js +0 -1
  511. package/web/.next/static/chunks/a31f2264cedb23e9.js +0 -1
  512. package/web/.next/static/chunks/abf7d1b66555b758.js +0 -7
  513. package/web/.next/static/chunks/b99506a6f7bc2fa8.js +0 -1
  514. package/web/.next/static/chunks/d984d1d8d506291c.js +0 -7
  515. package/web/.next/static/chunks/e843a0d8e8c645c4.js +0 -1
  516. package/web/.next/static/chunks/f5ed0232d50b1ec8.js +0 -19
  517. /package/web/.next/static/{6GBQ7MHEYpZbJzqULwvXh → t-O8eMjJCUhhtd6CgtTXI}/_buildManifest.js +0 -0
  518. /package/web/.next/static/{6GBQ7MHEYpZbJzqULwvXh → t-O8eMjJCUhhtd6CgtTXI}/_clientMiddlewareManifest.json +0 -0
  519. /package/web/.next/static/{6GBQ7MHEYpZbJzqULwvXh → t-O8eMjJCUhhtd6CgtTXI}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "006509149fb6c2f415f8450c9088450072a014aa1a": {
3
+ "00f373462bd571a1792715325fb5184a126c445327": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
6
  "moduleId": 49851,
@@ -93,7 +93,13 @@
93
93
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
94
94
  },
95
95
  "app/application/[id]/page": {
96
- "moduleId": 6736,
96
+ "moduleId": 70538,
97
+ "async": false,
98
+ "exportedName": "getAllAgentModels",
99
+ "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
100
+ },
101
+ "app/applications/page": {
102
+ "moduleId": 73474,
97
103
  "async": false,
98
104
  "exportedName": "getAllAgentModels",
99
105
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -146,6 +152,7 @@
146
152
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
147
153
  "app/_not-found/page": "action-browser",
148
154
  "app/application/[id]/page": "action-browser",
155
+ "app/applications/page": "action-browser",
149
156
  "app/features/page": "action-browser",
150
157
  "app/settings/page": "action-browser",
151
158
  "app/skills/page": "action-browser",
@@ -155,7 +162,7 @@
155
162
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts",
156
163
  "exportedName": "getAllAgentModels"
157
164
  },
158
- "004f4e5ce8df8f01c0c63485e0ed0718133e1fa853": {
165
+ "00dbbf086a7ef425edbbc5cb9795264e9a155bd40b": {
159
166
  "workers": {
160
167
  "app/(dashboard)/@drawer/adopt/page": {
161
168
  "moduleId": 49851,
@@ -248,7 +255,13 @@
248
255
  "filename": "src/presentation/web/app/actions/check-all-agents-status.ts"
249
256
  },
250
257
  "app/application/[id]/page": {
251
- "moduleId": 6736,
258
+ "moduleId": 70538,
259
+ "async": false,
260
+ "exportedName": "checkAllAgentsStatus",
261
+ "filename": "src/presentation/web/app/actions/check-all-agents-status.ts"
262
+ },
263
+ "app/applications/page": {
264
+ "moduleId": 73474,
252
265
  "async": false,
253
266
  "exportedName": "checkAllAgentsStatus",
254
267
  "filename": "src/presentation/web/app/actions/check-all-agents-status.ts"
@@ -301,6 +314,7 @@
301
314
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
302
315
  "app/_not-found/page": "action-browser",
303
316
  "app/application/[id]/page": "action-browser",
317
+ "app/applications/page": "action-browser",
304
318
  "app/features/page": "action-browser",
305
319
  "app/settings/page": "action-browser",
306
320
  "app/skills/page": "action-browser",
@@ -310,7 +324,7 @@
310
324
  "filename": "src/presentation/web/app/actions/check-all-agents-status.ts",
311
325
  "exportedName": "checkAllAgentsStatus"
312
326
  },
313
- "609c3cd490c6f827a214c5e775cde00e9cee2bd2da": {
327
+ "60b4cbab57a503aa7c536cfc32583da15139bead1a": {
314
328
  "workers": {
315
329
  "app/(dashboard)/@drawer/adopt/page": {
316
330
  "moduleId": 49851,
@@ -403,7 +417,13 @@
403
417
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
404
418
  },
405
419
  "app/application/[id]/page": {
406
- "moduleId": 6736,
420
+ "moduleId": 70538,
421
+ "async": false,
422
+ "exportedName": "updateAgentAndModel",
423
+ "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
424
+ },
425
+ "app/applications/page": {
426
+ "moduleId": 73474,
407
427
  "async": false,
408
428
  "exportedName": "updateAgentAndModel",
409
429
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -456,6 +476,7 @@
456
476
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
457
477
  "app/_not-found/page": "action-browser",
458
478
  "app/application/[id]/page": "action-browser",
479
+ "app/applications/page": "action-browser",
459
480
  "app/features/page": "action-browser",
460
481
  "app/settings/page": "action-browser",
461
482
  "app/skills/page": "action-browser",
@@ -465,7 +486,7 @@
465
486
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts",
466
487
  "exportedName": "updateAgentAndModel"
467
488
  },
468
- "0017a3f596c2b90658bb19c5117be2b6f519bc1314": {
489
+ "009691a6cd3b2c2ef91fbc73255d2709b6c5d051c4": {
469
490
  "workers": {
470
491
  "app/(dashboard)/@drawer/adopt/page": {
471
492
  "moduleId": 49851,
@@ -558,7 +579,13 @@
558
579
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
559
580
  },
560
581
  "app/application/[id]/page": {
561
- "moduleId": 6736,
582
+ "moduleId": 70538,
583
+ "async": false,
584
+ "exportedName": "pickFolder",
585
+ "filename": "src/presentation/web/app/actions/pick-folder.ts"
586
+ },
587
+ "app/applications/page": {
588
+ "moduleId": 73474,
562
589
  "async": false,
563
590
  "exportedName": "pickFolder",
564
591
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -611,6 +638,7 @@
611
638
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
612
639
  "app/_not-found/page": "action-browser",
613
640
  "app/application/[id]/page": "action-browser",
641
+ "app/applications/page": "action-browser",
614
642
  "app/features/page": "action-browser",
615
643
  "app/settings/page": "action-browser",
616
644
  "app/skills/page": "action-browser",
@@ -620,7 +648,7 @@
620
648
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
621
649
  "exportedName": "pickFolder"
622
650
  },
623
- "408c4683e7e38f8046c9dad7739ff677e837c2e436": {
651
+ "4031ecccb7cd5c86319137da2af0a51b0c0f8e0d95": {
624
652
  "workers": {
625
653
  "app/(dashboard)/@drawer/adopt/page": {
626
654
  "moduleId": 49851,
@@ -713,7 +741,13 @@
713
741
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
714
742
  },
715
743
  "app/application/[id]/page": {
716
- "moduleId": 6736,
744
+ "moduleId": 70538,
745
+ "async": false,
746
+ "exportedName": "listGitHubRepositories",
747
+ "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
748
+ },
749
+ "app/applications/page": {
750
+ "moduleId": 73474,
717
751
  "async": false,
718
752
  "exportedName": "listGitHubRepositories",
719
753
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -766,6 +800,7 @@
766
800
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
767
801
  "app/_not-found/page": "action-browser",
768
802
  "app/application/[id]/page": "action-browser",
803
+ "app/applications/page": "action-browser",
769
804
  "app/features/page": "action-browser",
770
805
  "app/settings/page": "action-browser",
771
806
  "app/skills/page": "action-browser",
@@ -775,7 +810,7 @@
775
810
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts",
776
811
  "exportedName": "listGitHubRepositories"
777
812
  },
778
- "0032e72d1011d4e626b5503edd0fef331cb9e8ae13": {
813
+ "0090375660d2bf0df09932302bb2d6896c322ddc2f": {
779
814
  "workers": {
780
815
  "app/(dashboard)/@drawer/adopt/page": {
781
816
  "moduleId": 49851,
@@ -868,7 +903,13 @@
868
903
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
869
904
  },
870
905
  "app/application/[id]/page": {
871
- "moduleId": 6736,
906
+ "moduleId": 70538,
907
+ "async": false,
908
+ "exportedName": "listGitHubOrganizations",
909
+ "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
910
+ },
911
+ "app/applications/page": {
912
+ "moduleId": 73474,
872
913
  "async": false,
873
914
  "exportedName": "listGitHubOrganizations",
874
915
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -921,6 +962,7 @@
921
962
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
922
963
  "app/_not-found/page": "action-browser",
923
964
  "app/application/[id]/page": "action-browser",
965
+ "app/applications/page": "action-browser",
924
966
  "app/features/page": "action-browser",
925
967
  "app/settings/page": "action-browser",
926
968
  "app/skills/page": "action-browser",
@@ -930,7 +972,7 @@
930
972
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts",
931
973
  "exportedName": "listGitHubOrganizations"
932
974
  },
933
- "402a9388c4c40595790daa4181cb39052554de06ed": {
975
+ "40895ee90ed9c02eb9b0d9db928e937cde07a407a4": {
934
976
  "workers": {
935
977
  "app/(dashboard)/@drawer/adopt/page": {
936
978
  "moduleId": 49851,
@@ -1023,7 +1065,13 @@
1023
1065
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
1024
1066
  },
1025
1067
  "app/application/[id]/page": {
1026
- "moduleId": 6736,
1068
+ "moduleId": 70538,
1069
+ "async": false,
1070
+ "exportedName": "importGitHubRepository",
1071
+ "filename": "src/presentation/web/app/actions/import-github-repository.ts"
1072
+ },
1073
+ "app/applications/page": {
1074
+ "moduleId": 73474,
1027
1075
  "async": false,
1028
1076
  "exportedName": "importGitHubRepository",
1029
1077
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -1076,6 +1124,7 @@
1076
1124
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
1077
1125
  "app/_not-found/page": "action-browser",
1078
1126
  "app/application/[id]/page": "action-browser",
1127
+ "app/applications/page": "action-browser",
1079
1128
  "app/features/page": "action-browser",
1080
1129
  "app/settings/page": "action-browser",
1081
1130
  "app/skills/page": "action-browser",
@@ -1085,7 +1134,7 @@
1085
1134
  "filename": "src/presentation/web/app/actions/import-github-repository.ts",
1086
1135
  "exportedName": "importGitHubRepository"
1087
1136
  },
1088
- "4019f70a0543cf0486aa16490cbe978f2a34a2347e": {
1137
+ "4019757a68b2ab125dac7b85cd2e1dac22da3db6c5": {
1089
1138
  "workers": {
1090
1139
  "app/(dashboard)/@drawer/adopt/page": {
1091
1140
  "moduleId": 49851,
@@ -1172,7 +1221,13 @@
1172
1221
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
1173
1222
  },
1174
1223
  "app/application/[id]/page": {
1175
- "moduleId": 6736,
1224
+ "moduleId": 70538,
1225
+ "async": false,
1226
+ "exportedName": "deployFeature",
1227
+ "filename": "src/presentation/web/app/actions/deploy-feature.ts"
1228
+ },
1229
+ "app/applications/page": {
1230
+ "moduleId": 73474,
1176
1231
  "async": false,
1177
1232
  "exportedName": "deployFeature",
1178
1233
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -1206,13 +1261,14 @@
1206
1261
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
1207
1262
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
1208
1263
  "app/application/[id]/page": "action-browser",
1264
+ "app/applications/page": "action-browser",
1209
1265
  "app/skills/page": "action-browser",
1210
1266
  "app/tools/page": "action-browser"
1211
1267
  },
1212
1268
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
1213
1269
  "exportedName": "deployFeature"
1214
1270
  },
1215
- "40b3ff55d8c6015de48f42ddd0a47a270c41d82366": {
1271
+ "40948fe1c9352411e89edf299ed1e8f51bce06bee4": {
1216
1272
  "workers": {
1217
1273
  "app/(dashboard)/@drawer/adopt/page": {
1218
1274
  "moduleId": 49851,
@@ -1299,7 +1355,13 @@
1299
1355
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
1300
1356
  },
1301
1357
  "app/application/[id]/page": {
1302
- "moduleId": 6736,
1358
+ "moduleId": 70538,
1359
+ "async": false,
1360
+ "exportedName": "deployRepository",
1361
+ "filename": "src/presentation/web/app/actions/deploy-repository.ts"
1362
+ },
1363
+ "app/applications/page": {
1364
+ "moduleId": 73474,
1303
1365
  "async": false,
1304
1366
  "exportedName": "deployRepository",
1305
1367
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -1333,13 +1395,14 @@
1333
1395
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
1334
1396
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
1335
1397
  "app/application/[id]/page": "action-browser",
1398
+ "app/applications/page": "action-browser",
1336
1399
  "app/skills/page": "action-browser",
1337
1400
  "app/tools/page": "action-browser"
1338
1401
  },
1339
1402
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
1340
1403
  "exportedName": "deployRepository"
1341
1404
  },
1342
- "4083635fcd972ab212a5a17bf919c30711e14955c3": {
1405
+ "408ebe4b532992092d18a9b513f7f54038544f0585": {
1343
1406
  "workers": {
1344
1407
  "app/(dashboard)/@drawer/adopt/page": {
1345
1408
  "moduleId": 49851,
@@ -1426,7 +1489,13 @@
1426
1489
  "filename": "src/presentation/web/app/actions/deploy-application.ts"
1427
1490
  },
1428
1491
  "app/application/[id]/page": {
1429
- "moduleId": 6736,
1492
+ "moduleId": 70538,
1493
+ "async": false,
1494
+ "exportedName": "deployApplication",
1495
+ "filename": "src/presentation/web/app/actions/deploy-application.ts"
1496
+ },
1497
+ "app/applications/page": {
1498
+ "moduleId": 73474,
1430
1499
  "async": false,
1431
1500
  "exportedName": "deployApplication",
1432
1501
  "filename": "src/presentation/web/app/actions/deploy-application.ts"
@@ -1460,13 +1529,14 @@
1460
1529
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
1461
1530
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
1462
1531
  "app/application/[id]/page": "action-browser",
1532
+ "app/applications/page": "action-browser",
1463
1533
  "app/skills/page": "action-browser",
1464
1534
  "app/tools/page": "action-browser"
1465
1535
  },
1466
1536
  "filename": "src/presentation/web/app/actions/deploy-application.ts",
1467
1537
  "exportedName": "deployApplication"
1468
1538
  },
1469
- "402f3ec754226496bb37e1bf882a17def51cf8ccb8": {
1539
+ "4058d4d774b9a00d4ea404dc2e1dffd3559a13fa1e": {
1470
1540
  "workers": {
1471
1541
  "app/(dashboard)/@drawer/adopt/page": {
1472
1542
  "moduleId": 49851,
@@ -1553,7 +1623,13 @@
1553
1623
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1554
1624
  },
1555
1625
  "app/application/[id]/page": {
1556
- "moduleId": 6736,
1626
+ "moduleId": 70538,
1627
+ "async": false,
1628
+ "exportedName": "stopDeployment",
1629
+ "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1630
+ },
1631
+ "app/applications/page": {
1632
+ "moduleId": 73474,
1557
1633
  "async": false,
1558
1634
  "exportedName": "stopDeployment",
1559
1635
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -1587,13 +1663,14 @@
1587
1663
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
1588
1664
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
1589
1665
  "app/application/[id]/page": "action-browser",
1666
+ "app/applications/page": "action-browser",
1590
1667
  "app/skills/page": "action-browser",
1591
1668
  "app/tools/page": "action-browser"
1592
1669
  },
1593
1670
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
1594
1671
  "exportedName": "stopDeployment"
1595
1672
  },
1596
- "40ae71a74448e4f534011f66f784be8cc3005391e7": {
1673
+ "40c3e4f1640509f222ee938f58e619fb9dc9e885ad": {
1597
1674
  "workers": {
1598
1675
  "app/(dashboard)/@drawer/adopt/page": {
1599
1676
  "moduleId": 49851,
@@ -1680,7 +1757,13 @@
1680
1757
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1681
1758
  },
1682
1759
  "app/application/[id]/page": {
1683
- "moduleId": 6736,
1760
+ "moduleId": 70538,
1761
+ "async": false,
1762
+ "exportedName": "getDeploymentStatus",
1763
+ "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1764
+ },
1765
+ "app/applications/page": {
1766
+ "moduleId": 73474,
1684
1767
  "async": false,
1685
1768
  "exportedName": "getDeploymentStatus",
1686
1769
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -1714,13 +1797,14 @@
1714
1797
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
1715
1798
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
1716
1799
  "app/application/[id]/page": "action-browser",
1800
+ "app/applications/page": "action-browser",
1717
1801
  "app/skills/page": "action-browser",
1718
1802
  "app/tools/page": "action-browser"
1719
1803
  },
1720
1804
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
1721
1805
  "exportedName": "getDeploymentStatus"
1722
1806
  },
1723
- "406858434b1d40a654474f652e273dacff0f114a8f": {
1807
+ "40227fbf1f06087486d930f2be73341e7ed80091c3": {
1724
1808
  "workers": {
1725
1809
  "app/(dashboard)/@drawer/adopt/page": {
1726
1810
  "moduleId": 49851,
@@ -1826,7 +1910,7 @@
1826
1910
  "filename": "src/presentation/web/app/actions/open-ide.ts",
1827
1911
  "exportedName": "openIde"
1828
1912
  },
1829
- "409173b44abca96c719c7230f6de025f6d9bea0849": {
1913
+ "401e7b7f484afefb6755fb3d3f2c2a4c3ed1ec3f99": {
1830
1914
  "workers": {
1831
1915
  "app/(dashboard)/@drawer/adopt/page": {
1832
1916
  "moduleId": 49851,
@@ -1932,7 +2016,7 @@
1932
2016
  "filename": "src/presentation/web/app/actions/open-shell.ts",
1933
2017
  "exportedName": "openShell"
1934
2018
  },
1935
- "4028cc39abb05ca7c18237aafb41d8134bdb40a3ab": {
2019
+ "407ae360e1c587f168a62691f5fbb902cc30239161": {
1936
2020
  "workers": {
1937
2021
  "app/(dashboard)/@drawer/adopt/page": {
1938
2022
  "moduleId": 49851,
@@ -2019,7 +2103,7 @@
2019
2103
  "filename": "src/presentation/web/app/actions/open-folder.ts"
2020
2104
  },
2021
2105
  "app/application/[id]/page": {
2022
- "moduleId": 6736,
2106
+ "moduleId": 70538,
2023
2107
  "async": false,
2024
2108
  "exportedName": "openFolder",
2025
2109
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -2045,7 +2129,7 @@
2045
2129
  "filename": "src/presentation/web/app/actions/open-folder.ts",
2046
2130
  "exportedName": "openFolder"
2047
2131
  },
2048
- "4043971339eb4f84d2ca25693efa0c5145dce877af": {
2132
+ "40a57525e1106170a91c42e7c7f3fa9a53481100c8": {
2049
2133
  "workers": {
2050
2134
  "app/(dashboard)/@drawer/adopt/page": {
2051
2135
  "moduleId": 49851,
@@ -2151,7 +2235,7 @@
2151
2235
  "filename": "src/presentation/web/app/actions/sync-repository.ts",
2152
2236
  "exportedName": "syncRepository"
2153
2237
  },
2154
- "40c3fcb203be759711825a5cac090e83e5c3b8e45f": {
2238
+ "402a5f9c99ccbf1d3c0cc441ba92b451798b3f5c40": {
2155
2239
  "workers": {
2156
2240
  "app/(dashboard)/@drawer/adopt/page": {
2157
2241
  "moduleId": 49851,
@@ -2271,7 +2355,7 @@
2271
2355
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
2272
2356
  "exportedName": "getDeploymentLogs"
2273
2357
  },
2274
- "403fbb28c13795acda94d00d80fca36290fbb3d9c4": {
2358
+ "4026e56be70d948dc3268ab6e2f2886a1104d8cd07": {
2275
2359
  "workers": {
2276
2360
  "app/(dashboard)/@drawer/adopt/page": {
2277
2361
  "moduleId": 49851,
@@ -2356,6 +2440,12 @@
2356
2440
  "async": false,
2357
2441
  "exportedName": "createProjectAndFeature",
2358
2442
  "filename": "src/presentation/web/app/actions/create-project-and-feature.ts"
2443
+ },
2444
+ "app/applications/page": {
2445
+ "moduleId": 73474,
2446
+ "async": false,
2447
+ "exportedName": "createProjectAndFeature",
2448
+ "filename": "src/presentation/web/app/actions/create-project-and-feature.ts"
2359
2449
  }
2360
2450
  },
2361
2451
  "layer": {
@@ -2372,12 +2462,13 @@
2372
2462
  "app/(dashboard)/feature/[featureId]/page": "action-browser",
2373
2463
  "app/(dashboard)/page": "action-browser",
2374
2464
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
2375
- "app/(dashboard)/repository/[repositoryId]/page": "action-browser"
2465
+ "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
2466
+ "app/applications/page": "action-browser"
2376
2467
  },
2377
2468
  "filename": "src/presentation/web/app/actions/create-project-and-feature.ts",
2378
2469
  "exportedName": "createProjectAndFeature"
2379
2470
  },
2380
- "40b9d57439db23ee8fffe27f9307cddf7e203b1f95": {
2471
+ "40f8c300c4c7d5f53c5c9434afc2eaaa9da4769348": {
2381
2472
  "workers": {
2382
2473
  "app/(dashboard)/@drawer/adopt/page": {
2383
2474
  "moduleId": 49851,
@@ -2462,6 +2553,12 @@
2462
2553
  "async": false,
2463
2554
  "exportedName": "createApplication",
2464
2555
  "filename": "src/presentation/web/app/actions/create-application.ts"
2556
+ },
2557
+ "app/applications/page": {
2558
+ "moduleId": 73474,
2559
+ "async": false,
2560
+ "exportedName": "createApplication",
2561
+ "filename": "src/presentation/web/app/actions/create-application.ts"
2465
2562
  }
2466
2563
  },
2467
2564
  "layer": {
@@ -2478,12 +2575,13 @@
2478
2575
  "app/(dashboard)/feature/[featureId]/page": "action-browser",
2479
2576
  "app/(dashboard)/page": "action-browser",
2480
2577
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
2481
- "app/(dashboard)/repository/[repositoryId]/page": "action-browser"
2578
+ "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
2579
+ "app/applications/page": "action-browser"
2482
2580
  },
2483
2581
  "filename": "src/presentation/web/app/actions/create-application.ts",
2484
2582
  "exportedName": "createApplication"
2485
2583
  },
2486
- "40a6376439dd2da25ab983e84a2e327778f8f453f4": {
2584
+ "40d591435cbf5e2844d6b0f56fb270938d5c8489e7": {
2487
2585
  "workers": {
2488
2586
  "app/(dashboard)/@drawer/adopt/page": {
2489
2587
  "moduleId": 49851,
@@ -2589,7 +2687,7 @@
2589
2687
  "filename": "src/presentation/web/app/actions/create-project-folder.ts",
2590
2688
  "exportedName": "createProjectFolder"
2591
2689
  },
2592
- "406260b7003b9bf0cb14ef656aafd980487280c22c": {
2690
+ "40efbe9d403a44d886e0e48abc4980547033c4d898": {
2593
2691
  "workers": {
2594
2692
  "app/(dashboard)/@drawer/adopt/page": {
2595
2693
  "moduleId": 49851,
@@ -2695,7 +2793,7 @@
2695
2793
  "filename": "src/presentation/web/app/actions/archive-feature.ts",
2696
2794
  "exportedName": "archiveFeature"
2697
2795
  },
2698
- "7812c1aa0763b4d79f2e787daf598094ad499c8a1a": {
2796
+ "78ffe5e01b8dbdc2aea6bf9627a1d57fc4f618024c": {
2699
2797
  "workers": {
2700
2798
  "app/(dashboard)/@drawer/adopt/page": {
2701
2799
  "moduleId": 49851,
@@ -2801,7 +2899,7 @@
2801
2899
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
2802
2900
  "exportedName": "deleteFeature"
2803
2901
  },
2804
- "40429c9cf912c02f17c2da08bf4e9db4d1a9081059": {
2902
+ "400b887a616cbf773d1916f3c9befda61ada388bbd": {
2805
2903
  "workers": {
2806
2904
  "app/(dashboard)/@drawer/adopt/page": {
2807
2905
  "moduleId": 49851,
@@ -2907,7 +3005,7 @@
2907
3005
  "filename": "src/presentation/web/app/actions/resume-feature.ts",
2908
3006
  "exportedName": "resumeFeature"
2909
3007
  },
2910
- "409f36190e2ab34a496a18a1119a535d506aa6c3c8": {
3008
+ "40726cf93f7ac7e2721f95270a9e1add6a92c81e35": {
2911
3009
  "workers": {
2912
3010
  "app/(dashboard)/@drawer/adopt/page": {
2913
3011
  "moduleId": 49851,
@@ -3013,7 +3111,7 @@
3013
3111
  "filename": "src/presentation/web/app/actions/start-feature.ts",
3014
3112
  "exportedName": "startFeature"
3015
3113
  },
3016
- "40546ee39227e6e083b5ff161e95a54a24a3739a1c": {
3114
+ "40bf7f0efdba8ee98115b817c2be5858318a7f47e8": {
3017
3115
  "workers": {
3018
3116
  "app/(dashboard)/@drawer/adopt/page": {
3019
3117
  "moduleId": 49851,
@@ -3119,7 +3217,7 @@
3119
3217
  "filename": "src/presentation/web/app/actions/stop-feature.ts",
3120
3218
  "exportedName": "stopFeature"
3121
3219
  },
3122
- "40023dc327570cea6ff2a1177e996854851a51c089": {
3220
+ "402cdb26f49257eeb71728b1b3e61835d9fcf99014": {
3123
3221
  "workers": {
3124
3222
  "app/(dashboard)/@drawer/adopt/page": {
3125
3223
  "moduleId": 49851,
@@ -3225,7 +3323,7 @@
3225
3323
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts",
3226
3324
  "exportedName": "unarchiveFeature"
3227
3325
  },
3228
- "40b04b2895d648863306ce7d024b5e9baa6ef8ec7b": {
3326
+ "40d9f11e8b5a5014c05d6e7c71d286bc3e3cf967f9": {
3229
3327
  "workers": {
3230
3328
  "app/(dashboard)/@drawer/adopt/page": {
3231
3329
  "moduleId": 49851,
@@ -3331,7 +3429,7 @@
3331
3429
  "filename": "src/presentation/web/app/actions/add-repository.ts",
3332
3430
  "exportedName": "addRepository"
3333
3431
  },
3334
- "6036bd2e834ebd0c4acfa043c83e1a1f595d949be9": {
3432
+ "606a87dde2ab8df2216d158a8b5e396110073e0a9b": {
3335
3433
  "workers": {
3336
3434
  "app/(dashboard)/@drawer/adopt/page": {
3337
3435
  "moduleId": 49851,
@@ -3437,7 +3535,7 @@
3437
3535
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
3438
3536
  "exportedName": "deleteRepository"
3439
3537
  },
3440
- "40ee07562b07beaa415ee4ea443c25c60934686a33": {
3538
+ "40967a1f7fb638f1a5c3db0578e8e9496de2aa9b41": {
3441
3539
  "workers": {
3442
3540
  "app/(dashboard)/@drawer/adopt/page": {
3443
3541
  "moduleId": 49851,
@@ -3522,6 +3620,18 @@
3522
3620
  "async": false,
3523
3621
  "exportedName": "deleteApplication",
3524
3622
  "filename": "src/presentation/web/app/actions/delete-application.ts"
3623
+ },
3624
+ "app/application/[id]/page": {
3625
+ "moduleId": 70538,
3626
+ "async": false,
3627
+ "exportedName": "deleteApplication",
3628
+ "filename": "src/presentation/web/app/actions/delete-application.ts"
3629
+ },
3630
+ "app/applications/page": {
3631
+ "moduleId": 73474,
3632
+ "async": false,
3633
+ "exportedName": "deleteApplication",
3634
+ "filename": "src/presentation/web/app/actions/delete-application.ts"
3525
3635
  }
3526
3636
  },
3527
3637
  "layer": {
@@ -3538,12 +3648,14 @@
3538
3648
  "app/(dashboard)/feature/[featureId]/page": "action-browser",
3539
3649
  "app/(dashboard)/page": "action-browser",
3540
3650
  "app/(dashboard)/repository/[repositoryId]/[tab]/page": "action-browser",
3541
- "app/(dashboard)/repository/[repositoryId]/page": "action-browser"
3651
+ "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
3652
+ "app/application/[id]/page": "action-browser",
3653
+ "app/applications/page": "action-browser"
3542
3654
  },
3543
3655
  "filename": "src/presentation/web/app/actions/delete-application.ts",
3544
3656
  "exportedName": "deleteApplication"
3545
3657
  },
3546
- "40af4871c7609c265aa4f2438b045c7abe38fe6e69": {
3658
+ "4066f99f07b348d08962c2d7639dd18f214b5947e1": {
3547
3659
  "workers": {
3548
3660
  "app/(dashboard)/@drawer/adopt/page": {
3549
3661
  "moduleId": 49851,
@@ -3649,7 +3761,7 @@
3649
3761
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts",
3650
3762
  "exportedName": "getFeatureMetadata"
3651
3763
  },
3652
- "40df04b98f7a9273f2459d0404f30d7673af744f3e": {
3764
+ "402aa05f4e9c22a6e964decad28ccad0b758fd7516": {
3653
3765
  "workers": {
3654
3766
  "app/(dashboard)/@drawer/adopt/page": {
3655
3767
  "moduleId": 49851,
@@ -3664,7 +3776,7 @@
3664
3776
  "filename": "src/presentation/web/app/actions/adopt-branch.ts",
3665
3777
  "exportedName": "adoptBranch"
3666
3778
  },
3667
- "4055f6e02aa7b824edd3ce6054b0867f23b393d0b3": {
3779
+ "40a3c018dea53e595927e72600253e07a2f17baf3e": {
3668
3780
  "workers": {
3669
3781
  "app/(dashboard)/@drawer/adopt/page": {
3670
3782
  "moduleId": 49851,
@@ -3679,7 +3791,7 @@
3679
3791
  "filename": "src/presentation/web/app/actions/list-branches.ts",
3680
3792
  "exportedName": "listBranches"
3681
3793
  },
3682
- "00d32d5310df3ff792dfc6d8b67395f5ae206a5d56": {
3794
+ "009b2eebb24492818967fe4ceb71a68aff9493f1ee": {
3683
3795
  "workers": {
3684
3796
  "app/(dashboard)/@drawer/create/page": {
3685
3797
  "moduleId": 25637,
@@ -3701,7 +3813,7 @@
3701
3813
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
3702
3814
  "exportedName": "getWorkflowDefaults"
3703
3815
  },
3704
- "400ffd5690a8959d9374602bf4fb0609303f830c03": {
3816
+ "40c0af35a93210890daf635d8591a65315a5d61a27": {
3705
3817
  "workers": {
3706
3818
  "app/(dashboard)/@drawer/create/page": {
3707
3819
  "moduleId": 25637,
@@ -3723,7 +3835,7 @@
3723
3835
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts",
3724
3836
  "exportedName": "getViewerPermission"
3725
3837
  },
3726
- "40c2edbd9855aa0f10159f7fa545c5225d6c235eba": {
3838
+ "40d0e3402652c3ee7206eb31e80d3ae87ece9b492e": {
3727
3839
  "workers": {
3728
3840
  "app/(dashboard)/@drawer/create/page": {
3729
3841
  "moduleId": 25637,
@@ -3745,7 +3857,7 @@
3745
3857
  "filename": "src/presentation/web/app/actions/create-feature.ts",
3746
3858
  "exportedName": "createFeature"
3747
3859
  },
3748
- "6039087a3381f6a6686ef42b534ddbf3f8f67bdd22": {
3860
+ "60b9286db32ab26f1802c3d0b2ea8a4d8dd5ef068e": {
3749
3861
  "workers": {
3750
3862
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3751
3863
  "moduleId": 12154,
@@ -3781,7 +3893,7 @@
3781
3893
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
3782
3894
  "exportedName": "approveFeature"
3783
3895
  },
3784
- "709a84cd1e3ffa8578d58ff4eb4f39dd6538631e41": {
3896
+ "7020890fc4c621e67e835300ae1f033ea7afb57ec4": {
3785
3897
  "workers": {
3786
3898
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3787
3899
  "moduleId": 12154,
@@ -3817,7 +3929,7 @@
3817
3929
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
3818
3930
  "exportedName": "rejectFeature"
3819
3931
  },
3820
- "4083d006ea41189fa2953e9550aa68461da1b4b99c": {
3932
+ "40f1d91ee22b9d0676ca8063b50c162be313109212": {
3821
3933
  "workers": {
3822
3934
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3823
3935
  "moduleId": 12154,
@@ -3853,7 +3965,7 @@
3853
3965
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
3854
3966
  "exportedName": "getFeatureArtifact"
3855
3967
  },
3856
- "408176b887fbc26be0b73439d485b1cd75e14100d0": {
3968
+ "40bb79180ab83b9826e800ea3e2330737b54873ee6": {
3857
3969
  "workers": {
3858
3970
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3859
3971
  "moduleId": 12154,
@@ -3889,7 +4001,7 @@
3889
4001
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
3890
4002
  "exportedName": "getResearchArtifact"
3891
4003
  },
3892
- "405394ebaf3f20fd317ae36dfee415d2e7460758af": {
4004
+ "408506d119c0aa4a188ae878633441e4b6b93d5987": {
3893
4005
  "workers": {
3894
4006
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3895
4007
  "moduleId": 12154,
@@ -3925,7 +4037,7 @@
3925
4037
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts",
3926
4038
  "exportedName": "getMergeReviewData"
3927
4039
  },
3928
- "408ca5b81b3349b4c215f61818333e5fbb662c00f5": {
4040
+ "406aa853c3f18f819630a3a4b4b945c72811156e3e": {
3929
4041
  "workers": {
3930
4042
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3931
4043
  "moduleId": 12154,
@@ -3961,7 +4073,7 @@
3961
4073
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts",
3962
4074
  "exportedName": "getFeaturePhaseTimings"
3963
4075
  },
3964
- "4036edf267a20af3a7289c742b0649f671be87bb7e": {
4076
+ "40b4e4bd4de3c0bd9780ca34f30d651ea46f099278": {
3965
4077
  "workers": {
3966
4078
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3967
4079
  "moduleId": 12154,
@@ -3997,7 +4109,7 @@
3997
4109
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts",
3998
4110
  "exportedName": "getFeaturePlan"
3999
4111
  },
4000
- "405da9f06d212a6e2046f77c34e4c7397e63c3cb64": {
4112
+ "40dcdde34cff18456c1dd62c7872727d9ce250415a": {
4001
4113
  "workers": {
4002
4114
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
4003
4115
  "moduleId": 12154,
@@ -4033,7 +4145,7 @@
4033
4145
  "filename": "src/presentation/web/app/actions/rebase-feature.ts",
4034
4146
  "exportedName": "rebaseFeature"
4035
4147
  },
4036
- "40d43ccb5d6f6ece2a2ed56786647bd6bf8e1a3729": {
4148
+ "40046c1bb27a7064f3673e986d4186a1cf1ab3956e": {
4037
4149
  "workers": {
4038
4150
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
4039
4151
  "moduleId": 12154,
@@ -4069,7 +4181,7 @@
4069
4181
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts",
4070
4182
  "exportedName": "getFeatureDrawerData"
4071
4183
  },
4072
- "404b7d524f10c0160e4b06b4fa5a3404a7b44e5be7": {
4184
+ "4083781430c002391f4f1c89947eb17b8d1b2acfd2": {
4073
4185
  "workers": {
4074
4186
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
4075
4187
  "moduleId": 12154,
@@ -4105,7 +4217,7 @@
4105
4217
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts",
4106
4218
  "exportedName": "getBranchSyncStatus"
4107
4219
  },
4108
- "70b3efd4db57fbc5b5f2c6fda0bcd3a0add9923fb3": {
4220
+ "70af5a3ba86760ea7cd812de35ca88cf994700cfcf": {
4109
4221
  "workers": {
4110
4222
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
4111
4223
  "moduleId": 12154,
@@ -4141,7 +4253,7 @@
4141
4253
  "filename": "src/presentation/web/app/actions/update-feature-pinned-config.ts",
4142
4254
  "exportedName": "updateFeaturePinnedConfig"
4143
4255
  },
4144
- "60a4767abdc16755d70c418c91b95be6f50d8c3bea": {
4256
+ "60056cb1d88afe7b000b79614b93edfc589e20dfdb": {
4145
4257
  "workers": {
4146
4258
  "app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page": {
4147
4259
  "moduleId": 61035,
@@ -4168,7 +4280,7 @@
4168
4280
  "filename": "src/presentation/web/app/actions/get-git-log.ts"
4169
4281
  },
4170
4282
  "app/application/[id]/page": {
4171
- "moduleId": 6736,
4283
+ "moduleId": 70538,
4172
4284
  "async": false,
4173
4285
  "exportedName": "getGitRepoInfo",
4174
4286
  "filename": "src/presentation/web/app/actions/get-git-log.ts"
@@ -4184,10 +4296,10 @@
4184
4296
  "filename": "src/presentation/web/app/actions/get-git-log.ts",
4185
4297
  "exportedName": "getGitRepoInfo"
4186
4298
  },
4187
- "40944a288e4871edb2ec62b9df6ed2c6684a794d95": {
4299
+ "40aca981bbffa424b0b732c3a1baa6097c9d3f768c": {
4188
4300
  "workers": {
4189
4301
  "app/application/[id]/page": {
4190
- "moduleId": 6736,
4302
+ "moduleId": 70538,
4191
4303
  "async": false,
4192
4304
  "exportedName": "getApplicationDebugPrompt",
4193
4305
  "filename": "src/presentation/web/app/actions/get-application-debug-prompt.ts"
@@ -4199,7 +4311,7 @@
4199
4311
  "filename": "src/presentation/web/app/actions/get-application-debug-prompt.ts",
4200
4312
  "exportedName": "getApplicationDebugPrompt"
4201
4313
  },
4202
- "001797ce1e92a649fff4fbfc7f014e54362d57cd1e": {
4314
+ "003a25734d3e26a1176fcd794fdbc8258a2e344135": {
4203
4315
  "workers": {
4204
4316
  "app/settings/page": {
4205
4317
  "moduleId": 98735,
@@ -4214,7 +4326,7 @@
4214
4326
  "filename": "src/presentation/web/app/actions/load-settings.ts",
4215
4327
  "exportedName": "loadSettings"
4216
4328
  },
4217
- "0037a6fa1fe834a94f8e9cde5f5b450b5630a33c3b": {
4329
+ "00c1aeff52a5b15ac978eec5030eca5644cc3fa8e5": {
4218
4330
  "workers": {
4219
4331
  "app/settings/page": {
4220
4332
  "moduleId": 98735,
@@ -4229,7 +4341,7 @@
4229
4341
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts",
4230
4342
  "exportedName": "getAvailableTerminals"
4231
4343
  },
4232
- "40335b246996bd296ed05cb04c7423cf52f3f82d54": {
4344
+ "409e5d2e62795d8d43ed288ebba199861df584c091": {
4233
4345
  "workers": {
4234
4346
  "app/settings/page": {
4235
4347
  "moduleId": 98735,
@@ -4244,7 +4356,7 @@
4244
4356
  "filename": "src/presentation/web/app/actions/update-settings.ts",
4245
4357
  "exportedName": "updateSettingsAction"
4246
4358
  },
4247
- "4033377f5aa050298ffaa40eff1e1b053de1203a46": {
4359
+ "40f3d9301a046cdb41c7d1c4ef2dc4aa406429cf3b": {
4248
4360
  "workers": {
4249
4361
  "app/skills/page": {
4250
4362
  "moduleId": 34294,
@@ -4259,7 +4371,7 @@
4259
4371
  "filename": "src/presentation/web/app/actions/remove-injected-skill.ts",
4260
4372
  "exportedName": "removeInjectedSkill"
4261
4373
  },
4262
- "40d12d8b9c27664ee7f5dfdfd26e29dca2003f9523": {
4374
+ "40183e18ce90d38e379a1cb08dc801984748c7556a": {
4263
4375
  "workers": {
4264
4376
  "app/skills/page": {
4265
4377
  "moduleId": 34294,
@@ -4276,5 +4388,5 @@
4276
4388
  }
4277
4389
  },
4278
4390
  "edge": {},
4279
- "encryptionKey": "EeUgQFzswSZJr0zV0rHmLhrw6Q+jTfbclKjUPRaKbAY="
4391
+ "encryptionKey": "LYvIQl3GXgG96OodtlqFjQe1EXs78ozlO9CVVVSjH2Q="
4280
4392
  }