@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.
- package/apis/json-schema/FeatureFlags.yaml +5 -0
- package/apis/json-schema/LiteLLMProxyConfig.yaml +14 -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 +25 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- 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 +4 -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 +18 -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/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 +115 -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/agent-settings-section.d.ts +3 -3
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +23 -102
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +2 -3
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +18 -22
- package/dist/src/presentation/web/components/features/settings/ci-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/ci-settings-section.js +14 -5
- package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/database-settings-section.js +14 -4
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts +9 -3
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.js +75 -65
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.js +20 -18
- package/dist/src/presentation/web/components/features/settings/fab-layout-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/fab-layout-settings-section.js +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts +3 -3
- 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 +53 -50
- 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 +27 -25
- package/dist/src/presentation/web/components/features/settings/interactive-agent-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/interactive-agent-settings-section.js +3 -3
- 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 +76 -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/notification-settings-section.d.ts +3 -3
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.js +64 -47
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.js +32 -24
- 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 +29 -378
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts +2 -0
- 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 +14 -0
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.d.ts +8 -8
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.js +3 -6
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.js +7 -7
- package/dist/src/presentation/web/components/features/settings/stage-timeouts-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/stage-timeouts-settings-section.js +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts +3 -3
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +118 -165
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +26 -64
- 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/components/ui/tooltip.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/tooltip.js +3 -3
- 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 +40 -2
- package/dist/translations/de/web.json +40 -2
- package/dist/translations/en/web.json +40 -2
- package/dist/translations/es/web.json +40 -2
- package/dist/translations/fr/web.json +40 -2
- package/dist/translations/he/web.json +40 -2
- package/dist/translations/pt/web.json +40 -2
- package/dist/translations/ru/web.json +40 -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.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]__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]__0~v1~b9._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js.map +1 -0
- 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/{_0r04xhw._.js → _07u.4jr._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_0r04xhw._.js.map → _07u.4jr._.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/_0kt18~b._.js +3 -0
- package/web/.next/server/chunks/ssr/_0kt18~b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_08_079y._.js → _0mj-tmi._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_08_079y._.js.map → _0mj-tmi._.js.map} +1 -1
- 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/_0tfz1v_._.js +3 -0
- package/web/.next/server/chunks/ssr/_0tfz1v_._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0txr945._.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/_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/_12uy.45._.js +3 -0
- package/web/.next/server/chunks/ssr/_12uy.45._.js.map +1 -0
- 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/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_xww9bsde~1x.js → 01~u_q8i2zgcl.js} +2 -2
- package/web/.next/static/chunks/{06nsv-_ec9ehn.js → 025ml1.quzhqf.js} +1 -1
- package/web/.next/static/chunks/{0fg~vc93spa9c.js → 07gal-~-zwagj.js} +1 -1
- package/web/.next/static/chunks/07le1mov593z9.js +1 -0
- package/web/.next/static/chunks/09ungqk9~va40.js +1 -0
- package/web/.next/static/chunks/0ab36sfvo.9ai.js +1 -0
- package/web/.next/static/chunks/0aq9-lg.5r.nk.js +5 -0
- package/web/.next/static/chunks/{0in4l8mne5y~_.js → 0b2pi58fg3lt3.js} +1 -1
- package/web/.next/static/chunks/{0cv09-g0prv4o.js → 0cvyulutrctst.js} +1 -1
- package/web/.next/static/chunks/0eqi_uuiepxhf.js +1 -0
- 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/0lc0x8kcu46ae.js +1 -0
- package/web/.next/static/chunks/0lz-oq74e_ciu.js +1 -0
- package/web/.next/static/chunks/0nkujbu62z1jl.js +7 -0
- package/web/.next/static/chunks/0oadtfnesfdqc.js +1 -0
- package/web/.next/static/chunks/{0ygtupas8pxdi.js → 0uryz2ek77e2a.js} +1 -1
- package/web/.next/static/chunks/0v7r7y~3e~oo6.css +1 -0
- package/web/.next/static/chunks/{0hg8qgtv~kuys.js → 0xo.hi4px83w2.js} +1 -1
- package/web/.next/static/chunks/{0_v4t6gzx.332.js → 0xr0p_ynap2~d.js} +1 -1
- package/web/.next/static/chunks/0xtzpbc5mm5z7.js +5 -0
- package/web/.next/static/chunks/{133q8d69p6cl0.js → 0~-kk8o121_13.js} +1 -1
- package/web/.next/static/chunks/{078lp287u~c~b.js → 16k169s1a_8ru.js} +1 -1
- package/web/.next/static/chunks/{17c31c1biwfyi.js → 17dp77weos4ao.js} +1 -1
- 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/_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/_0mi5qj~._.js +0 -3
- package/web/.next/server/chunks/ssr/_0mi5qj~._.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/_0txr945._.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/01znjuvi5t9~q.js +0 -5
- package/web/.next/static/chunks/033sl_l5o3uo8.css +0 -1
- package/web/.next/static/chunks/04r9m_5p953mf.js +0 -1
- package/web/.next/static/chunks/07i3-aamszsoh.js +0 -1
- package/web/.next/static/chunks/0ee1d3_y40g9f.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/12pd180jp8zu..js +0 -5
- package/web/.next/static/chunks/13fcwhkw7dle2.js +0 -1
- package/web/.next/static/chunks/15mks7_3venc1.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/{LQMB6QAutWzPQnLUZG96y → vD7xT4_iwKDhgj4-rr637}/_buildManifest.js +0 -0
- /package/web/.next/static/{LQMB6QAutWzPQnLUZG96y → vD7xT4_iwKDhgj4-rr637}/_clientMiddlewareManifest.js +0 -0
- /package/web/.next/static/{LQMB6QAutWzPQnLUZG96y → vD7xT4_iwKDhgj4-rr637}/_ssgManifest.js +0 -0
package/package.json
CHANGED
package/web/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
vD7xT4_iwKDhgj4-rr637
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"/api/tools/[id]/launch/route": "/api/tools/[id]/launch",
|
|
45
45
|
"/api/tools/route": "/api/tools",
|
|
46
46
|
"/api/version/route": "/api/version",
|
|
47
|
+
"/plugins/page": "/plugins",
|
|
47
48
|
"/settings/page": "/settings",
|
|
48
49
|
"/skills/page": "/skills",
|
|
49
50
|
"/tools/page": "/tools",
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
"static/chunks/03~yq9q893hmn.js"
|
|
8
8
|
],
|
|
9
9
|
"lowPriorityFiles": [
|
|
10
|
-
"static/
|
|
11
|
-
"static/
|
|
12
|
-
"static/
|
|
10
|
+
"static/vD7xT4_iwKDhgj4-rr637/_buildManifest.js",
|
|
11
|
+
"static/vD7xT4_iwKDhgj4-rr637/_ssgManifest.js",
|
|
12
|
+
"static/vD7xT4_iwKDhgj4-rr637/_clientMiddlewareManifest.js"
|
|
13
13
|
],
|
|
14
14
|
"rootMainFiles": [
|
|
15
15
|
"static/chunks/16~vw9ce~pa0c.js",
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"polyfillFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
10
|
-
"static/
|
|
8
|
+
"static/vD7xT4_iwKDhgj4-rr637/_buildManifest.js",
|
|
9
|
+
"static/vD7xT4_iwKDhgj4-rr637/_ssgManifest.js",
|
|
10
|
+
"static/vD7xT4_iwKDhgj4-rr637/_clientMiddlewareManifest.js"
|
|
11
11
|
],
|
|
12
12
|
"rootMainFiles": []
|
|
13
13
|
}
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"dynamicRoutes": {},
|
|
30
30
|
"notFoundRoutes": [],
|
|
31
31
|
"preview": {
|
|
32
|
-
"previewModeId": "
|
|
33
|
-
"previewModeSigningKey": "
|
|
34
|
-
"previewModeEncryptionKey": "
|
|
32
|
+
"previewModeId": "46974a7df864079acb8a5192a93c688e",
|
|
33
|
+
"previewModeSigningKey": "2eb486d1d7326487fbba5fba14f24c81591d717e6ed9c3263abdcb0c90cff212",
|
|
34
|
+
"previewModeEncryptionKey": "5da7f3ea71c1d59a68c575210fcf11824b42a1f6625e29218d14fe1a9ff91ec8"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -2,11 +2,11 @@ self.__SERVER_FILES_MANIFEST={
|
|
|
2
2
|
"version": 1,
|
|
3
3
|
"config": {
|
|
4
4
|
"env": {
|
|
5
|
-
"NEXT_PUBLIC_SHIPIT_AI_VERSION": "1.
|
|
5
|
+
"NEXT_PUBLIC_SHIPIT_AI_VERSION": "1.169.0",
|
|
6
6
|
"NEXT_PUBLIC_SHIPIT_AI_PACKAGE_NAME": "@shipit-ai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHIPIT_AI_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
|
-
"NEXT_PUBLIC_SHIPIT_AI_BRANCH": "
|
|
9
|
-
"NEXT_PUBLIC_SHIPIT_AI_COMMIT": "
|
|
8
|
+
"NEXT_PUBLIC_SHIPIT_AI_BRANCH": "HEAD",
|
|
9
|
+
"NEXT_PUBLIC_SHIPIT_AI_COMMIT": "6d78fafba7e1c453171f98c9693f604fd97ebe2a",
|
|
10
10
|
"NEXT_PUBLIC_SHIPIT_AI_INSTANCE_PATH": "/home/runner/work/shipit/shipit/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
"version": 1,
|
|
3
3
|
"config": {
|
|
4
4
|
"env": {
|
|
5
|
-
"NEXT_PUBLIC_SHIPIT_AI_VERSION": "1.
|
|
5
|
+
"NEXT_PUBLIC_SHIPIT_AI_VERSION": "1.169.0",
|
|
6
6
|
"NEXT_PUBLIC_SHIPIT_AI_PACKAGE_NAME": "@shipit-ai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHIPIT_AI_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
|
-
"NEXT_PUBLIC_SHIPIT_AI_BRANCH": "
|
|
9
|
-
"NEXT_PUBLIC_SHIPIT_AI_COMMIT": "
|
|
8
|
+
"NEXT_PUBLIC_SHIPIT_AI_BRANCH": "HEAD",
|
|
9
|
+
"NEXT_PUBLIC_SHIPIT_AI_COMMIT": "6d78fafba7e1c453171f98c9693f604fd97ebe2a",
|
|
10
10
|
"NEXT_PUBLIC_SHIPIT_AI_INSTANCE_PATH": "/home/runner/work/shipit/shipit/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -288,6 +288,12 @@
|
|
|
288
288
|
"routeKeys": {},
|
|
289
289
|
"namedRegex": "^/create(?:/)?$"
|
|
290
290
|
},
|
|
291
|
+
{
|
|
292
|
+
"page": "/plugins",
|
|
293
|
+
"regex": "^/plugins(?:/)?$",
|
|
294
|
+
"routeKeys": {},
|
|
295
|
+
"namedRegex": "^/plugins(?:/)?$"
|
|
296
|
+
},
|
|
291
297
|
{
|
|
292
298
|
"page": "/settings",
|
|
293
299
|
"regex": "^/settings(?:/)?$",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"0000580db77af91e7fff00b0b4403fa4feb2a2d993": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
6
6
|
"moduleId": 81306,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"exportedName": "getAllAgentModels",
|
|
13
13
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
14
14
|
},
|
|
15
|
-
"
|
|
15
|
+
"609fb82c7c6c89ca50673823098e498a09a9fec629": {
|
|
16
16
|
"workers": {
|
|
17
17
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
18
18
|
"moduleId": 81306,
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"exportedName": "updateAgentAndModel",
|
|
25
25
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
26
26
|
},
|
|
27
|
-
"
|
|
27
|
+
"0090338ccf5fa07afdb8e7be418d00bc55439e87cb": {
|
|
28
28
|
"workers": {
|
|
29
29
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
30
30
|
"moduleId": 81306,
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"exportedName": "pickFolder",
|
|
37
37
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
38
38
|
},
|
|
39
|
-
"
|
|
39
|
+
"408634cd96c67a639ac703b296c3737d0bd811beb4": {
|
|
40
40
|
"workers": {
|
|
41
41
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
42
42
|
"moduleId": 81306,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"exportedName": "listGitHubRepositories",
|
|
49
49
|
"filename": "src/presentation/web/app/actions/list-github-repositories.ts"
|
|
50
50
|
},
|
|
51
|
-
"
|
|
51
|
+
"00943ac6a9bbebcc818933091a5b18b1078e166fba": {
|
|
52
52
|
"workers": {
|
|
53
53
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
54
54
|
"moduleId": 81306,
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"exportedName": "listGitHubOrganizations",
|
|
61
61
|
"filename": "src/presentation/web/app/actions/list-github-organizations.ts"
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"408739906befd13eb590447705120aa8421c1352f2": {
|
|
64
64
|
"workers": {
|
|
65
65
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
66
66
|
"moduleId": 81306,
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"exportedName": "importGitHubRepository",
|
|
73
73
|
"filename": "src/presentation/web/app/actions/import-github-repository.ts"
|
|
74
74
|
},
|
|
75
|
-
"
|
|
75
|
+
"4003593de16b2e247ab1eb1181c364062f68e7d307": {
|
|
76
76
|
"workers": {
|
|
77
77
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
78
78
|
"moduleId": 81306,
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"exportedName": "deployFeature",
|
|
85
85
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
86
86
|
},
|
|
87
|
-
"
|
|
87
|
+
"40f783df18e347ff4383dad5da16846a131bec83cd": {
|
|
88
88
|
"workers": {
|
|
89
89
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
90
90
|
"moduleId": 81306,
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"exportedName": "deployRepository",
|
|
97
97
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
98
98
|
},
|
|
99
|
-
"
|
|
99
|
+
"40b67327258d66cc740b47723a9276348e1a748e30": {
|
|
100
100
|
"workers": {
|
|
101
101
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
102
102
|
"moduleId": 81306,
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"exportedName": "stopDeployment",
|
|
109
109
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
110
110
|
},
|
|
111
|
-
"
|
|
111
|
+
"4058eda81dd47fff6d7ff1fce41ebebe1295013330": {
|
|
112
112
|
"workers": {
|
|
113
113
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
114
114
|
"moduleId": 81306,
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"exportedName": "getDeploymentStatus",
|
|
121
121
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"40f3d51b9274fcab47195c76d09141c17508842170": {
|
|
124
124
|
"workers": {
|
|
125
125
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
126
126
|
"moduleId": 81306,
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"exportedName": "openIde",
|
|
133
133
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
134
134
|
},
|
|
135
|
-
"
|
|
135
|
+
"4000905392bc403639c2275018d0e77a4caaef76df": {
|
|
136
136
|
"workers": {
|
|
137
137
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
138
138
|
"moduleId": 81306,
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"exportedName": "openShell",
|
|
145
145
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
146
146
|
},
|
|
147
|
-
"
|
|
147
|
+
"4071fe82b6e1a66c52b851807ccb61247524482573": {
|
|
148
148
|
"workers": {
|
|
149
149
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
150
150
|
"moduleId": 81306,
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"exportedName": "openFolder",
|
|
157
157
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
158
158
|
},
|
|
159
|
-
"
|
|
159
|
+
"40454d1aa8b3a4642e6211000ea814a233e91f33fa": {
|
|
160
160
|
"workers": {
|
|
161
161
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
162
162
|
"moduleId": 81306,
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
"exportedName": "syncRepository",
|
|
169
169
|
"filename": "src/presentation/web/app/actions/sync-repository.ts"
|
|
170
170
|
},
|
|
171
|
-
"
|
|
171
|
+
"40bd3bb683e8d887532e0550b87c3a7348c011aff2": {
|
|
172
172
|
"workers": {
|
|
173
173
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
174
174
|
"moduleId": 81306,
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"exportedName": "getDeploymentLogs",
|
|
181
181
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
182
182
|
},
|
|
183
|
-
"
|
|
183
|
+
"004f0662883886d46f8f0aa0e3237f30af277b100f": {
|
|
184
184
|
"workers": {
|
|
185
185
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
186
186
|
"moduleId": 81306,
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"exportedName": "isAgentSetupComplete",
|
|
193
193
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
194
194
|
},
|
|
195
|
-
"
|
|
195
|
+
"002ceffb20ae1d3ac63fd53234e0c6d44252281987": {
|
|
196
196
|
"workers": {
|
|
197
197
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
198
198
|
"moduleId": 81306,
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
"exportedName": "checkAgentAuth",
|
|
205
205
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
206
206
|
},
|
|
207
|
-
"
|
|
207
|
+
"001ddaafa354b0082d657d33e7b50c9078e0f07089": {
|
|
208
208
|
"workers": {
|
|
209
209
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
210
210
|
"moduleId": 81306,
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
"exportedName": "checkToolStatus",
|
|
217
217
|
"filename": "src/presentation/web/app/actions/check-tool-status.ts"
|
|
218
218
|
},
|
|
219
|
-
"
|
|
219
|
+
"404c0c951e2ed0084c1b630626b6565caa37516576": {
|
|
220
220
|
"workers": {
|
|
221
221
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
222
222
|
"moduleId": 81306,
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
"exportedName": "getFeatureMetadata",
|
|
229
229
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
230
230
|
},
|
|
231
|
-
"
|
|
231
|
+
"402c1830f68e5cf809663267102f6f918e87ae16fd": {
|
|
232
232
|
"workers": {
|
|
233
233
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
234
234
|
"moduleId": 81306,
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
"exportedName": "archiveFeature",
|
|
241
241
|
"filename": "src/presentation/web/app/actions/archive-feature.ts"
|
|
242
242
|
},
|
|
243
|
-
"
|
|
243
|
+
"787e4b48cfb35d4de5dc6a79998ad4587ed8a92f09": {
|
|
244
244
|
"workers": {
|
|
245
245
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
246
246
|
"moduleId": 81306,
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
"exportedName": "deleteFeature",
|
|
253
253
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
254
254
|
},
|
|
255
|
-
"
|
|
255
|
+
"40baf0ac219033d57f793da8fe74eb8435030d7435": {
|
|
256
256
|
"workers": {
|
|
257
257
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
258
258
|
"moduleId": 81306,
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
"exportedName": "resumeFeature",
|
|
265
265
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
266
266
|
},
|
|
267
|
-
"
|
|
267
|
+
"40b742fb0713b7ef0465b8050431742035410e7c64": {
|
|
268
268
|
"workers": {
|
|
269
269
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
270
270
|
"moduleId": 81306,
|
|
@@ -276,7 +276,7 @@
|
|
|
276
276
|
"exportedName": "startFeature",
|
|
277
277
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
278
278
|
},
|
|
279
|
-
"
|
|
279
|
+
"40b7762dfbe789b59cb72ba6715e5ec9a56e8c5dc5": {
|
|
280
280
|
"workers": {
|
|
281
281
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
282
282
|
"moduleId": 81306,
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
"exportedName": "stopFeature",
|
|
289
289
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
290
290
|
},
|
|
291
|
-
"
|
|
291
|
+
"40d986834a58b0b6eba9c95b1b00072bdbef700171": {
|
|
292
292
|
"workers": {
|
|
293
293
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
294
294
|
"moduleId": 81306,
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
"exportedName": "unarchiveFeature",
|
|
301
301
|
"filename": "src/presentation/web/app/actions/unarchive-feature.ts"
|
|
302
302
|
},
|
|
303
|
-
"
|
|
303
|
+
"40f5697183d73677b2420b6cd9074a858af1a35468": {
|
|
304
304
|
"workers": {
|
|
305
305
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
306
306
|
"moduleId": 81306,
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"exportedName": "addRepository",
|
|
313
313
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
314
314
|
},
|
|
315
|
-
"
|
|
315
|
+
"404b5e4e49a2b2b4d030994d00736966ba609002df": {
|
|
316
316
|
"workers": {
|
|
317
317
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
318
318
|
"moduleId": 81306,
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
"exportedName": "deleteRepository",
|
|
325
325
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
326
326
|
},
|
|
327
|
-
"
|
|
327
|
+
"40621a6e6056fe6955be7aec5f3b5d703021d84e52": {
|
|
328
328
|
"workers": {
|
|
329
329
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
330
330
|
"moduleId": 81306,
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
"exportedName": "adoptBranch",
|
|
337
337
|
"filename": "src/presentation/web/app/actions/adopt-branch.ts"
|
|
338
338
|
},
|
|
339
|
-
"
|
|
339
|
+
"40d3d349d4794902125d2f8f57bdc6e0e17628fae2": {
|
|
340
340
|
"workers": {
|
|
341
341
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
342
342
|
"moduleId": 81306,
|