@shepai/cli 1.182.0 → 1.182.1-pr550.9abbae3

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 (524) 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/ports/output/services/git-pr-service.interface.d.ts +8 -1
  5. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.d.ts +3 -3
  7. package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.d.ts.map +1 -1
  8. package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.js +13 -21
  9. package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.d.ts +19 -3
  10. package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.d.ts.map +1 -1
  11. package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.js +37 -4
  12. package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.d.ts +30 -0
  13. package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.d.ts.map +1 -0
  14. package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.js +122 -0
  15. package/dist/packages/core/src/application/use-cases/repositories/import-github-repository.use-case.d.ts +13 -1
  16. package/dist/packages/core/src/application/use-cases/repositories/import-github-repository.use-case.d.ts.map +1 -1
  17. package/dist/packages/core/src/application/use-cases/repositories/import-github-repository.use-case.js +44 -5
  18. package/dist/packages/core/src/domain/generated/output.d.ts +8 -0
  19. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  20. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  21. package/dist/packages/core/src/infrastructure/di/container.js +5 -0
  22. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.d.ts +2 -0
  23. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.d.ts.map +1 -1
  24. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.js +4 -0
  25. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.d.ts +5 -0
  26. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.d.ts.map +1 -0
  27. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.js +10 -0
  28. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.d.ts +5 -0
  29. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.d.ts.map +1 -0
  30. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.js +10 -0
  31. package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.d.ts +1 -1
  32. package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.d.ts.map +1 -1
  33. package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.js +10 -2
  34. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  35. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +4 -1
  36. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts.map +1 -1
  37. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.js +4 -1
  38. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.d.ts.map +1 -1
  39. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.js +4 -1
  40. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.d.ts.map +1 -1
  41. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.js +11 -6
  42. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.d.ts +2 -2
  43. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.d.ts.map +1 -1
  44. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.js +2 -2
  45. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +1 -0
  46. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
  47. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +18 -2
  48. package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts +16 -5
  49. package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts.map +1 -1
  50. package/dist/packages/core/src/infrastructure/services/git/pr-branding.js +38 -7
  51. package/dist/src/presentation/web/app/api/applications/[id]/resume/route.d.ts +20 -0
  52. package/dist/src/presentation/web/app/api/applications/[id]/resume/route.d.ts.map +1 -0
  53. package/dist/src/presentation/web/app/api/applications/[id]/resume/route.js +25 -0
  54. package/dist/src/presentation/web/app/api/applications/[id]/route.d.ts +19 -0
  55. package/dist/src/presentation/web/app/api/applications/[id]/route.d.ts.map +1 -0
  56. package/dist/src/presentation/web/app/api/applications/[id]/route.js +46 -0
  57. package/dist/src/presentation/web/app/api/applications/route.d.ts +9 -0
  58. package/dist/src/presentation/web/app/api/applications/route.d.ts.map +1 -0
  59. package/dist/src/presentation/web/app/api/applications/route.js +20 -0
  60. package/dist/src/presentation/web/app/application/[id]/page.d.ts +4 -4
  61. package/dist/src/presentation/web/app/application/[id]/page.d.ts.map +1 -1
  62. package/dist/src/presentation/web/app/application/[id]/page.js +2 -61
  63. package/dist/src/presentation/web/app/applications/page.d.ts +2 -0
  64. package/dist/src/presentation/web/app/applications/page.d.ts.map +1 -0
  65. package/dist/src/presentation/web/app/applications/page.js +5 -0
  66. package/dist/src/presentation/web/components/assistant-ui/thread.js +2 -2
  67. package/dist/src/presentation/web/components/common/application-node/application-node.d.ts.map +1 -1
  68. package/dist/src/presentation/web/components/common/application-node/application-node.js +3 -37
  69. package/dist/src/presentation/web/components/features/application-page/application-page-loader.d.ts +4 -0
  70. package/dist/src/presentation/web/components/features/application-page/application-page-loader.d.ts.map +1 -0
  71. package/dist/src/presentation/web/components/features/application-page/application-page-loader.js +47 -0
  72. package/dist/src/presentation/web/components/features/application-page/application-page.d.ts.map +1 -1
  73. package/dist/src/presentation/web/components/features/application-page/application-page.js +75 -54
  74. package/dist/src/presentation/web/components/features/application-page/application-page.stories.d.ts.map +1 -1
  75. package/dist/src/presentation/web/components/features/application-page/application-page.stories.js +1 -0
  76. package/dist/src/presentation/web/components/features/application-page/run-dev-button.d.ts +3 -1
  77. package/dist/src/presentation/web/components/features/application-page/run-dev-button.d.ts.map +1 -1
  78. package/dist/src/presentation/web/components/features/application-page/run-dev-button.js +6 -2
  79. package/dist/src/presentation/web/components/features/applications/application-card.d.ts +7 -0
  80. package/dist/src/presentation/web/components/features/applications/application-card.d.ts.map +1 -0
  81. package/dist/src/presentation/web/components/features/applications/application-card.js +82 -0
  82. package/dist/src/presentation/web/components/features/applications/application-card.stories.d.ts +13 -0
  83. package/dist/src/presentation/web/components/features/applications/application-card.stories.d.ts.map +1 -0
  84. package/dist/src/presentation/web/components/features/applications/application-card.stories.js +69 -0
  85. package/dist/src/presentation/web/components/features/applications/applications-page-client.d.ts +5 -0
  86. package/dist/src/presentation/web/components/features/applications/applications-page-client.d.ts.map +1 -0
  87. package/dist/src/presentation/web/components/features/applications/applications-page-client.js +28 -0
  88. package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.d.ts +10 -0
  89. package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.d.ts.map +1 -0
  90. package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.js +93 -0
  91. package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts +3 -1
  92. package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts.map +1 -1
  93. package/dist/src/presentation/web/components/features/chat/ChatComposer.js +2 -2
  94. package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts +3 -1
  95. package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts.map +1 -1
  96. package/dist/src/presentation/web/components/features/chat/ChatTab.js +4 -3
  97. package/dist/src/presentation/web/components/features/chat/StepTracker.d.ts +6 -1
  98. package/dist/src/presentation/web/components/features/chat/StepTracker.d.ts.map +1 -1
  99. package/dist/src/presentation/web/components/features/chat/StepTracker.js +23 -20
  100. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  101. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +3 -2
  102. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts +3 -1
  103. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  104. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +2 -2
  105. package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts.map +1 -1
  106. package/dist/src/presentation/web/components/features/settings/language-settings-section.js +1 -0
  107. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts +1 -0
  108. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts.map +1 -1
  109. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.js +5 -0
  110. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  111. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +23 -3
  112. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  113. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
  114. package/dist/src/presentation/web/lib/derive-app-status.d.ts +23 -0
  115. package/dist/src/presentation/web/lib/derive-app-status.d.ts.map +1 -0
  116. package/dist/src/presentation/web/lib/derive-app-status.js +89 -0
  117. package/dist/src/presentation/web/lib/i18n.d.ts.map +1 -1
  118. package/dist/src/presentation/web/lib/i18n.js +3 -0
  119. package/dist/translations/ar/web.json +2 -1
  120. package/dist/translations/de/web.json +2 -1
  121. package/dist/translations/en/web.json +2 -1
  122. package/dist/translations/es/web.json +2 -1
  123. package/dist/translations/fr/web.json +2 -1
  124. package/dist/translations/he/web.json +2 -1
  125. package/dist/translations/pt/web.json +2 -1
  126. package/dist/translations/ru/web.json +2 -1
  127. package/dist/translations/uk/web.json +2 -1
  128. package/dist/tsconfig.build.tsbuildinfo +1 -1
  129. package/package.json +1 -1
  130. package/web/.next/BUILD_ID +1 -1
  131. package/web/.next/app-path-routes-manifest.json +4 -0
  132. package/web/.next/build-manifest.json +2 -2
  133. package/web/.next/fallback-build-manifest.json +2 -2
  134. package/web/.next/prerender-manifest.json +3 -3
  135. package/web/.next/required-server-files.js +3 -3
  136. package/web/.next/required-server-files.json +3 -3
  137. package/web/.next/routes-manifest.json +28 -0
  138. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +32 -32
  139. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +5 -5
  140. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  141. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  142. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +30 -30
  143. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +5 -5
  144. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  145. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  146. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +33 -33
  147. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +5 -5
  148. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  149. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  150. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +41 -41
  151. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +5 -5
  152. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  153. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  154. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +41 -41
  155. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +5 -5
  156. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  157. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  158. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +31 -31
  159. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +5 -5
  160. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  161. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  162. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +31 -31
  163. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +5 -5
  164. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  165. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  166. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +30 -30
  167. package/web/.next/server/app/(dashboard)/chat/page.js +5 -5
  168. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  169. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  170. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +33 -33
  171. package/web/.next/server/app/(dashboard)/create/page.js +5 -5
  172. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  173. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  174. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +41 -41
  175. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +5 -5
  176. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  177. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  178. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +41 -41
  179. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +5 -5
  180. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  181. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  182. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +30 -30
  183. package/web/.next/server/app/(dashboard)/page.js +5 -5
  184. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  185. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  186. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +31 -31
  187. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +5 -5
  188. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  189. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  190. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +31 -31
  191. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +5 -5
  192. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  193. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  194. package/web/.next/server/app/_global-error/page.js +1 -1
  195. package/web/.next/server/app/_global-error/page.js.nft.json +1 -1
  196. package/web/.next/server/app/_global-error.html +2 -2
  197. package/web/.next/server/app/_global-error.rsc +1 -1
  198. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  199. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  200. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  201. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  202. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  203. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +7 -7
  204. package/web/.next/server/app/_not-found/page.js +1 -1
  205. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  206. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  207. package/web/.next/server/app/api/applications/[id]/resume/route/app-paths-manifest.json +3 -0
  208. package/web/.next/server/app/api/applications/[id]/resume/route/build-manifest.json +11 -0
  209. package/web/.next/server/app/api/applications/[id]/resume/route/server-reference-manifest.json +4 -0
  210. package/web/.next/server/app/api/applications/[id]/resume/route.js +7 -0
  211. package/web/.next/server/app/api/applications/[id]/resume/route.js.map +5 -0
  212. package/web/.next/server/app/api/applications/[id]/resume/route.js.nft.json +1 -0
  213. package/web/.next/server/app/api/applications/[id]/resume/route_client-reference-manifest.js +2 -0
  214. package/web/.next/server/app/api/applications/[id]/route/app-paths-manifest.json +3 -0
  215. package/web/.next/server/app/api/applications/[id]/route/build-manifest.json +11 -0
  216. package/web/.next/server/app/api/applications/[id]/route/server-reference-manifest.json +4 -0
  217. package/web/.next/server/app/api/applications/[id]/route.js +7 -0
  218. package/web/.next/server/app/api/applications/[id]/route.js.map +5 -0
  219. package/web/.next/server/app/api/applications/[id]/route.js.nft.json +1 -0
  220. package/web/.next/server/app/api/applications/[id]/route_client-reference-manifest.js +2 -0
  221. package/web/.next/server/app/api/applications/route/app-paths-manifest.json +3 -0
  222. package/web/.next/server/app/api/applications/route/build-manifest.json +11 -0
  223. package/web/.next/server/app/api/applications/route/server-reference-manifest.json +4 -0
  224. package/web/.next/server/app/api/applications/route.js +7 -0
  225. package/web/.next/server/app/api/applications/route.js.map +5 -0
  226. package/web/.next/server/app/api/applications/route.js.nft.json +1 -0
  227. package/web/.next/server/app/api/applications/route_client-reference-manifest.js +2 -0
  228. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  229. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  230. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  231. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  232. package/web/.next/server/app/application/[id]/page/server-reference-manifest.json +45 -30
  233. package/web/.next/server/app/application/[id]/page.js +3 -3
  234. package/web/.next/server/app/application/[id]/page.js.nft.json +1 -1
  235. package/web/.next/server/app/application/[id]/page_client-reference-manifest.js +1 -1
  236. package/web/.next/server/app/applications/page/app-paths-manifest.json +3 -0
  237. package/web/.next/server/app/applications/page/build-manifest.json +18 -0
  238. package/web/.next/server/app/applications/page/next-font-manifest.json +6 -0
  239. package/web/.next/server/app/applications/page/react-loadable-manifest.json +1 -0
  240. package/web/.next/server/app/applications/page/server-reference-manifest.json +230 -0
  241. package/web/.next/server/app/applications/page.js +19 -0
  242. package/web/.next/server/app/applications/page.js.map +5 -0
  243. package/web/.next/server/app/applications/page.js.nft.json +1 -0
  244. package/web/.next/server/app/applications/page_client-reference-manifest.js +2 -0
  245. package/web/.next/server/app/features/page/server-reference-manifest.json +7 -7
  246. package/web/.next/server/app/features/page.js +1 -1
  247. package/web/.next/server/app/features/page.js.nft.json +1 -1
  248. package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
  249. package/web/.next/server/app/settings/page/server-reference-manifest.json +10 -10
  250. package/web/.next/server/app/settings/page.js +1 -1
  251. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  252. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  253. package/web/.next/server/app/skills/page/server-reference-manifest.json +15 -15
  254. package/web/.next/server/app/skills/page.js +1 -1
  255. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  256. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  257. package/web/.next/server/app/tools/page/server-reference-manifest.json +13 -13
  258. package/web/.next/server/app/tools/page.js +1 -1
  259. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  260. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  261. package/web/.next/server/app/version/page/server-reference-manifest.json +7 -7
  262. package/web/.next/server/app/version/page.js +1 -1
  263. package/web/.next/server/app/version/page.js.nft.json +1 -1
  264. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  265. package/web/.next/server/app-paths-manifest.json +4 -0
  266. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_[id]_route_actions_e31b426d.js +3 -0
  267. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_[id]_route_actions_e31b426d.js.map +1 -0
  268. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_route_actions_2b7d20d0.js +3 -0
  269. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_route_actions_2b7d20d0.js.map +1 -0
  270. package/web/.next/server/chunks/[root-of-the-server]__3bb635e8._.js +3 -0
  271. package/web/.next/server/chunks/[root-of-the-server]__3bb635e8._.js.map +1 -0
  272. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  273. package/web/.next/server/chunks/[root-of-the-server]__ac0027b4._.js +3 -0
  274. package/web/.next/server/chunks/[root-of-the-server]__ac0027b4._.js.map +1 -0
  275. package/web/.next/server/chunks/[root-of-the-server]__b2a4bfcc._.js.map +1 -1
  276. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  277. package/web/.next/server/chunks/[root-of-the-server]__ce82df38._.js +3 -0
  278. package/web/.next/server/chunks/[root-of-the-server]__ce82df38._.js.map +1 -0
  279. package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_applications_[id]_resume_route_actions_3a66d646.js +3 -0
  280. package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_applications_[id]_resume_route_actions_3a66d646.js.map +1 -0
  281. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4f9eef62.js +3 -0
  282. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4f9eef62.js.map +1 -0
  283. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_ffa16a22.js +3 -0
  284. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_ffa16a22.js.map +1 -0
  285. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_a1a998f9.js +3 -0
  286. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_a1a998f9.js.map +1 -0
  287. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  288. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  289. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  290. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  291. package/web/.next/server/chunks/ssr/744ca_web_components_features_applications_applications-page-client_tsx_d0db9938._.js +3 -0
  292. package/web/.next/server/chunks/ssr/744ca_web_components_features_applications_applications-page-client_tsx_d0db9938._.js.map +1 -0
  293. package/web/.next/server/chunks/ssr/[root-of-the-server]__04f4895b._.js +3 -0
  294. package/web/.next/server/chunks/ssr/[root-of-the-server]__04f4895b._.js.map +1 -0
  295. package/web/.next/server/chunks/ssr/[root-of-the-server]__17dadd08._.js +1 -1
  296. package/web/.next/server/chunks/ssr/[root-of-the-server]__17dadd08._.js.map +1 -1
  297. package/web/.next/server/chunks/ssr/[root-of-the-server]__1925bef0._.js +1 -1
  298. package/web/.next/server/chunks/ssr/[root-of-the-server]__1a9687c4._.js +1 -1
  299. package/web/.next/server/chunks/ssr/[root-of-the-server]__1a9687c4._.js.map +1 -1
  300. package/web/.next/server/chunks/ssr/[root-of-the-server]__347fd0f6._.js +3 -0
  301. package/web/.next/server/chunks/ssr/[root-of-the-server]__347fd0f6._.js.map +1 -0
  302. package/web/.next/server/chunks/ssr/[root-of-the-server]__46dd2baf._.js +3 -0
  303. package/web/.next/server/chunks/ssr/[root-of-the-server]__46dd2baf._.js.map +1 -0
  304. package/web/.next/server/chunks/ssr/[root-of-the-server]__4ee8be85._.js +1 -1
  305. package/web/.next/server/chunks/ssr/[root-of-the-server]__73cb4ff6._.js +3 -0
  306. package/web/.next/server/chunks/ssr/[root-of-the-server]__73cb4ff6._.js.map +1 -0
  307. package/web/.next/server/chunks/ssr/{[root-of-the-server]__87bc4dac._.js → [root-of-the-server]__86ff0bc5._.js} +3 -3
  308. package/web/.next/server/chunks/ssr/[root-of-the-server]__86ff0bc5._.js.map +1 -0
  309. package/web/.next/server/chunks/ssr/[root-of-the-server]__91c50abe._.js +3 -0
  310. package/web/.next/server/chunks/ssr/[root-of-the-server]__91c50abe._.js.map +1 -0
  311. package/web/.next/server/chunks/ssr/[root-of-the-server]__a48af49f._.js +3 -0
  312. package/web/.next/server/chunks/ssr/[root-of-the-server]__a48af49f._.js.map +1 -0
  313. package/web/.next/server/chunks/ssr/[root-of-the-server]__bb391c45._.js +1 -1
  314. package/web/.next/server/chunks/ssr/[root-of-the-server]__bb391c45._.js.map +1 -1
  315. package/web/.next/server/chunks/ssr/[root-of-the-server]__d5e22d1a._.js +3 -0
  316. package/web/.next/server/chunks/ssr/{[root-of-the-server]__7aa484f5._.js.map → [root-of-the-server]__d5e22d1a._.js.map} +1 -1
  317. package/web/.next/server/chunks/ssr/[root-of-the-server]__dd3e834e._.js +1 -1
  318. package/web/.next/server/chunks/ssr/[root-of-the-server]__dd3e834e._.js.map +1 -1
  319. package/web/.next/server/chunks/ssr/[root-of-the-server]__e0aa2bcb._.js +3 -0
  320. package/web/.next/server/chunks/ssr/[root-of-the-server]__e0aa2bcb._.js.map +1 -0
  321. package/web/.next/server/chunks/ssr/[root-of-the-server]__e265da61._.js +1 -1
  322. package/web/.next/server/chunks/ssr/[root-of-the-server]__ef0b8905._.js +12 -0
  323. package/web/.next/server/chunks/ssr/[root-of-the-server]__ef0b8905._.js.map +1 -0
  324. package/web/.next/server/chunks/ssr/[root-of-the-server]__f5614810._.js +3 -0
  325. package/web/.next/server/chunks/ssr/{[root-of-the-server]__090f24cb._.js.map → [root-of-the-server]__f5614810._.js.map} +1 -1
  326. package/web/.next/server/chunks/ssr/[root-of-the-server]__fe5db6b2._.js +3 -0
  327. package/web/.next/server/chunks/ssr/[root-of-the-server]__fe5db6b2._.js.map +1 -0
  328. package/web/.next/server/chunks/ssr/_0f9d0acd._.js +3 -0
  329. package/web/.next/server/chunks/ssr/_0f9d0acd._.js.map +1 -0
  330. package/web/.next/server/chunks/ssr/{_177d29c6._.js → _17af2817._.js} +2 -2
  331. package/web/.next/server/chunks/ssr/{_177d29c6._.js.map → _17af2817._.js.map} +1 -1
  332. package/web/.next/server/chunks/ssr/_1879404a._.js +1 -1
  333. package/web/.next/server/chunks/ssr/_1879404a._.js.map +1 -1
  334. package/web/.next/server/chunks/ssr/_295fffde._.js.map +1 -1
  335. package/web/.next/server/chunks/ssr/_29b8ed64._.js +3 -0
  336. package/web/.next/server/chunks/ssr/_29b8ed64._.js.map +1 -0
  337. package/web/.next/server/chunks/ssr/_2bc302d1._.js +3 -0
  338. package/web/.next/server/chunks/ssr/_2bc302d1._.js.map +1 -0
  339. package/web/.next/server/chunks/ssr/_3683083e._.js +3 -0
  340. package/web/.next/server/chunks/ssr/_3683083e._.js.map +1 -0
  341. package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
  342. package/web/.next/server/chunks/ssr/_4b57bcc3._.js +9 -0
  343. package/web/.next/server/chunks/ssr/_4b57bcc3._.js.map +1 -0
  344. package/web/.next/server/chunks/ssr/_519d77a9._.js +3 -0
  345. package/web/.next/server/chunks/ssr/_519d77a9._.js.map +1 -0
  346. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  347. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  348. package/web/.next/server/chunks/ssr/{_503102fc._.js → _58b8982b._.js} +2 -2
  349. package/web/.next/server/chunks/ssr/_58b8982b._.js.map +1 -0
  350. package/web/.next/server/chunks/ssr/_7e5e3270._.js +3 -0
  351. package/web/.next/server/chunks/ssr/_7e5e3270._.js.map +1 -0
  352. package/web/.next/server/chunks/ssr/_8c3086bf._.js +3 -0
  353. package/web/.next/server/chunks/ssr/_8c3086bf._.js.map +1 -0
  354. package/web/.next/server/chunks/ssr/_9173e475._.js +21 -0
  355. package/web/.next/server/chunks/ssr/_9173e475._.js.map +1 -0
  356. package/web/.next/server/chunks/ssr/_946a7fc6._.js +1 -1
  357. package/web/.next/server/chunks/ssr/_946a7fc6._.js.map +1 -1
  358. package/web/.next/server/chunks/ssr/_b4cc51d4._.js +3 -0
  359. package/web/.next/server/chunks/ssr/_b4cc51d4._.js.map +1 -0
  360. package/web/.next/server/chunks/ssr/_b5093a26._.js +3 -0
  361. package/web/.next/server/chunks/ssr/_b5093a26._.js.map +1 -0
  362. package/web/.next/server/chunks/ssr/_bc03ac82._.js +4 -0
  363. package/web/.next/server/chunks/ssr/_bc03ac82._.js.map +1 -0
  364. package/web/.next/server/chunks/ssr/_e65abbd1._.js +3 -0
  365. package/web/.next/server/chunks/ssr/_e65abbd1._.js.map +1 -0
  366. package/web/.next/server/chunks/ssr/_f20557ff._.js +3 -0
  367. package/web/.next/server/chunks/ssr/_f20557ff._.js.map +1 -0
  368. package/web/.next/server/chunks/ssr/_f86fc1bf._.js +1 -1
  369. package/web/.next/server/chunks/ssr/_f86fc1bf._.js.map +1 -1
  370. package/web/.next/server/chunks/ssr/_f8c55130._.js +1 -1
  371. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  372. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  373. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  374. package/web/.next/server/chunks/ssr/node_modules__pnpm_28a53b5d._.js +3 -0
  375. package/web/.next/server/chunks/ssr/node_modules__pnpm_28a53b5d._.js.map +1 -0
  376. package/web/.next/server/chunks/ssr/src_presentation_web_47181610._.js +3 -0
  377. package/web/.next/server/chunks/ssr/src_presentation_web_47181610._.js.map +1 -0
  378. package/web/.next/server/chunks/ssr/src_presentation_web_5d3f4199._.js +3 -0
  379. package/web/.next/server/chunks/ssr/src_presentation_web_5d3f4199._.js.map +1 -0
  380. package/web/.next/server/chunks/ssr/src_presentation_web_6159fef8._.js +1 -1
  381. package/web/.next/server/chunks/ssr/src_presentation_web_6159fef8._.js.map +1 -1
  382. package/web/.next/server/chunks/ssr/src_presentation_web_61d96ba8._.js +3 -0
  383. package/web/.next/server/chunks/ssr/src_presentation_web_61d96ba8._.js.map +1 -0
  384. package/web/.next/server/chunks/ssr/src_presentation_web_6994959a._.js +3 -0
  385. package/web/.next/server/chunks/ssr/src_presentation_web_6994959a._.js.map +1 -0
  386. package/web/.next/server/chunks/ssr/src_presentation_web_77dadf68._.js +32 -0
  387. package/web/.next/server/chunks/ssr/src_presentation_web_77dadf68._.js.map +1 -0
  388. package/web/.next/server/chunks/ssr/src_presentation_web_9a543843._.js +3 -0
  389. package/web/.next/server/chunks/ssr/src_presentation_web_9a543843._.js.map +1 -0
  390. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_c3f6f57e.js +3 -0
  391. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_c3f6f57e.js.map +1 -0
  392. package/web/.next/server/chunks/ssr/src_presentation_web_ad42cc73._.js +1 -1
  393. package/web/.next/server/chunks/ssr/src_presentation_web_ad42cc73._.js.map +1 -1
  394. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_8514dfcd._.js +32 -0
  395. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_8514dfcd._.js.map +1 -0
  396. package/web/.next/server/chunks/ssr/src_presentation_web_b95ed206._.js +3 -0
  397. package/web/.next/server/chunks/ssr/src_presentation_web_b95ed206._.js.map +1 -0
  398. package/web/.next/server/chunks/ssr/src_presentation_web_bade80bd._.js +3 -0
  399. package/web/.next/server/chunks/ssr/src_presentation_web_bade80bd._.js.map +1 -0
  400. package/web/.next/server/chunks/ssr/src_presentation_web_c543cf3e._.js +3 -0
  401. package/web/.next/server/chunks/ssr/src_presentation_web_c543cf3e._.js.map +1 -0
  402. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  403. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  404. package/web/.next/server/chunks/ssr/src_presentation_web_components_common_base-drawer_base-drawer_tsx_97dfbbc8._.js +1 -1
  405. package/web/.next/server/chunks/ssr/src_presentation_web_components_common_base-drawer_base-drawer_tsx_97dfbbc8._.js.map +1 -1
  406. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
  407. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
  408. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_dropdown-menu_tsx_229332e3._.js +3 -0
  409. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_dropdown-menu_tsx_229332e3._.js.map +1 -0
  410. package/web/.next/server/chunks/ssr/translations_1562ae1a._.js +3 -0
  411. package/web/.next/server/chunks/ssr/translations_1562ae1a._.js.map +1 -0
  412. package/web/.next/server/pages/500.html +2 -2
  413. package/web/.next/server/server-reference-manifest.js +1 -1
  414. package/web/.next/server/server-reference-manifest.json +184 -72
  415. package/web/.next/static/chunks/{b4aa3a83f2451e07.js → 05becd66afb22d37.js} +1 -1
  416. package/web/.next/static/chunks/1bd2a325f95d3211.js +2 -0
  417. package/web/.next/static/chunks/2cbe80f8e84d59a8.js +1 -0
  418. package/web/.next/static/chunks/37e434e579ecfa02.js +1 -0
  419. package/web/.next/static/chunks/3aaae7ceefe72828.js +7 -0
  420. package/web/.next/static/chunks/3d1543ff12dfaff1.js +1 -0
  421. package/web/.next/static/chunks/{ac22076c64634ac1.js → 4b8bedfda131650a.js} +1 -1
  422. package/web/.next/static/chunks/{83fc7ea32e18c9a5.js → 4ea617a22e21fb04.js} +1 -1
  423. package/web/.next/static/chunks/53f12c1844f881af.js +1 -0
  424. package/web/.next/static/chunks/5795b9f399523c9e.js +1 -0
  425. package/web/.next/static/chunks/{2fe20598e1b4793a.js → 6b2859ea368e7df3.js} +3 -3
  426. package/web/.next/static/chunks/71c7fe96accaab17.js +19 -0
  427. package/web/.next/static/chunks/792fffaa4af33248.js +1 -0
  428. package/web/.next/static/chunks/{87a0df5389e06641.js → 7b6c91400184cb4d.js} +1 -1
  429. package/web/.next/static/chunks/83ba6946af31cdc4.js +3 -0
  430. package/web/.next/static/chunks/897771202f55ecfe.js +1 -0
  431. package/web/.next/static/chunks/9d9bf7403612ae86.js +1 -0
  432. package/web/.next/static/chunks/{be2e80436bc15812.js → a9d2a436d682fded.js} +3 -3
  433. package/web/.next/static/chunks/adf16efe8bac05e9.css +1 -0
  434. package/web/.next/static/chunks/{ceff12f8a2e5bc08.js → ae2fcb50ea0d8652.js} +1 -1
  435. package/web/.next/static/chunks/b0474319e5a50043.js +1 -0
  436. package/web/.next/static/chunks/b85532fb1545927c.js +5 -0
  437. package/web/.next/static/chunks/{33dc7a1041f4ab64.js → b8acda37576199f1.js} +1 -1
  438. package/web/.next/static/chunks/c788a245f6898401.js +1 -0
  439. package/web/.next/static/chunks/d0bcde99ca2878d1.js +1 -0
  440. package/web/.next/static/chunks/{de7de1db2a8788dd.js → ed714d3a13ff6c16.js} +1 -1
  441. package/web/.next/server/chunks/ssr/[root-of-the-server]__013a0318._.js +0 -3
  442. package/web/.next/server/chunks/ssr/[root-of-the-server]__013a0318._.js.map +0 -1
  443. package/web/.next/server/chunks/ssr/[root-of-the-server]__090f24cb._.js +0 -3
  444. package/web/.next/server/chunks/ssr/[root-of-the-server]__24756fa9._.js +0 -12
  445. package/web/.next/server/chunks/ssr/[root-of-the-server]__24756fa9._.js.map +0 -1
  446. package/web/.next/server/chunks/ssr/[root-of-the-server]__70986695._.js +0 -3
  447. package/web/.next/server/chunks/ssr/[root-of-the-server]__70986695._.js.map +0 -1
  448. package/web/.next/server/chunks/ssr/[root-of-the-server]__7aa484f5._.js +0 -3
  449. package/web/.next/server/chunks/ssr/[root-of-the-server]__87bc4dac._.js.map +0 -1
  450. package/web/.next/server/chunks/ssr/[root-of-the-server]__a3a4ddef._.js +0 -3
  451. package/web/.next/server/chunks/ssr/[root-of-the-server]__a3a4ddef._.js.map +0 -1
  452. package/web/.next/server/chunks/ssr/[root-of-the-server]__a4222b95._.js +0 -3
  453. package/web/.next/server/chunks/ssr/[root-of-the-server]__a4222b95._.js.map +0 -1
  454. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5ea76a6._.js +0 -3
  455. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5ea76a6._.js.map +0 -1
  456. package/web/.next/server/chunks/ssr/[root-of-the-server]__a6f2b763._.js +0 -3
  457. package/web/.next/server/chunks/ssr/[root-of-the-server]__a6f2b763._.js.map +0 -1
  458. package/web/.next/server/chunks/ssr/[root-of-the-server]__f3ca7bea._.js +0 -3
  459. package/web/.next/server/chunks/ssr/[root-of-the-server]__f3ca7bea._.js.map +0 -1
  460. package/web/.next/server/chunks/ssr/_0277d3b5._.js +0 -21
  461. package/web/.next/server/chunks/ssr/_0277d3b5._.js.map +0 -1
  462. package/web/.next/server/chunks/ssr/_21cc662b._.js +0 -3
  463. package/web/.next/server/chunks/ssr/_21cc662b._.js.map +0 -1
  464. package/web/.next/server/chunks/ssr/_44531b76._.js +0 -9
  465. package/web/.next/server/chunks/ssr/_44531b76._.js.map +0 -1
  466. package/web/.next/server/chunks/ssr/_503102fc._.js.map +0 -1
  467. package/web/.next/server/chunks/ssr/_575fe3ee._.js +0 -3
  468. package/web/.next/server/chunks/ssr/_575fe3ee._.js.map +0 -1
  469. package/web/.next/server/chunks/ssr/_869a3a15._.js +0 -3
  470. package/web/.next/server/chunks/ssr/_869a3a15._.js.map +0 -1
  471. package/web/.next/server/chunks/ssr/_a7184dfa._.js +0 -3
  472. package/web/.next/server/chunks/ssr/_a7184dfa._.js.map +0 -1
  473. package/web/.next/server/chunks/ssr/_b227ff50._.js +0 -3
  474. package/web/.next/server/chunks/ssr/_b227ff50._.js.map +0 -1
  475. package/web/.next/server/chunks/ssr/_e071ba48._.js +0 -3
  476. package/web/.next/server/chunks/ssr/_e071ba48._.js.map +0 -1
  477. package/web/.next/server/chunks/ssr/_eff1b518._.js +0 -3
  478. package/web/.next/server/chunks/ssr/_eff1b518._.js.map +0 -1
  479. package/web/.next/server/chunks/ssr/_f227429a._.js +0 -3
  480. package/web/.next/server/chunks/ssr/_f227429a._.js.map +0 -1
  481. package/web/.next/server/chunks/ssr/src_presentation_web_36f2bc45._.js +0 -3
  482. package/web/.next/server/chunks/ssr/src_presentation_web_36f2bc45._.js.map +0 -1
  483. package/web/.next/server/chunks/ssr/src_presentation_web_486908de._.js +0 -3
  484. package/web/.next/server/chunks/ssr/src_presentation_web_486908de._.js.map +0 -1
  485. package/web/.next/server/chunks/ssr/src_presentation_web_5c3596bc._.js +0 -3
  486. package/web/.next/server/chunks/ssr/src_presentation_web_5c3596bc._.js.map +0 -1
  487. package/web/.next/server/chunks/ssr/src_presentation_web_6326f81e._.js +0 -3
  488. package/web/.next/server/chunks/ssr/src_presentation_web_6326f81e._.js.map +0 -1
  489. package/web/.next/server/chunks/ssr/src_presentation_web_6b2fdcd8._.js +0 -3
  490. package/web/.next/server/chunks/ssr/src_presentation_web_6b2fdcd8._.js.map +0 -1
  491. package/web/.next/server/chunks/ssr/src_presentation_web_74703c9f._.js +0 -3
  492. package/web/.next/server/chunks/ssr/src_presentation_web_74703c9f._.js.map +0 -1
  493. package/web/.next/server/chunks/ssr/src_presentation_web_a8056dac._.js +0 -3
  494. package/web/.next/server/chunks/ssr/src_presentation_web_a8056dac._.js.map +0 -1
  495. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +0 -32
  496. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +0 -1
  497. package/web/.next/server/chunks/ssr/src_presentation_web_b00bfb08._.js +0 -3
  498. package/web/.next/server/chunks/ssr/src_presentation_web_b00bfb08._.js.map +0 -1
  499. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +0 -3
  500. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +0 -1
  501. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +0 -3
  502. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +0 -1
  503. package/web/.next/server/chunks/ssr/src_presentation_web_f1edcf5e._.js +0 -3
  504. package/web/.next/server/chunks/ssr/src_presentation_web_f1edcf5e._.js.map +0 -1
  505. package/web/.next/server/chunks/ssr/src_presentation_web_f9436804._.js +0 -3
  506. package/web/.next/server/chunks/ssr/src_presentation_web_f9436804._.js.map +0 -1
  507. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +0 -3
  508. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +0 -1
  509. package/web/.next/static/chunks/06b9d6dbf635c370.css +0 -1
  510. package/web/.next/static/chunks/1ae0cf5be30ef398.js +0 -1
  511. package/web/.next/static/chunks/2424ab50273fe1d9.js +0 -7
  512. package/web/.next/static/chunks/6afd16b2fe544054.js +0 -2
  513. package/web/.next/static/chunks/7604027076448f2b.js +0 -19
  514. package/web/.next/static/chunks/8c9016ab8c1f6204.js +0 -1
  515. package/web/.next/static/chunks/927442d2628f6e22.js +0 -1
  516. package/web/.next/static/chunks/94e8559ae19a16e1.js +0 -1
  517. package/web/.next/static/chunks/a0cfca1e5fd467e9.js +0 -1
  518. package/web/.next/static/chunks/a2531137c7d36d54.js +0 -7
  519. package/web/.next/static/chunks/b87904ecdddde972.js +0 -1
  520. package/web/.next/static/chunks/b99506a6f7bc2fa8.js +0 -1
  521. package/web/.next/static/chunks/e4f0ca20b62bd66f.js +0 -1
  522. /package/web/.next/static/{EVCmRtpgNX9ebXGb-bV1G → tAvYhk4e_F_yStLz4wtDg}/_buildManifest.js +0 -0
  523. /package/web/.next/static/{EVCmRtpgNX9ebXGb-bV1G → tAvYhk4e_F_yStLz4wtDg}/_clientMiddlewareManifest.json +0 -0
  524. /package/web/.next/static/{EVCmRtpgNX9ebXGb-bV1G → tAvYhk4e_F_yStLz4wtDg}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "002386bee71a5ce17cbded353839cc75a79eb772f6": {
3
+ "00f239232cd033d64ef90f37a6a00a7d3d9ce90753": {
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
- "0022940fac7b76d693ef518b0f0df38f98e93c94a8": {
165
+ "0076b3d42ef15994d8670dee6da36b75eab086f592": {
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
- "6029f0baee8045ab649b4dde1ddabc22ae7cabcd03": {
327
+ "602f8e351e233f77d1163d32b17d0c0b7c5a3e5059": {
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
- "006daede354b3555a3add6f42fa5cfb038a9b3fdbd": {
489
+ "00dcc709a01f0569bfed0d0fd913bb2ae5820dc7b8": {
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
- "40f17cd57586bb2fa54f262248dcce3ee1e9e21e73": {
651
+ "409b2b7c453b85ebe22be32a1abbb566f8aac0461c": {
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
- "00da7d4452a7dfe670ada510be8f6bf1489124b108": {
813
+ "00f95796b31f9a01fee1c8cabf36739e0626fb895b": {
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
- "404e73f4011dad1aae02357f58af12bb02bb204eca": {
975
+ "40061c1a99024f4c0916f2ad90f9af3b2a4f99bdff": {
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
- "407e705c6dbaa58d897f3a9504359bf8848d5d9ca0": {
1137
+ "40b4eeeb2999f5dd298c7eeb72e866dd706847cb43": {
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
- "4092b46401f01d7a804b3709092893722c29c6b69d": {
1271
+ "4080e8abd8dccdccdcffa041ededc81a57388866e4": {
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
- "40dd07394d324152bd45e4e4f769f366d967e25308": {
1405
+ "4035315500c0fdbe957490a4576599fe4e10362d00": {
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
- "40506a30fcbe01aae704103714c08f8a05e7af009b": {
1539
+ "40b6be2e695ac64cea2ea7e061df3df9b9e8c668e5": {
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
- "401556752d2af3ca8f84f32f8b3da3e8e92e551f0a": {
1673
+ "405797f8b8319ac6933f44b97b53ed69b7d74f720d": {
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
- "40b8f186dffbe550d19d6cf8f0039defeef5a3cb75": {
1807
+ "40387bb1c96ffc89cb38570b2d92252ea9553593ea": {
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
- "40d4f19a3d3be255d1041da62b22d5c641e0ada846": {
1913
+ "407777b8d49490f756be2a48c39ffbb3c69010bf47": {
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
- "40a9005e9f2086afbab18c22efa5f332191960c632": {
2019
+ "403dc454070c72dd97868a0d66397a112bb429aa23": {
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
- "40f95969cf318db6077d7982fec5b59d39a48dd987": {
2132
+ "40e5ff0dc2321899262d6aecf5d972433293138faf": {
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
- "40fcc863c7655ecc2ebaf471c943fb4b7de51147c1": {
2238
+ "40ba330bb57038c106e2cb5a9706214e74b6f4bc60": {
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
- "4089b300050d81658f20ea0043475189522cd3a2dd": {
2358
+ "40a0177b9f2aa86822c61e9a614f071fe7717b8bda": {
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
- "40b7ac4389ecd987aa2e24f4b4f45eb48c6e932ecf": {
2471
+ "4007c40d988784c0b9cc291fff583c56299825ace2": {
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
- "4098d90af088d2be26bd1bb7326ac762dcccf71294": {
2584
+ "40881f084c3e4fceddc63e1cc21c2bcc21650c5959": {
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
- "40cf8a14664dcf22641d961f9e4cc71c3c559f7df7": {
2690
+ "408c526d74b1227a231a476bd11bf3f73246a2a8bd": {
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
- "78f037b256864a1706ed28138da1c4b2ab92afc3fe": {
2796
+ "78104a10bad3e45e6914a57cc4073a82d3632e9640": {
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
- "409ffe8b2afb1c7d10d667e601b1f9a24cc3ed5625": {
2902
+ "40e2f984567eba20b462bc917f0c779f3b7f2edba3": {
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
- "407689839318438d5e1dda38417500cc335dfbd213": {
3008
+ "40d46f342a5068b30bbe13eb5d331318d858d0244e": {
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
- "4088ffb519dcad1da31d2c3601bfc372efedf0a5c1": {
3114
+ "40a6fc1a9d123177a769c05d5478144ebc3264f197": {
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
- "404c4bd65b1046492a61aee8d0a89e868ce5017473": {
3220
+ "40c46ad4e0e3b0f93e0dd39ba080a68bb790db6b85": {
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
- "4099b902707dfaed18bf3c3a04618b888eae6fd500": {
3326
+ "4033fa30fe771d213d836267fca1d2bc348edc0463": {
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
- "609ddfa325fbc4312c6752a9e9d9383a7cef112d3b": {
3432
+ "60f772bd3d6eee8bb874a9dc740c638f04b189228d": {
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
- "40598b43179459e1a20fb048d3befa71e476928650": {
3538
+ "4019e9b366eba6e7ae533d69ad430786e1d105d3f7": {
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
- "40960c4e85d0f003032d2574de11f99a671ddf18ae": {
3658
+ "4075f02c367a5dde2c84769f546b9fd9b17ebbd20c": {
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
- "401fb6f9da6283e943cdd0b8e383a07bcb1093db27": {
3764
+ "402bae46248f24b4b1af6f7227f07ac43c0a4e41d9": {
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
- "4032cd8c0c6c1798dee77aa8620a3a49dd5ac6de9a": {
3779
+ "40b6671dbb414b17af144279e83566d15a5b801990": {
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
- "0073cfb5a89b2558f5f1506b1d4487e1c495f1f282": {
3794
+ "00197d3a6ef254114ae015d89c9192cdec4d9bbac6": {
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
- "408a22558791db850172592845df6fdf5f1cdefcb3": {
3816
+ "40e3b04fa9a1f937d436007743423ae063bd45d9a5": {
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
- "402a78d6e80152f5300bd501ed84533c16774ba44f": {
3838
+ "4084f24e87bf49d86e3fe8f7f9bcaad7d237dc025f": {
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
- "60af37e525b8b54b8fac4ed677859d776efe60828a": {
3860
+ "607f784f774ab81209f85682fa2cdc5b83311087b3": {
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
- "703d3d532cbc74a0c05751f7a20fd949bc5e141515": {
3896
+ "70c042db84e91c9c4f7885018b204d9742cded5ddd": {
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
- "40b97ed8d87db3542e339020bb80766c85c34e759a": {
3932
+ "4074ab8621e31993473dc56c717158d478eb34b65d": {
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
- "40377e3cfeeb2d2031c5aa8a570ab518dd3dcca4e2": {
3968
+ "4070846d6e6e713096fc1354d03fcd803b348277fa": {
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
- "403f16255afedb924b5acc4ef49a66308457eca3bf": {
4004
+ "40b66a31bb1e4eda09ba4e6ccf187593635f7ccd04": {
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
- "409912f31cd47efdfb7670eb11b3f1638989f5725c": {
4040
+ "40165390740dce21f0eb26191e4dd101bbab8ab6a3": {
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
- "40deaec0cd3d31e5f5bf3a66680796ca05a030d45b": {
4076
+ "40b866e4cb046c0c90a714b8a02a01748d3cd8fc47": {
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
- "4089ba419d252df2932e22e127726b0ed9eb812fbf": {
4112
+ "4005e3410d94399bcc028179b7303080826715e184": {
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
- "40cb2477a2b12750e5eeb0da363934cdb702aa9723": {
4148
+ "40eb246feed0f9c9d6c34881df6e5e51bcc8ef7cf7": {
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
- "40dd13a4cdfedceca73a23ea3290b416bf0c09dac4": {
4184
+ "409d08627432e8caae79c9af14fffba686c40862ba": {
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
- "70f4397a2e3f84777f96895c37f6850f2da894cc33": {
4220
+ "70995fceda00373d5ea92af0b2be3689618e2abcc1": {
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
- "6025a91abcc0f3878f72e1a8693a205e76b41f091f": {
4256
+ "6002b2efcb7fde75490fcaaaad63e50ef66e24d622": {
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
- "40f91c50f5dac7021d5ceb2486c068765fbb6ac789": {
4299
+ "40acb6a5bb374d6c4e10a4b286c1d5ebef3ed5e151": {
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
- "00497d1d53b70a93bce27c6e2591d876e9ada22d90": {
4314
+ "00b81f99e709768debff774e831f5e515ea3c4fb59": {
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
- "003eb9905cf512c3e33b10590873338fbfa4428bfa": {
4329
+ "004cd8cfa1dd39839b5f19ae6208ef317d6f86b0c9": {
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
- "40893cd196075283447e3bfeae07e5c83768aed04d": {
4344
+ "403be9f6ee8734eb57b9ed507f66dad07cdde6551c": {
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
- "4077af556f85c6d1925ceb13b67ea795b73b1459a0": {
4359
+ "40638d486f9becf487648a838aeb2eff6e38d13bf6": {
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
- "401f1b0b4c29563cbb7840ee579ffa099238de8950": {
4374
+ "4017147b070ee9489bf2df211b603c650f05a82a20": {
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": "nxo3DSXVHn/LzdbyPchUrFHd2qgUn7WdFGRVkwYsiOE="
4391
+ "encryptionKey": "0AZ+U0ngMeS6pQYt+gGxY2Q7nw38X2ktfKL9T0R++gg="
4280
4392
  }