@shipit-ai/cli 1.169.0 → 1.170.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 (385) hide show
  1. package/apis/json-schema/FeatureFlags.yaml +5 -0
  2. package/apis/json-schema/LiteLLMProxyConfig.yaml +14 -0
  3. package/apis/json-schema/Settings.yaml +3 -0
  4. package/dist/packages/core/src/application/ports/output/services/index.d.ts +1 -0
  5. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.d.ts +46 -0
  7. package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.d.ts.map +1 -0
  8. package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.js +12 -0
  9. package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.d.ts +16 -0
  10. package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.d.ts.map +1 -0
  11. package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.js +34 -0
  12. package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.d.ts +24 -0
  13. package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.d.ts.map +1 -0
  14. package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.js +52 -0
  15. package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.d.ts +17 -0
  16. package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.d.ts.map +1 -0
  17. package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.js +33 -0
  18. package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.d.ts +17 -0
  19. package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.d.ts.map +1 -0
  20. package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.js +33 -0
  21. package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.d.ts +16 -0
  22. package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.d.ts.map +1 -0
  23. package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.js +33 -0
  24. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  25. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
  26. package/dist/packages/core/src/domain/generated/output.d.ts +25 -0
  27. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  28. package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts.map +1 -1
  29. package/dist/packages/core/src/infrastructure/di/modules/services.module.js +13 -0
  30. package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts.map +1 -1
  31. package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.js +12 -0
  32. package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts.map +1 -1
  33. package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.js +22 -0
  34. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +4 -0
  35. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  36. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +18 -0
  37. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.d.ts +14 -0
  38. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.d.ts.map +1 -0
  39. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.js +28 -0
  40. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.d.ts +4 -0
  41. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.d.ts.map +1 -0
  42. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.js +3 -0
  43. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.d.ts +78 -0
  44. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.d.ts.map +1 -0
  45. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.js +46 -0
  46. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.d.ts +29 -0
  47. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.d.ts.map +1 -0
  48. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.js +147 -0
  49. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.d.ts +11 -0
  50. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.d.ts.map +1 -0
  51. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.js +47 -0
  52. package/dist/src/presentation/web/app/actions/add-marketplace.d.ts +5 -0
  53. package/dist/src/presentation/web/app/actions/add-marketplace.d.ts.map +1 -0
  54. package/dist/src/presentation/web/app/actions/add-marketplace.js +11 -0
  55. package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.d.ts +5 -0
  56. package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.d.ts.map +1 -0
  57. package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.js +11 -0
  58. package/dist/src/presentation/web/app/actions/install-plugin.d.ts +5 -0
  59. package/dist/src/presentation/web/app/actions/install-plugin.d.ts.map +1 -0
  60. package/dist/src/presentation/web/app/actions/install-plugin.js +11 -0
  61. package/dist/src/presentation/web/app/actions/toggle-plugin.d.ts +5 -0
  62. package/dist/src/presentation/web/app/actions/toggle-plugin.d.ts.map +1 -0
  63. package/dist/src/presentation/web/app/actions/toggle-plugin.js +11 -0
  64. package/dist/src/presentation/web/app/actions/uninstall-plugin.d.ts +5 -0
  65. package/dist/src/presentation/web/app/actions/uninstall-plugin.d.ts.map +1 -0
  66. package/dist/src/presentation/web/app/actions/uninstall-plugin.js +11 -0
  67. package/dist/src/presentation/web/app/plugins/page.d.ts +2 -0
  68. package/dist/src/presentation/web/app/plugins/page.d.ts.map +1 -0
  69. package/dist/src/presentation/web/app/plugins/page.js +23 -0
  70. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.d.ts.map +1 -1
  71. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.js +1 -0
  72. package/dist/src/presentation/web/components/features/plugins/plugin-card.d.ts +9 -0
  73. package/dist/src/presentation/web/components/features/plugins/plugin-card.d.ts.map +1 -0
  74. package/dist/src/presentation/web/components/features/plugins/plugin-card.js +15 -0
  75. package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.d.ts +17 -0
  76. package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.d.ts.map +1 -0
  77. package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.js +60 -0
  78. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.d.ts +11 -0
  79. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.d.ts.map +1 -0
  80. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.js +33 -0
  81. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.d.ts +18 -0
  82. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.d.ts.map +1 -0
  83. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.js +51 -0
  84. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.d.ts +6 -0
  85. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.d.ts.map +1 -0
  86. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.js +115 -0
  87. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.d.ts +12 -0
  88. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.d.ts.map +1 -0
  89. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.js +24 -0
  90. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  91. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +5 -0
  92. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  93. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +2 -0
  94. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts +6 -0
  95. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts.map +1 -0
  96. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.js +76 -0
  97. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts +15 -0
  98. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts.map +1 -0
  99. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.js +29 -0
  100. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  101. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +4 -2
  102. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  103. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
  104. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  105. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
  106. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
  107. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -0
  108. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
  109. package/dist/src/presentation/web/hooks/feature-flags-context.js +1 -0
  110. package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
  111. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  112. package/dist/src/presentation/web/lib/feature-flags.js +6 -0
  113. package/dist/translations/ar/web.json +39 -2
  114. package/dist/translations/de/web.json +39 -2
  115. package/dist/translations/en/web.json +39 -2
  116. package/dist/translations/es/web.json +39 -2
  117. package/dist/translations/fr/web.json +39 -2
  118. package/dist/translations/he/web.json +39 -2
  119. package/dist/translations/pt/web.json +39 -2
  120. package/dist/translations/ru/web.json +39 -2
  121. package/dist/tsconfig.build.tsbuildinfo +1 -1
  122. package/package.json +1 -1
  123. package/web/.next/BUILD_ID +1 -1
  124. package/web/.next/app-path-routes-manifest.json +1 -0
  125. package/web/.next/build-manifest.json +3 -3
  126. package/web/.next/fallback-build-manifest.json +3 -3
  127. package/web/.next/prerender-manifest.json +3 -3
  128. package/web/.next/required-server-files.js +2 -2
  129. package/web/.next/required-server-files.json +2 -2
  130. package/web/.next/routes-manifest.json +6 -0
  131. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  132. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  133. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  134. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  135. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  136. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  137. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +31 -31
  138. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  139. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  140. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
  141. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  142. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  143. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +37 -37
  144. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  145. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  146. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  147. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  148. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  149. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  150. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  151. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  152. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  153. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  154. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  155. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +31 -31
  156. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  157. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  158. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
  159. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  160. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  161. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +37 -37
  162. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  163. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  164. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  165. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  166. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  167. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  168. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  169. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  170. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  171. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  172. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  173. package/web/.next/server/app/_global-error.html +1 -1
  174. package/web/.next/server/app/_global-error.rsc +1 -1
  175. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  176. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  177. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  178. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  179. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  180. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  181. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  182. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  183. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  184. package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
  185. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  186. package/web/.next/server/app/api/graph-data/route.js +1 -1
  187. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  188. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js +1 -1
  189. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  190. package/web/.next/server/app/api/sessions-batch/route.js +1 -1
  191. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
  192. package/web/.next/server/app/plugins/page/app-paths-manifest.json +3 -0
  193. package/web/.next/server/app/plugins/page/build-manifest.json +18 -0
  194. package/web/.next/server/app/plugins/page/next-font-manifest.json +10 -0
  195. package/web/.next/server/app/plugins/page/react-loadable-manifest.json +8 -0
  196. package/web/.next/server/app/plugins/page/server-reference-manifest.json +185 -0
  197. package/web/.next/server/app/plugins/page.js +17 -0
  198. package/web/.next/server/app/plugins/page.js.map +5 -0
  199. package/web/.next/server/app/plugins/page.js.nft.json +1 -0
  200. package/web/.next/server/app/plugins/page_client-reference-manifest.js +3 -0
  201. package/web/.next/server/app/settings/page/server-reference-manifest.json +34 -22
  202. package/web/.next/server/app/settings/page.js +1 -1
  203. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  204. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  205. package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
  206. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  207. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  208. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  209. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  210. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  211. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  212. package/web/.next/server/app/version/page.js.nft.json +1 -1
  213. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  214. package/web/.next/server/app-paths-manifest.json +1 -0
  215. package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js.map +1 -1
  216. package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js → [root-of-the-server]__07suer1._.js} +2 -2
  217. package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js → [root-of-the-server]__0sgzo7y._.js} +2 -2
  218. package/web/.next/server/chunks/[root-of-the-server]__0tb~wwk._.js +1 -1
  219. package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js → [root-of-the-server]__0uxlr84._.js} +2 -2
  220. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js +1 -1
  221. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js.map +1 -1
  222. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js +2 -2
  223. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js.map +1 -1
  224. package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js +1 -1
  225. package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js.map +1 -1
  226. package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js +4 -0
  227. package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js.map +1 -0
  228. package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js +1 -1
  229. package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js.map +1 -1
  230. package/web/.next/server/chunks/ssr/{_04s_q5r._.js → 12k._sonner_dist_index_mjs_0-vmpk5._.js} +2 -2
  231. package/web/.next/server/chunks/ssr/12k._sonner_dist_index_mjs_0-vmpk5._.js.map +1 -0
  232. package/web/.next/server/chunks/ssr/{[root-of-the-server]__0rvrr1j._.js → [root-of-the-server]__0.5ojmt._.js} +2 -2
  233. package/web/.next/server/chunks/ssr/[root-of-the-server]__0.5ojmt._.js.map +1 -0
  234. package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js +3 -0
  235. package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js.map +1 -0
  236. package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js +1 -1
  237. package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js.map +1 -1
  238. package/web/.next/server/chunks/ssr/[root-of-the-server]__0ge~xny._.js +1 -1
  239. package/web/.next/server/chunks/ssr/[root-of-the-server]__0ge~xny._.js.map +1 -1
  240. package/web/.next/server/chunks/ssr/[root-of-the-server]__0qda~yi._.js +1 -1
  241. package/web/.next/server/chunks/ssr/[root-of-the-server]__0qda~yi._.js.map +1 -1
  242. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js +1 -1
  243. package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js +1 -1
  244. package/web/.next/server/chunks/ssr/[root-of-the-server]__0t~u8sd._.js +1 -1
  245. package/web/.next/server/chunks/ssr/[root-of-the-server]__0t~u8sd._.js.map +1 -1
  246. package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js +3 -0
  247. package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js.map +1 -0
  248. package/web/.next/server/chunks/ssr/[root-of-the-server]__10tll_l._.js +1 -1
  249. package/web/.next/server/chunks/ssr/[root-of-the-server]__10tll_l._.js.map +1 -1
  250. package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js +1 -1
  251. package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js.map +1 -1
  252. package/web/.next/server/chunks/ssr/{_01qdxy2._.js → _0.ra89t._.js} +2 -2
  253. package/web/.next/server/chunks/ssr/{_01qdxy2._.js.map → _0.ra89t._.js.map} +1 -1
  254. package/web/.next/server/chunks/ssr/_01sesw0._.js +1 -1
  255. package/web/.next/server/chunks/ssr/_01sesw0._.js.map +1 -1
  256. package/web/.next/server/chunks/ssr/{_00u~.41._.js → _03x4h9e._.js} +2 -2
  257. package/web/.next/server/chunks/ssr/_03x4h9e._.js.map +1 -0
  258. package/web/.next/server/chunks/ssr/{_0~0jkp_._.js → _05fk0a4._.js} +2 -2
  259. package/web/.next/server/chunks/ssr/_05fk0a4._.js.map +1 -0
  260. package/web/.next/server/chunks/ssr/_069y.js._.js +2 -2
  261. package/web/.next/server/chunks/ssr/_069y.js._.js.map +1 -1
  262. package/web/.next/server/chunks/ssr/{_0wor25i._.js → _069ybyi._.js} +2 -2
  263. package/web/.next/server/chunks/ssr/{_0wor25i._.js.map → _069ybyi._.js.map} +1 -1
  264. package/web/.next/server/chunks/ssr/_083k45~._.js +3 -0
  265. package/web/.next/server/chunks/ssr/_083k45~._.js.map +1 -0
  266. package/web/.next/server/chunks/ssr/_0_17.-n._.js +3 -0
  267. package/web/.next/server/chunks/ssr/_0_17.-n._.js.map +1 -0
  268. package/web/.next/server/chunks/ssr/_0__4si~._.js +1 -1
  269. package/web/.next/server/chunks/ssr/_0__4si~._.js.map +1 -1
  270. package/web/.next/server/chunks/ssr/_0_m17kl._.js +1 -1
  271. package/web/.next/server/chunks/ssr/_0_m17kl._.js.map +1 -1
  272. package/web/.next/server/chunks/ssr/_0d4miu.._.js +1 -1
  273. package/web/.next/server/chunks/ssr/_0d4miu.._.js.map +1 -1
  274. package/web/.next/server/chunks/ssr/_0e8ern9._.js +1 -1
  275. package/web/.next/server/chunks/ssr/_0e8ern9._.js.map +1 -1
  276. package/web/.next/server/chunks/ssr/_0i~-084._.js +3 -0
  277. package/web/.next/server/chunks/ssr/_0i~-084._.js.map +1 -0
  278. package/web/.next/server/chunks/ssr/_0kt18~b._.js +3 -0
  279. package/web/.next/server/chunks/ssr/_0kt18~b._.js.map +1 -0
  280. package/web/.next/server/chunks/ssr/{_0hw~zvl._.js → _0o_oaao._.js} +2 -2
  281. package/web/.next/server/chunks/ssr/_0o_oaao._.js.map +1 -0
  282. package/web/.next/server/chunks/ssr/_0p3~u8u._.js +2 -2
  283. package/web/.next/server/chunks/ssr/_0p3~u8u._.js.map +1 -1
  284. package/web/.next/server/chunks/ssr/_0r.3n~3._.js +1 -1
  285. package/web/.next/server/chunks/ssr/_0r.3n~3._.js.map +1 -1
  286. package/web/.next/server/chunks/ssr/_0rcx2-c._.js +9 -0
  287. package/web/.next/server/chunks/ssr/_0rcx2-c._.js.map +1 -0
  288. package/web/.next/server/chunks/ssr/_0t59q8r._.js +1 -1
  289. package/web/.next/server/chunks/ssr/_0t59q8r._.js.map +1 -1
  290. package/web/.next/server/chunks/ssr/_0tcccbb._.js +1 -1
  291. package/web/.next/server/chunks/ssr/_0tcccbb._.js.map +1 -1
  292. package/web/.next/server/chunks/ssr/{_0pa1dkv._.js → _0u3d8.n._.js} +2 -2
  293. package/web/.next/server/chunks/ssr/_0u3d8.n._.js.map +1 -0
  294. package/web/.next/server/chunks/ssr/_0vyfc4b._.js +1 -1
  295. package/web/.next/server/chunks/ssr/_0vyfc4b._.js.map +1 -1
  296. package/web/.next/server/chunks/ssr/_0w-_hww._.js +1 -1
  297. package/web/.next/server/chunks/ssr/_0w-_hww._.js.map +1 -1
  298. package/web/.next/server/chunks/ssr/{_09r54oy._.js → _0ygafoy._.js} +2 -2
  299. package/web/.next/server/chunks/ssr/{_09r54oy._.js.map → _0ygafoy._.js.map} +1 -1
  300. package/web/.next/server/chunks/ssr/_0zk-h5w._.js +1 -1
  301. package/web/.next/server/chunks/ssr/_0zk-h5w._.js.map +1 -1
  302. package/web/.next/server/chunks/ssr/_0~7lwu_._.js +1 -1
  303. package/web/.next/server/chunks/ssr/_0~7lwu_._.js.map +1 -1
  304. package/web/.next/server/chunks/ssr/_10joy2y._.js +3 -0
  305. package/web/.next/server/chunks/ssr/_10joy2y._.js.map +1 -0
  306. package/web/.next/server/chunks/ssr/_1161g9x._.js +1 -1
  307. package/web/.next/server/chunks/ssr/_1161g9x._.js.map +1 -1
  308. package/web/.next/server/chunks/ssr/_12uy.45._.js +3 -0
  309. package/web/.next/server/chunks/ssr/_12uy.45._.js.map +1 -0
  310. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js +3 -0
  311. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js.map +1 -0
  312. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js +1 -1
  313. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js.map +1 -1
  314. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js +1 -1
  315. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js.map +1 -1
  316. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js +1 -1
  317. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js +1 -1
  318. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js +1 -1
  319. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js.map +1 -1
  320. package/web/.next/server/middleware-build-manifest.js +3 -3
  321. package/web/.next/server/next-font-manifest.js +1 -1
  322. package/web/.next/server/next-font-manifest.json +3 -0
  323. package/web/.next/server/pages/500.html +1 -1
  324. package/web/.next/server/server-reference-manifest.js +1 -1
  325. package/web/.next/server/server-reference-manifest.json +187 -61
  326. package/web/.next/static/chunks/{0dq50gtgaj63f.js → 01zrwm.x3kpdo.js} +1 -1
  327. package/web/.next/static/chunks/{12axopx66pocj.js → 024vi1xxw5ccj.js} +1 -1
  328. package/web/.next/static/chunks/{00m_fbc2z1gyi.js → 043zp6fpfaz07.js} +3 -3
  329. package/web/.next/static/chunks/{0fg~vc93spa9c.js → 07gal-~-zwagj.js} +1 -1
  330. package/web/.next/static/chunks/{1874_wt9rit96.js → 09lcrhxslt-u8.js} +1 -1
  331. package/web/.next/static/chunks/0aq9-lg.5r.nk.js +5 -0
  332. package/web/.next/static/chunks/{0in4l8mne5y~_.js → 0b2pi58fg3lt3.js} +1 -1
  333. package/web/.next/static/chunks/0dprl~vdhvhk7.js +1 -0
  334. package/web/.next/static/chunks/{11vbir.u7_zf7.js → 0e.8n42~fpeqa.js} +1 -1
  335. package/web/.next/static/chunks/0jt5jzg88skg5.js +1 -0
  336. package/web/.next/static/chunks/{0v~n9z6b639zm.js → 0jwq.mr-.ltps.js} +1 -1
  337. package/web/.next/static/chunks/0k8m.qcahm63g.js +1 -0
  338. package/web/.next/static/chunks/0lc0x8kcu46ae.js +1 -0
  339. package/web/.next/static/chunks/{121v1_d_dfk2k.js → 0lwuepa24tqxy.js} +1 -1
  340. package/web/.next/static/chunks/0lz-oq74e_ciu.js +1 -0
  341. package/web/.next/static/chunks/0nkujbu62z1jl.js +7 -0
  342. package/web/.next/static/chunks/{0u_27fdqa2jeg.js → 0rb5cx51f5u8h.js} +1 -1
  343. package/web/.next/static/chunks/0tdbctvrma.oi.js +1 -0
  344. package/web/.next/static/chunks/{0yibymrb2j05t.css → 0v7r7y~3e~oo6.css} +1 -1
  345. package/web/.next/static/chunks/{0k0j7anrbg-of.js → 0vq.b40jzhi7r.js} +1 -1
  346. package/web/.next/static/chunks/0wd.i4f822qoa.js +1 -0
  347. package/web/.next/static/chunks/{183ehj-b80a~o.js → 0xo.hi4px83w2.js} +1 -1
  348. package/web/.next/static/chunks/{09f2lesd_dd3~.js → 0xzs6jdtkmbic.js} +1 -1
  349. package/web/.next/static/chunks/{0o33urrd3lk~u.js → 0~4c6tnw7xnnl.js} +1 -1
  350. package/web/.next/static/chunks/16jgc8hqxrp.u.js +1 -0
  351. package/web/.next/server/chunks/ssr/[root-of-the-server]__0qxd563._.js +0 -3
  352. package/web/.next/server/chunks/ssr/[root-of-the-server]__0qxd563._.js.map +0 -1
  353. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js.map +0 -1
  354. package/web/.next/server/chunks/ssr/_00u~.41._.js.map +0 -1
  355. package/web/.next/server/chunks/ssr/_04s_q5r._.js.map +0 -1
  356. package/web/.next/server/chunks/ssr/_0a_8rlj._.js +0 -3
  357. package/web/.next/server/chunks/ssr/_0a_8rlj._.js.map +0 -1
  358. package/web/.next/server/chunks/ssr/_0dy8.0k._.js +0 -3
  359. package/web/.next/server/chunks/ssr/_0dy8.0k._.js.map +0 -1
  360. package/web/.next/server/chunks/ssr/_0gdghcr._.js +0 -3
  361. package/web/.next/server/chunks/ssr/_0gdghcr._.js.map +0 -1
  362. package/web/.next/server/chunks/ssr/_0hw~zvl._.js.map +0 -1
  363. package/web/.next/server/chunks/ssr/_0l2~~pi._.js +0 -3
  364. package/web/.next/server/chunks/ssr/_0l2~~pi._.js.map +0 -1
  365. package/web/.next/server/chunks/ssr/_0n.magx._.js +0 -3
  366. package/web/.next/server/chunks/ssr/_0n.magx._.js.map +0 -1
  367. package/web/.next/server/chunks/ssr/_0pa1dkv._.js.map +0 -1
  368. package/web/.next/server/chunks/ssr/_0y8u4.e._.js +0 -9
  369. package/web/.next/server/chunks/ssr/_0y8u4.e._.js.map +0 -1
  370. package/web/.next/server/chunks/ssr/_0~0jkp_._.js.map +0 -1
  371. package/web/.next/static/chunks/0-ud~1jj7chzu.js +0 -7
  372. package/web/.next/static/chunks/0c0dau5pmseko.js +0 -1
  373. package/web/.next/static/chunks/0inayq2zzadja.js +0 -1
  374. package/web/.next/static/chunks/0n3kuj7t_-jzp.js +0 -1
  375. package/web/.next/static/chunks/0pt-d18f7zxvv.js +0 -1
  376. package/web/.next/static/chunks/0xwh.0u-dexsl.js +0 -1
  377. package/web/.next/static/chunks/103xnw203o9k1.js +0 -1
  378. package/web/.next/static/chunks/12pd180jp8zu..js +0 -5
  379. package/web/.next/static/chunks/13fcwhkw7dle2.js +0 -1
  380. /package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js.map → [root-of-the-server]__07suer1._.js.map} +0 -0
  381. /package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js.map → [root-of-the-server]__0sgzo7y._.js.map} +0 -0
  382. /package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js.map → [root-of-the-server]__0uxlr84._.js.map} +0 -0
  383. /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → kDUolP-Zj2jCRleGJJGX0}/_buildManifest.js +0 -0
  384. /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → kDUolP-Zj2jCRleGJJGX0}/_clientMiddlewareManifest.js +0 -0
  385. /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → kDUolP-Zj2jCRleGJJGX0}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "00f3149441b97a1723eb427e92bdf9ca1d03b71775": {
3
+ "006ffa246e488f5da03d382fec4879ee26ae033fb2": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
6
  "moduleId": 81306,
@@ -92,8 +92,14 @@
92
92
  "exportedName": "getAllAgentModels",
93
93
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
94
94
  },
