@shipit-ai/cli 1.169.0 → 1.170.0-pr13.00cc956
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.
- package/apis/json-schema/ClaudeCodeProxyConfig.yaml +20 -0
- package/apis/json-schema/FeatureFlags.yaml +5 -0
- package/apis/json-schema/LiteLLMProxyConfig.yaml +17 -0
- package/apis/json-schema/LiteLLMProxyRoutingMode.yaml +8 -0
- package/apis/json-schema/Settings.yaml +3 -0
- package/dist/packages/core/src/application/ports/output/services/index.d.ts +1 -0
- package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.d.ts +46 -0
- package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.js +12 -0
- package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.d.ts +16 -0
- package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.js +34 -0
- package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.d.ts +24 -0
- package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.js +52 -0
- package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.d.ts +17 -0
- package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.js +33 -0
- package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.d.ts +17 -0
- package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.js +33 -0
- package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.d.ts +16 -0
- package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.js +33 -0
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +59 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +6 -0
- package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/services.module.js +13 -0
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.js +12 -0
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.js +22 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +9 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +55 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.d.ts +14 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.js +28 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-litellm-proxy-agent-config.d.ts +15 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-litellm-proxy-agent-config.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-litellm-proxy-agent-config.js +32 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +36 -5
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-provider.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-provider.service.js +7 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +4 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +53 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +5 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.d.ts +4 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.js +3 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.d.ts +78 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.js +46 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.d.ts +29 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.js +147 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.d.ts +11 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.js +47 -0
- package/dist/src/presentation/web/app/actions/add-marketplace.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/add-marketplace.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/add-marketplace.js +11 -0
- package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.js +11 -0
- package/dist/src/presentation/web/app/actions/install-plugin.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/install-plugin.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/install-plugin.js +11 -0
- package/dist/src/presentation/web/app/actions/toggle-plugin.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/toggle-plugin.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/toggle-plugin.js +11 -0
- package/dist/src/presentation/web/app/actions/uninstall-plugin.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/uninstall-plugin.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/uninstall-plugin.js +11 -0
- package/dist/src/presentation/web/app/plugins/page.d.ts +2 -0
- package/dist/src/presentation/web/app/plugins/page.d.ts.map +1 -0
- package/dist/src/presentation/web/app/plugins/page.js +23 -0
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.js +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.d.ts +9 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.js +15 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.d.ts +17 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.js +60 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.d.ts +11 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.js +33 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.d.ts +18 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.js +51 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.d.ts +6 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.js +124 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.d.ts +12 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.js +24 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +7 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +2 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.js +69 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.stories.js +64 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.js +73 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.js +29 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +5 -2
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
- package/dist/src/presentation/web/components/features/skills/skills-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/skills/skills-page-client.js +6 -2
- package/dist/src/presentation/web/components/features/tools/tools-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/tools/tools-page-client.js +23 -4
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -0
- package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/feature-flags-context.js +1 -0
- package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
- package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/feature-flags.js +6 -0
- package/dist/translations/ar/web.json +56 -2
- package/dist/translations/de/web.json +56 -2
- package/dist/translations/en/web.json +56 -2
- package/dist/translations/es/web.json +56 -2
- package/dist/translations/fr/web.json +56 -2
- package/dist/translations/he/web.json +56 -2
- package/dist/translations/pt/web.json +56 -2
- package/dist/translations/ru/web.json +56 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/app-path-routes-manifest.json +1 -0
- package/web/.next/build-manifest.json +3 -3
- package/web/.next/fallback-build-manifest.json +3 -3
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +3 -3
- package/web/.next/required-server-files.json +3 -3
- package/web/.next/routes-manifest.json +6 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +31 -31
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +31 -31
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error.html +1 -1
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js +1 -1
- package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
- package/web/.next/server/app/api/sessions-batch/route.js +1 -1
- package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
- package/web/.next/server/app/plugins/page/app-paths-manifest.json +3 -0
- package/web/.next/server/app/plugins/page/build-manifest.json +18 -0
- package/web/.next/server/app/plugins/page/next-font-manifest.json +10 -0
- package/web/.next/server/app/plugins/page/react-loadable-manifest.json +8 -0
- package/web/.next/server/app/plugins/page/server-reference-manifest.json +185 -0
- package/web/.next/server/app/plugins/page.js +17 -0
- package/web/.next/server/app/plugins/page.js.map +5 -0
- package/web/.next/server/app/plugins/page.js.nft.json +1 -0
- package/web/.next/server/app/plugins/page_client-reference-manifest.js +3 -0
- package/web/.next/server/app/settings/page/server-reference-manifest.json +34 -22
- package/web/.next/server/app/settings/page.js +1 -1
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app-paths-manifest.json +1 -0
- package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js +1 -1
- package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js.map +1 -1
- package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js → [root-of-the-server]__07suer1._.js} +2 -2
- package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js → [root-of-the-server]__0sgzo7y._.js} +2 -2
- package/web/.next/server/chunks/[root-of-the-server]__0tb~wwk._.js +1 -1
- package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js → [root-of-the-server]__0uxlr84._.js} +2 -2
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js +1 -1
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js +2 -2
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js.map +1 -1
- package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js +1 -1
- package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js.map +1 -1
- package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js +4 -0
- package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js.map +1 -0
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js +1 -1
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_04s_q5r._.js → 12k._sonner_dist_index_mjs_0-vmpk5._.js} +2 -2
- package/web/.next/server/chunks/ssr/12k._sonner_dist_index_mjs_0-vmpk5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__0rvrr1j._.js → [root-of-the-server]__0.5ojmt._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0.5ojmt._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0dec29w._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0dec29w._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0ge~xny._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0ge~xny._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qda~yi._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qda~yi._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0t~u8sd._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0t~u8sd._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__10tll_l._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__10tll_l._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_01sesw0._.js +1 -1
- package/web/.next/server/chunks/ssr/_01sesw0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_00u~.41._.js → _03x4h9e._.js} +2 -2
- package/web/.next/server/chunks/ssr/_03x4h9e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0~0jkp_._.js → _05fk0a4._.js} +2 -2
- package/web/.next/server/chunks/ssr/_05fk0a4._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_069y.js._.js +2 -2
- package/web/.next/server/chunks/ssr/_069y.js._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_083k45~._.js +3 -0
- package/web/.next/server/chunks/ssr/_083k45~._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0__4si~._.js +1 -1
- package/web/.next/server/chunks/ssr/_0__4si~._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0_m17kl._.js +1 -1
- package/web/.next/server/chunks/ssr/_0_m17kl._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0d4miu.._.js +1 -1
- package/web/.next/server/chunks/ssr/_0d4miu.._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0e8ern9._.js +1 -1
- package/web/.next/server/chunks/ssr/_0e8ern9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0i~-084._.js +3 -0
- package/web/.next/server/chunks/ssr/_0i~-084._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0wor25i._.js → _0job75~._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_0wor25i._.js.map → _0job75~._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0jtr2u0._.js +3 -0
- package/web/.next/server/chunks/ssr/_0jtr2u0._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0kaec~c._.js +3 -0
- package/web/.next/server/chunks/ssr/_0kaec~c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0o.xc6x._.js +3 -0
- package/web/.next/server/chunks/ssr/_0o.xc6x._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0hw~zvl._.js → _0o_oaao._.js} +2 -2
- package/web/.next/server/chunks/ssr/_0o_oaao._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0p3~u8u._.js +2 -2
- package/web/.next/server/chunks/ssr/_0p3~u8u._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0r.3n~3._.js +1 -1
- package/web/.next/server/chunks/ssr/_0r.3n~3._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0rcx2-c._.js +9 -0
- package/web/.next/server/chunks/ssr/_0rcx2-c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0t59q8r._.js +1 -1
- package/web/.next/server/chunks/ssr/_0t59q8r._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0tcccbb._.js +1 -1
- package/web/.next/server/chunks/ssr/_0tcccbb._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_0pa1dkv._.js → _0u3d8.n._.js} +2 -2
- package/web/.next/server/chunks/ssr/_0u3d8.n._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0vyfc4b._.js +1 -1
- package/web/.next/server/chunks/ssr/_0vyfc4b._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0w-_hww._.js +1 -1
- package/web/.next/server/chunks/ssr/_0w-_hww._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_09r54oy._.js → _0ygafoy._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_09r54oy._.js.map → _0ygafoy._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0zk-h5w._.js +1 -1
- package/web/.next/server/chunks/ssr/_0zk-h5w._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0~7lwu_._.js +1 -1
- package/web/.next/server/chunks/ssr/_0~7lwu_._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_01qdxy2._.js → _0~b~4sr._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_01qdxy2._.js.map → _0~b~4sr._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_10joy2y._.js +3 -0
- package/web/.next/server/chunks/ssr/_10joy2y._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_1161g9x._.js +1 -1
- package/web/.next/server/chunks/ssr/_1161g9x._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js.map +1 -1
- package/web/.next/server/middleware-build-manifest.js +3 -3
- package/web/.next/server/next-font-manifest.js +1 -1
- package/web/.next/server/next-font-manifest.json +3 -0
- package/web/.next/server/pages/500.html +1 -1
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +187 -61
- package/web/.next/static/chunks/0.s8cxri-_s9l.js +1 -0
- package/web/.next/static/chunks/012cnd7koqv6d.js +7 -0
- package/web/.next/static/chunks/{0dq50gtgaj63f.js → 029s48ykt7mw9.js} +1 -1
- package/web/.next/static/chunks/{11vbir.u7_zf7.js → 03agfpdm4n_fn.js} +1 -1
- package/web/.next/static/chunks/05qti39qqsvzs.js +1 -0
- package/web/.next/static/chunks/{0fg~vc93spa9c.js → 07gal-~-zwagj.js} +1 -1
- package/web/.next/static/chunks/{0u_27fdqa2jeg.js → 0abfw8oib7e3t.js} +1 -1
- package/web/.next/static/chunks/{0in4l8mne5y~_.js → 0b2pi58fg3lt3.js} +1 -1
- package/web/.next/static/chunks/{121v1_d_dfk2k.js → 0boet02f0igne.js} +1 -1
- package/web/.next/static/chunks/0f80ru2bzs3v5.js +1 -0
- package/web/.next/static/chunks/{12axopx66pocj.js → 0ibyqd4oceukb.js} +2 -2
- package/web/.next/static/chunks/{0v~n9z6b639zm.js → 0jwq.mr-.ltps.js} +1 -1
- package/web/.next/static/chunks/0k8m.qcahm63g.js +1 -0
- package/web/.next/static/chunks/0kqqf5i.f1-nm.js +1 -0
- package/web/.next/static/chunks/0lc0x8kcu46ae.js +1 -0
- package/web/.next/static/chunks/{183ehj-b80a~o.js → 0nfd9bvcnbcgl.js} +1 -1
- package/web/.next/static/chunks/{1874_wt9rit96.js → 0o5siyl.hsy96.js} +1 -1
- package/web/.next/static/chunks/0s0432bko4hq9.js +1 -0
- package/web/.next/static/chunks/{0o33urrd3lk~u.js → 0skduwu0tu8qh.js} +1 -1
- package/web/.next/static/chunks/0ug478hm-8bog.js +5 -0
- package/web/.next/static/chunks/{0yibymrb2j05t.css → 0v7r7y~3e~oo6.css} +1 -1
- package/web/.next/static/chunks/{00m_fbc2z1gyi.js → 0~5~-wr7rq8b6.js} +3 -3
- package/web/.next/static/chunks/{09f2lesd_dd3~.js → 10gfhk-66cbtu.js} +1 -1
- package/web/.next/static/chunks/{0k0j7anrbg-of.js → 10lvozwidvzfo.js} +3 -3
- package/web/.next/static/chunks/10rtagfoabp3b.js +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qxd563._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qxd563._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_00u~.41._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_04s_q5r._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0a_8rlj._.js +0 -3
- package/web/.next/server/chunks/ssr/_0a_8rlj._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0dy8.0k._.js +0 -3
- package/web/.next/server/chunks/ssr/_0dy8.0k._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0gdghcr._.js +0 -3
- package/web/.next/server/chunks/ssr/_0gdghcr._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0hw~zvl._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0l2~~pi._.js +0 -3
- package/web/.next/server/chunks/ssr/_0l2~~pi._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0n.magx._.js +0 -3
- package/web/.next/server/chunks/ssr/_0n.magx._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0pa1dkv._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0y8u4.e._.js +0 -9
- package/web/.next/server/chunks/ssr/_0y8u4.e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0~0jkp_._.js.map +0 -1
- package/web/.next/static/chunks/0-ud~1jj7chzu.js +0 -7
- package/web/.next/static/chunks/0c0dau5pmseko.js +0 -1
- package/web/.next/static/chunks/0n3kuj7t_-jzp.js +0 -1
- package/web/.next/static/chunks/0pt-d18f7zxvv.js +0 -1
- package/web/.next/static/chunks/0xwh.0u-dexsl.js +0 -1
- package/web/.next/static/chunks/103xnw203o9k1.js +0 -1
- package/web/.next/static/chunks/12pd180jp8zu..js +0 -5
- package/web/.next/static/chunks/13fcwhkw7dle2.js +0 -1
- package/web/.next/static/chunks/13q1peb_t9vj8.js +0 -1
- /package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js.map → [root-of-the-server]__07suer1._.js.map} +0 -0
- /package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js.map → [root-of-the-server]__0sgzo7y._.js.map} +0 -0
- /package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js.map → [root-of-the-server]__0uxlr84._.js.map} +0 -0
- /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → GeXKcODhEHBnDRVLMaAnW}/_buildManifest.js +0 -0
- /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → GeXKcODhEHBnDRVLMaAnW}/_clientMiddlewareManifest.js +0 -0
- /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → GeXKcODhEHBnDRVLMaAnW}/_ssgManifest.js +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"00ed3e6ba7d3ca620625e177c0d0191c7430a4f64b": {
|
|
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":
|
|
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
|
-
"
|
|
129
|
+
"60584854aa125468ae8d7939985879fc239779889c": {
|
|
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":
|
|
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
|
-
"
|
|
255
|
+
"00a03098379f3d72768f4737ebbdf0b1eda1259987": {
|
|
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":
|
|
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
|
-
"
|
|
381
|
+
"4006d6503e04ba50002323c205886983b3100ac2c9": {
|
|
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":
|
|
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
|
-
"
|
|
507
|
+
"00c827e8038b27118edfedbf83d2bec76c00bc13ab": {
|
|
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":
|
|
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
|
-
"
|
|
633
|
+
"4068c946f8719f730eccac650067a4ca5378fd9e61": {
|
|
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":
|
|
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
|
-
"
|
|
759
|
+
"40974f57f8ab3bb096d64df45fe462665c6f5bad9c": {
|
|
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
|
-
"
|
|
867
|
+
"40d3c035f728835c13134d3fb29f24379970baca00": {
|
|
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
|
-
"
|
|
975
|
+
"404ff9672167954134f28b1b4f523637006b661760": {
|
|
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
|
-
"
|
|
1083
|
+
"40abee6b67d8a4ce9d9f08c69724cecf7a6df77b98": {
|
|
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
|
-
"
|
|
1191
|
+
"40dc0b03e65f1c3e462c751eb86e3ceef723ebd610": {
|
|
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
|
-
"
|
|
1281
|
+
"409c20c7b0341aaedb2fa633af327752a32c585456": {
|
|
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
|
-
"
|
|
1371
|
+
"40a54cac6c57b7ad0dd43dfcebb74309fa5ec89f7d": {
|
|
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
|
-
"
|
|
1461
|
+
"40ab132d4cd845991f72a42a0467d78a056dc19e87": {
|
|
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
|
-
"
|
|
1551
|
+
"40ebfc774a882463815c7a994809b604c79fb15e3b": {
|
|
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
|
-
"
|
|
1659
|
+
"0048a3b0fe9210ee48e8db1bcbf1bd73a2989916e6": {
|
|
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
|
-
"
|
|
1749
|
+
"00f6f052592171164e060bedbdf804e3aaafed7740": {
|
|
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
|
-
"
|
|
1839
|
+
"00a552eb1ff044ad8dddbdb6007fbfe8ee9a2e3ac3": {
|
|
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
|
-
"
|
|
1929
|
+
"4085ca88a0a2460fe9768074a7fd3e041bf6804c64": {
|
|
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
|
-
"
|
|
2019
|
+
"4069711ee5fc875edeae207b4acc5c39a617bf616c": {
|
|
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
|
-
"
|
|
2109
|
+
"78bfdda0df50527e11b21374349c92ca01ad5045e2": {
|
|
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
|
-
"
|
|
2199
|
+
"40d042a6399cb201a47767ed9d24e3d9bfa09e28aa": {
|
|
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
|
-
"
|
|
2289
|
+
"40c0ddcabd4f47c9f85b7d4970ad28df243c7cf977": {
|
|
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
|
-
"
|
|
2379
|
+
"40987aeb7efb7613048e73d8d7825993149cb271bb": {
|
|
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
|
-
"
|
|
2469
|
+
"40244bb101914f64063ce97333bbb57cf65aca44b9": {
|
|
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
|
-
"
|
|
2559
|
+
"4080a5b401375856923afdf23f7ee9d68e04217301": {
|
|
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
|
-
"
|
|
2649
|
+
"40803568eecb5ddb539c5c3aa453d89b510620d55d": {
|
|
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
|
-
"
|
|
2739
|
+
"404ff9386f6ec8d26ecdb1699ae6265dd5b8379976": {
|
|
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
|
-
"
|
|
2751
|
+
"4096839a01fbc3f5f042d78eed2caceb50598f4400": {
|
|
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
|
-
"
|
|
2763
|
+
"00fbc81fdaeb6c03cbb687d2bda89aad0fa8e462cc": {
|
|
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
|
-
"
|
|
2781
|
+
"4031e48d6082e9c112deb1efd638289d67362dc082": {
|
|
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
|
-
"
|
|
2799
|
+
"40e9bc61cad7433679e3d2bd7ca2dacff27014d812": {
|
|
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
|
-
"
|
|
2817
|
+
"400c610ec3a675d568dc7b9b32818797118ba08d49": {
|
|
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
|
-
"
|
|
2835
|
+
"60c319b0fc6c64466f163bc96e7ceed5e09915b0a1": {
|
|
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
|
-
"
|
|
2865
|
+
"70ede9315978818368fbda15e6b6a60493d93950a4": {
|
|
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
|
-
"
|
|
2895
|
+
"40f1f48832f9fb9e2480d6cfa520b184abc69ffabd": {
|
|
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
|
-
"
|
|
2925
|
+
"409c3e1a0f1ef5d2e3f70e17d433bb88ad8e900fcf": {
|
|
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
|
-
"
|
|
2955
|
+
"40596e409d03b3d75d736e920a432ee6fa4d478cdc": {
|
|
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
|
-
"
|
|
2985
|
+
"40c4bc835221a7c2106ce509a326f576f398e53416": {
|
|
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
|
-
"
|
|
3015
|
+
"40b096597c39e4a9122d8fd71635df328d1ee0dc4d": {
|
|
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
|
-
"
|
|
3045
|
+
"408d42eea11ee55cd0691edbe4bb8ad4483eeabd88": {
|
|
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
|
-
"
|
|
3075
|
+
"40a0945aeb11b8775c7a944d75bb4728f97b10a08d": {
|
|
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
|
-
"
|
|
3105
|
+
"4012261328d002543a140cfaf17ec0b97d5ff8abfe": {
|
|
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
|
-
"
|
|
3135
|
+
"603bce96963cbec2b9b65e4d37cff46e441e133c60": {
|
|
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
|
-
"
|
|
3165
|
+
"00e487360aea46acdebd957997c246442eaf17fa0d": {
|
|
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
|
+
"707aac675916ce91ab9b600203486223a113b3d234": {
|
|
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
|
+
"60b4fd2878bb2f46b43ecd3458c1c83368174367a5": {
|
|
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
|
+
"7098f17b2adead0026db8bbcc7d9c6baf957494125": {
|
|
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
|
+
"009376e544a41ad60a325c459840ffc248192ec889": {
|
|
3100
3214
|
"workers": {
|
|
3101
3215
|
"app/settings/page": {
|
|
3102
|
-
"moduleId":
|
|
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
|
-
"
|
|
3225
|
+
"0042b0eafd12bfabf17a523b4ca200cbb1909462d8": {
|
|
3112
3226
|
"workers": {
|
|
3113
3227
|
"app/settings/page": {
|
|
3114
|
-
"moduleId":
|
|
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
|
-
"
|
|
3237
|
+
"003519e6ecf6e0946abb043786af596acfd5dbb119": {
|
|
3124
3238
|
"workers": {
|
|
3125
3239
|
"app/settings/page": {
|
|
3126
|
-
"moduleId":
|
|
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
|
-
"
|
|
3249
|
+
"00f3fe3185da42e3d002483e50186d9f5d391fc71b": {
|
|
3136
3250
|
"workers": {
|
|
3137
3251
|
"app/settings/page": {
|
|
3138
|
-
"moduleId":
|
|
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
|
-
"
|
|
3261
|
+
"400d061d96961b7643636de42a59ed423422ab44aa": {
|
|
3148
3262
|
"workers": {
|
|
3149
3263
|
"app/settings/page": {
|
|
3150
|
-
"moduleId":
|
|
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
|
+
"4062847edea511a142509f3f602f5ed09f6fc170a1": {
|
|
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": "/
|
|
3287
|
+
"encryptionKey": "mI+qxeX2hg6KoixXD6czGY3Ff/cdEMGcska3K5BC7jQ="
|
|
3162
3288
|
}
|