@shipit-ai/cli 1.168.0 → 1.169.0-pr12.6d78faf

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 (428) 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/agent-settings-section.d.ts +3 -3
  91. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
  92. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +23 -102
  93. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +2 -3
  94. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -1
  95. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +18 -22
  96. package/dist/src/presentation/web/components/features/settings/ci-settings-section.d.ts.map +1 -1
  97. package/dist/src/presentation/web/components/features/settings/ci-settings-section.js +14 -5
  98. package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts.map +1 -1
  99. package/dist/src/presentation/web/components/features/settings/database-settings-section.js +14 -4
  100. package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts +9 -3
  101. package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts.map +1 -1
  102. package/dist/src/presentation/web/components/features/settings/environment-settings-section.js +75 -65
  103. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts.map +1 -1
  104. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.js +20 -18
  105. package/dist/src/presentation/web/components/features/settings/fab-layout-settings-section.d.ts.map +1 -1
  106. package/dist/src/presentation/web/components/features/settings/fab-layout-settings-section.js +1 -1
  107. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts +3 -3
  108. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  109. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +53 -50
  110. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  111. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +27 -25
  112. package/dist/src/presentation/web/components/features/settings/interactive-agent-settings-section.d.ts.map +1 -1
  113. package/dist/src/presentation/web/components/features/settings/interactive-agent-settings-section.js +3 -3
  114. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts +6 -0
  115. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts.map +1 -0
  116. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.js +76 -0
  117. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts +15 -0
  118. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts.map +1 -0
  119. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.js +29 -0
  120. package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts +3 -3
  121. package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts.map +1 -1
  122. package/dist/src/presentation/web/components/features/settings/notification-settings-section.js +64 -47
  123. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts.map +1 -1
  124. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.js +32 -24
  125. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  126. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +29 -378
  127. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts +2 -0
  128. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  129. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +14 -0
  130. package/dist/src/presentation/web/components/features/settings/settings-section-utils.d.ts +8 -8
  131. package/dist/src/presentation/web/components/features/settings/settings-section-utils.d.ts.map +1 -1
  132. package/dist/src/presentation/web/components/features/settings/settings-section-utils.js +3 -6
  133. package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.d.ts +1 -1
  134. package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.d.ts.map +1 -1
  135. package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.js +7 -7
  136. package/dist/src/presentation/web/components/features/settings/stage-timeouts-settings-section.d.ts.map +1 -1
  137. package/dist/src/presentation/web/components/features/settings/stage-timeouts-settings-section.js +1 -1
  138. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts +3 -3
  139. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -1
  140. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +118 -165
  141. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts +1 -1
  142. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -1
  143. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +26 -64
  144. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  145. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
  146. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
  147. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -0
  148. package/dist/src/presentation/web/components/ui/tooltip.d.ts.map +1 -1
  149. package/dist/src/presentation/web/components/ui/tooltip.js +3 -3
  150. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
  151. package/dist/src/presentation/web/hooks/feature-flags-context.js +1 -0
  152. package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
  153. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  154. package/dist/src/presentation/web/lib/feature-flags.js +6 -0
  155. package/dist/translations/ar/web.json +40 -2
  156. package/dist/translations/de/web.json +40 -2
  157. package/dist/translations/en/web.json +40 -2
  158. package/dist/translations/es/web.json +40 -2
  159. package/dist/translations/fr/web.json +40 -2
  160. package/dist/translations/he/web.json +40 -2
  161. package/dist/translations/pt/web.json +40 -2
  162. package/dist/translations/ru/web.json +40 -2
  163. package/dist/tsconfig.build.tsbuildinfo +1 -1
  164. package/package.json +1 -1
  165. package/web/.next/BUILD_ID +1 -1
  166. package/web/.next/app-path-routes-manifest.json +1 -0
  167. package/web/.next/build-manifest.json +3 -3
  168. package/web/.next/fallback-build-manifest.json +3 -3
  169. package/web/.next/prerender-manifest.json +3 -3
  170. package/web/.next/required-server-files.js +3 -3
  171. package/web/.next/required-server-files.json +3 -3
  172. package/web/.next/routes-manifest.json +6 -0
  173. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  174. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  175. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  176. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  177. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  178. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  179. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +31 -31
  180. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  181. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  182. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
  183. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  184. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  185. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +37 -37
  186. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  187. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  188. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  189. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  190. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  191. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  192. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  193. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  194. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  195. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  196. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  197. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +31 -31
  198. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  199. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  200. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
  201. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  202. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  203. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +37 -37
  204. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  205. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  206. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  207. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  208. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  209. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  210. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  211. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  212. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  213. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  214. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  215. package/web/.next/server/app/_global-error.html +1 -1
  216. package/web/.next/server/app/_global-error.rsc +1 -1
  217. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  218. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  219. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  220. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  221. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  222. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  223. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  224. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  225. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  226. package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
  227. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  228. package/web/.next/server/app/api/graph-data/route.js +1 -1
  229. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  230. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js +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/api/sessions-batch/route.js +1 -1
  233. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
  234. package/web/.next/server/app/plugins/page/app-paths-manifest.json +3 -0
  235. package/web/.next/server/app/plugins/page/build-manifest.json +18 -0
  236. package/web/.next/server/app/plugins/page/next-font-manifest.json +10 -0
  237. package/web/.next/server/app/plugins/page/react-loadable-manifest.json +8 -0
  238. package/web/.next/server/app/plugins/page/server-reference-manifest.json +185 -0
  239. package/web/.next/server/app/plugins/page.js +17 -0
  240. package/web/.next/server/app/plugins/page.js.map +5 -0
  241. package/web/.next/server/app/plugins/page.js.nft.json +1 -0
  242. package/web/.next/server/app/plugins/page_client-reference-manifest.js +3 -0
  243. package/web/.next/server/app/settings/page/server-reference-manifest.json +34 -22
  244. package/web/.next/server/app/settings/page.js +1 -1
  245. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  246. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  247. package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
  248. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  249. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  250. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  251. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  252. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  253. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  254. package/web/.next/server/app/version/page.js.nft.json +1 -1
  255. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  256. package/web/.next/server/app-paths-manifest.json +1 -0
  257. package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js.map +1 -1
  258. package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js → [root-of-the-server]__07suer1._.js} +2 -2
  259. package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js → [root-of-the-server]__0sgzo7y._.js} +2 -2
  260. package/web/.next/server/chunks/[root-of-the-server]__0tb~wwk._.js +1 -1
  261. package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js → [root-of-the-server]__0uxlr84._.js} +2 -2
  262. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js +1 -1
  263. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js.map +1 -1
  264. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js +2 -2
  265. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js.map +1 -1
  266. package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js +1 -1
  267. package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js.map +1 -1
  268. package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js +4 -0
  269. package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js.map +1 -0
  270. package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js +1 -1
  271. package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js.map +1 -1
  272. package/web/.next/server/chunks/ssr/{_04s_q5r._.js → 12k._sonner_dist_index_mjs_0-vmpk5._.js} +2 -2
  273. package/web/.next/server/chunks/ssr/12k._sonner_dist_index_mjs_0-vmpk5._.js.map +1 -0
  274. package/web/.next/server/chunks/ssr/{[root-of-the-server]__0rvrr1j._.js → [root-of-the-server]__0.5ojmt._.js} +2 -2
  275. package/web/.next/server/chunks/ssr/[root-of-the-server]__0.5ojmt._.js.map +1 -0
  276. package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js +3 -0
  277. package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js.map +1 -0
  278. package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js +1 -1
  279. package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js.map +1 -1
  280. package/web/.next/server/chunks/ssr/[root-of-the-server]__0ge~xny._.js +1 -1
  281. package/web/.next/server/chunks/ssr/[root-of-the-server]__0ge~xny._.js.map +1 -1
  282. package/web/.next/server/chunks/ssr/[root-of-the-server]__0qda~yi._.js +1 -1
  283. package/web/.next/server/chunks/ssr/[root-of-the-server]__0qda~yi._.js.map +1 -1
  284. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js +1 -1
  285. package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js +1 -1
  286. package/web/.next/server/chunks/ssr/[root-of-the-server]__0t~u8sd._.js +1 -1
  287. package/web/.next/server/chunks/ssr/[root-of-the-server]__0t~u8sd._.js.map +1 -1
  288. package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js +3 -0
  289. package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js.map +1 -0
  290. package/web/.next/server/chunks/ssr/[root-of-the-server]__10tll_l._.js +1 -1
  291. package/web/.next/server/chunks/ssr/[root-of-the-server]__10tll_l._.js.map +1 -1
  292. package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js +1 -1
  293. package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js.map +1 -1
  294. package/web/.next/server/chunks/ssr/_01sesw0._.js +1 -1
  295. package/web/.next/server/chunks/ssr/_01sesw0._.js.map +1 -1
  296. package/web/.next/server/chunks/ssr/{_00u~.41._.js → _03x4h9e._.js} +2 -2
  297. package/web/.next/server/chunks/ssr/_03x4h9e._.js.map +1 -0
  298. package/web/.next/server/chunks/ssr/{_0~0jkp_._.js → _05fk0a4._.js} +2 -2
  299. package/web/.next/server/chunks/ssr/_05fk0a4._.js.map +1 -0
  300. package/web/.next/server/chunks/ssr/_069y.js._.js +2 -2
  301. package/web/.next/server/chunks/ssr/_069y.js._.js.map +1 -1
  302. package/web/.next/server/chunks/ssr/{_0r04xhw._.js → _07u.4jr._.js} +2 -2
  303. package/web/.next/server/chunks/ssr/{_0r04xhw._.js.map → _07u.4jr._.js.map} +1 -1
  304. package/web/.next/server/chunks/ssr/_083k45~._.js +3 -0
  305. package/web/.next/server/chunks/ssr/_083k45~._.js.map +1 -0
  306. package/web/.next/server/chunks/ssr/_0__4si~._.js +1 -1
  307. package/web/.next/server/chunks/ssr/_0__4si~._.js.map +1 -1
  308. package/web/.next/server/chunks/ssr/_0_m17kl._.js +1 -1
  309. package/web/.next/server/chunks/ssr/_0_m17kl._.js.map +1 -1
  310. package/web/.next/server/chunks/ssr/_0d4miu.._.js +1 -1
  311. package/web/.next/server/chunks/ssr/_0d4miu.._.js.map +1 -1
  312. package/web/.next/server/chunks/ssr/_0e8ern9._.js +1 -1
  313. package/web/.next/server/chunks/ssr/_0e8ern9._.js.map +1 -1
  314. package/web/.next/server/chunks/ssr/_0i~-084._.js +3 -0
  315. package/web/.next/server/chunks/ssr/_0i~-084._.js.map +1 -0
  316. package/web/.next/server/chunks/ssr/_0kt18~b._.js +3 -0
  317. package/web/.next/server/chunks/ssr/_0kt18~b._.js.map +1 -0
  318. package/web/.next/server/chunks/ssr/{_08_079y._.js → _0mj-tmi._.js} +2 -2
  319. package/web/.next/server/chunks/ssr/{_08_079y._.js.map → _0mj-tmi._.js.map} +1 -1
  320. package/web/.next/server/chunks/ssr/{_0hw~zvl._.js → _0o_oaao._.js} +2 -2
  321. package/web/.next/server/chunks/ssr/_0o_oaao._.js.map +1 -0
  322. package/web/.next/server/chunks/ssr/_0p3~u8u._.js +2 -2
  323. package/web/.next/server/chunks/ssr/_0p3~u8u._.js.map +1 -1
  324. package/web/.next/server/chunks/ssr/_0r.3n~3._.js +1 -1
  325. package/web/.next/server/chunks/ssr/_0r.3n~3._.js.map +1 -1
  326. package/web/.next/server/chunks/ssr/_0rcx2-c._.js +9 -0
  327. package/web/.next/server/chunks/ssr/_0rcx2-c._.js.map +1 -0
  328. package/web/.next/server/chunks/ssr/_0t59q8r._.js +1 -1
  329. package/web/.next/server/chunks/ssr/_0t59q8r._.js.map +1 -1
  330. package/web/.next/server/chunks/ssr/_0tcccbb._.js +1 -1
  331. package/web/.next/server/chunks/ssr/_0tcccbb._.js.map +1 -1
  332. package/web/.next/server/chunks/ssr/_0tfz1v_._.js +3 -0
  333. package/web/.next/server/chunks/ssr/_0tfz1v_._.js.map +1 -0
  334. package/web/.next/server/chunks/ssr/{_0txr945._.js → _0u3d8.n._.js} +2 -2
  335. package/web/.next/server/chunks/ssr/_0u3d8.n._.js.map +1 -0
  336. package/web/.next/server/chunks/ssr/_0vyfc4b._.js +1 -1
  337. package/web/.next/server/chunks/ssr/_0vyfc4b._.js.map +1 -1
  338. package/web/.next/server/chunks/ssr/_0w-_hww._.js +1 -1
  339. package/web/.next/server/chunks/ssr/_0w-_hww._.js.map +1 -1
  340. package/web/.next/server/chunks/ssr/{_09r54oy._.js → _0ygafoy._.js} +2 -2
  341. package/web/.next/server/chunks/ssr/{_09r54oy._.js.map → _0ygafoy._.js.map} +1 -1
  342. package/web/.next/server/chunks/ssr/_0zk-h5w._.js +1 -1
  343. package/web/.next/server/chunks/ssr/_0zk-h5w._.js.map +1 -1
  344. package/web/.next/server/chunks/ssr/_0~7lwu_._.js +1 -1
  345. package/web/.next/server/chunks/ssr/_0~7lwu_._.js.map +1 -1
  346. package/web/.next/server/chunks/ssr/_10joy2y._.js +3 -0
  347. package/web/.next/server/chunks/ssr/_10joy2y._.js.map +1 -0
  348. package/web/.next/server/chunks/ssr/_1161g9x._.js +1 -1
  349. package/web/.next/server/chunks/ssr/_1161g9x._.js.map +1 -1
  350. package/web/.next/server/chunks/ssr/_12uy.45._.js +3 -0
  351. package/web/.next/server/chunks/ssr/_12uy.45._.js.map +1 -0
  352. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js +3 -0
  353. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js.map +1 -0
  354. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js +1 -1
  355. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js.map +1 -1
  356. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js +1 -1
  357. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js.map +1 -1
  358. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js +1 -1
  359. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js +1 -1
  360. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js +1 -1
  361. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js.map +1 -1
  362. package/web/.next/server/middleware-build-manifest.js +3 -3
  363. package/web/.next/server/next-font-manifest.js +1 -1
  364. package/web/.next/server/next-font-manifest.json +3 -0
  365. package/web/.next/server/pages/500.html +1 -1
  366. package/web/.next/server/server-reference-manifest.js +1 -1
  367. package/web/.next/server/server-reference-manifest.json +187 -61
  368. package/web/.next/static/chunks/{0_xww9bsde~1x.js → 01~u_q8i2zgcl.js} +2 -2
  369. package/web/.next/static/chunks/{06nsv-_ec9ehn.js → 025ml1.quzhqf.js} +1 -1
  370. package/web/.next/static/chunks/{0fg~vc93spa9c.js → 07gal-~-zwagj.js} +1 -1
  371. package/web/.next/static/chunks/07le1mov593z9.js +1 -0
  372. package/web/.next/static/chunks/09ungqk9~va40.js +1 -0
  373. package/web/.next/static/chunks/0ab36sfvo.9ai.js +1 -0
  374. package/web/.next/static/chunks/0aq9-lg.5r.nk.js +5 -0
  375. package/web/.next/static/chunks/{0in4l8mne5y~_.js → 0b2pi58fg3lt3.js} +1 -1
  376. package/web/.next/static/chunks/{0cv09-g0prv4o.js → 0cvyulutrctst.js} +1 -1
  377. package/web/.next/static/chunks/0eqi_uuiepxhf.js +1 -0
  378. package/web/.next/static/chunks/{0v~n9z6b639zm.js → 0jwq.mr-.ltps.js} +1 -1
  379. package/web/.next/static/chunks/0k8m.qcahm63g.js +1 -0
  380. package/web/.next/static/chunks/0lc0x8kcu46ae.js +1 -0
  381. package/web/.next/static/chunks/0lz-oq74e_ciu.js +1 -0
  382. package/web/.next/static/chunks/0nkujbu62z1jl.js +7 -0
  383. package/web/.next/static/chunks/0oadtfnesfdqc.js +1 -0
  384. package/web/.next/static/chunks/{0ygtupas8pxdi.js → 0uryz2ek77e2a.js} +1 -1
  385. package/web/.next/static/chunks/0v7r7y~3e~oo6.css +1 -0
  386. package/web/.next/static/chunks/{0hg8qgtv~kuys.js → 0xo.hi4px83w2.js} +1 -1
  387. package/web/.next/static/chunks/{0_v4t6gzx.332.js → 0xr0p_ynap2~d.js} +1 -1
  388. package/web/.next/static/chunks/0xtzpbc5mm5z7.js +5 -0
  389. package/web/.next/static/chunks/{133q8d69p6cl0.js → 0~-kk8o121_13.js} +1 -1
  390. package/web/.next/static/chunks/{078lp287u~c~b.js → 16k169s1a_8ru.js} +1 -1
  391. package/web/.next/static/chunks/{17c31c1biwfyi.js → 17dp77weos4ao.js} +1 -1
  392. package/web/.next/server/chunks/ssr/[root-of-the-server]__0qxd563._.js +0 -3
  393. package/web/.next/server/chunks/ssr/[root-of-the-server]__0qxd563._.js.map +0 -1
  394. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js.map +0 -1
  395. package/web/.next/server/chunks/ssr/_00u~.41._.js.map +0 -1
  396. package/web/.next/server/chunks/ssr/_04s_q5r._.js.map +0 -1
  397. package/web/.next/server/chunks/ssr/_0dy8.0k._.js +0 -3
  398. package/web/.next/server/chunks/ssr/_0dy8.0k._.js.map +0 -1
  399. package/web/.next/server/chunks/ssr/_0gdghcr._.js +0 -3
  400. package/web/.next/server/chunks/ssr/_0gdghcr._.js.map +0 -1
  401. package/web/.next/server/chunks/ssr/_0hw~zvl._.js.map +0 -1
  402. package/web/.next/server/chunks/ssr/_0l2~~pi._.js +0 -3
  403. package/web/.next/server/chunks/ssr/_0l2~~pi._.js.map +0 -1
  404. package/web/.next/server/chunks/ssr/_0mi5qj~._.js +0 -3
  405. package/web/.next/server/chunks/ssr/_0mi5qj~._.js.map +0 -1
  406. package/web/.next/server/chunks/ssr/_0n.magx._.js +0 -3
  407. package/web/.next/server/chunks/ssr/_0n.magx._.js.map +0 -1
  408. package/web/.next/server/chunks/ssr/_0txr945._.js.map +0 -1
  409. package/web/.next/server/chunks/ssr/_0y8u4.e._.js +0 -9
  410. package/web/.next/server/chunks/ssr/_0y8u4.e._.js.map +0 -1
  411. package/web/.next/server/chunks/ssr/_0~0jkp_._.js.map +0 -1
  412. package/web/.next/static/chunks/0-ud~1jj7chzu.js +0 -7
  413. package/web/.next/static/chunks/01znjuvi5t9~q.js +0 -5
  414. package/web/.next/static/chunks/033sl_l5o3uo8.css +0 -1
  415. package/web/.next/static/chunks/04r9m_5p953mf.js +0 -1
  416. package/web/.next/static/chunks/07i3-aamszsoh.js +0 -1
  417. package/web/.next/static/chunks/0ee1d3_y40g9f.js +0 -1
  418. package/web/.next/static/chunks/0n3kuj7t_-jzp.js +0 -1
  419. package/web/.next/static/chunks/0pt-d18f7zxvv.js +0 -1
  420. package/web/.next/static/chunks/12pd180jp8zu..js +0 -5
  421. package/web/.next/static/chunks/13fcwhkw7dle2.js +0 -1
  422. package/web/.next/static/chunks/15mks7_3venc1.js +0 -1
  423. /package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js.map → [root-of-the-server]__07suer1._.js.map} +0 -0
  424. /package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js.map → [root-of-the-server]__0sgzo7y._.js.map} +0 -0
  425. /package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js.map → [root-of-the-server]__0uxlr84._.js.map} +0 -0
  426. /package/web/.next/static/{LQMB6QAutWzPQnLUZG96y → vD7xT4_iwKDhgj4-rr637}/_buildManifest.js +0 -0
  427. /package/web/.next/static/{LQMB6QAutWzPQnLUZG96y → vD7xT4_iwKDhgj4-rr637}/_clientMiddlewareManifest.js +0 -0
  428. /package/web/.next/static/{LQMB6QAutWzPQnLUZG96y → vD7xT4_iwKDhgj4-rr637}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "006dd94c120d44a477bf313c8c0ae9236e237ff7cc": {
3
+ "0000580db77af91e7fff00b0b4403fa4feb2a2d993": {
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
- "60caab46c0c16a1d86c039028f40b005df28cc94f9": {
129
+ "609fb82c7c6c89ca50673823098e498a09a9fec629": {
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
- "00531e7c44d61735c837fc77253d091ec7f7d92aca": {
255
+ "0090338ccf5fa07afdb8e7be418d00bc55439e87cb": {
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
- "40734389e9214e5321b0c8e734a6d4ffe4c3d760be": {
381
+ "408634cd96c67a639ac703b296c3737d0bd811beb4": {
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
- "00119cdcc13ee8fb1ca1450881a722c635cf8ecee8": {
507
+ "00943ac6a9bbebcc818933091a5b18b1078e166fba": {
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
- "40c34c284f6000278ca622fb9bae3a1670a3ca9340": {
633
+ "408739906befd13eb590447705120aa8421c1352f2": {
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
- "40578764a5fa268b37e4087744e7e6ad656080ed30": {
759
+ "4003593de16b2e247ab1eb1181c364062f68e7d307": {
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
- "409fb840fd8cb8191a370796b485fe01e88cab3222": {
867
+ "40f783df18e347ff4383dad5da16846a131bec83cd": {
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
- "40249ea399b10101b933e1ff244aa5ff2944adc20f": {
975
+ "40b67327258d66cc740b47723a9276348e1a748e30": {
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
- "401f6ee24060db3e558912f63d162b6382a3d5b906": {
1083
+ "4058eda81dd47fff6d7ff1fce41ebebe1295013330": {
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
- "408a351ec69b118abebca4cad790563da8357d4b69": {
1191
+ "40f3d51b9274fcab47195c76d09141c17508842170": {
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
- "4079ac96e8bb675614469b1bb362d15d0d3555e5c7": {
1281
+ "4000905392bc403639c2275018d0e77a4caaef76df": {
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
- "409f6c15225b50f5618557c80211ff43127dc13c96": {
1371
+ "4071fe82b6e1a66c52b851807ccb61247524482573": {
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
- "40f508274fb6b282963b98c93a4501f4bbf547019c": {
1461
+ "40454d1aa8b3a4642e6211000ea814a233e91f33fa": {
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
- "404e12ca19585a0e561bbbcf1dec1bc8c7056972c9": {
1551
+ "40bd3bb683e8d887532e0550b87c3a7348c011aff2": {
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
- "0095c0f3504806564d850201c18f107de970eb219f": {
1659
+ "004f0662883886d46f8f0aa0e3237f30af277b100f": {
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
- "0077ee1faaa5cc3c7d8a4ff366ef5da3126d4dda30": {
1749
+ "002ceffb20ae1d3ac63fd53234e0c6d44252281987": {
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
- "0032fc51829142f8677a1255284c86aadb6ae39dcb": {
1839
+ "001ddaafa354b0082d657d33e7b50c9078e0f07089": {
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
- "40f06672e32e2701a60e1c2976c2404166c9675192": {
1929
+ "404c0c951e2ed0084c1b630626b6565caa37516576": {
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
- "4011206410dc046eea21633dd17fd60736abc119eb": {
2019
+ "402c1830f68e5cf809663267102f6f918e87ae16fd": {
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
- "787ac45c9eb859e154692b2cc19df6cccb3c687ad7": {
2109
+ "787e4b48cfb35d4de5dc6a79998ad4587ed8a92f09": {
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
- "404dc4fa24207f80f455a7a3798e29f83ad30bb5e7": {
2199
+ "40baf0ac219033d57f793da8fe74eb8435030d7435": {
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
- "40f3963b037fcdb4c0a848fd0ee18ea74746a955da": {
2289
+ "40b742fb0713b7ef0465b8050431742035410e7c64": {
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
- "403a3fffef64c3470cad4b8890da4b2b9dd5102f45": {
2379
+ "40b7762dfbe789b59cb72ba6715e5ec9a56e8c5dc5": {
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
- "406aee7333d67ea23c94e8b51f7059ad576b8a692c": {
2469
+ "40d986834a58b0b6eba9c95b1b00072bdbef700171": {
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
- "4004d32919c34ccd2753a4d1fdbd3c48f0650d0421": {
2559
+ "40f5697183d73677b2420b6cd9074a858af1a35468": {
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
- "40c73f84944f0fb50c9214460a63c840f28049d611": {
2649
+ "404b5e4e49a2b2b4d030994d00736966ba609002df": {
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
- "40334e18c9f05291f50719cdd990ae800deb768dbf": {
2739
+ "40621a6e6056fe6955be7aec5f3b5d703021d84e52": {
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
- "400013f05b5ef00bc5cdb04812bdf8061c7df3b1fa": {
2751
+ "40d3d349d4794902125d2f8f57bdc6e0e17628fae2": {
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
- "00a61300bdaeab7a38fa8a87e280bdca6d73761a06": {
2763
+ "00860d13d1892bcdfff33ba024e6117dc312232772": {
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
- "40664ee8d0564e2872cbc7b00c1d112090b778657d": {
2781
+ "40b045d24f72856e1241d2b375027f5604fb4d987b": {
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
- "40337a6abc80e9f1c44a1d83c69acaa9146f1e8db2": {
2799
+ "40d52ef8963e73f4c49c578511b667815e9c094aad": {
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
- "400debcf9bdb4331241c06c5c4e2ef7b1b323ecaa7": {
2817
+ "4054c0f16e73d7d7962ab8ab99395a1d269c3a2233": {
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
- "60b33ca57ed57495cd027b985f914f496780939ba6": {
2835
+ "60755eca880710d7d978f6ad7afb78d179fb952241": {
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
- "709e82694e2ccf681029850620222f53af99eeab25": {
2865
+ "70c6158c60105cee47efe428412f0de6ebb2679632": {
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
- "405ffd00e2c5291f1aa528878c26c4f85e09400cca": {
2895
+ "40ca00868cbab68044d8e9add4f5ec7be4eb5b49c3": {
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
- "40e40d4bef267e9ea2b29d3cc8f310a9621ca3b834": {
2925
+ "401c96f1aca3ed9e9af362eb9a61e156a8d17cb138": {
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
- "40dbd9c9bdca4572910fd6291637cdd55b2bb483f3": {
2955
+ "40aefd6db34ef9f33d85cd2f2a56a60edf7f120612": {
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
- "400a7095bce3e26b0bec4033483c012e3d89a4cc55": {
2985
+ "40ee6a5a062f38264a7448ad567f062f73a7233388": {
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
- "4076c8c4167585e24abc268905f905fb64cfbe49ee": {
3015
+ "4044f86e4455ce9c124ecb5e992271ad95733f9085": {
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
- "4041f46526d0b0da4ceae2ad41f5db83e65befd104": {
3045
+ "40bcf813fba0f13b2f10f2010bc466c6c1c3f0636d": {
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
- "407046ab123008697ea6fe8b330c08779daa403a1e": {
3075
+ "40420b6cdddf339640da9ad1fdd720ecb549d5f1dc": {
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
- "40a7b44fa82001748a142d0dcb62e48dcd565c5631": {
3105
+ "40800e63fa88206e5dc18cbe91427fd16ed46648dc": {
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
- "60d3ed982d6f96da3b927587dbcb1762909b73b25d": {
3135
+ "606bc618168107f547236e456685b2165dc6e30c16": {
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
- "007209edc853906354f7f08f2aecb6ac07bcbfee8e": {
3165
+ "00f370f754383699689def4d7a4898a8ee347acd3a": {
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
+ "70f4c685c6bd13716e115901c7108a2637aaacf6ae": {
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
+ "6046a455d6763fc37adeeffe8e51718a58c5e6cf48": {
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
+ "7093c2e65aae90392f738d1f50f2523f5a5bdd16e8": {
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
+ "007ce129e0d2e12867d06b686ba98ed576c8e406ab": {
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
- "00b5808b43499c6becf1ff5458002bb9b7d2fa9058": {
3225
+ "0034f15573b9271c236044b8519334e3a61d93e23f": {
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
- "001e9d913a03cd696d2cfc7423dd6b5024850665a4": {
3237
+ "0080ee586d0684d9f4b4645f96c989037ecedcf4dc": {
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
- "00b5b5976f585080a7778232de1eec93169660594d": {
3249
+ "00cb8349f95906641986aa079108725f5274d49d28": {
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
- "40c1307357b24ffda8dc75b56558f1a78e79d49cba": {
3261
+ "40f6034f5630f0913a6fc804f42a3f4665d98660f1": {
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
+ "40d1eda7fb23ac126ea9175a6550044417de3bd6d1": {
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": "OppAmVV8btEVKi8bNNXX4ucESK97fmXyKwv/LL0Yuis="
3287
+ "encryptionKey": "bnSHSDBem5YLytQLq0Nb3ONW6kIZb8SJM8HbjgbL3Ro="
3162
3288
  }