95
+ "app/plugins/page": {
96
+ "moduleId": 20289,
97
+ "async": false,
98
+ "exportedName": "getAllAgentModels",
99
+ "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
100
+ },
95
101
  "app/settings/page": {
96
- "moduleId": 87459,
102
+ "moduleId": 90104,
97
103
  "async": false,
98
104
  "exportedName": "getAllAgentModels",
99
105
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -120,7 +126,7 @@
120
126
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts",
121
127
  "exportedName": "getAllAgentModels"
122
128
  },
123
- "602d1387ba85a2db48d0a68022ade2031f6d1a000a": {
129
+ "60629bc489f343ac1edd6d91a047554f59a89fc843": {
124
130
  "workers": {
125
131
  "app/(dashboard)/@drawer/adopt/page": {
126
132
  "moduleId": 81306,
@@ -212,8 +218,14 @@
212
218
  "exportedName": "updateAgentAndModel",
213
219
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
214
220
  },
221
+ "app/plugins/page": {
222
+ "moduleId": 20289,
223
+ "async": false,
224
+ "exportedName": "updateAgentAndModel",
225
+ "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
226
+ },
215
227
  "app/settings/page": {
216
- "moduleId": 87459,
228
+ "moduleId": 90104,
217
229
  "async": false,
218
230
  "exportedName": "updateAgentAndModel",
219
231
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -240,7 +252,7 @@
240
252
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts",
241
253
  "exportedName": "updateAgentAndModel"
242
254
  },
243
- "0053fbf05f4fb39eea5650faa3a11092f74426c33b": {
255
+ "006f404c48afbb96195e3fc5a673998b8ee75f1049": {
244
256
  "workers": {
245
257
  "app/(dashboard)/@drawer/adopt/page": {
246
258
  "moduleId": 81306,
@@ -332,8 +344,14 @@
332
344
  "exportedName": "pickFolder",
333
345
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
334
346
  },
347
+ "app/plugins/page": {
348
+ "moduleId": 20289,
349
+ "async": false,
350
+ "exportedName": "pickFolder",
351
+ "filename": "src/presentation/web/app/actions/pick-folder.ts"
352
+ },
335
353
  "app/settings/page": {
336
- "moduleId": 87459,
354
+ "moduleId": 90104,
337
355
  "async": false,
338
356
  "exportedName": "pickFolder",
339
357
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -360,7 +378,7 @@
360
378
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
361
379
  "exportedName": "pickFolder"
362
380
  },
363
- "404e854a91b105e053204087e8d1b88d120dd0e0e9": {
381
+ "40c0d76e3f8aae8a41cd1b2cdc248965928f818cf3": {
364
382
  "workers": {
365
383
  "app/(dashboard)/@drawer/adopt/page": {
366
384
  "moduleId": 81306,
@@ -452,8 +470,14 @@
452
470
  "exportedName": "listGitHubRepositories",
453
471
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
454
472
  },
473
+ "app/plugins/page": {
474
+ "moduleId": 20289,
475
+ "async": false,
476
+ "exportedName": "listGitHubRepositories",
477
+ "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
478
+ },
455
479
  "app/settings/page": {
456
- "moduleId": 87459,
480
+ "moduleId": 90104,
457
481
  "async": false,
458
482
  "exportedName": "listGitHubRepositories",
459
483
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -480,7 +504,7 @@
480
504
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts",
481
505
  "exportedName": "listGitHubRepositories"
482
506
  },
483
- "006c2859816cc99cfcded6ffcec5e916a33bf0e4eb": {
507
+ "00c0e8084e692e3df1eda007d1bd634a59e491d3de": {
484
508
  "workers": {
485
509
  "app/(dashboard)/@drawer/adopt/page": {
486
510
  "moduleId": 81306,
@@ -572,8 +596,14 @@
572
596
  "exportedName": "listGitHubOrganizations",
573
597
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
574
598
  },
599
+ "app/plugins/page": {
600
+ "moduleId": 20289,
601
+ "async": false,
602
+ "exportedName": "listGitHubOrganizations",
603
+ "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
604
+ },
575
605
  "app/settings/page": {
576
- "moduleId": 87459,
606
+ "moduleId": 90104,
577
607
  "async": false,
578
608
  "exportedName": "listGitHubOrganizations",
579
609
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -600,7 +630,7 @@
600
630
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts",
601
631
  "exportedName": "listGitHubOrganizations"
602
632
  },
603
- "40479de74822f2e08e931928f55bfdeba6d8ea2ff4": {
633
+ "40617fac451357c9a4faef65db266a915e4872a472": {
604
634
  "workers": {
605
635
  "app/(dashboard)/@drawer/adopt/page": {
606
636
  "moduleId": 81306,
@@ -692,8 +722,14 @@
692
722
  "exportedName": "importGitHubRepository",
693
723
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
694
724
  },
725
+ "app/plugins/page": {
726
+ "moduleId": 20289,
727
+ "async": false,
728
+ "exportedName": "importGitHubRepository",
729
+ "filename": "src/presentation/web/app/actions/import-github-repository.ts"
730
+ },
695
731
  "app/settings/page": {
696
- "moduleId": 87459,
732
+ "moduleId": 90104,
697
733
  "async": false,
698
734
  "exportedName": "importGitHubRepository",
699
735
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -720,7 +756,7 @@
720
756
  "filename": "src/presentation/web/app/actions/import-github-repository.ts",
721
757
  "exportedName": "importGitHubRepository"
722
758
  },
723
- "409a5c600e176018fe661fb309a718d5a473e07814": {
759
+ "401b4acb5374d46f9311b127d61e4215c027205b04": {
724
760
  "workers": {
725
761
  "app/(dashboard)/@drawer/adopt/page": {
726
762
  "moduleId": 81306,
@@ -806,6 +842,12 @@
806
842
  "exportedName": "deployFeature",
807
843
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
808
844
  },
845
+ "app/plugins/page": {
846
+ "moduleId": 20289,
847
+ "async": false,
848
+ "exportedName": "deployFeature",
849
+ "filename": "src/presentation/web/app/actions/deploy-feature.ts"
850
+ },
809
851
  "app/skills/page": {
810
852
  "moduleId": 14937,
811
853
  "async": false,
@@ -822,7 +864,7 @@
822
864
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
823
865
  "exportedName": "deployFeature"
824
866
  },
825
- "40d82cb13cb37cb0dd82c4df55e6e7d7db0353485a": {
867
+ "404b75c046731abf1eaf7114bcd8eadbf4583378c2": {
826
868
  "workers": {
827
869
  "app/(dashboard)/@drawer/adopt/page": {
828
870
  "moduleId": 81306,
@@ -908,6 +950,12 @@
908
950
  "exportedName": "deployRepository",
909
951
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
910
952
  },
953
+ "app/plugins/page": {
954
+ "moduleId": 20289,
955
+ "async": false,
956
+ "exportedName": "deployRepository",
957
+ "filename": "src/presentation/web/app/actions/deploy-repository.ts"
958
+ },
911
959
  "app/skills/page": {
912
960
  "moduleId": 14937,
913
961
  "async": false,
@@ -924,7 +972,7 @@
924
972
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
925
973
  "exportedName": "deployRepository"
926
974
  },
927
- "40a73e43b2e787d37c80c099d084018fb71b00d9d0": {
975
+ "407b0b8df7355842dffec3719ef4ee43fd852ecee1": {
928
976
  "workers": {
929
977
  "app/(dashboard)/@drawer/adopt/page": {
930
978
  "moduleId": 81306,
@@ -1010,6 +1058,12 @@
1010
1058
  "exportedName": "stopDeployment",
1011
1059
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1012
1060
  },
1061
+ "app/plugins/page": {
1062
+ "moduleId": 20289,
1063
+ "async": false,
1064
+ "exportedName": "stopDeployment",
1065
+ "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1066
+ },
1013
1067
  "app/skills/page": {
1014
1068
  "moduleId": 14937,
1015
1069
  "async": false,
@@ -1026,7 +1080,7 @@
1026
1080
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
1027
1081
  "exportedName": "stopDeployment"
1028
1082
  },
1029
- "407db844c7c8ea974d35bc60e37c570e492b746d33": {
1083
+ "4093ab106c98a5f5c2a0dd8bbb06de9d2e45d66612": {
1030
1084
  "workers": {
1031
1085
  "app/(dashboard)/@drawer/adopt/page": {
1032
1086
  "moduleId": 81306,
@@ -1112,6 +1166,12 @@
1112
1166
  "exportedName": "getDeploymentStatus",
1113
1167
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1114
1168
  },
1169
+ "app/plugins/page": {
1170
+ "moduleId": 20289,
1171
+ "async": false,
1172
+ "exportedName": "getDeploymentStatus",
1173
+ "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1174
+ },
1115
1175
  "app/skills/page": {
1116
1176
  "moduleId": 14937,
1117
1177
  "async": false,
@@ -1128,7 +1188,7 @@
1128
1188
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
1129
1189
  "exportedName": "getDeploymentStatus"
1130
1190
  },
1131
- "40d591b1c07cd4d8255ebb865737f680509c6500d0": {
1191
+ "403b50818c4c8a3d6d430ae3439eb3037c4ca54755": {
1132
1192
  "workers": {
1133
1193
  "app/(dashboard)/@drawer/adopt/page": {
1134
1194
  "moduleId": 81306,
@@ -1218,7 +1278,7 @@
1218
1278
  "filename": "src/presentation/web/app/actions/open-ide.ts",
1219
1279
  "exportedName": "openIde"
1220
1280
  },
1221
- "4010dc860d74ee20206fd729af2a6d1d60e23ad9f9": {
1281
+ "40792ab294bf027b28044da4c8ef078009d30f6a86": {
1222
1282
  "workers": {
1223
1283
  "app/(dashboard)/@drawer/adopt/page": {
1224
1284
  "moduleId": 81306,
@@ -1308,7 +1368,7 @@
1308
1368
  "filename": "src/presentation/web/app/actions/open-shell.ts",
1309
1369
  "exportedName": "openShell"
1310
1370
  },
1311
- "406b000bf868ec884928cdb9575bb56ea8a0c86c09": {
1371
+ "4014a40a31cf611500dd14f1ee4409c3279343d678": {
1312
1372
  "workers": {
1313
1373
  "app/(dashboard)/@drawer/adopt/page": {
1314
1374
  "moduleId": 81306,
@@ -1398,7 +1458,7 @@
1398
1458
  "filename": "src/presentation/web/app/actions/open-folder.ts",
1399
1459
  "exportedName": "openFolder"
1400
1460
  },
1401
- "404a49f9a14a920f10930d20c298feb588c435dd04": {
1461
+ "40bcce76e841141cd8d5df1027db29237885f36a41": {
1402
1462
  "workers": {
1403
1463
  "app/(dashboard)/@drawer/adopt/page": {
1404
1464
  "moduleId": 81306,
@@ -1488,7 +1548,7 @@
1488
1548
  "filename": "src/presentation/web/app/actions/sync-repository.ts",
1489
1549
  "exportedName": "syncRepository"
1490
1550
  },
1491
- "40899c90d78dac2c7f13da7d63d753f1a792e74872": {
1551
+ "4015277cad6ef643d1ac166d2508176c0e771f44b0": {
1492
1552
  "workers": {
1493
1553
  "app/(dashboard)/@drawer/adopt/page": {
1494
1554
  "moduleId": 81306,
@@ -1574,6 +1634,12 @@
1574
1634
  "exportedName": "getDeploymentLogs",
1575
1635
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1576
1636
  },
1637
+ "app/plugins/page": {
1638
+ "moduleId": 20289,
1639
+ "async": false,
1640
+ "exportedName": "getDeploymentLogs",
1641
+ "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1642
+ },
1577
1643
  "app/skills/page": {
1578
1644
  "moduleId": 14937,
1579
1645
  "async": false,
@@ -1590,7 +1656,7 @@
1590
1656
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
1591
1657
  "exportedName": "getDeploymentLogs"
1592
1658
  },
1593
- "00aa4df98bb52f8195a1c5d56b7a3f00dc982390c6": {
1659
+ "00e4d0fc6ed963b004c29d432fe764d25f0640bcc5": {
1594
1660
  "workers": {
1595
1661
  "app/(dashboard)/@drawer/adopt/page": {
1596
1662
  "moduleId": 81306,
@@ -1680,7 +1746,7 @@
1680
1746
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts",
1681
1747
  "exportedName": "isAgentSetupComplete"
1682
1748
  },
1683
- "00b39311c3b49e63ca702d96a9abc8ffb4587e694c": {
1749
+ "009b861a65761e8ec9a0099705efffe209302e5078": {
1684
1750
  "workers": {
1685
1751
  "app/(dashboard)/@drawer/adopt/page": {
1686
1752
  "moduleId": 81306,
@@ -1770,7 +1836,7 @@
1770
1836
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts",
1771
1837
  "exportedName": "checkAgentAuth"
1772
1838
  },
1773
- "00e23df8feeee946b4ff1533230330b1c798a885bc": {
1839
+ "00d2ea9d9cae689585ef03a5bbfc49e95ff2db974b": {
1774
1840
  "workers": {
1775
1841
  "app/(dashboard)/@drawer/adopt/page": {
1776
1842
  "moduleId": 81306,
@@ -1860,7 +1926,7 @@
1860
1926
  "filename": "src/presentation/web/app/actions/check-tool-status.ts",
1861
1927
  "exportedName": "checkToolStatus"
1862
1928
  },
1863
- "403e3cf2192e93c64ec6bb28c0ee1b3decb83e6faf": {
1929
+ "403002a5d42a27e3c95885bf13471f284ae14ae3ad": {
1864
1930
  "workers": {
1865
1931
  "app/(dashboard)/@drawer/adopt/page": {
1866
1932
  "moduleId": 81306,
@@ -1950,7 +2016,7 @@
1950
2016
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts",
1951
2017
  "exportedName": "getFeatureMetadata"
1952
2018
  },
1953
- "4075fcd9a640859a1d9db7428175134a488dbd2c96": {
2019
+ "4001d3b3b0ec9710c8a8b848267a94039833cfdaf0": {
1954
2020
  "workers": {
1955
2021
  "app/(dashboard)/@drawer/adopt/page": {
1956
2022
  "moduleId": 81306,
@@ -2040,7 +2106,7 @@
2040
2106
  "filename": "src/presentation/web/app/actions/archive-feature.ts",
2041
2107
  "exportedName": "archiveFeature"
2042
2108
  },
2043
- "78a58ade378c52c1e58a2d74c3a23f064ebe51ded5": {
2109
+ "7844aa4bea0a883f1482e3dbb3025e8f9dd441eeb9": {
2044
2110
  "workers": {
2045
2111
  "app/(dashboard)/@drawer/adopt/page": {
2046
2112
  "moduleId": 81306,
@@ -2130,7 +2196,7 @@
2130
2196
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
2131
2197
  "exportedName": "deleteFeature"
2132
2198
  },
2133
- "4027e5dad04dbaef13ce3b498018f00b8db9e5851e": {
2199
+ "405532d73211298ef9e3d7a5cdea5b5dc6b2060d47": {
2134
2200
  "workers": {
2135
2201
  "app/(dashboard)/@drawer/adopt/page": {
2136
2202
  "moduleId": 81306,
@@ -2220,7 +2286,7 @@
2220
2286
  "filename": "src/presentation/web/app/actions/resume-feature.ts",
2221
2287
  "exportedName": "resumeFeature"
2222
2288
  },
2223
- "40674141e58e40ef789181a00a9ea44950e33d5609": {
2289
+ "40f73c96f198d69599abba115e0886c2d25f304703": {
2224
2290
  "workers": {
2225
2291
  "app/(dashboard)/@drawer/adopt/page": {
2226
2292
  "moduleId": 81306,
@@ -2310,7 +2376,7 @@
2310
2376
  "filename": "src/presentation/web/app/actions/start-feature.ts",
2311
2377
  "exportedName": "startFeature"
2312
2378
  },
2313
- "402451d017667d3e4ce8b9918962f34114fa5362c9": {
2379
+ "40892a3ecf37c1aa089d95848e605fa687dd8ff413": {
2314
2380
  "workers": {
2315
2381
  "app/(dashboard)/@drawer/adopt/page": {
2316
2382
  "moduleId": 81306,
@@ -2400,7 +2466,7 @@
2400
2466
  "filename": "src/presentation/web/app/actions/stop-feature.ts",
2401
2467
  "exportedName": "stopFeature"
2402
2468
  },
2403
- "401194b480db55d85ed5a05aa4f55fb3922bbfbae5": {
2469
+ "4071344824aa7e6436c93eefd044901a17073177b1": {
2404
2470
  "workers": {
2405
2471
  "app/(dashboard)/@drawer/adopt/page": {
2406
2472
  "moduleId": 81306,
@@ -2490,7 +2556,7 @@
2490
2556
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts",
2491
2557
  "exportedName": "unarchiveFeature"
2492
2558
  },
2493
- "4050506e010d7da3cdb6eea0c8eca46b406aa3d63b": {
2559
+ "40561d29661f661688842173586e2787a89109395a": {
2494
2560
  "workers": {
2495
2561
  "app/(dashboard)/@drawer/adopt/page": {
2496
2562
  "moduleId": 81306,
@@ -2580,7 +2646,7 @@
2580
2646
  "filename": "src/presentation/web/app/actions/add-repository.ts",
2581
2647
  "exportedName": "addRepository"
2582
2648
  },
2583
- "4007aa7e083f221c2d7f7f3831ea3b907ed234e4e3": {
2649
+ "4048c36a0b7ee96f66b8a6ee9c835725c8734cca57": {
2584
2650
  "workers": {
2585
2651
  "app/(dashboard)/@drawer/adopt/page": {
2586
2652
  "moduleId": 81306,
@@ -2670,7 +2736,7 @@
2670
2736
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
2671
2737
  "exportedName": "deleteRepository"
2672
2738
  },
2673
- "40d5c0f121621395326fd600c6541bc6b843d1eae6": {
2739
+ "40f234f5261c4924f090aea7c2f8296eba997d4f5e": {
2674
2740
  "workers": {
2675
2741
  "app/(dashboard)/@drawer/adopt/page": {
2676
2742
  "moduleId": 81306,
@@ -2682,7 +2748,7 @@
2682
2748
  "filename": "src/presentation/web/app/actions/adopt-branch.ts",
2683
2749
  "exportedName": "adoptBranch"
2684
2750
  },
2685
- "40023cdcdad1109302b8a531627b0f86de2a4f6519": {
2751
+ "408c4a519e678a8abe9c13677259e91a31cc1a27c4": {
2686
2752
  "workers": {
2687
2753
  "app/(dashboard)/@drawer/adopt/page": {
2688
2754
  "moduleId": 81306,
@@ -2694,7 +2760,7 @@
2694
2760
  "filename": "src/presentation/web/app/actions/list-branches.ts",
2695
2761
  "exportedName": "listBranches"
2696
2762
  },
2697
- "002cd4d24dcfd8130338ca6789257355c28cc52af2": {
2763
+ "0049cd5769923bb8ef5de51de9f40ef441789a5225": {
2698
2764
  "workers": {
2699
2765
  "app/(dashboard)/@drawer/create/page": {
2700
2766
  "moduleId": 81881,
@@ -2712,7 +2778,7 @@
2712
2778
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
2713
2779
  "exportedName": "getWorkflowDefaults"
2714
2780
  },
2715
- "40c199af21f0c83c99e3185c1393d5ad435bbad637": {
2781
+ "402090a84e8f04b92fdca4f891f4cb32793cb1e1b2": {
2716
2782
  "workers": {
2717
2783
  "app/(dashboard)/@drawer/create/page": {
2718
2784
  "moduleId": 81881,
@@ -2730,7 +2796,7 @@
2730
2796
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts",
2731
2797
  "exportedName": "getViewerPermission"
2732
2798
  },
2733
- "400a42af6e2cec3728e3145e88ffcf104a015ee09d": {
2799
+ "40a061cd48b7a2c2da3901f690354129cae6a01b8a": {
2734
2800
  "workers": {
2735
2801
  "app/(dashboard)/@drawer/create/page": {
2736
2802
  "moduleId": 81881,
@@ -2748,7 +2814,7 @@
2748
2814
  "filename": "src/presentation/web/app/actions/create-feature.ts",
2749
2815
  "exportedName": "createFeature"
2750
2816
  },
2751
- "402644f329b8e414e2f2e4c562b866756eecd73e81": {
2817
+ "40bed5069aa67bf9f032f528cd3b1601d77d0540a2": {
2752
2818
  "workers": {
2753
2819
  "app/(dashboard)/@drawer/create/page": {
2754
2820
  "moduleId": 81881,
@@ -2766,7 +2832,7 @@
2766
2832
  "filename": "src/presentation/web/app/actions/agent-permissions.ts",
2767
2833
  "exportedName": "getAgentPermissionOptions"
2768
2834
  },
2769
- "601993eae68eee79966aff835941e6d3e1154d369c": {
2835
+ "60a39526da8c492ff9e2065816d05307fbe347b9b7": {
2770
2836
  "workers": {
2771
2837
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2772
2838
  "moduleId": 23461,
@@ -2796,7 +2862,7 @@
2796
2862
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
2797
2863
  "exportedName": "approveFeature"
2798
2864
  },
2799
- "70d160e610c7f14da88e64957be3afecc7067e6d74": {
2865
+ "708e18a22a6f26befe1bad77401bbc602d8883e33b": {
2800
2866
  "workers": {
2801
2867
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2802
2868
  "moduleId": 23461,
@@ -2826,7 +2892,7 @@
2826
2892
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
2827
2893
  "exportedName": "rejectFeature"
2828
2894
  },
2829
- "40cd86327fe4e2b976b417f49a227671cd00102d52": {
2895
+ "4077150002a1a8edcbaf6497304fba3393ed3c8593": {
2830
2896
  "workers": {
2831
2897
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2832
2898
  "moduleId": 23461,
@@ -2856,7 +2922,7 @@
2856
2922
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
2857
2923
  "exportedName": "getFeatureArtifact"
2858
2924
  },
2859
- "40e172f0a3585628ed1f138b3191594eba387ba2f2": {
2925
+ "4002e6e138eaf949dbe53ba7aaf53a6dcc3da3f11a": {
2860
2926
  "workers": {
2861
2927
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2862
2928
  "moduleId": 23461,
@@ -2886,7 +2952,7 @@
2886
2952
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
2887
2953
  "exportedName": "getResearchArtifact"
2888
2954
  },
2889
- "409abfcd63b783c9eedec3387ebbab63d253981d51": {
2955
+ "400cd55af942bf34c26e99c0467aa287e5cc5bfdb6": {
2890
2956
  "workers": {
2891
2957
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2892
2958
  "moduleId": 23461,
@@ -2916,7 +2982,7 @@
2916
2982
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts",
2917
2983
  "exportedName": "getMergeReviewData"
2918
2984
  },
2919
- "403d1c2bfe14ed30868a92fb90cd0ae598ca83a8e2": {
2985
+ "40dfeed38f7bdbc0bacd1c199a9394d6af8f304535": {
2920
2986
  "workers": {
2921
2987
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2922
2988
  "moduleId": 23461,
@@ -2946,7 +3012,7 @@
2946
3012
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts",
2947
3013
  "exportedName": "getFeaturePhaseTimings"
2948
3014
  },
2949
- "40d4ee88c3ba4ea5a417b3dffec3396063fad67145": {
3015
+ "400a93df63fa24169c58545ef7cc11013f1feb1658": {
2950
3016
  "workers": {
2951
3017
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2952
3018
  "moduleId": 23461,
@@ -2976,7 +3042,7 @@
2976
3042
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts",
2977
3043
  "exportedName": "getFeaturePlan"
2978
3044
  },
2979
- "4076cb0ef940d97f91045e51bd6b9b848da3c62a35": {
3045
+ "40952285f4affa7d413c7a5a22f56c3d2d2c54e8c1": {
2980
3046
  "workers": {
2981
3047
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2982
3048
  "moduleId": 23461,
@@ -3006,7 +3072,7 @@
3006
3072
  "filename": "src/presentation/web/app/actions/rebase-feature.ts",
3007
3073
  "exportedName": "rebaseFeature"
3008
3074
  },
3009
- "402d0805a3b66cb23f39690eb122cf3182c643a6e3": {
3075
+ "40757a16725be9200875329ee4f8661591d7a80351": {
3010
3076
  "workers": {
3011
3077
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3012
3078
  "moduleId": 23461,
@@ -3036,7 +3102,7 @@
3036
3102
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts",
3037
3103
  "exportedName": "getFeatureDrawerData"
3038
3104
  },
3039
- "4050e9790ac14e8c8cb9529131772d30ebc65561ac": {
3105
+ "404aa477e187da5bac86afbe2e86ae1d44eb88aaa8": {
3040
3106
  "workers": {
3041
3107
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3042
3108
  "moduleId": 23461,
@@ -3066,7 +3132,7 @@
3066
3132
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts",
3067
3133
  "exportedName": "getBranchSyncStatus"
3068
3134
  },
3069
- "60894b3a3bee7e95180d5f881213a1eeba9f5ccda0": {
3135
+ "604992a4b15b227b11459c865dc2ac9f32a8eb3d5e": {
3070
3136
  "workers": {
3071
3137
  "app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page": {
3072
3138
  "moduleId": 59044,
@@ -3096,10 +3162,58 @@
3096
3162
  "filename": "src/presentation/web/app/actions/get-git-log.ts",
3097
3163
  "exportedName": "getGitRepoInfo"
3098
3164
  },
3099
- "002005ea05c7d4b854895e759f8926b4c7a4c0fb6f": {
3165
+ "00425186092e8f157f7f69938da2571e7544ffcc9e": {
3166
+ "workers": {
3167
+ "app/plugins/page": {
3168
+ "moduleId": 20289,
3169
+ "async": false,
3170
+ "exportedName": "fetchPluginCatalogAction",
3171
+ "filename": "src/presentation/web/app/actions/fetch-plugin-catalog.ts"
3172
+ }
3173
+ },
3174
+ "filename": "src/presentation/web/app/actions/fetch-plugin-catalog.ts",
3175
+ "exportedName": "fetchPluginCatalogAction"
3176
+ },
3177
+ "70c58f5fb7756301b307fcdc06f9a3299a7ae88ba4": {
3178
+ "workers": {
3179
+ "app/plugins/page": {
3180
+ "moduleId": 20289,
3181
+ "async": false,
3182
+ "exportedName": "installPluginAction",
3183
+ "filename": "src/presentation/web/app/actions/install-plugin.ts"
3184
+ }
3185
+ },
3186
+ "filename": "src/presentation/web/app/actions/install-plugin.ts",
3187
+ "exportedName": "installPluginAction"
3188
+ },
3189
+ "60418c739948e9045a8f01b8a21c0a9b63c91da2e2": {
3190
+ "workers": {
3191
+ "app/plugins/page": {
3192
+ "moduleId": 20289,
3193
+ "async": false,
3194
+ "exportedName": "uninstallPluginAction",
3195
+ "filename": "src/presentation/web/app/actions/uninstall-plugin.ts"
3196
+ }
3197
+ },
3198
+ "filename": "src/presentation/web/app/actions/uninstall-plugin.ts",
3199
+ "exportedName": "uninstallPluginAction"
3200
+ },
3201
+ "70ddfec2653c4477600d5f8c140fa22c2e72ab43bd": {
3202
+ "workers": {
3203
+ "app/plugins/page": {
3204
+ "moduleId": 20289,
3205
+ "async": false,
3206
+ "exportedName": "togglePluginAction",
3207
+ "filename": "src/presentation/web/app/actions/toggle-plugin.ts"
3208
+ }
3209
+ },
3210
+ "filename": "src/presentation/web/app/actions/toggle-plugin.ts",
3211
+ "exportedName": "togglePluginAction"
3212
+ },
3213
+ "00ea8fc619298418257bcdbb120da347a795868275": {
3100
3214
  "workers": {
3101
3215
  "app/settings/page": {
3102
- "moduleId": 87459,
3216
+ "moduleId": 90104,
3103
3217
  "async": false,
3104
3218
  "exportedName": "loadSettings",
3105
3219
  "filename": "src/presentation/web/app/actions/load-settings.ts"
@@ -3108,10 +3222,10 @@
3108
3222
  "filename": "src/presentation/web/app/actions/load-settings.ts",
3109
3223
  "exportedName": "loadSettings"
3110
3224
  },
3111
- "0053de3fe7b56a085dec311599e25ddda1ea222ded": {
3225
+ "00ae4eac2b47192409a98c0ee39aa069ff829e8135": {
3112
3226
  "workers": {
3113
3227
  "app/settings/page": {
3114
- "moduleId": 87459,
3228
+ "moduleId": 90104,
3115
3229
  "async": false,
3116
3230
  "exportedName": "getAvailableTerminals",
3117
3231
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts"
@@ -3120,10 +3234,10 @@
3120
3234
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts",
3121
3235
  "exportedName": "getAvailableTerminals"
3122
3236
  },
3123
- "00766d0daa14410aa8846552d9a6362de45ee3c2c1": {
3237
+ "00e94c94a5686b43f9e5cf03edc3b8cedac49e2948": {
3124
3238
  "workers": {
3125
3239
  "app/settings/page": {
3126
- "moduleId": 87459,
3240
+ "moduleId": 90104,
3127
3241
  "async": false,
3128
3242
  "exportedName": "getAvailableEditors",
3129
3243
  "filename": "src/presentation/web/app/actions/get-available-editors.ts"
@@ -3132,10 +3246,10 @@
3132
3246
  "filename": "src/presentation/web/app/actions/get-available-editors.ts",
3133
3247
  "exportedName": "getAvailableEditors"
3134
3248
  },
3135
- "00c798aba72f73830d0c8631d4e6f16251630751af": {
3249
+ "0034cc12bc5f381ddd526ced7b8f32a9609ccfd2ef": {
3136
3250
  "workers": {
3137
3251
  "app/settings/page": {
3138
- "moduleId": 87459,
3252
+ "moduleId": 90104,
3139
3253
  "async": false,
3140
3254
  "exportedName": "getAvailableShells",
3141
3255
  "filename": "src/presentation/web/app/actions/get-available-shells.ts"
@@ -3144,10 +3258,10 @@
3144
3258
  "filename": "src/presentation/web/app/actions/get-available-shells.ts",
3145
3259
  "exportedName": "getAvailableShells"
3146
3260
  },
3147
- "40626395fdbd03cc2884689ad7981dc6afc4df989e": {
3261
+ "40a9cd2612e183f11e42929530b656a4d312e98c31": {
3148
3262
  "workers": {
3149
3263
  "app/settings/page": {
3150
- "moduleId": 87459,
3264
+ "moduleId": 90104,
3151
3265
  "async": false,
3152
3266
  "exportedName": "updateSettingsAction",
3153
3267
  "filename": "src/presentation/web/app/actions/update-settings.ts"
@@ -3155,8 +3269,20 @@
3155
3269
  },
3156
3270
  "filename": "src/presentation/web/app/actions/update-settings.ts",
3157
3271
  "exportedName": "updateSettingsAction"
3272
+ },
3273
+ "40442ea22e83369cd51d1b1fcc2211a755b51f5967": {
3274
+ "workers": {
3275
+ "app/settings/page": {
3276
+ "moduleId": 90104,
3277
+ "async": false,
3278
+ "exportedName": "addMarketplaceAction",
3279
+ "filename": "src/presentation/web/app/actions/add-marketplace.ts"
3280
+ }
3281
+ },
3282
+ "filename": "src/presentation/web/app/actions/add-marketplace.ts",
3283
+ "exportedName": "addMarketplaceAction"
3158
3284
  }
3159
3285
  },
3160
3286
  "edge": {},
3161
- "encryptionKey": "/XryY3iqLyfHR0/Elwdmog+KUTA1m4kaFw+iRk6m0L8="
3287
+ "encryptionKey": "HQUbXD0w6vCCKbj+y2Z2IqCNWvKCF/TQhNzKQfJyKus="
3162
3288
  }