@shepai/cli 1.136.0 → 1.136.1-pr440.ded6b06
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/Feature.yaml +3 -0
- package/apis/json-schema/SdlcLifecycle.yaml +1 -0
- package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts +2 -0
- package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts +20 -0
- package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.js +74 -0
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +1 -1
- package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.d.ts +12 -1
- package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.js +61 -4
- package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts +20 -0
- package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.js +65 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +6 -1
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +1 -0
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +10 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +6 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts +12 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.js +16 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.js +7 -2
- package/dist/src/presentation/cli/commands/feat/archive.command.d.ts +18 -0
- package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/feat/archive.command.js +54 -0
- package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/index.js +5 -1
- package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/ls.command.js +5 -0
- package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts +17 -0
- package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/feat/unarchive.command.js +42 -0
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +6 -1
- package/dist/src/presentation/web/app/actions/archive-feature.d.ts +6 -0
- package/dist/src/presentation/web/app/actions/archive-feature.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/archive-feature.js +16 -0
- package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts +6 -0
- package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/unarchive-feature.js +16 -0
- package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/agent-events/route.js +1 -0
- package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.js +6 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +3 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +11 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.js +16 -2
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts +5 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +75 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +13 -4
- package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts +6 -0
- package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +70 -0
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +6 -0
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +43 -2
- package/dist/src/presentation/web/hooks/sidebar-features-context.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/sidebar-features-context.js +1 -0
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.js +17 -2
- package/dist/src/presentation/web/lib/derive-graph.d.ts +4 -0
- package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/derive-graph.js +12 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/build-manifest.json +2 -2
- package/web/.next/fallback-build-manifest.json +2 -2
- 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/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +80 -50
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +2 -2
- 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/create/page/server-reference-manifest.json +80 -50
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +2 -2
- 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 +92 -62
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -2
- 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 +92 -62
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -2
- 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]/page/server-reference-manifest.json +76 -46
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +2 -2
- 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)/create/page/server-reference-manifest.json +80 -50
- package/web/.next/server/app/(dashboard)/create/page.js +2 -2
- 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 +92 -62
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +2 -2
- 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 +92 -62
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +2 -2
- 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 +76 -46
- package/web/.next/server/app/(dashboard)/page.js +2 -2
- 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]/page/server-reference-manifest.json +76 -46
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +2 -2
- 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 +2 -2
- 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 +3 -3
- 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/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
- package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
- 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 +8 -8
- 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 +8 -8
- 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 +3 -3
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +2 -2
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__3ef34e4c._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__61564698._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__61564698._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__74ab160c._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__74ab160c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd16cded._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd16cded._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f14fffe1._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f14fffe1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_02ec1aea._.js +1 -1
- package/web/.next/server/chunks/ssr/_02ec1aea._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0f5e9205._.js +3 -0
- package/web/.next/server/chunks/ssr/{_aec44907._.js.map → _0f5e9205._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_29c444f1._.js +4 -0
- package/web/.next/server/chunks/ssr/_29c444f1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_2fdfd9ab._.js +4 -0
- package/web/.next/server/chunks/ssr/_2fdfd9ab._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_65f6e0e0._.js +6 -0
- package/web/.next/server/chunks/ssr/_65f6e0e0._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_7dca1882._.js +1 -1
- package/web/.next/server/chunks/ssr/_7dca1882._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_a51673dd._.js +4 -0
- package/web/.next/server/chunks/ssr/_a51673dd._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a9f57758._.js +1 -1
- package/web/.next/server/chunks/ssr/_ae587066._.js +4 -0
- package/web/.next/server/chunks/ssr/_ae587066._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_d162e30d._.js +4 -0
- package/web/.next/server/chunks/ssr/_d162e30d._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d763f022._.js +6 -0
- package/web/.next/server/chunks/ssr/_d763f022._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_d8575088._.js +1 -1
- package/web/.next/server/chunks/ssr/_d8575088._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f39a1adb._.js +1 -1
- package/web/.next/server/chunks/ssr/_f39a1adb._.js.map +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{src_presentation_web_d8202508._.js → src_presentation_web_eb026892._.js} +2 -2
- package/web/.next/server/chunks/ssr/{src_presentation_web_d8202508._.js.map → src_presentation_web_eb026892._.js.map} +1 -1
- package/web/.next/server/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +463 -307
- package/web/.next/static/chunks/{ff9b5942b2cae4f7.js → 16b41271842fdbc1.js} +1 -1
- package/web/.next/static/chunks/{1693f840144b12bb.js → 232c8fb39d55eb0c.js} +2 -2
- package/web/.next/static/chunks/24d61546fc6aa030.css +1 -0
- package/web/.next/static/chunks/{07ea878c8d769b40.js → 2f0f60603e6a6ad3.js} +1 -1
- package/web/.next/static/chunks/{90af5015ea1684d2.js → 35c8485fb1995cf7.js} +1 -1
- package/web/.next/static/chunks/57802507d72b99ee.js +1 -0
- package/web/.next/static/chunks/5edd0e2e784ee069.js +2 -0
- package/web/.next/static/chunks/60f80d39976c5086.js +1 -0
- package/web/.next/static/chunks/{4916dcd902d80072.js → 94f12c16e8804d19.js} +1 -1
- package/web/.next/static/chunks/{3d6119fadfa8596f.js → a0072880b46edce7.js} +1 -1
- package/web/.next/static/chunks/b02f266e89ba1dd8.js +1 -0
- package/web/.next/static/chunks/{00754162862ab75f.js → bcc1bf1b0cd74b2d.js} +1 -1
- package/web/.next/static/chunks/{3e571ee5f5afd401.js → f3da449e6cc5524e.js} +1 -1
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_b49d9c97.js +0 -3
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_b49d9c97.js.map +0 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_28632197.js +0 -3
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_28632197.js.map +0 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_10695d37.js +0 -3
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_10695d37.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__47ded061._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__47ded061._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__68ce373c._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__68ce373c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__718766da._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__718766da._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fdd058b2._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fdd058b2._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_aec44907._.js +0 -3
- package/web/.next/server/chunks/ssr/_e69a26ba._.js +0 -4
- package/web/.next/server/chunks/ssr/_e69a26ba._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_e700d6a8._.js +0 -4
- package/web/.next/server/chunks/ssr/_e700d6a8._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_53666118._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_53666118._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_d95e128d.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_d95e128d.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_e4df6dd7._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_e4df6dd7._.js.map +0 -1
- package/web/.next/static/chunks/75d552e0e611e3f4.js +0 -2
- package/web/.next/static/chunks/92cd6f523639a6fa.css +0 -1
- package/web/.next/static/chunks/98888e44c7c02a19.js +0 -1
- package/web/.next/static/chunks/a17edbc379ad2f40.js +0 -1
- package/web/.next/static/chunks/ae5bf7c402bb02ad.js +0 -1
- /package/web/.next/static/{PlnxcoPHipclEMFHMWF11 → 3V1jKEnSKFjbSLn1ERPdV}/_buildManifest.js +0 -0
- /package/web/.next/static/{PlnxcoPHipclEMFHMWF11 → 3V1jKEnSKFjbSLn1ERPdV}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{PlnxcoPHipclEMFHMWF11 → 3V1jKEnSKFjbSLn1ERPdV}/_ssgManifest.js +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"001cb2f353fa962fbe7e7edadc39a282e123a890da": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/(dashboard)/@drawer/create/page": {
|
|
6
|
-
"moduleId":
|
|
6
|
+
"moduleId": 27055,
|
|
7
7
|
"async": false,
|
|
8
8
|
"exportedName": "pickFolder",
|
|
9
9
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"exportedName": "pickFolder",
|
|
16
16
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
17
17
|
},
|
|
18
|
-
"
|
|
18
|
+
"402f51b3dbe7d573cd61c2876c8cc561f82422affa": {
|
|
19
19
|
"workers": {
|
|
20
20
|
"app/(dashboard)/@drawer/create/page": {
|
|
21
|
-
"moduleId":
|
|
21
|
+
"moduleId": 27055,
|
|
22
22
|
"async": false,
|
|
23
23
|
"exportedName": "listGitHubRepositories",
|
|
24
24
|
"filename": "src/presentation/web/app/actions/list-github-repositories.ts"
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"exportedName": "listGitHubRepositories",
|
|
31
31
|
"filename": "src/presentation/web/app/actions/list-github-repositories.ts"
|
|
32
32
|
},
|
|
33
|
-
"
|
|
33
|
+
"40204cabe2763fa6d152fd6b439db8fa5aca884c63": {
|
|
34
34
|
"workers": {
|
|
35
35
|
"app/(dashboard)/@drawer/create/page": {
|
|
36
|
-
"moduleId":
|
|
36
|
+
"moduleId": 27055,
|
|
37
37
|
"async": false,
|
|
38
38
|
"exportedName": "importGitHubRepository",
|
|
39
39
|
"filename": "src/presentation/web/app/actions/import-github-repository.ts"
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"exportedName": "importGitHubRepository",
|
|
46
46
|
"filename": "src/presentation/web/app/actions/import-github-repository.ts"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
48
|
+
"40a441297d132f417266f72943f3044f364f12cd5f": {
|
|
49
49
|
"workers": {
|
|
50
50
|
"app/(dashboard)/@drawer/create/page": {
|
|
51
|
-
"moduleId":
|
|
51
|
+
"moduleId": 27055,
|
|
52
52
|
"async": false,
|
|
53
53
|
"exportedName": "deployFeature",
|
|
54
54
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"exportedName": "deployFeature",
|
|
61
61
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"40070361aa2a2fcc1c85d27286aeef026be6f8efd6": {
|
|
64
64
|
"workers": {
|
|
65
65
|
"app/(dashboard)/@drawer/create/page": {
|
|
66
|
-
"moduleId":
|
|
66
|
+
"moduleId": 27055,
|
|
67
67
|
"async": false,
|
|
68
68
|
"exportedName": "deployRepository",
|
|
69
69
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"exportedName": "deployRepository",
|
|
76
76
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
77
77
|
},
|
|
78
|
-
"
|
|
78
|
+
"40314a3f501c4ab7d638488e7dcd9a1f95989e5271": {
|
|
79
79
|
"workers": {
|
|
80
80
|
"app/(dashboard)/@drawer/create/page": {
|
|
81
|
-
"moduleId":
|
|
81
|
+
"moduleId": 27055,
|
|
82
82
|
"async": false,
|
|
83
83
|
"exportedName": "stopDeployment",
|
|
84
84
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
@@ -90,10 +90,10 @@
|
|
|
90
90
|
"exportedName": "stopDeployment",
|
|
91
91
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
92
92
|
},
|
|
93
|
-
"
|
|
93
|
+
"4097ea979d4895965782eacc0d78312fc6722fb190": {
|
|
94
94
|
"workers": {
|
|
95
95
|
"app/(dashboard)/@drawer/create/page": {
|
|
96
|
-
"moduleId":
|
|
96
|
+
"moduleId": 27055,
|
|
97
97
|
"async": false,
|
|
98
98
|
"exportedName": "getDeploymentStatus",
|
|
99
99
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
@@ -105,10 +105,10 @@
|
|
|
105
105
|
"exportedName": "getDeploymentStatus",
|
|
106
106
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
107
107
|
},
|
|
108
|
-
"
|
|
108
|
+
"40b6f51ace122b5e461ad6f47b67439e6037868fa6": {
|
|
109
109
|
"workers": {
|
|
110
110
|
"app/(dashboard)/@drawer/create/page": {
|
|
111
|
-
"moduleId":
|
|
111
|
+
"moduleId": 27055,
|
|
112
112
|
"async": false,
|
|
113
113
|
"exportedName": "openIde",
|
|
114
114
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
@@ -120,10 +120,10 @@
|
|
|
120
120
|
"exportedName": "openIde",
|
|
121
121
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"4040ec5dd669aafe7c5e2410060f0509d71dd21fb8": {
|
|
124
124
|
"workers": {
|
|
125
125
|
"app/(dashboard)/@drawer/create/page": {
|
|
126
|
-
"moduleId":
|
|
126
|
+
"moduleId": 27055,
|
|
127
127
|
"async": false,
|
|
128
128
|
"exportedName": "openShell",
|
|
129
129
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
@@ -135,10 +135,10 @@
|
|
|
135
135
|
"exportedName": "openShell",
|
|
136
136
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
137
137
|
},
|
|
138
|
-
"
|
|
138
|
+
"40fd9f11755d5bc654ee50d1ebd4ba91897da79d1f": {
|
|
139
139
|
"workers": {
|
|
140
140
|
"app/(dashboard)/@drawer/create/page": {
|
|
141
|
-
"moduleId":
|
|
141
|
+
"moduleId": 27055,
|
|
142
142
|
"async": false,
|
|
143
143
|
"exportedName": "openFolder",
|
|
144
144
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
@@ -150,10 +150,10 @@
|
|
|
150
150
|
"exportedName": "openFolder",
|
|
151
151
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
152
152
|
},
|
|
153
|
-
"
|
|
153
|
+
"4082da0ef62ce49866163c26a8607d5887bfda7957": {
|
|
154
154
|
"workers": {
|
|
155
155
|
"app/(dashboard)/@drawer/create/page": {
|
|
156
|
-
"moduleId":
|
|
156
|
+
"moduleId": 27055,
|
|
157
157
|
"async": false,
|
|
158
158
|
"exportedName": "getDeploymentLogs",
|
|
159
159
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
@@ -165,10 +165,10 @@
|
|
|
165
165
|
"exportedName": "getDeploymentLogs",
|
|
166
166
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
167
167
|
},
|
|
168
|
-
"
|
|
168
|
+
"0066eacdaf2740b2c4471358356faa26964a88e9ff": {
|
|
169
169
|
"workers": {
|
|
170
170
|
"app/(dashboard)/@drawer/create/page": {
|
|
171
|
-
"moduleId":
|
|
171
|
+
"moduleId": 27055,
|
|
172
172
|
"async": false,
|
|
173
173
|
"exportedName": "isAgentSetupComplete",
|
|
174
174
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
@@ -180,10 +180,10 @@
|
|
|
180
180
|
"exportedName": "isAgentSetupComplete",
|
|
181
181
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
182
182
|
},
|
|
183
|
-
"
|
|
183
|
+
"00d3aa7a9fae23319dc2a42f569be5dedca1c6d791": {
|
|
184
184
|
"workers": {
|
|
185
185
|
"app/(dashboard)/@drawer/create/page": {
|
|
186
|
-
"moduleId":
|
|
186
|
+
"moduleId": 27055,
|
|
187
187
|
"async": false,
|
|
188
188
|
"exportedName": "checkAgentAuth",
|
|
189
189
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
@@ -195,10 +195,10 @@
|
|
|
195
195
|
"exportedName": "checkAgentAuth",
|
|
196
196
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
197
197
|
},
|
|
198
|
-
"
|
|
198
|
+
"00e37375304b0a7744a14a077a967461a1f58ec451": {
|
|
199
199
|
"workers": {
|
|
200
200
|
"app/(dashboard)/@drawer/create/page": {
|
|
201
|
-
"moduleId":
|
|
201
|
+
"moduleId": 27055,
|
|
202
202
|
"async": false,
|
|
203
203
|
"exportedName": "checkToolStatus",
|
|
204
204
|
"filename": "src/presentation/web/app/actions/check-tool-status.ts"
|
|
@@ -210,10 +210,10 @@
|
|
|
210
210
|
"exportedName": "checkToolStatus",
|
|
211
211
|
"filename": "src/presentation/web/app/actions/check-tool-status.ts"
|
|
212
212
|
},
|
|
213
|
-
"
|
|
213
|
+
"00443fc13c044c063c38ca50a0b04382fac99c2f81": {
|
|
214
214
|
"workers": {
|
|
215
215
|
"app/(dashboard)/@drawer/create/page": {
|
|
216
|
-
"moduleId":
|
|
216
|
+
"moduleId": 27055,
|
|
217
217
|
"async": false,
|
|
218
218
|
"exportedName": "getAllAgentModels",
|
|
219
219
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
@@ -225,10 +225,10 @@
|
|
|
225
225
|
"exportedName": "getAllAgentModels",
|
|
226
226
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
227
227
|
},
|
|
228
|
-
"
|
|
228
|
+
"6066ced661efb44e617f357d185f6ad50fb848984c": {
|
|
229
229
|
"workers": {
|
|
230
230
|
"app/(dashboard)/@drawer/create/page": {
|
|
231
|
-
"moduleId":
|
|
231
|
+
"moduleId": 27055,
|
|
232
232
|
"async": false,
|
|
233
233
|
"exportedName": "updateAgentAndModel",
|
|
234
234
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
@@ -240,10 +240,25 @@
|
|
|
240
240
|
"exportedName": "updateAgentAndModel",
|
|
241
241
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
242
242
|
},
|
|
243
|
-
"
|
|
243
|
+
"40549f0ebc4cd8236dac4de3a86a1bbcf421a2620e": {
|
|
244
244
|
"workers": {
|
|
245
245
|
"app/(dashboard)/@drawer/create/page": {
|
|
246
|
-
"moduleId":
|
|
246
|
+
"moduleId": 27055,
|
|
247
|
+
"async": false,
|
|
248
|
+
"exportedName": "archiveFeature",
|
|
249
|
+
"filename": "src/presentation/web/app/actions/archive-feature.ts"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"layer": {
|
|
253
|
+
"app/(dashboard)/@drawer/create/page": "action-browser"
|
|
254
|
+
},
|
|
255
|
+
"exportedName": "archiveFeature",
|
|
256
|
+
"filename": "src/presentation/web/app/actions/archive-feature.ts"
|
|
257
|
+
},
|
|
258
|
+
"78e9ae38665863c2f08c123309b8347ca02ce33c99": {
|
|
259
|
+
"workers": {
|
|
260
|
+
"app/(dashboard)/@drawer/create/page": {
|
|
261
|
+
"moduleId": 27055,
|
|
247
262
|
"async": false,
|
|
248
263
|
"exportedName": "deleteFeature",
|
|
249
264
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
@@ -255,10 +270,10 @@
|
|
|
255
270
|
"exportedName": "deleteFeature",
|
|
256
271
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
257
272
|
},
|
|
258
|
-
"
|
|
273
|
+
"40a046099fec912188c4497b533046887b5bdf3245": {
|
|
259
274
|
"workers": {
|
|
260
275
|
"app/(dashboard)/@drawer/create/page": {
|
|
261
|
-
"moduleId":
|
|
276
|
+
"moduleId": 27055,
|
|
262
277
|
"async": false,
|
|
263
278
|
"exportedName": "resumeFeature",
|
|
264
279
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
@@ -270,10 +285,10 @@
|
|
|
270
285
|
"exportedName": "resumeFeature",
|
|
271
286
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
272
287
|
},
|
|
273
|
-
"
|
|
288
|
+
"409cb5d14d6accab943719ef098603cae2e7f698e4": {
|
|
274
289
|
"workers": {
|
|
275
290
|
"app/(dashboard)/@drawer/create/page": {
|
|
276
|
-
"moduleId":
|
|
291
|
+
"moduleId": 27055,
|
|
277
292
|
"async": false,
|
|
278
293
|
"exportedName": "startFeature",
|
|
279
294
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
@@ -285,10 +300,10 @@
|
|
|
285
300
|
"exportedName": "startFeature",
|
|
286
301
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
287
302
|
},
|
|
288
|
-
"
|
|
303
|
+
"40a690d13581bd65bce5d7233a9af8db0860c7c555": {
|
|
289
304
|
"workers": {
|
|
290
305
|
"app/(dashboard)/@drawer/create/page": {
|
|
291
|
-
"moduleId":
|
|
306
|
+
"moduleId": 27055,
|
|
292
307
|
"async": false,
|
|
293
308
|
"exportedName": "stopFeature",
|
|
294
309
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
@@ -300,10 +315,25 @@
|
|
|
300
315
|
"exportedName": "stopFeature",
|
|
301
316
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
302
317
|
},
|
|
303
|
-
"
|
|
318
|
+
"4002e23a139c1ac4abb8143ddc653eb9d5fc5a1ac9": {
|
|
319
|
+
"workers": {
|
|
320
|
+
"app/(dashboard)/@drawer/create/page": {
|
|
321
|
+
"moduleId": 27055,
|
|
322
|
+
"async": false,
|
|
323
|
+
"exportedName": "unarchiveFeature",
|
|
324
|
+
"filename": "src/presentation/web/app/actions/unarchive-feature.ts"
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
"layer": {
|
|
328
|
+
"app/(dashboard)/@drawer/create/page": "action-browser"
|
|
329
|
+
},
|
|
330
|
+
"exportedName": "unarchiveFeature",
|
|
331
|
+
"filename": "src/presentation/web/app/actions/unarchive-feature.ts"
|
|
332
|
+
},
|
|
333
|
+
"40933ba40ddfb647bdbd0b953da5f52e0dc2cb36f7": {
|
|
304
334
|
"workers": {
|
|
305
335
|
"app/(dashboard)/@drawer/create/page": {
|
|
306
|
-
"moduleId":
|
|
336
|
+
"moduleId": 27055,
|
|
307
337
|
"async": false,
|
|
308
338
|
"exportedName": "addRepository",
|
|
309
339
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
@@ -315,10 +345,10 @@
|
|
|
315
345
|
"exportedName": "addRepository",
|
|
316
346
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
317
347
|
},
|
|
318
|
-
"
|
|
348
|
+
"401548f71869b5a5b4769ff3581ff9c5b16b034dc7": {
|
|
319
349
|
"workers": {
|
|
320
350
|
"app/(dashboard)/@drawer/create/page": {
|
|
321
|
-
"moduleId":
|
|
351
|
+
"moduleId": 27055,
|
|
322
352
|
"async": false,
|
|
323
353
|
"exportedName": "deleteRepository",
|
|
324
354
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
@@ -330,10 +360,10 @@
|
|
|
330
360
|
"exportedName": "deleteRepository",
|
|
331
361
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
332
362
|
},
|
|
333
|
-
"
|
|
363
|
+
"4061f90b3c05cc15d21b1b1e00806de17d735247a7": {
|
|
334
364
|
"workers": {
|
|
335
365
|
"app/(dashboard)/@drawer/create/page": {
|
|
336
|
-
"moduleId":
|
|
366
|
+
"moduleId": 27055,
|
|
337
367
|
"async": false,
|
|
338
368
|
"exportedName": "getFeatureMetadata",
|
|
339
369
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
@@ -345,10 +375,10 @@
|
|
|
345
375
|
"exportedName": "getFeatureMetadata",
|
|
346
376
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
347
377
|
},
|
|
348
|
-
"
|
|
378
|
+
"00f04eb2ae2079eb29e896a5e5e9e440259220fb89": {
|
|
349
379
|
"workers": {
|
|
350
380
|
"app/(dashboard)/@drawer/create/page": {
|
|
351
|
-
"moduleId":
|
|
381
|
+
"moduleId": 27055,
|
|
352
382
|
"async": false,
|
|
353
383
|
"exportedName": "getWorkflowDefaults",
|
|
354
384
|
"filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
|
|
@@ -360,10 +390,10 @@
|
|
|
360
390
|
"exportedName": "getWorkflowDefaults",
|
|
361
391
|
"filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
|
|
362
392
|
},
|
|
363
|
-
"
|
|
393
|
+
"404484c40666e5d07eb7b7f6e7f35c9541c6b2fba6": {
|
|
364
394
|
"workers": {
|
|
365
395
|
"app/(dashboard)/@drawer/create/page": {
|
|
366
|
-
"moduleId":
|
|
396
|
+
"moduleId": 27055,
|
|
367
397
|
"async": false,
|
|
368
398
|
"exportedName": "createFeature",
|
|
369
399
|
"filename": "src/presentation/web/app/actions/create-feature.ts"
|
|
@@ -14,7 +14,7 @@ R.c("server/chunks/ssr/403f9_next_dist_client_components_builtin_unauthorized_a2
|
|
|
14
14
|
R.c("server/chunks/ssr/[root-of-the-server]__6ec59045._.js")
|
|
15
15
|
R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
|
|
16
16
|
R.c("server/chunks/ssr/src_presentation_web_app_(dashboard)_create_page_tsx_c60c859a._.js")
|
|
17
|
-
R.c("server/chunks/ssr/
|
|
18
|
-
R.c("server/chunks/ssr/
|
|
17
|
+
R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js")
|
|
18
|
+
R.c("server/chunks/ssr/_d763f022._.js")
|
|
19
19
|
R.m(26467)
|
|
20
20
|
module.exports=R.m(26467).exports
|