@shepai/cli 1.135.3 → 1.136.0-pr396.e077930
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/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts +91 -5
- package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.js +6 -4
- package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.d.ts +25 -0
- package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.js +62 -0
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.d.ts +34 -0
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.js +139 -0
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts +16 -0
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.js +43 -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 +4 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +20 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -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 +2 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.d.ts +11 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.js +17 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -2
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.d.ts +35 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.js +66 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts +42 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.js +169 -0
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +10 -0
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +150 -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 +5 -12
- package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts +2 -0
- package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/check-agent-auth.js +8 -1
- package/dist/src/presentation/web/app/actions/check-tool-status.d.ts +14 -0
- package/dist/src/presentation/web/app/actions/check-tool-status.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/check-tool-status.js +53 -0
- package/dist/src/presentation/web/app/actions/get-branch-sync-status.d.ts +11 -0
- package/dist/src/presentation/web/app/actions/get-branch-sync-status.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/get-branch-sync-status.js +22 -0
- package/dist/src/presentation/web/app/actions/rebase-feature.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/rebase-feature.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/rebase-feature.js +16 -0
- package/dist/src/presentation/web/app/actions/sync-repository.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/sync-repository.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/sync-repository.js +16 -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 +1 -9
- package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +16 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +4 -4
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.d.ts +4 -0
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.js +32 -1
- 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 +1 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts +12 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.js +13 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.js +86 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +9 -1
- 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 +2 -2
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts +9 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +3 -2
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts +6 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.js +30 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +17 -0
- 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 +91 -0
- 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 +54 -64
- 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 +85 -19
- package/dist/src/presentation/web/components/common/open-action-menu/open-action-menu.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/open-action-menu/open-action-menu.stories.js +3 -0
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +5 -3
- 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 +7 -5
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.d.ts +4 -0
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.js +11 -0
- 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 +35 -9
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.stories.d.ts +17 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.stories.js +110 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.d.ts +1 -0
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +443 -10
- 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 +3 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +3 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +5 -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 +1 -0
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -0
- package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/feature-flags-context.js +1 -0
- package/dist/src/presentation/web/hooks/use-branch-sync-status.d.ts +14 -0
- package/dist/src/presentation/web/hooks/use-branch-sync-status.d.ts.map +1 -0
- package/dist/src/presentation/web/hooks/use-branch-sync-status.js +67 -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 +5 -0
- 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/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 +78 -48
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +3 -3
- 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 +78 -48
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
- 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 +120 -60
- 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/server-reference-manifest.json +120 -60
- 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/server-reference-manifest.json +74 -44
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +3 -3
- 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 +78 -48
- package/web/.next/server/app/(dashboard)/create/page.js +3 -3
- 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 +120 -60
- 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/server-reference-manifest.json +120 -60
- 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/server-reference-manifest.json +74 -44
- package/web/.next/server/app/(dashboard)/page.js +3 -3
- 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 +74 -44
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +3 -3
- 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.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.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 +1 -1
- 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 +1 -1
- 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.js.nft.json +1 -1
- 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/[root-of-the-server]__a402b567._.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.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]__1626f5d7._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1626f5d7._.js.map +1 -0
- 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]__49557873._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__49557873._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.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]__90fdc0ee._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__90fdc0ee._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__96670392._.js → [root-of-the-server]__a5f9c6e5._.js} +3 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a7259d16._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a7259d16._.js.map +1 -0
- 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]__cb850066._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__cb850066._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__7894f27f._.js.map → [root-of-the-server]__d48c5b11._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0020fddd._.js +1 -1
- package/web/.next/server/chunks/ssr/_0020fddd._.js.map +1 -1
- 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/{_d17bc20a._.js → _13f3c0ec._.js} +2 -2
- package/web/.next/server/chunks/ssr/_13f3c0ec._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_149f6559._.js +4 -0
- package/web/.next/server/chunks/ssr/_149f6559._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_1a09002f._.js +4 -0
- package/web/.next/server/chunks/ssr/_1a09002f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_48a8ee28._.js +6 -0
- package/web/.next/server/chunks/ssr/_48a8ee28._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_51ed80a4._.js +3 -0
- package/web/.next/server/chunks/ssr/_51ed80a4._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_6e8c85b1._.js +6 -0
- package/web/.next/server/chunks/ssr/_6e8c85b1._.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/_83220ba0._.js +4 -0
- package/web/.next/server/chunks/ssr/_83220ba0._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_939287c5._.js +4 -0
- package/web/.next/server/chunks/ssr/_939287c5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a37f5f18._.js +1 -1
- package/web/.next/server/chunks/ssr/_a37f5f18._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_a9f57758._.js +1 -1
- package/web/.next/server/chunks/ssr/_a9f57758._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_cfbd1d7e._.js +3 -0
- package/web/.next/server/chunks/ssr/_cfbd1d7e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -1
- 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_127fb482._.js → src_presentation_web_28f803bd._.js} +2 -2
- package/web/.next/server/chunks/ssr/{src_presentation_web_127fb482._.js.map → src_presentation_web_28f803bd._.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/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +524 -296
- package/web/.next/static/chunks/031e65a4305571f7.js +1 -0
- package/web/.next/static/chunks/{fdc719494dcd9c92.js → 132d824e337f12fe.js} +2 -2
- package/web/.next/static/chunks/{8c42b7752187f48c.js → 20a66a7159b97299.js} +2 -2
- package/web/.next/static/chunks/{d8a0dd9bfd0f22fa.js → 4148e7a319ea7ec4.js} +1 -1
- package/web/.next/static/chunks/{9154973d61eae190.js → 5f67ffe1879b8536.js} +1 -1
- package/web/.next/static/chunks/6a370f2709c81d83.js +1 -0
- package/web/.next/static/chunks/6bfc9e17e141ac36.js +1 -0
- package/web/.next/static/chunks/9db1dd8ad063626c.js +1 -0
- package/web/.next/static/chunks/{61f7d4f0f0f770a4.js → aa2236a4b7c3bd45.js} +1 -1
- package/web/.next/static/chunks/ab3afb0b942c1eb2.css +1 -0
- package/web/.next/static/chunks/b3cc94a1e319bee8.js +1 -0
- package/web/.next/static/chunks/{d5342f9be437afd9.js → ed248df9e975fd1f.js} +1 -1
- package/web/.next/static/chunks/{1a9dfc34432387f5.js → eeec829933170d8a.js} +1 -1
- package/web/.next/static/chunks/{7875a9370622a064.js → f010c3293515ab73.js} +1 -1
- package/web/.next/static/chunks/{0b7fe2ac4f078f54.js → f070c67389a686ff.js} +1 -1
- package/web/.next/static/chunks/f66c996402a430f5.js +1 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4e741df2.js +0 -3
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4e741df2.js.map +0 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_026fdffa.js +0 -3
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_026fdffa.js.map +0 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_8b91e197.js +0 -3
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_8b91e197.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__31bc28da._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__31bc28da._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__32ecbed9._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__32ecbed9._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7894f27f._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__90ce4b6d._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__90ce4b6d._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__90f9ae71._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__90f9ae71._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__96670392._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9c45d070._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9c45d070._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b3dbadca._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b3dbadca._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_313c9690._.js +0 -3
- package/web/.next/server/chunks/ssr/_313c9690._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_b6960ca0._.js +0 -4
- package/web/.next/server/chunks/ssr/_b6960ca0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_d17bc20a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +0 -3
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_8e7fe0d1._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_8e7fe0d1._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_ca051134.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_ca051134.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_b9023017._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_b9023017._.js.map +0 -1
- package/web/.next/static/chunks/15e6a74ef39fda73.js +0 -1
- package/web/.next/static/chunks/314b8314f77d6921.js +0 -1
- package/web/.next/static/chunks/3e2d7d07926b05bf.css +0 -1
- package/web/.next/static/chunks/55a1c86671bb1a5b.js +0 -1
- package/web/.next/static/chunks/c0c287da1631752f.js +0 -1
- package/web/.next/static/chunks/e6b87832e1382949.js +0 -1
- package/web/.next/static/chunks/eb9841ec4d80af01.js +0 -1
- /package/web/.next/static/{p0KCxpQ0DqKcttVypdnix → 8o0yazCw1kyy56LNhgtTp}/_buildManifest.js +0 -0
- /package/web/.next/static/{p0KCxpQ0DqKcttVypdnix → 8o0yazCw1kyy56LNhgtTp}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{p0KCxpQ0DqKcttVypdnix → 8o0yazCw1kyy56LNhgtTp}/_ssgManifest.js +0 -0
package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { fn } from '@storybook/test';
|
|
3
|
+
import { DeploymentState, PrStatus, CiStatus } from '../../../../../../packages/core/src/domain/generated/output.js';
|
|
2
4
|
import { FeaturesCanvas } from './features-canvas.js';
|
|
3
5
|
import { layoutWithDagre } from '../../../lib/layout-with-dagre.js';
|
|
4
6
|
import { DEFAULT_VIEWPORT } from '../../../hooks/use-viewport-persistence.js';
|
|
@@ -36,13 +38,20 @@ const multipleNodes = [
|
|
|
36
38
|
position: { x: 50, y: 50 },
|
|
37
39
|
data: {
|
|
38
40
|
name: 'Auth Module',
|
|
39
|
-
description: 'OAuth2 authentication flow',
|
|
40
|
-
featureId: '
|
|
41
|
+
description: 'OAuth2 authentication flow with SSO support',
|
|
42
|
+
featureId: 'a1b2c3d4-e5f6-7890-abcd-ef1234567890',
|
|
41
43
|
lifecycle: 'implementation',
|
|
42
44
|
state: 'running',
|
|
43
45
|
progress: 65,
|
|
44
46
|
repositoryPath: '/home/user/my-repo',
|
|
47
|
+
repositoryName: 'my-repo',
|
|
45
48
|
branch: 'feat/auth-module',
|
|
49
|
+
worktreePath: '/home/user/.shep/repos/abc123/wt/feat-auth-module',
|
|
50
|
+
agentType: 'claude-code',
|
|
51
|
+
modelId: 'claude-sonnet-4-6',
|
|
52
|
+
hasAgentRun: true,
|
|
53
|
+
hasPlan: true,
|
|
54
|
+
deployment: { status: DeploymentState.Ready, url: 'http://localhost:3001' },
|
|
46
55
|
},
|
|
47
56
|
},
|
|
48
57
|
{
|
|
@@ -51,13 +60,19 @@ const multipleNodes = [
|
|
|
51
60
|
position: { x: 450, y: 50 },
|
|
52
61
|
data: {
|
|
53
62
|
name: 'User Dashboard',
|
|
54
|
-
description: 'Main user dashboard view',
|
|
55
|
-
featureId: '
|
|
63
|
+
description: 'Main user dashboard view with analytics widgets',
|
|
64
|
+
featureId: 'b2c3d4e5-f6a7-8901-bcde-f12345678901',
|
|
56
65
|
lifecycle: 'research',
|
|
57
66
|
state: 'action-required',
|
|
58
67
|
progress: 20,
|
|
59
68
|
repositoryPath: '/home/user/my-repo',
|
|
69
|
+
repositoryName: 'my-repo',
|
|
60
70
|
branch: 'feat/user-dashboard',
|
|
71
|
+
worktreePath: '/home/user/.shep/repos/abc123/wt/feat-user-dashboard',
|
|
72
|
+
agentType: 'cursor',
|
|
73
|
+
modelId: 'claude-opus-4-6',
|
|
74
|
+
hasAgentRun: true,
|
|
75
|
+
hasPlan: false,
|
|
61
76
|
},
|
|
62
77
|
},
|
|
63
78
|
{
|
|
@@ -67,12 +82,27 @@ const multipleNodes = [
|
|
|
67
82
|
data: {
|
|
68
83
|
name: 'API Gateway',
|
|
69
84
|
description: 'Rate limiting and routing',
|
|
70
|
-
featureId: '
|
|
85
|
+
featureId: 'c3d4e5f6-a7b8-9012-cdef-123456789012',
|
|
71
86
|
lifecycle: 'deploy',
|
|
72
87
|
state: 'done',
|
|
73
88
|
progress: 100,
|
|
89
|
+
runtime: '1h 42m',
|
|
74
90
|
repositoryPath: '/home/user/my-repo',
|
|
91
|
+
repositoryName: 'my-repo',
|
|
75
92
|
branch: 'feat/api-gateway',
|
|
93
|
+
worktreePath: '/home/user/.shep/repos/abc123/wt/feat-api-gateway',
|
|
94
|
+
agentType: 'claude-code',
|
|
95
|
+
modelId: 'claude-sonnet-4-6',
|
|
96
|
+
fastMode: true,
|
|
97
|
+
hasAgentRun: true,
|
|
98
|
+
hasPlan: true,
|
|
99
|
+
pr: {
|
|
100
|
+
url: 'https://github.com/user/my-repo/pull/42',
|
|
101
|
+
number: 42,
|
|
102
|
+
status: PrStatus.Merged,
|
|
103
|
+
ciStatus: CiStatus.Success,
|
|
104
|
+
},
|
|
105
|
+
deployment: { status: DeploymentState.Ready, url: 'http://localhost:3002' },
|
|
76
106
|
},
|
|
77
107
|
},
|
|
78
108
|
{
|
|
@@ -82,12 +112,25 @@ const multipleNodes = [
|
|
|
82
112
|
data: {
|
|
83
113
|
name: 'Payment Integration',
|
|
84
114
|
description: 'Stripe payment processing',
|
|
85
|
-
featureId: '
|
|
115
|
+
featureId: 'd4e5f6a7-b8c9-0123-defa-234567890123',
|
|
86
116
|
lifecycle: 'review',
|
|
87
|
-
state: '
|
|
88
|
-
progress:
|
|
117
|
+
state: 'action-required',
|
|
118
|
+
progress: 85,
|
|
89
119
|
repositoryPath: '/home/user/my-repo',
|
|
120
|
+
repositoryName: 'my-repo',
|
|
90
121
|
branch: 'feat/payment-integration',
|
|
122
|
+
worktreePath: '/home/user/.shep/repos/abc123/wt/feat-payment-integration',
|
|
123
|
+
agentType: 'gemini-cli',
|
|
124
|
+
modelId: 'gemini-2.5-pro',
|
|
125
|
+
hasAgentRun: true,
|
|
126
|
+
hasPlan: true,
|
|
127
|
+
pr: {
|
|
128
|
+
url: 'https://github.com/user/my-repo/pull/43',
|
|
129
|
+
number: 43,
|
|
130
|
+
status: PrStatus.Open,
|
|
131
|
+
ciStatus: CiStatus.Pending,
|
|
132
|
+
mergeable: true,
|
|
133
|
+
},
|
|
91
134
|
},
|
|
92
135
|
},
|
|
93
136
|
{
|
|
@@ -96,13 +139,21 @@ const multipleNodes = [
|
|
|
96
139
|
position: { x: 850, y: 165 },
|
|
97
140
|
data: {
|
|
98
141
|
name: 'Email Service',
|
|
99
|
-
description: 'Transactional email delivery',
|
|
100
|
-
featureId: '
|
|
142
|
+
description: 'Transactional email delivery with SendGrid',
|
|
143
|
+
featureId: 'e5f6a7b8-c9d0-1234-efab-345678901234',
|
|
101
144
|
lifecycle: 'implementation',
|
|
102
145
|
state: 'error',
|
|
103
146
|
progress: 30,
|
|
104
147
|
repositoryPath: '/home/user/my-repo',
|
|
148
|
+
repositoryName: 'my-repo',
|
|
105
149
|
branch: 'feat/email-service',
|
|
150
|
+
worktreePath: '/home/user/.shep/repos/abc123/wt/feat-email-service',
|
|
151
|
+
agentType: 'aider',
|
|
152
|
+
modelId: 'claude-sonnet-4-6',
|
|
153
|
+
hasAgentRun: true,
|
|
154
|
+
hasPlan: true,
|
|
155
|
+
errorMessage: 'Build failed: Cannot find module @sendgrid/mail',
|
|
156
|
+
onRetry: fn(),
|
|
106
157
|
},
|
|
107
158
|
},
|
|
108
159
|
];
|
|
@@ -601,3 +652,385 @@ export const FastModeFeatures = {
|
|
|
601
652
|
edges: fastModeLayoutedEdges,
|
|
602
653
|
},
|
|
603
654
|
};
|
|
655
|
+
// --- Full Spectrum: Every real production state in one view ---
|
|
656
|
+
// Manually positioned in logical groups, no repository nodes, no dagre.
|
|
657
|
+
//
|
|
658
|
+
// Layout (4 columns):
|
|
659
|
+
// Col 1: SDLC Pipeline Col 2: Approval Gates Col 3: Terminal States Col 4: Special States
|
|
660
|
+
// creating PRD approve done (deploy&qa) blocked
|
|
661
|
+
// running (reqs) plan approve done (maintain) error
|
|
662
|
+
// running (research) merge approve fast done deleting
|
|
663
|
+
// running (impl) pending
|
|
664
|
+
// running (review) fast running
|
|
665
|
+
const COL = [0, 420, 840, 1260];
|
|
666
|
+
const ROW_H = 210;
|
|
667
|
+
const fullSpectrumNodes = [
|
|
668
|
+
// ── Column 1: SDLC Pipeline (running through phases) ──
|
|
669
|
+
{
|
|
670
|
+
id: 'feat-creating',
|
|
671
|
+
type: 'featureNode',
|
|
672
|
+
position: { x: COL[0], y: 0 },
|
|
673
|
+
data: {
|
|
674
|
+
name: 'Dark Mode Theme',
|
|
675
|
+
description: 'System-wide dark mode with theme switching',
|
|
676
|
+
featureId: '',
|
|
677
|
+
lifecycle: 'requirements',
|
|
678
|
+
state: 'creating',
|
|
679
|
+
progress: 0,
|
|
680
|
+
repositoryPath: '/home/dev/platform',
|
|
681
|
+
repositoryName: 'platform',
|
|
682
|
+
branch: '',
|
|
683
|
+
},
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
id: 'feat-running-reqs',
|
|
687
|
+
type: 'featureNode',
|
|
688
|
+
position: { x: COL[0], y: ROW_H },
|
|
689
|
+
data: {
|
|
690
|
+
name: 'OAuth2 SSO Integration',
|
|
691
|
+
description: 'Enterprise SSO with SAML and OIDC providers',
|
|
692
|
+
featureId: 'f7a3b1c9-4e2d-48f6-9a1b-3c5d7e9f0a2b',
|
|
693
|
+
lifecycle: 'requirements',
|
|
694
|
+
state: 'running',
|
|
695
|
+
progress: 15,
|
|
696
|
+
agentType: 'claude-code',
|
|
697
|
+
modelId: 'claude-sonnet-4-6',
|
|
698
|
+
repositoryPath: '/home/dev/platform',
|
|
699
|
+
repositoryName: 'platform',
|
|
700
|
+
branch: 'feat/oauth2-sso',
|
|
701
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-oauth2-sso',
|
|
702
|
+
hasAgentRun: true,
|
|
703
|
+
},
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
id: 'feat-running-research',
|
|
707
|
+
type: 'featureNode',
|
|
708
|
+
position: { x: COL[0], y: ROW_H * 2 },
|
|
709
|
+
data: {
|
|
710
|
+
name: 'Real-time Notifications',
|
|
711
|
+
description: 'WebSocket push notifications with service worker',
|
|
712
|
+
featureId: 'b9d1e3f5-7a2c-4b6e-8d0f-1a3c5e7b9d2f',
|
|
713
|
+
lifecycle: 'research',
|
|
714
|
+
state: 'running',
|
|
715
|
+
progress: 35,
|
|
716
|
+
agentType: 'cursor',
|
|
717
|
+
modelId: 'claude-opus-4-6',
|
|
718
|
+
repositoryPath: '/home/dev/platform',
|
|
719
|
+
repositoryName: 'platform',
|
|
720
|
+
branch: 'feat/notifications',
|
|
721
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-notifications',
|
|
722
|
+
hasAgentRun: true,
|
|
723
|
+
},
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
id: 'feat-running-impl',
|
|
727
|
+
type: 'featureNode',
|
|
728
|
+
position: { x: COL[0], y: ROW_H * 3 },
|
|
729
|
+
data: {
|
|
730
|
+
name: 'Search Engine',
|
|
731
|
+
description: 'Full-text search with Elasticsearch',
|
|
732
|
+
featureId: 'a1e3c5d7-9b2f-4a6e-8c0d-f2a4b6d8e0c3',
|
|
733
|
+
lifecycle: 'implementation',
|
|
734
|
+
state: 'running',
|
|
735
|
+
progress: 60,
|
|
736
|
+
agentType: 'gemini-cli',
|
|
737
|
+
modelId: 'gemini-2.5-pro',
|
|
738
|
+
repositoryPath: '/home/dev/platform',
|
|
739
|
+
repositoryName: 'platform',
|
|
740
|
+
branch: 'feat/search',
|
|
741
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-search',
|
|
742
|
+
hasAgentRun: true,
|
|
743
|
+
hasPlan: true,
|
|
744
|
+
deployment: { status: DeploymentState.Booting },
|
|
745
|
+
},
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
id: 'feat-running-review',
|
|
749
|
+
type: 'featureNode',
|
|
750
|
+
position: { x: COL[0], y: ROW_H * 4 },
|
|
751
|
+
data: {
|
|
752
|
+
name: 'Audit Logging',
|
|
753
|
+
description: 'Comprehensive audit trail for compliance',
|
|
754
|
+
featureId: 'd8f0a2b4-c6e8-4d1f-a3b5-c7e9d1f3a5b7',
|
|
755
|
+
lifecycle: 'review',
|
|
756
|
+
state: 'running',
|
|
757
|
+
progress: 80,
|
|
758
|
+
agentType: 'claude-code',
|
|
759
|
+
modelId: 'claude-sonnet-4-6',
|
|
760
|
+
repositoryPath: '/home/dev/platform',
|
|
761
|
+
repositoryName: 'platform',
|
|
762
|
+
branch: 'feat/audit-log',
|
|
763
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-audit-log',
|
|
764
|
+
hasAgentRun: true,
|
|
765
|
+
hasPlan: true,
|
|
766
|
+
pr: {
|
|
767
|
+
url: 'https://github.com/acme/platform/pull/142',
|
|
768
|
+
number: 142,
|
|
769
|
+
status: PrStatus.Open,
|
|
770
|
+
ciStatus: CiStatus.Pending,
|
|
771
|
+
},
|
|
772
|
+
deployment: { status: DeploymentState.Ready, url: 'http://localhost:4001' },
|
|
773
|
+
},
|
|
774
|
+
},
|
|
775
|
+
// ── Column 2: Approval Gates ──
|
|
776
|
+
{
|
|
777
|
+
id: 'feat-approve-prd',
|
|
778
|
+
type: 'featureNode',
|
|
779
|
+
position: { x: COL[1], y: 0 },
|
|
780
|
+
data: {
|
|
781
|
+
name: 'Payment Processing',
|
|
782
|
+
description: 'Stripe integration — awaiting PRD approval',
|
|
783
|
+
featureId: 'e2c8d4a6-1b3f-47e9-8d5c-a0f2b4e6c8d1',
|
|
784
|
+
lifecycle: 'requirements',
|
|
785
|
+
state: 'action-required',
|
|
786
|
+
progress: 25,
|
|
787
|
+
agentType: 'claude-code',
|
|
788
|
+
modelId: 'claude-sonnet-4-6',
|
|
789
|
+
repositoryPath: '/home/dev/platform',
|
|
790
|
+
repositoryName: 'platform',
|
|
791
|
+
branch: 'feat/payments',
|
|
792
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-payments',
|
|
793
|
+
hasAgentRun: true,
|
|
794
|
+
hasPlan: false,
|
|
795
|
+
},
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
id: 'feat-approve-plan',
|
|
799
|
+
type: 'featureNode',
|
|
800
|
+
position: { x: COL[1], y: ROW_H },
|
|
801
|
+
data: {
|
|
802
|
+
name: 'GraphQL API Layer',
|
|
803
|
+
description: 'Replace REST endpoints with GraphQL schema, resolvers, and client-side codegen for type-safe queries',
|
|
804
|
+
featureId: 'c4a6b8d0-2e4f-49a1-b3c5-d7e9f1a3b5c7',
|
|
805
|
+
lifecycle: 'implementation',
|
|
806
|
+
state: 'action-required',
|
|
807
|
+
progress: 45,
|
|
808
|
+
agentType: 'claude-code',
|
|
809
|
+
modelId: 'claude-sonnet-4-6',
|
|
810
|
+
repositoryPath: '/home/dev/platform',
|
|
811
|
+
repositoryName: 'platform',
|
|
812
|
+
branch: 'feat/graphql',
|
|
813
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-graphql',
|
|
814
|
+
hasAgentRun: true,
|
|
815
|
+
hasPlan: true,
|
|
816
|
+
},
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
id: 'feat-approve-merge',
|
|
820
|
+
type: 'featureNode',
|
|
821
|
+
position: { x: COL[1], y: ROW_H * 2 },
|
|
822
|
+
data: {
|
|
823
|
+
name: 'Rate Limiter',
|
|
824
|
+
description: 'Sliding window — awaiting merge approval',
|
|
825
|
+
featureId: '3b5d7f9a-1c3e-4a6b-8d0e-f2a4c6e8b0d2',
|
|
826
|
+
lifecycle: 'review',
|
|
827
|
+
state: 'action-required',
|
|
828
|
+
progress: 90,
|
|
829
|
+
agentType: 'claude-code',
|
|
830
|
+
modelId: 'claude-sonnet-4-6',
|
|
831
|
+
repositoryPath: '/home/dev/platform',
|
|
832
|
+
repositoryName: 'platform',
|
|
833
|
+
branch: 'feat/rate-limiter',
|
|
834
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-rate-limiter',
|
|
835
|
+
hasAgentRun: true,
|
|
836
|
+
hasPlan: true,
|
|
837
|
+
pr: {
|
|
838
|
+
url: 'https://github.com/acme/platform/pull/143',
|
|
839
|
+
number: 143,
|
|
840
|
+
status: PrStatus.Open,
|
|
841
|
+
ciStatus: CiStatus.Success,
|
|
842
|
+
mergeable: true,
|
|
843
|
+
},
|
|
844
|
+
deployment: { status: DeploymentState.Ready, url: 'http://localhost:4002' },
|
|
845
|
+
},
|
|
846
|
+
},
|
|
847
|
+
// ── Column 3: Terminal States ──
|
|
848
|
+
{
|
|
849
|
+
id: 'feat-done-deploy',
|
|
850
|
+
type: 'featureNode',
|
|
851
|
+
position: { x: COL[2], y: 0 },
|
|
852
|
+
data: {
|
|
853
|
+
name: 'User Dashboard',
|
|
854
|
+
description: 'Analytics dashboard — merged',
|
|
855
|
+
featureId: '5e7a9c1b-3d5f-4a8c-b0e2-d4f6a8c0e2b4',
|
|
856
|
+
lifecycle: 'deploy',
|
|
857
|
+
state: 'done',
|
|
858
|
+
progress: 100,
|
|
859
|
+
runtime: '2h 15m',
|
|
860
|
+
agentType: 'claude-code',
|
|
861
|
+
modelId: 'claude-sonnet-4-6',
|
|
862
|
+
repositoryPath: '/home/dev/platform',
|
|
863
|
+
repositoryName: 'platform',
|
|
864
|
+
branch: 'feat/dashboard',
|
|
865
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-dashboard',
|
|
866
|
+
hasAgentRun: true,
|
|
867
|
+
hasPlan: true,
|
|
868
|
+
pr: {
|
|
869
|
+
url: 'https://github.com/acme/platform/pull/140',
|
|
870
|
+
number: 140,
|
|
871
|
+
status: PrStatus.Merged,
|
|
872
|
+
ciStatus: CiStatus.Success,
|
|
873
|
+
},
|
|
874
|
+
deployment: { status: DeploymentState.Ready, url: 'http://localhost:4003' },
|
|
875
|
+
},
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
id: 'feat-done-maintain',
|
|
879
|
+
type: 'featureNode',
|
|
880
|
+
position: { x: COL[2], y: ROW_H },
|
|
881
|
+
data: {
|
|
882
|
+
name: 'CI Pipeline Setup',
|
|
883
|
+
description: 'GitHub Actions CI/CD — completed',
|
|
884
|
+
featureId: '7c9e1a3b-5d7f-4b9d-c1e3-f5a7b9d1e3c5',
|
|
885
|
+
lifecycle: 'maintain',
|
|
886
|
+
state: 'done',
|
|
887
|
+
progress: 100,
|
|
888
|
+
runtime: '45m',
|
|
889
|
+
agentType: 'claude-code',
|
|
890
|
+
modelId: 'claude-sonnet-4-6',
|
|
891
|
+
repositoryPath: '/home/dev/platform',
|
|
892
|
+
repositoryName: 'platform',
|
|
893
|
+
branch: 'feat/ci-pipeline',
|
|
894
|
+
hasAgentRun: true,
|
|
895
|
+
hasPlan: true,
|
|
896
|
+
pr: {
|
|
897
|
+
url: 'https://github.com/acme/platform/pull/120',
|
|
898
|
+
number: 120,
|
|
899
|
+
status: PrStatus.Merged,
|
|
900
|
+
ciStatus: CiStatus.Success,
|
|
901
|
+
},
|
|
902
|
+
},
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
id: 'feat-fast-done',
|
|
906
|
+
type: 'featureNode',
|
|
907
|
+
position: { x: COL[2], y: ROW_H * 2 },
|
|
908
|
+
data: {
|
|
909
|
+
name: 'Update README',
|
|
910
|
+
description: 'Fast mode — completed and merged',
|
|
911
|
+
featureId: '1a3b5c7d-9e1f-4a3b-c5d7-e9f1a3b5c7d9',
|
|
912
|
+
lifecycle: 'deploy',
|
|
913
|
+
state: 'done',
|
|
914
|
+
progress: 100,
|
|
915
|
+
runtime: '8m',
|
|
916
|
+
fastMode: true,
|
|
917
|
+
agentType: 'claude-code',
|
|
918
|
+
modelId: 'claude-sonnet-4-6',
|
|
919
|
+
repositoryPath: '/home/dev/platform',
|
|
920
|
+
repositoryName: 'platform',
|
|
921
|
+
branch: 'feat/update-readme',
|
|
922
|
+
hasAgentRun: true,
|
|
923
|
+
pr: {
|
|
924
|
+
url: 'https://github.com/acme/platform/pull/145',
|
|
925
|
+
number: 145,
|
|
926
|
+
status: PrStatus.Merged,
|
|
927
|
+
ciStatus: CiStatus.Success,
|
|
928
|
+
},
|
|
929
|
+
},
|
|
930
|
+
},
|
|
931
|
+
// ── Column 4: Special States ──
|
|
932
|
+
{
|
|
933
|
+
id: 'feat-blocked',
|
|
934
|
+
type: 'featureNode',
|
|
935
|
+
position: { x: COL[3], y: 0 },
|
|
936
|
+
data: {
|
|
937
|
+
name: 'Admin Panel',
|
|
938
|
+
description: 'Blocked — waiting on OAuth2 SSO',
|
|
939
|
+
featureId: '9d1f3a5b-7c9e-4d1f-a3b5-c7e9f1a3b5d7',
|
|
940
|
+
lifecycle: 'requirements',
|
|
941
|
+
state: 'blocked',
|
|
942
|
+
progress: 0,
|
|
943
|
+
blockedBy: 'OAuth2 SSO Integration',
|
|
944
|
+
repositoryPath: '/home/dev/platform',
|
|
945
|
+
repositoryName: 'platform',
|
|
946
|
+
branch: 'feat/admin-panel',
|
|
947
|
+
},
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
id: 'feat-error',
|
|
951
|
+
type: 'featureNode',
|
|
952
|
+
position: { x: COL[3], y: ROW_H },
|
|
953
|
+
data: {
|
|
954
|
+
name: 'Email Service',
|
|
955
|
+
description: 'Agent crashed during implementation',
|
|
956
|
+
featureId: 'ab3c5e7f-9d1a-4b6c-8e0f-2a4d6c8e0b3f',
|
|
957
|
+
lifecycle: 'implementation',
|
|
958
|
+
state: 'error',
|
|
959
|
+
progress: 55,
|
|
960
|
+
errorMessage: 'ENOMEM — out of memory during test execution',
|
|
961
|
+
agentType: 'aider',
|
|
962
|
+
modelId: 'claude-sonnet-4-6',
|
|
963
|
+
repositoryPath: '/home/dev/platform',
|
|
964
|
+
repositoryName: 'platform',
|
|
965
|
+
branch: 'feat/email-service',
|
|
966
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-email-service',
|
|
967
|
+
hasAgentRun: true,
|
|
968
|
+
hasPlan: true,
|
|
969
|
+
onRetry: fn(),
|
|
970
|
+
},
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
id: 'feat-deleting',
|
|
974
|
+
type: 'featureNode',
|
|
975
|
+
position: { x: COL[3], y: ROW_H * 2 },
|
|
976
|
+
data: {
|
|
977
|
+
name: 'Legacy REST API',
|
|
978
|
+
description: 'Deletion in progress — cleaning up',
|
|
979
|
+
featureId: 'cd5e7a9b-1d3f-4c8e-a0b2-d4f6a8c0e2d4',
|
|
980
|
+
lifecycle: 'implementation',
|
|
981
|
+
state: 'deleting',
|
|
982
|
+
progress: 0,
|
|
983
|
+
agentType: 'claude-code',
|
|
984
|
+
repositoryPath: '/home/dev/platform',
|
|
985
|
+
repositoryName: 'platform',
|
|
986
|
+
branch: 'feat/legacy-rest',
|
|
987
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-legacy-rest',
|
|
988
|
+
hasAgentRun: true,
|
|
989
|
+
},
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
id: 'feat-pending',
|
|
993
|
+
type: 'featureNode',
|
|
994
|
+
position: { x: COL[3], y: ROW_H * 3 },
|
|
995
|
+
data: {
|
|
996
|
+
name: 'Internationalization',
|
|
997
|
+
description: 'Deferred — waiting for manual start',
|
|
998
|
+
featureId: '00000001-0000-0000-0000-000000000001',
|
|
999
|
+
lifecycle: 'pending',
|
|
1000
|
+
state: 'pending',
|
|
1001
|
+
progress: 0,
|
|
1002
|
+
repositoryPath: '/home/dev/platform',
|
|
1003
|
+
repositoryName: 'platform',
|
|
1004
|
+
branch: 'feat/i18n',
|
|
1005
|
+
onStart: fn(),
|
|
1006
|
+
},
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
id: 'feat-fast-running',
|
|
1010
|
+
type: 'featureNode',
|
|
1011
|
+
position: { x: COL[3], y: ROW_H * 4 },
|
|
1012
|
+
data: {
|
|
1013
|
+
name: 'Fix Login Redirect Bug',
|
|
1014
|
+
description: 'Fast mode — direct implementation',
|
|
1015
|
+
featureId: 'ef7a9c1b-3e5d-4f8a-b2c4-d6e8f0a2c4b6',
|
|
1016
|
+
lifecycle: 'implementation',
|
|
1017
|
+
state: 'running',
|
|
1018
|
+
progress: 40,
|
|
1019
|
+
fastMode: true,
|
|
1020
|
+
agentType: 'claude-code',
|
|
1021
|
+
modelId: 'claude-sonnet-4-6',
|
|
1022
|
+
repositoryPath: '/home/dev/platform',
|
|
1023
|
+
repositoryName: 'platform',
|
|
1024
|
+
branch: 'feat/fix-login-redirect',
|
|
1025
|
+
worktreePath: '/home/dev/.shep/repos/abc/wt/feat-fix-login-redirect',
|
|
1026
|
+
hasAgentRun: true,
|
|
1027
|
+
},
|
|
1028
|
+
},
|
|
1029
|
+
];
|
|
1030
|
+
export const FullSpectrum = {
|
|
1031
|
+
name: 'Full Spectrum (All Real States)',
|
|
1032
|
+
args: {
|
|
1033
|
+
nodes: fullSpectrumNodes,
|
|
1034
|
+
edges: [],
|
|
1035
|
+
},
|
|
1036
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-flags-settings-section.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/feature-flags-settings-section.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sCAAsC,CAAC;
|
|
1
|
+
{"version":3,"file":"feature-flags-settings-section.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/feature-flags-settings-section.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sCAAsC,CAAC;AAiCzE,MAAM,WAAW,gCAAgC;IAC/C,YAAY,EAAE,YAAY,CAAC;CAC5B;AAED,wBAAgB,2BAA2B,CAAC,EAAE,YAAY,EAAE,EAAE,gCAAgC,2CAgE7F"}
|
package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js
CHANGED
|
@@ -13,6 +13,7 @@ const FLAG_DESCRIPTIONS = {
|
|
|
13
13
|
debug: 'Enable debug UI elements and verbose client-side logging',
|
|
14
14
|
githubImport: 'Enable GitHub repository import in the web UI',
|
|
15
15
|
adoptBranch: 'Enable the ability to adopt existing branches as tracked features',
|
|
16
|
+
gitRebaseSync: 'Enable git rebase-on-main and sync-main operations in the web UI',
|
|
16
17
|
reactFileManager: 'Use the built-in React file manager instead of the native OS folder picker. Also serves as automatic fallback when the native picker is unavailable.',
|
|
17
18
|
};
|
|
18
19
|
const FLAG_LABELS = {
|
|
@@ -21,6 +22,7 @@ const FLAG_LABELS = {
|
|
|
21
22
|
debug: 'Debug',
|
|
22
23
|
githubImport: 'GitHub Import',
|
|
23
24
|
adoptBranch: 'Adopt Branch',
|
|
25
|
+
gitRebaseSync: 'Git Rebase & Sync',
|
|
24
26
|
reactFileManager: 'React File Manager',
|
|
25
27
|
};
|
|
26
28
|
const FLAG_KEYS = [
|
|
@@ -29,6 +31,7 @@ const FLAG_KEYS = [
|
|
|
29
31
|
'debug',
|
|
30
32
|
'githubImport',
|
|
31
33
|
'adoptBranch',
|
|
34
|
+
'gitRebaseSync',
|
|
32
35
|
'reactFileManager',
|
|
33
36
|
];
|
|
34
37
|
export function FeatureFlagsSettingsSection({ featureFlags }) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-flags-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/feature-flags-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAE/E,QAAA,MAAM,IAAI;;;;;;;CAO0C,CAAC;AAErD,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"feature-flags-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/feature-flags-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAE/E,QAAA,MAAM,IAAI;;;;;;;CAO0C,CAAC;AAErD,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAYrB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,KAYxB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAYzB,CAAC"}
|
|
@@ -16,6 +16,7 @@ export const Default = {
|
|
|
16
16
|
debug: false,
|
|
17
17
|
githubImport: false,
|
|
18
18
|
adoptBranch: false,
|
|
19
|
+
gitRebaseSync: false,
|
|
19
20
|
reactFileManager: false,
|
|
20
21
|
},
|
|
21
22
|
},
|
|
@@ -28,6 +29,7 @@ export const AllEnabled = {
|
|
|
28
29
|
debug: true,
|
|
29
30
|
githubImport: true,
|
|
30
31
|
adoptBranch: true,
|
|
32
|
+
gitRebaseSync: true,
|
|
31
33
|
reactFileManager: true,
|
|
32
34
|
},
|
|
33
35
|
},
|
|
@@ -40,6 +42,7 @@ export const AllDisabled = {
|
|
|
40
42
|
debug: false,
|
|
41
43
|
githubImport: false,
|
|
42
44
|
adoptBranch: false,
|
|
45
|
+
gitRebaseSync: false,
|
|
43
46
|
reactFileManager: false,
|
|
44
47
|
},
|
|
45
48
|
},
|
package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings-page-client.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.tsx"],"names":[],"mappings":"AAkCA,OAAO,KAAK,EACV,QAAQ,EAGT,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AA2B/E,MAAM,WAAW,uBAAuB;IACtC,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAC1C;AA6QD,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,kBAAkB,GACnB,EAAE,uBAAuB,
|
|
1
|
+
{"version":3,"file":"settings-page-client.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.tsx"],"names":[],"mappings":"AAkCA,OAAO,KAAK,EACV,QAAQ,EAGT,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AA2B/E,MAAM,WAAW,uBAAuB;IACtC,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAC1C;AA6QD,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,kBAAkB,GACnB,EAAE,uBAAuB,2CA6pCzB"}
|
|
@@ -121,6 +121,7 @@ export function SettingsPageClient({ settings, shepHome, dbFileSize, availableTe
|
|
|
121
121
|
debug: false,
|
|
122
122
|
githubImport: false,
|
|
123
123
|
adoptBranch: false,
|
|
124
|
+
gitRebaseSync: false,
|
|
124
125
|
reactFileManager: false,
|
|
125
126
|
};
|
|
126
127
|
// Agent state
|
|
@@ -497,6 +498,10 @@ export function SettingsPageClient({ settings, shepHome, dbFileSize, availableTe
|
|
|
497
498
|
const newFlags = { ...flags, adoptBranch: v };
|
|
498
499
|
setFlags(newFlags);
|
|
499
500
|
save({ featureFlags: newFlags });
|
|
501
|
+
} }), _jsx(SwitchRow, { label: "Git Rebase & Sync", description: "Enable git rebase-on-main and sync-main operations", id: "flag-gitRebaseSync", testId: "switch-flag-gitRebaseSync", checked: flags.gitRebaseSync, onChange: (v) => {
|
|
502
|
+
const newFlags = { ...flags, gitRebaseSync: v };
|
|
503
|
+
setFlags(newFlags);
|
|
504
|
+
save({ featureFlags: newFlags });
|
|
500
505
|
} }), _jsx(SwitchRow, { label: "React File Manager", description: "Use the built-in React file manager instead of the native OS folder picker", id: "flag-reactFileManager", testId: "switch-flag-reactFileManager", checked: flags.reactFileManager, onChange: (v) => {
|
|
501
506
|
const newFlags = { ...flags, reactFileManager: v };
|
|
502
507
|
setFlags(newFlags);
|
package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings-page-client.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAM5D,QAAA,MAAM,IAAI;;;;;;;CAOiC,CAAC;AAE5C,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAMrB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"settings-page-client.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAM5D,QAAA,MAAM,IAAI;;;;;;;CAOiC,CAAC;AAE5C,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAMrB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAqBzB,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAa7B,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KAsB5B,CAAC"}
|
package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-sidebar.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"app-sidebar.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAgB3C,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,UAAU,CAyBjC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAmDnC,eAAO,MAAM,OAAO,EAAE,KAIrB,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,KAIlC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAOvB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAInB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAiB3B,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,KAQrB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-flags-context.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/web/hooks/feature-flags-context.tsx"],"names":[],"mappings":"AAEA,OAAO,EAA6B,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAClE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"feature-flags-context.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/web/hooks/feature-flags-context.tsx"],"names":[],"mappings":"AAEA,OAAO,EAA6B,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAClE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAc7D,UAAU,yBAAyB;IACjC,QAAQ,EAAE,SAAS,CAAC;IACpB,KAAK,EAAE,iBAAiB,CAAC;CAC1B;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,yBAAyB,2CAElF;AAED;;;GAGG;AACH,wBAAgB,eAAe,IAAI,iBAAiB,CAEnD"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface BranchSyncData {
|
|
2
|
+
ahead: number;
|
|
3
|
+
behind: number;
|
|
4
|
+
baseBranch: string;
|
|
5
|
+
checkedAt: string;
|
|
6
|
+
}
|
|
7
|
+
export interface UseBranchSyncStatusResult {
|
|
8
|
+
data: BranchSyncData | null;
|
|
9
|
+
loading: boolean;
|
|
10
|
+
error: string | null;
|
|
11
|
+
refresh: () => void;
|
|
12
|
+
}
|
|
13
|
+
export declare function useBranchSyncStatus(featureId: string | null): UseBranchSyncStatusResult;
|
|
14
|
+
//# sourceMappingURL=use-branch-sync-status.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-branch-sync-status.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/web/hooks/use-branch-sync-status.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,yBAAyB;IACxC,IAAI,EAAE,cAAc,GAAG,IAAI,CAAC;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAOD,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,yBAAyB,CA2DvF"}
|