@shepai/cli 1.122.2 → 1.123.0-pr394.d6f806a
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/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts +11 -0
- package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/worktree-service.interface.d.ts +25 -0
- package/dist/packages/core/src/application/ports/output/services/worktree-service.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.d.ts +48 -0
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.js +185 -0
- package/dist/packages/core/src/application/use-cases/features/branch-name-utils.d.ts +33 -0
- package/dist/packages/core/src/application/use-cases/features/branch-name-utils.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/branch-name-utils.js +77 -0
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +5 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.d.ts +1 -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 +8 -0
- package/dist/packages/core/src/infrastructure/services/git/worktree.service.d.ts +2 -0
- package/dist/packages/core/src/infrastructure/services/git/worktree.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/worktree.service.js +39 -0
- package/dist/src/presentation/cli/commands/feat/adopt.command.d.ts +14 -0
- package/dist/src/presentation/cli/commands/feat/adopt.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/feat/adopt.command.js +46 -0
- package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/index.js +3 -1
- package/dist/src/presentation/web/app/(dashboard)/@drawer/adopt/page.d.ts +10 -0
- package/dist/src/presentation/web/app/(dashboard)/@drawer/adopt/page.d.ts.map +1 -0
- package/dist/src/presentation/web/app/(dashboard)/@drawer/adopt/page.js +22 -0
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts +6 -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 +60 -0
- package/dist/src/presentation/web/app/actions/adopt-branch.d.ts +11 -0
- package/dist/src/presentation/web/app/actions/adopt-branch.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/adopt-branch.js +20 -0
- package/dist/src/presentation/web/app/actions/get-feature-phase-timings.d.ts +2 -0
- package/dist/src/presentation/web/app/actions/get-feature-phase-timings.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-feature-phase-timings.js +2 -0
- package/dist/src/presentation/web/app/actions/list-branches.d.ts +6 -0
- package/dist/src/presentation/web/app/actions/list-branches.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/list-branches.js +18 -0
- package/dist/src/presentation/web/app/build-graph-nodes.d.ts +7 -0
- package/dist/src/presentation/web/app/build-graph-nodes.d.ts.map +1 -1
- package/dist/src/presentation/web/app/build-graph-nodes.js +7 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.d.ts +13 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.js +69 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.stories.d.ts +35 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.stories.js +135 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-drawer-client.d.ts +5 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-drawer-client.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-drawer-client.js +69 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +20 -9
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.js +130 -31
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +13 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/use-tab-data-fetch.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/use-tab-data-fetch.js +18 -9
- package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts +8 -0
- package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node.js +6 -6
- package/dist/src/presentation/web/components/common/repository-node/repository-node.stories.d.ts +2 -0
- package/dist/src/presentation/web/components/common/repository-node/repository-node.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node.stories.js +107 -17
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +18 -18
- 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 +31 -17
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.js +29 -22
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +1 -1
- package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +14 -5
- package/dist/src/presentation/web/hooks/sidebar-features-context.d.ts +2 -0
- package/dist/src/presentation/web/hooks/sidebar-features-context.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/sidebar-features-context.js +2 -1
- package/dist/src/presentation/web/lib/layout-with-dagre.js +1 -1
- 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 +4 -4
- 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/routes-manifest.json +6 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/app-paths-manifest.json +3 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/build-manifest.json +18 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/next-font-manifest.json +6 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/react-loadable-manifest.json +1 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +335 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +20 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.map +5 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +2 -0
- package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +22 -22
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +3 -3
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +3 -3
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +20 -20
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +22 -22
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +3 -3
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +3 -3
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +20 -20
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +20 -20
- 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/page/build-manifest.json +2 -2
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
- 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/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/settings/page/build-manifest.json +2 -2
- package/web/.next/server/app/settings/page/server-reference-manifest.json +6 -6
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/skills/page.js +4 -4
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
- 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/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/[root-of-the-server]__a402b567._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__dcd4f847._.js +3 -0
- package/web/.next/server/chunks/{[root-of-the-server]__42b7ab55._.js.map → [root-of-the-server]__dcd4f847._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_94d75bc3._.js +3 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_94d75bc3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_cfc9281c.js +3 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_cfc9281c.js.map +1 -0
- 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/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_f30d0343.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_f30d0343.js.map +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_9f1775bb.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_9f1775bb.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__02c84e6b._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__02c84e6b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__06fef644._.js +1 -1
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__a022445f._.js → [root-of-the-server]__14664e9b._.js} +3 -3
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__a022445f._.js.map → [root-of-the-server]__14664e9b._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__4993a47c._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__4993a47c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6677a82c._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__b724df9e._.js.map → [root-of-the-server]__6677a82c._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__8e3bf5d7._.js → [root-of-the-server]__7cbda1ea._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7cbda1ea._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8c553503._.js +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__2698e9f4._.js → [root-of-the-server]__9e8b25ad._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9e8b25ad._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a7de2711._.js +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__c07f9f79._.js → [root-of-the-server]__aed1d6f8._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aed1d6f8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__c605a375._.js → [root-of-the-server]__ce6057f6._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ce6057f6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e2227c0f._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e2227c0f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f0589cc3._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f0589cc3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_037585d1._.js +3 -0
- package/web/.next/server/chunks/ssr/_037585d1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_135edb9c._.js +1 -1
- package/web/.next/server/chunks/ssr/_135edb9c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_19a2fb35._.js +3 -0
- package/web/.next/server/chunks/ssr/_19a2fb35._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_42caff2c._.js → _1ccd3ed2._.js} +2 -2
- package/web/.next/server/chunks/ssr/_1ccd3ed2._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_2f6f48b8._.js +1 -1
- package/web/.next/server/chunks/ssr/_2f6f48b8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_4093a637._.js +5 -0
- package/web/.next/server/chunks/ssr/_4093a637._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_583a83fb._.js +3 -0
- package/web/.next/server/chunks/ssr/_583a83fb._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_9f56cf8f._.js +3 -0
- package/web/.next/server/chunks/ssr/_9f56cf8f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a187fd7e._.js +3 -0
- package/web/.next/server/chunks/ssr/_a187fd7e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a5aa6371._.js +9 -0
- package/web/.next/server/chunks/ssr/_a5aa6371._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a9f57758._.js +3 -0
- package/web/.next/server/chunks/ssr/_a9f57758._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_c5ef4913._.js +3 -0
- package/web/.next/server/chunks/ssr/_c5ef4913._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_cc77a143._.js +1 -1
- package/web/.next/server/chunks/ssr/_cc77a143._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d5206f22._.js +4 -0
- package/web/.next/server/chunks/ssr/_d5206f22._.js.map +1 -0
- 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/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
- package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js.map +1 -0
- package/web/.next/server/chunks/ssr/node_modules__pnpm_026172d1._.js +3 -0
- package/web/.next/server/chunks/ssr/node_modules__pnpm_026172d1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_31752090._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_31752090._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_5f039db1._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_5f039db1._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_2a52b697.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_2a52b697.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_c4337169._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_c4337169._.js.map +1 -1
- 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/middleware-build-manifest.js +2 -2
- 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 +204 -34
- package/web/.next/static/chunks/{0110425f3a60fc18.js → 162d3214d45d81f0.js} +2 -2
- package/web/.next/static/chunks/3e3e9c6552a6574f.css +1 -0
- package/web/.next/static/chunks/3fc60746f8f5d44e.js +1 -0
- package/web/.next/static/chunks/4ca82115323f59bc.js +1 -0
- package/web/.next/static/chunks/570fb72b30a1ca7f.js +1 -0
- package/web/.next/static/chunks/6295f27fe47da052.js +1 -0
- package/web/.next/static/chunks/8080c842b0358904.js +1 -0
- package/web/.next/static/chunks/{ff81a9dd7b7bc56f.js → 82cdd0b1a767e038.js} +3 -3
- package/web/.next/static/chunks/85d7f7a7f24068fa.js +1 -0
- package/web/.next/static/chunks/{ed3a602003bcb31b.js → 89aac43287d73b02.js} +1 -1
- package/web/.next/static/chunks/98407cd4e335253e.js +1 -0
- package/web/.next/static/chunks/a8ba3f3e2b0f87aa.js +1 -0
- package/web/.next/static/chunks/ac7251026c1e2cdf.js +1 -0
- package/web/.next/static/chunks/{f464a486bd88502d.js → c08dbbbe4ffc485a.js} +1 -1
- package/web/.next/static/chunks/d04de4be30ab78ca.js +3 -0
- package/web/.next/static/chunks/{17d618a2fb4e9a11.js → d4b4168a34e9814a.js} +1 -1
- package/web/.next/static/chunks/e0e0806debb909ab.js +1 -0
- package/web/.next/static/chunks/ff4454254b77805c.js +2 -0
- package/web/.next/static/chunks/{turbopack-426d9bc2450816ba.js → turbopack-080e470ea902d0ba.js} +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__42b7ab55._.js +0 -3
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_d0119342._.js +0 -3
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_d0119342._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2698e9f4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__52485955._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__52485955._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__545792ab._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__545792ab._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8e3bf5d7._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9f155c0e._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9f155c0e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b724df9e._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c07f9f79._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c605a375._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0dc2cfd3._.js +0 -3
- package/web/.next/server/chunks/ssr/_0dc2cfd3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_3a4c94e3._.js +0 -3
- package/web/.next/server/chunks/ssr/_3a4c94e3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_42caff2c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_6d26a08f._.js +0 -3
- package/web/.next/server/chunks/ssr/_6d26a08f._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_75f4ccb3._.js +0 -3
- package/web/.next/server/chunks/ssr/_75f4ccb3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_9ac70f88._.js +0 -5
- package/web/.next/server/chunks/ssr/_9ac70f88._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_9b7b1c2b._.js +0 -3
- package/web/.next/server/chunks/ssr/_9b7b1c2b._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_ecfef26e._.js +0 -3
- package/web/.next/server/chunks/ssr/_ecfef26e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_f1a649e3._.js +0 -9
- package/web/.next/server/chunks/ssr/_f1a649e3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_b59e4b16._.js +0 -3
- package/web/.next/server/chunks/ssr/node_modules__pnpm_b59e4b16._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js.map +0 -1
- package/web/.next/static/chunks/0d2af96e64960ef5.css +0 -1
- package/web/.next/static/chunks/12f3ae6b693c8baf.js +0 -1
- package/web/.next/static/chunks/303a1217006489b9.js +0 -1
- package/web/.next/static/chunks/4562ee849ea13c3a.js +0 -1
- package/web/.next/static/chunks/52b56677c842e45f.js +0 -3
- package/web/.next/static/chunks/6339d1c357e7fea3.js +0 -2
- package/web/.next/static/chunks/83fed73369b40eaf.js +0 -1
- package/web/.next/static/chunks/845d8e58a91014e6.js +0 -1
- package/web/.next/static/chunks/8e5bdf9fb945ae6a.js +0 -1
- package/web/.next/static/chunks/96eeeb28e06de78c.js +0 -1
- package/web/.next/static/chunks/be0d245d0e672d44.js +0 -1
- package/web/.next/static/chunks/e6c0bf49bcd5d0fb.js +0 -1
- /package/web/.next/static/{DIjy_LTLHBNoz5RRTRhBy → qzazqUwIFQXV0QO3pUuYV}/_buildManifest.js +0 -0
- /package/web/.next/static/{DIjy_LTLHBNoz5RRTRhBy → qzazqUwIFQXV0QO3pUuYV}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{DIjy_LTLHBNoz5RRTRhBy → qzazqUwIFQXV0QO3pUuYV}/_ssgManifest.js +0 -0
package/package.json
CHANGED
package/web/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
qzazqUwIFQXV0QO3pUuYV
|
|
@@ -7,15 +7,15 @@
|
|
|
7
7
|
"static/chunks/a6dad97d9634a72d.js"
|
|
8
8
|
],
|
|
9
9
|
"lowPriorityFiles": [
|
|
10
|
-
"static/
|
|
11
|
-
"static/
|
|
10
|
+
"static/qzazqUwIFQXV0QO3pUuYV/_ssgManifest.js",
|
|
11
|
+
"static/qzazqUwIFQXV0QO3pUuYV/_buildManifest.js"
|
|
12
12
|
],
|
|
13
13
|
"rootMainFiles": [
|
|
14
|
-
"static/chunks/
|
|
14
|
+
"static/chunks/89aac43287d73b02.js",
|
|
15
15
|
"static/chunks/84a181ff3270fd9f.js",
|
|
16
16
|
"static/chunks/cfe4dc9904fcfddb.js",
|
|
17
17
|
"static/chunks/4b6cc9f65260f2bd.js",
|
|
18
18
|
"static/chunks/d4d8f0a137bd2eb4.js",
|
|
19
|
-
"static/chunks/turbopack-
|
|
19
|
+
"static/chunks/turbopack-080e470ea902d0ba.js"
|
|
20
20
|
]
|
|
21
21
|
}
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"polyfillFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/qzazqUwIFQXV0QO3pUuYV/_ssgManifest.js",
|
|
9
|
+
"static/qzazqUwIFQXV0QO3pUuYV/_buildManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": []
|
|
12
12
|
}
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"dynamicRoutes": {},
|
|
30
30
|
"notFoundRoutes": [],
|
|
31
31
|
"preview": {
|
|
32
|
-
"previewModeId": "
|
|
33
|
-
"previewModeSigningKey": "
|
|
34
|
-
"previewModeEncryptionKey": "
|
|
32
|
+
"previewModeId": "3edfc7f6d8a9c7c0d908795502d627c7",
|
|
33
|
+
"previewModeSigningKey": "fd80daaa10487a5322ad771e41cb429f0cbf045cbcb4d4992ea1de7d546bab2a",
|
|
34
|
+
"previewModeEncryptionKey": "b6d02528f0aacfbd4a01a359c96a440c54e01b6e0344dd5e4ee8d4f934510e30"
|
|
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_SHEP_VERSION": "1.
|
|
5
|
+
"NEXT_PUBLIC_SHEP_VERSION": "1.123.0",
|
|
6
6
|
"NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
|
-
"NEXT_PUBLIC_SHEP_BRANCH": "
|
|
9
|
-
"NEXT_PUBLIC_SHEP_COMMIT": "
|
|
8
|
+
"NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
|
|
9
|
+
"NEXT_PUBLIC_SHEP_COMMIT": "d6f806a18eb630a95bdd09a604b44c3fe473362d",
|
|
10
10
|
"NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/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_SHEP_VERSION": "1.
|
|
5
|
+
"NEXT_PUBLIC_SHEP_VERSION": "1.123.0",
|
|
6
6
|
"NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
|
-
"NEXT_PUBLIC_SHEP_BRANCH": "
|
|
9
|
-
"NEXT_PUBLIC_SHEP_COMMIT": "
|
|
8
|
+
"NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
|
|
9
|
+
"NEXT_PUBLIC_SHEP_COMMIT": "d6f806a18eb630a95bdd09a604b44c3fe473362d",
|
|
10
10
|
"NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -90,6 +90,12 @@
|
|
|
90
90
|
"routeKeys": {},
|
|
91
91
|
"namedRegex": "^/_not\\-found(?:/)?$"
|
|
92
92
|
},
|
|
93
|
+
{
|
|
94
|
+
"page": "/adopt",
|
|
95
|
+
"regex": "^/adopt(?:/)?$",
|
|
96
|
+
"routeKeys": {},
|
|
97
|
+
"namedRegex": "^/adopt(?:/)?$"
|
|
98
|
+
},
|
|
93
99
|
{
|
|
94
100
|
"page": "/api/agent-events",
|
|
95
101
|
"regex": "^/api/agent\\-events(?:/)?$",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"devFiles": [],
|
|
3
|
+
"ampDevFiles": [],
|
|
4
|
+
"polyfillFiles": [
|
|
5
|
+
"static/chunks/a6dad97d9634a72d.js"
|
|
6
|
+
],
|
|
7
|
+
"lowPriorityFiles": [],
|
|
8
|
+
"rootMainFiles": [
|
|
9
|
+
"static/chunks/89aac43287d73b02.js",
|
|
10
|
+
"static/chunks/84a181ff3270fd9f.js",
|
|
11
|
+
"static/chunks/cfe4dc9904fcfddb.js",
|
|
12
|
+
"static/chunks/4b6cc9f65260f2bd.js",
|
|
13
|
+
"static/chunks/d4d8f0a137bd2eb4.js",
|
|
14
|
+
"static/chunks/turbopack-080e470ea902d0ba.js"
|
|
15
|
+
],
|
|
16
|
+
"pages": {},
|
|
17
|
+
"ampFirstPages": []
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": {
|
|
3
|
+
"00434def2bd648cfc724c571f8049b1d33330fed3a": {
|
|
4
|
+
"workers": {
|
|
5
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
6
|
+
"moduleId": 19386,
|
|
7
|
+
"async": false,
|
|
8
|
+
"exportedName": "pickFolder",
|
|
9
|
+
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"layer": {
|
|
13
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
14
|
+
},
|
|
15
|
+
"exportedName": "pickFolder",
|
|
16
|
+
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
17
|
+
},
|
|
18
|
+
"400e128f7c634e70b47c68fc7cecb49db80fdc48ed": {
|
|
19
|
+
"workers": {
|
|
20
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
21
|
+
"moduleId": 19386,
|
|
22
|
+
"async": false,
|
|
23
|
+
"exportedName": "getDeploymentLogs",
|
|
24
|
+
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"layer": {
|
|
28
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
29
|
+
},
|
|
30
|
+
"exportedName": "getDeploymentLogs",
|
|
31
|
+
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
32
|
+
},
|
|
33
|
+
"40a2d3317cbe6b6b33363165d7776b4521c02dc0f5": {
|
|
34
|
+
"workers": {
|
|
35
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
36
|
+
"moduleId": 19386,
|
|
37
|
+
"async": false,
|
|
38
|
+
"exportedName": "deployFeature",
|
|
39
|
+
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"layer": {
|
|
43
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
44
|
+
},
|
|
45
|
+
"exportedName": "deployFeature",
|
|
46
|
+
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
47
|
+
},
|
|
48
|
+
"400b0508cb7462692e50f22eeba3823e2c2b9fb100": {
|
|
49
|
+
"workers": {
|
|
50
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
51
|
+
"moduleId": 19386,
|
|
52
|
+
"async": false,
|
|
53
|
+
"exportedName": "deployRepository",
|
|
54
|
+
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"layer": {
|
|
58
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
59
|
+
},
|
|
60
|
+
"exportedName": "deployRepository",
|
|
61
|
+
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
62
|
+
},
|
|
63
|
+
"40ed5d2d14859a44b5503bbc4d6bad0293b8d43b11": {
|
|
64
|
+
"workers": {
|
|
65
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
66
|
+
"moduleId": 19386,
|
|
67
|
+
"async": false,
|
|
68
|
+
"exportedName": "stopDeployment",
|
|
69
|
+
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"layer": {
|
|
73
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
74
|
+
},
|
|
75
|
+
"exportedName": "stopDeployment",
|
|
76
|
+
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
77
|
+
},
|
|
78
|
+
"40f83079992eaf7fe590fe689c24330e0925fbb10d": {
|
|
79
|
+
"workers": {
|
|
80
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
81
|
+
"moduleId": 19386,
|
|
82
|
+
"async": false,
|
|
83
|
+
"exportedName": "getDeploymentStatus",
|
|
84
|
+
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"layer": {
|
|
88
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
89
|
+
},
|
|
90
|
+
"exportedName": "getDeploymentStatus",
|
|
91
|
+
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
92
|
+
},
|
|
93
|
+
"40a34c0eb959dd5d4ffe14876cf1d8ce1db3a8a0b0": {
|
|
94
|
+
"workers": {
|
|
95
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
96
|
+
"moduleId": 19386,
|
|
97
|
+
"async": false,
|
|
98
|
+
"exportedName": "openIde",
|
|
99
|
+
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"layer": {
|
|
103
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
104
|
+
},
|
|
105
|
+
"exportedName": "openIde",
|
|
106
|
+
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
107
|
+
},
|
|
108
|
+
"40e4d6da524f8caad0787f4d667be21cbcb61b1ab4": {
|
|
109
|
+
"workers": {
|
|
110
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
111
|
+
"moduleId": 19386,
|
|
112
|
+
"async": false,
|
|
113
|
+
"exportedName": "openShell",
|
|
114
|
+
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"layer": {
|
|
118
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
119
|
+
},
|
|
120
|
+
"exportedName": "openShell",
|
|
121
|
+
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
122
|
+
},
|
|
123
|
+
"40ccc3190b93f5f9be9647d667410ca14800cbef4a": {
|
|
124
|
+
"workers": {
|
|
125
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
126
|
+
"moduleId": 19386,
|
|
127
|
+
"async": false,
|
|
128
|
+
"exportedName": "openFolder",
|
|
129
|
+
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"layer": {
|
|
133
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
134
|
+
},
|
|
135
|
+
"exportedName": "openFolder",
|
|
136
|
+
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
137
|
+
},
|
|
138
|
+
"00b5fa4b6eaf5a2c39282d180856b031f4d8e88219": {
|
|
139
|
+
"workers": {
|
|
140
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
141
|
+
"moduleId": 19386,
|
|
142
|
+
"async": false,
|
|
143
|
+
"exportedName": "isAgentSetupComplete",
|
|
144
|
+
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"layer": {
|
|
148
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
149
|
+
},
|
|
150
|
+
"exportedName": "isAgentSetupComplete",
|
|
151
|
+
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
152
|
+
},
|
|
153
|
+
"0058d6860d4e5ea68228b9d728bc0750af637d11c4": {
|
|
154
|
+
"workers": {
|
|
155
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
156
|
+
"moduleId": 19386,
|
|
157
|
+
"async": false,
|
|
158
|
+
"exportedName": "checkAgentAuth",
|
|
159
|
+
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"layer": {
|
|
163
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
164
|
+
},
|
|
165
|
+
"exportedName": "checkAgentAuth",
|
|
166
|
+
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
167
|
+
},
|
|
168
|
+
"00493945c2f111b8220c6812e260b931cb7ee331f7": {
|
|
169
|
+
"workers": {
|
|
170
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
171
|
+
"moduleId": 19386,
|
|
172
|
+
"async": false,
|
|
173
|
+
"exportedName": "getAllAgentModels",
|
|
174
|
+
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"layer": {
|
|
178
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
179
|
+
},
|
|
180
|
+
"exportedName": "getAllAgentModels",
|
|
181
|
+
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
182
|
+
},
|
|
183
|
+
"60fb98e7c8028399b3d6785b84fff1f6e22154d110": {
|
|
184
|
+
"workers": {
|
|
185
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
186
|
+
"moduleId": 19386,
|
|
187
|
+
"async": false,
|
|
188
|
+
"exportedName": "updateAgentAndModel",
|
|
189
|
+
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"layer": {
|
|
193
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
194
|
+
},
|
|
195
|
+
"exportedName": "updateAgentAndModel",
|
|
196
|
+
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
197
|
+
},
|
|
198
|
+
"701144e3d4c1187984394e22ef575f5e3d5321b0e7": {
|
|
199
|
+
"workers": {
|
|
200
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
201
|
+
"moduleId": 19386,
|
|
202
|
+
"async": false,
|
|
203
|
+
"exportedName": "deleteFeature",
|
|
204
|
+
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"layer": {
|
|
208
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
209
|
+
},
|
|
210
|
+
"exportedName": "deleteFeature",
|
|
211
|
+
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
212
|
+
},
|
|
213
|
+
"40f2187a5c41c2e4754e2a9e891f6c95c9ae8f8be3": {
|
|
214
|
+
"workers": {
|
|
215
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
216
|
+
"moduleId": 19386,
|
|
217
|
+
"async": false,
|
|
218
|
+
"exportedName": "resumeFeature",
|
|
219
|
+
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"layer": {
|
|
223
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
224
|
+
},
|
|
225
|
+
"exportedName": "resumeFeature",
|
|
226
|
+
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
227
|
+
},
|
|
228
|
+
"406f2503e8f2686fc14751cf01ea9c9ed69bb6789e": {
|
|
229
|
+
"workers": {
|
|
230
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
231
|
+
"moduleId": 19386,
|
|
232
|
+
"async": false,
|
|
233
|
+
"exportedName": "startFeature",
|
|
234
|
+
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
"layer": {
|
|
238
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
239
|
+
},
|
|
240
|
+
"exportedName": "startFeature",
|
|
241
|
+
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
242
|
+
},
|
|
243
|
+
"40648dcaf7759d37a778f4a33f9e3ce6820461c860": {
|
|
244
|
+
"workers": {
|
|
245
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
246
|
+
"moduleId": 19386,
|
|
247
|
+
"async": false,
|
|
248
|
+
"exportedName": "stopFeature",
|
|
249
|
+
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"layer": {
|
|
253
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
254
|
+
},
|
|
255
|
+
"exportedName": "stopFeature",
|
|
256
|
+
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
257
|
+
},
|
|
258
|
+
"40606fd1b8a995ffb8d4bab13148dbcf230373e54e": {
|
|
259
|
+
"workers": {
|
|
260
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
261
|
+
"moduleId": 19386,
|
|
262
|
+
"async": false,
|
|
263
|
+
"exportedName": "addRepository",
|
|
264
|
+
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"layer": {
|
|
268
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
269
|
+
},
|
|
270
|
+
"exportedName": "addRepository",
|
|
271
|
+
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
272
|
+
},
|
|
273
|
+
"407eb72f7e86c61369ba525157623daae37ea7de7a": {
|
|
274
|
+
"workers": {
|
|
275
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
276
|
+
"moduleId": 19386,
|
|
277
|
+
"async": false,
|
|
278
|
+
"exportedName": "deleteRepository",
|
|
279
|
+
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"layer": {
|
|
283
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
284
|
+
},
|
|
285
|
+
"exportedName": "deleteRepository",
|
|
286
|
+
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
287
|
+
},
|
|
288
|
+
"405ef9b53a25bb0b8b148f9c1484734a643c2d9109": {
|
|
289
|
+
"workers": {
|
|
290
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
291
|
+
"moduleId": 19386,
|
|
292
|
+
"async": false,
|
|
293
|
+
"exportedName": "getFeatureMetadata",
|
|
294
|
+
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"layer": {
|
|
298
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
299
|
+
},
|
|
300
|
+
"exportedName": "getFeatureMetadata",
|
|
301
|
+
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
302
|
+
},
|
|
303
|
+
"40801b8b0e0a5d6c1049841bdde6e27f806644fc91": {
|
|
304
|
+
"workers": {
|
|
305
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
306
|
+
"moduleId": 19386,
|
|
307
|
+
"async": false,
|
|
308
|
+
"exportedName": "adoptBranch",
|
|
309
|
+
"filename": "src/presentation/web/app/actions/adopt-branch.ts"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"layer": {
|
|
313
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
314
|
+
},
|
|
315
|
+
"exportedName": "adoptBranch",
|
|
316
|
+
"filename": "src/presentation/web/app/actions/adopt-branch.ts"
|
|
317
|
+
},
|
|
318
|
+
"40b725e4ee1b20fdef4216a540ad068db36144e922": {
|
|
319
|
+
"workers": {
|
|
320
|
+
"app/(dashboard)/@drawer/adopt/page": {
|
|
321
|
+
"moduleId": 19386,
|
|
322
|
+
"async": false,
|
|
323
|
+
"exportedName": "listBranches",
|
|
324
|
+
"filename": "src/presentation/web/app/actions/list-branches.ts"
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
"layer": {
|
|
328
|
+
"app/(dashboard)/@drawer/adopt/page": "action-browser"
|
|
329
|
+
},
|
|
330
|
+
"exportedName": "listBranches",
|
|
331
|
+
"filename": "src/presentation/web/app/actions/list-branches.ts"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"edge": {}
|
|
335
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
var R=require("../../../../chunks/ssr/[turbopack]_runtime.js")("server/app/(dashboard)/@drawer/adopt/page.js")
|
|
2
|
+
R.c("server/chunks/ssr/[root-of-the-server]__e2227c0f._.js")
|
|
3
|
+
R.c("server/chunks/ssr/403f9_next_dist_1f3516d7._.js")
|
|
4
|
+
R.c("server/chunks/ssr/_d5206f22._.js")
|
|
5
|
+
R.c("server/chunks/ssr/[root-of-the-server]__2dddfea9._.js")
|
|
6
|
+
R.c("server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js")
|
|
7
|
+
R.c("server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js")
|
|
8
|
+
R.c("server/chunks/ssr/[root-of-the-server]__b14946f5._.js")
|
|
9
|
+
R.c("server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js")
|
|
10
|
+
R.c("server/chunks/ssr/_a37f5f18._.js")
|
|
11
|
+
R.c("server/chunks/ssr/src_presentation_web_app_not-found_tsx_64b86c46._.js")
|
|
12
|
+
R.c("server/chunks/ssr/403f9_next_dist_client_components_44deecdf._.js")
|
|
13
|
+
R.c("server/chunks/ssr/403f9_next_dist_client_components_builtin_unauthorized_a2906ebd.js")
|
|
14
|
+
R.c("server/chunks/ssr/[root-of-the-server]__6677a82c._.js")
|
|
15
|
+
R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
|
|
16
|
+
R.c("server/chunks/ssr/403f9_next_dist_client_components_94d75bc3._.js")
|
|
17
|
+
R.c("server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_cfc9281c.js")
|
|
18
|
+
R.c("server/chunks/ssr/[root-of-the-server]__14664e9b._.js")
|
|
19
|
+
R.m(40778)
|
|
20
|
+
module.exports=R.m(40778).exports
|