@shepai/cli 1.165.0 → 1.166.0-pr513.7e8c227
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/json-schema/Feature.yaml +17 -5
- package/apis/json-schema/FeatureMode.yaml +8 -0
- package/apis/json-schema/SdlcLifecycle.yaml +1 -0
- package/apis/json-schema/StageTimeouts.yaml +7 -2
- package/apis/json-schema/WorkflowConfig.yaml +10 -5
- package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +2 -2
- package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +4 -3
- package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +2 -2
- package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +2 -2
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.js +3 -2
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +2 -2
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +18 -7
- package/dist/packages/core/src/application/use-cases/features/create/types.d.ts +3 -2
- package/dist/packages/core/src/application/use-cases/features/create/types.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.js +13 -0
- package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.d.ts +40 -0
- package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.js +125 -0
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +2 -2
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +5 -3
- 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 +2 -1
- package/dist/packages/core/src/domain/generated/output.d.ts +28 -6
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +7 -0
- package/dist/packages/core/src/domain/lifecycle-gates.d.ts +21 -6
- package/dist/packages/core/src/domain/lifecycle-gates.d.ts.map +1 -1
- package/dist/packages/core/src/domain/lifecycle-gates.js +25 -6
- 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/persistence/sqlite/mappers/feature.mapper.d.ts +3 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +10 -4
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +3 -1
- 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 +10 -2
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.d.ts +19 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.js +46 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-stage-timeout-fast-implement-ms.d.ts +15 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-stage-timeout-fast-implement-ms.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-stage-timeout-fast-implement-ms.js +22 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.d.ts +17 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.js +37 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.d.ts +12 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.js +17 -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 +5 -3
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -3
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.d.ts +362 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.js +72 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +20 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +68 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +2 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +3 -3
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +2 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +19 -8
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.js +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.d.ts +18 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.js +52 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +3 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.d.ts +24 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.js +38 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.d.ts +31 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.js +240 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.d.ts +21 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.js +134 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +4 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +17 -0
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +7 -4
- package/dist/src/presentation/cli/commands/feat/feedback.command.d.ts +12 -0
- package/dist/src/presentation/cli/commands/feat/feedback.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/feat/feedback.command.js +64 -0
- package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/index.js +5 -1
- package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/new.command.js +18 -5
- package/dist/src/presentation/cli/commands/feat/promote.command.d.ts +13 -0
- package/dist/src/presentation/cli/commands/feat/promote.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/feat/promote.command.js +41 -0
- package/dist/src/presentation/web/app/actions/create-feature.d.ts +3 -2
- package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/create-feature.js +3 -3
- package/dist/src/presentation/web/app/actions/discard-exploration.d.ts +9 -0
- package/dist/src/presentation/web/app/actions/discard-exploration.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/discard-exploration.js +29 -0
- package/dist/src/presentation/web/app/actions/get-workflow-defaults.d.ts +2 -1
- package/dist/src/presentation/web/app/actions/get-workflow-defaults.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-workflow-defaults.js +2 -1
- package/dist/src/presentation/web/app/actions/promote-exploration.d.ts +11 -0
- package/dist/src/presentation/web/app/actions/promote-exploration.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/promote-exploration.js +21 -0
- package/dist/src/presentation/web/app/actions/submit-exploration-feedback.d.ts +12 -0
- package/dist/src/presentation/web/app/actions/submit-exploration-feedback.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/submit-exploration-feedback.js +40 -0
- package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/agent-events/route.js +1 -0
- package/dist/src/presentation/web/app/build-feature-node-data.d.ts.map +1 -1
- package/dist/src/presentation/web/app/build-feature-node-data.js +4 -2
- package/dist/src/presentation/web/app/build-graph-nodes.js +4 -2
- package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.d.ts +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.js +3 -0
- 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 +65 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts +3 -2
- 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 +15 -11
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.js +2 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.d.ts +8 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.js +33 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.d.ts +10 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.js +33 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +6 -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 +16 -4
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.d.ts +11 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.js +34 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.js +70 -0
- package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.js +2 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +6 -2
- 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 +12 -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 +7 -2
- 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 +14 -6
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +11 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +5 -3
- package/dist/src/presentation/web/components/ui/toggle-group.d.ts +10 -0
- package/dist/src/presentation/web/components/ui/toggle-group.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/toggle-group.js +22 -0
- package/dist/src/presentation/web/components/ui/toggle.d.ts +10 -0
- package/dist/src/presentation/web/components/ui/toggle.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/toggle.js +26 -0
- package/dist/translations/ar/cli.json +24 -0
- package/dist/translations/ar/web.json +8 -2
- package/dist/translations/de/cli.json +24 -0
- package/dist/translations/de/web.json +8 -2
- package/dist/translations/en/cli.json +24 -0
- package/dist/translations/en/web.json +8 -2
- package/dist/translations/es/cli.json +24 -0
- package/dist/translations/es/web.json +8 -2
- package/dist/translations/fr/cli.json +24 -0
- package/dist/translations/fr/web.json +8 -2
- package/dist/translations/he/cli.json +24 -0
- package/dist/translations/he/web.json +8 -2
- package/dist/translations/pt/cli.json +24 -0
- package/dist/translations/pt/web.json +8 -2
- package/dist/translations/ru/cli.json +24 -0
- package/dist/translations/ru/web.json +8 -2
- 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 +29 -29
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +30 -30
- 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 +119 -74
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -1
- 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 +119 -74
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +30 -30
- 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 +119 -74
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +2 -1
- 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 +119 -74
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +2 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error.html +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 +6 -6
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/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/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
- package/web/.next/server/app/settings/page/server-reference-manifest.json +9 -9
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +3 -3
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1abe77bb._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1abe77bb._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2d0c3840._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2d0c3840._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__4ed9b909._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__58a5b819._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__58a5b819._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__67a193c8._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__67a193c8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__684a868c._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__684a868c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__754fb18e._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__754fb18e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7562afc6._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7562afc6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__96ba046b._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__96ba046b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c1262d08._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c16bf5de._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c16bf5de._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_02e01240._.js +1 -1
- package/web/.next/server/chunks/ssr/_02e01240._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0727935d._.js +1 -1
- package/web/.next/server/chunks/ssr/_0727935d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0dc06d07._.js +1 -1
- package/web/.next/server/chunks/ssr/_0dc06d07._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_12c98a3d._.js +3 -0
- package/web/.next/server/chunks/ssr/_12c98a3d._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
- package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_18886033._.js +1 -1
- package/web/.next/server/chunks/ssr/_18886033._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_22e00a14._.js +1 -1
- package/web/.next/server/chunks/ssr/_22e00a14._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_5119a3df._.js +1 -1
- package/web/.next/server/chunks/ssr/_5119a3df._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_44591fa7._.js → _5e0c43c0._.js} +2 -2
- package/web/.next/server/chunks/ssr/_5e0c43c0._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_5eb460b1._.js +3 -0
- package/web/.next/server/chunks/ssr/_5eb460b1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_997b560b._.js +3 -0
- package/web/.next/server/chunks/ssr/_997b560b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a5a5901d._.js +1 -1
- package/web/.next/server/chunks/ssr/_a5a5901d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_616a8ac1._.js → _a8f53ee2._.js} +2 -2
- package/web/.next/server/chunks/ssr/_a8f53ee2._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_acc5e43e._.js +9 -0
- package/web/.next/server/chunks/ssr/_acc5e43e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_ad09f271._.js +1 -1
- package/web/.next/server/chunks/ssr/_ad09f271._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_c3f595c6._.js +1 -1
- package/web/.next/server/chunks/ssr/_c3f595c6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_d582e961._.js → _cc456d44._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_d582e961._.js.map → _cc456d44._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_ea9e1556._.js +1 -1
- package/web/.next/server/chunks/ssr/_ea9e1556._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f1ba9be6._.js +2 -2
- package/web/.next/server/chunks/ssr/_f1ba9be6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f33cd07e._.js +2 -2
- package/web/.next/server/chunks/ssr/_f33cd07e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f8b45233._.js +1 -1
- package/web/.next/server/chunks/ssr/_f8b45233._.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/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_9453ce8b._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_9453ce8b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +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_895e5bfa._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.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 +303 -195
- package/web/.next/static/chunks/{90fbdf461b7ec652.js → 03d92643ee2190a4.js} +1 -1
- package/web/.next/static/chunks/{cad3cca5183ead26.js → 0811164ad80e0ca5.js} +1 -1
- package/web/.next/static/chunks/{2b3740e29ed9b3de.js → 0f6208eca3d7d895.js} +2 -2
- package/web/.next/static/chunks/{9461ce4baa99276f.js → 14838064627a5dcb.js} +1 -1
- package/web/.next/static/chunks/150c00c30ece763b.js +1 -0
- package/web/.next/static/chunks/246321074153cf07.js +5 -0
- package/web/.next/static/chunks/{ccdd1bc568f11f61.js → 2a641dc89a852e0c.js} +1 -1
- package/web/.next/static/chunks/{d5366257d6b9f855.js → 2a9af061f4fbe7f5.js} +1 -1
- package/web/.next/static/chunks/2ceebcc839ee0d4b.js +1 -0
- package/web/.next/static/chunks/3425ca88c85dddb9.js +1 -0
- package/web/.next/static/chunks/{5c6428d4679cd574.js → 453a86648b40099a.js} +1 -1
- package/web/.next/static/chunks/84ecdec18d323210.css +1 -0
- package/web/.next/static/chunks/85c9f8d4601354cd.js +1 -0
- package/web/.next/static/chunks/{65440524d7ee7d13.js → 884fceb3e6a67215.js} +1 -1
- package/web/.next/static/chunks/{61e13c3bd0f3cd25.js → 95ecd55bfbbc87aa.js} +3 -3
- package/web/.next/static/chunks/{bec9239427893a91.js → c1103035e0d56769.js} +1 -1
- package/web/.next/static/chunks/{21f9eacf5581b713.js → d5656afdef3b2ee5.js} +1 -1
- package/web/.next/static/chunks/e83613a2d0198a6a.js +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__563e4faf._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__563e4faf._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__821a11c1._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__821a11c1._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__98740ee4._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__98740ee4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ba9f9e11._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ba9f9e11._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_44591fa7._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_4d49a312._.js +0 -3
- package/web/.next/server/chunks/ssr/_4d49a312._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_506a3bc3._.js +0 -9
- package/web/.next/server/chunks/ssr/_506a3bc3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_616a8ac1._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_9215e9ec._.js +0 -3
- package/web/.next/server/chunks/ssr/_9215e9ec._.js.map +0 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_1300ae39._.js +0 -3
- package/web/.next/server/chunks/ssr/node_modules__pnpm_1300ae39._.js.map +0 -1
- package/web/.next/static/chunks/1a3b885d3f886bcb.js +0 -1
- package/web/.next/static/chunks/1e6609edc3367244.css +0 -1
- package/web/.next/static/chunks/28ae5046faef6cec.js +0 -1
- package/web/.next/static/chunks/558d87d09cd1cc45.js +0 -1
- package/web/.next/static/chunks/c96dff98886884ee.js +0 -5
- package/web/.next/static/chunks/e4be686cb3bd28f0.js +0 -1
- /package/web/.next/static/{rkwlBjHfpnafQpJdBxN27 → i5nbrQ-16hfoxXQF80u89}/_buildManifest.js +0 -0
- /package/web/.next/static/{rkwlBjHfpnafQpJdBxN27 → i5nbrQ-16hfoxXQF80u89}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{rkwlBjHfpnafQpJdBxN27 → i5nbrQ-16hfoxXQF80u89}/_ssgManifest.js +0 -0
package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"009c2c7ef5a3abe27f4c7e2d3f46c24be9c93e2762": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
6
|
-
"moduleId":
|
|
6
|
+
"moduleId": 64001,
|
|
7
7
|
"async": false,
|
|
8
8
|
"exportedName": "getAllAgentModels",
|
|
9
9
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"exportedName": "getAllAgentModels",
|
|
16
16
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
17
17
|
},
|
|
18
|
-
"
|
|
18
|
+
"60f57f4a5ccaf60f23c7ec92f78699b5ce7f5a0ab6": {
|
|
19
19
|
"workers": {
|
|
20
20
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
21
|
-
"moduleId":
|
|
21
|
+
"moduleId": 64001,
|
|
22
22
|
"async": false,
|
|
23
23
|
"exportedName": "updateAgentAndModel",
|
|
24
24
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"exportedName": "updateAgentAndModel",
|
|
31
31
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
32
32
|
},
|
|
33
|
-
"
|
|
33
|
+
"00cf0477b99f176b2545de9a7d1631f2ff1fd52ca3": {
|
|
34
34
|
"workers": {
|
|
35
35
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
36
|
-
"moduleId":
|
|
36
|
+
"moduleId": 64001,
|
|
37
37
|
"async": false,
|
|
38
38
|
"exportedName": "pickFolder",
|
|
39
39
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"exportedName": "pickFolder",
|
|
46
46
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
48
|
+
"40f3a7fa83367d522704dd105f354c4b71929eb167": {
|
|
49
49
|
"workers": {
|
|
50
50
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
51
|
-
"moduleId":
|
|
51
|
+
"moduleId": 64001,
|
|
52
52
|
"async": false,
|
|
53
53
|
"exportedName": "listGitHubRepositories",
|
|
54
54
|
"filename": "src/presentation/web/app/actions/list-github-repositories.ts"
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"exportedName": "listGitHubRepositories",
|
|
61
61
|
"filename": "src/presentation/web/app/actions/list-github-repositories.ts"
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"00631073a5aec5e21a28789b0771e3ca206813951a": {
|
|
64
64
|
"workers": {
|
|
65
65
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
66
|
-
"moduleId":
|
|
66
|
+
"moduleId": 64001,
|
|
67
67
|
"async": false,
|
|
68
68
|
"exportedName": "listGitHubOrganizations",
|
|
69
69
|
"filename": "src/presentation/web/app/actions/list-github-organizations.ts"
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"exportedName": "listGitHubOrganizations",
|
|
76
76
|
"filename": "src/presentation/web/app/actions/list-github-organizations.ts"
|
|
77
77
|
},
|
|
78
|
-
"
|
|
78
|
+
"40e2d0d934b395d4d3c0652e928d39614447652015": {
|
|
79
79
|
"workers": {
|
|
80
80
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
81
|
-
"moduleId":
|
|
81
|
+
"moduleId": 64001,
|
|
82
82
|
"async": false,
|
|
83
83
|
"exportedName": "importGitHubRepository",
|
|
84
84
|
"filename": "src/presentation/web/app/actions/import-github-repository.ts"
|
|
@@ -90,10 +90,10 @@
|
|
|
90
90
|
"exportedName": "importGitHubRepository",
|
|
91
91
|
"filename": "src/presentation/web/app/actions/import-github-repository.ts"
|
|
92
92
|
},
|
|
93
|
-
"
|
|
93
|
+
"40c000598b3176c24f906a092dcd6438b48c9f49c1": {
|
|
94
94
|
"workers": {
|
|
95
95
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
96
|
-
"moduleId":
|
|
96
|
+
"moduleId": 64001,
|
|
97
97
|
"async": false,
|
|
98
98
|
"exportedName": "deployFeature",
|
|
99
99
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
@@ -105,10 +105,10 @@
|
|
|
105
105
|
"exportedName": "deployFeature",
|
|
106
106
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
107
107
|
},
|
|
108
|
-
"
|
|
108
|
+
"40ae62d26a02a6422782b79b67a0f9cfab6634b530": {
|
|
109
109
|
"workers": {
|
|
110
110
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
111
|
-
"moduleId":
|
|
111
|
+
"moduleId": 64001,
|
|
112
112
|
"async": false,
|
|
113
113
|
"exportedName": "deployRepository",
|
|
114
114
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
@@ -120,10 +120,10 @@
|
|
|
120
120
|
"exportedName": "deployRepository",
|
|
121
121
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"40191114977ca10a4730662abf784d619d81ce5723": {
|
|
124
124
|
"workers": {
|
|
125
125
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
126
|
-
"moduleId":
|
|
126
|
+
"moduleId": 64001,
|
|
127
127
|
"async": false,
|
|
128
128
|
"exportedName": "stopDeployment",
|
|
129
129
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
@@ -135,10 +135,10 @@
|
|
|
135
135
|
"exportedName": "stopDeployment",
|
|
136
136
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
137
137
|
},
|
|
138
|
-
"
|
|
138
|
+
"40f3fe712ba8da99bdc31b3818570a75b74c974275": {
|
|
139
139
|
"workers": {
|
|
140
140
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
141
|
-
"moduleId":
|
|
141
|
+
"moduleId": 64001,
|
|
142
142
|
"async": false,
|
|
143
143
|
"exportedName": "getDeploymentStatus",
|
|
144
144
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
@@ -150,10 +150,10 @@
|
|
|
150
150
|
"exportedName": "getDeploymentStatus",
|
|
151
151
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
152
152
|
},
|
|
153
|
-
"
|
|
153
|
+
"4088d9b6e0e8754c23394e4db1839f78fc263c93ab": {
|
|
154
154
|
"workers": {
|
|
155
155
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
156
|
-
"moduleId":
|
|
156
|
+
"moduleId": 64001,
|
|
157
157
|
"async": false,
|
|
158
158
|
"exportedName": "openIde",
|
|
159
159
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
@@ -165,10 +165,10 @@
|
|
|
165
165
|
"exportedName": "openIde",
|
|
166
166
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
167
167
|
},
|
|
168
|
-
"
|
|
168
|
+
"4097d2f036b55cfd4c6df93ddca6c37ec90411933a": {
|
|
169
169
|
"workers": {
|
|
170
170
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
171
|
-
"moduleId":
|
|
171
|
+
"moduleId": 64001,
|
|
172
172
|
"async": false,
|
|
173
173
|
"exportedName": "openShell",
|
|
174
174
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
@@ -180,10 +180,10 @@
|
|
|
180
180
|
"exportedName": "openShell",
|
|
181
181
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
182
182
|
},
|
|
183
|
-
"
|
|
183
|
+
"4034f28f3c5664916a589a9d3ebe7cb9a388c80d37": {
|
|
184
184
|
"workers": {
|
|
185
185
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
186
|
-
"moduleId":
|
|
186
|
+
"moduleId": 64001,
|
|
187
187
|
"async": false,
|
|
188
188
|
"exportedName": "openFolder",
|
|
189
189
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
@@ -195,10 +195,10 @@
|
|
|
195
195
|
"exportedName": "openFolder",
|
|
196
196
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
197
197
|
},
|
|
198
|
-
"
|
|
198
|
+
"40781e7c24369ed01603ab7cf6d01ab8ebb19cee50": {
|
|
199
199
|
"workers": {
|
|
200
200
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
201
|
-
"moduleId":
|
|
201
|
+
"moduleId": 64001,
|
|
202
202
|
"async": false,
|
|
203
203
|
"exportedName": "syncRepository",
|
|
204
204
|
"filename": "src/presentation/web/app/actions/sync-repository.ts"
|
|
@@ -210,10 +210,10 @@
|
|
|
210
210
|
"exportedName": "syncRepository",
|
|
211
211
|
"filename": "src/presentation/web/app/actions/sync-repository.ts"
|
|
212
212
|
},
|
|
213
|
-
"
|
|
213
|
+
"406470466869635a0a8b9582eef76fbd3f467f7010": {
|
|
214
214
|
"workers": {
|
|
215
215
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
216
|
-
"moduleId":
|
|
216
|
+
"moduleId": 64001,
|
|
217
217
|
"async": false,
|
|
218
218
|
"exportedName": "getDeploymentLogs",
|
|
219
219
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
@@ -225,10 +225,10 @@
|
|
|
225
225
|
"exportedName": "getDeploymentLogs",
|
|
226
226
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
227
227
|
},
|
|
228
|
-
"
|
|
228
|
+
"0001c0c215f5fda3d483428b240edcfcc86a86a3ec": {
|
|
229
229
|
"workers": {
|
|
230
230
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
231
|
-
"moduleId":
|
|
231
|
+
"moduleId": 64001,
|
|
232
232
|
"async": false,
|
|
233
233
|
"exportedName": "isAgentSetupComplete",
|
|
234
234
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
@@ -240,10 +240,10 @@
|
|
|
240
240
|
"exportedName": "isAgentSetupComplete",
|
|
241
241
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
242
242
|
},
|
|
243
|
-
"
|
|
243
|
+
"00327bb404ba7dccbbd421e0fe2c8af68fc66c1ab0": {
|
|
244
244
|
"workers": {
|
|
245
245
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
246
|
-
"moduleId":
|
|
246
|
+
"moduleId": 64001,
|
|
247
247
|
"async": false,
|
|
248
248
|
"exportedName": "checkAgentAuth",
|
|
249
249
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
@@ -255,10 +255,10 @@
|
|
|
255
255
|
"exportedName": "checkAgentAuth",
|
|
256
256
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
257
257
|
},
|
|
258
|
-
"
|
|
258
|
+
"002ad3c7b4d2843872275b1450a28967db07b93152": {
|
|
259
259
|
"workers": {
|
|
260
260
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
261
|
-
"moduleId":
|
|
261
|
+
"moduleId": 64001,
|
|
262
262
|
"async": false,
|
|
263
263
|
"exportedName": "checkToolStatus",
|
|
264
264
|
"filename": "src/presentation/web/app/actions/check-tool-status.ts"
|
|
@@ -270,10 +270,10 @@
|
|
|
270
270
|
"exportedName": "checkToolStatus",
|
|
271
271
|
"filename": "src/presentation/web/app/actions/check-tool-status.ts"
|
|
272
272
|
},
|
|
273
|
-
"
|
|
273
|
+
"406260d1476b709c67bc83a34a63b5c43ccabc057d": {
|
|
274
274
|
"workers": {
|
|
275
275
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
276
|
-
"moduleId":
|
|
276
|
+
"moduleId": 64001,
|
|
277
277
|
"async": false,
|
|
278
278
|
"exportedName": "archiveFeature",
|
|
279
279
|
"filename": "src/presentation/web/app/actions/archive-feature.ts"
|
|
@@ -285,10 +285,10 @@
|
|
|
285
285
|
"exportedName": "archiveFeature",
|
|
286
286
|
"filename": "src/presentation/web/app/actions/archive-feature.ts"
|
|
287
287
|
},
|
|
288
|
-
"
|
|
288
|
+
"785459f287f5ec75ff28e1e9ff733f8f036455857a": {
|
|
289
289
|
"workers": {
|
|
290
290
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
291
|
-
"moduleId":
|
|
291
|
+
"moduleId": 64001,
|
|
292
292
|
"async": false,
|
|
293
293
|
"exportedName": "deleteFeature",
|
|
294
294
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
@@ -300,10 +300,10 @@
|
|
|
300
300
|
"exportedName": "deleteFeature",
|
|
301
301
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
302
302
|
},
|
|
303
|
-
"
|
|
303
|
+
"40d8f5bee8faf9db8a62462be03ab93d2274706d86": {
|
|
304
304
|
"workers": {
|
|
305
305
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
306
|
-
"moduleId":
|
|
306
|
+
"moduleId": 64001,
|
|
307
307
|
"async": false,
|
|
308
308
|
"exportedName": "resumeFeature",
|
|
309
309
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
@@ -315,10 +315,10 @@
|
|
|
315
315
|
"exportedName": "resumeFeature",
|
|
316
316
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
317
317
|
},
|
|
318
|
-
"
|
|
318
|
+
"40bf0904d5acab56c364e2bda4bd4b864e05cf95ea": {
|
|
319
319
|
"workers": {
|
|
320
320
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
321
|
-
"moduleId":
|
|
321
|
+
"moduleId": 64001,
|
|
322
322
|
"async": false,
|
|
323
323
|
"exportedName": "startFeature",
|
|
324
324
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
@@ -330,10 +330,10 @@
|
|
|
330
330
|
"exportedName": "startFeature",
|
|
331
331
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
332
332
|
},
|
|
333
|
-
"
|
|
333
|
+
"409d2365118dfaff91d3e94709d003eeae31897b8e": {
|
|
334
334
|
"workers": {
|
|
335
335
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
336
|
-
"moduleId":
|
|
336
|
+
"moduleId": 64001,
|
|
337
337
|
"async": false,
|
|
338
338
|
"exportedName": "stopFeature",
|
|
339
339
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
@@ -345,10 +345,10 @@
|
|
|
345
345
|
"exportedName": "stopFeature",
|
|
346
346
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
347
347
|
},
|
|
348
|
-
"
|
|
348
|
+
"40fcbfa40aa81d247714e69c4e0505b8535cded270": {
|
|
349
349
|
"workers": {
|
|
350
350
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
351
|
-
"moduleId":
|
|
351
|
+
"moduleId": 64001,
|
|
352
352
|
"async": false,
|
|
353
353
|
"exportedName": "unarchiveFeature",
|
|
354
354
|
"filename": "src/presentation/web/app/actions/unarchive-feature.ts"
|
|
@@ -360,10 +360,10 @@
|
|
|
360
360
|
"exportedName": "unarchiveFeature",
|
|
361
361
|
"filename": "src/presentation/web/app/actions/unarchive-feature.ts"
|
|
362
362
|
},
|
|
363
|
-
"
|
|
363
|
+
"40790804633199079574041da892a4752e3d83e08b": {
|
|
364
364
|
"workers": {
|
|
365
365
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
366
|
-
"moduleId":
|
|
366
|
+
"moduleId": 64001,
|
|
367
367
|
"async": false,
|
|
368
368
|
"exportedName": "addRepository",
|
|
369
369
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
@@ -375,10 +375,10 @@
|
|
|
375
375
|
"exportedName": "addRepository",
|
|
376
376
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
377
377
|
},
|
|
378
|
-
"
|
|
378
|
+
"40259dc7593648505d694e49f2a7573e4c545210fe": {
|
|
379
379
|
"workers": {
|
|
380
380
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
381
|
-
"moduleId":
|
|
381
|
+
"moduleId": 64001,
|
|
382
382
|
"async": false,
|
|
383
383
|
"exportedName": "deleteRepository",
|
|
384
384
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
@@ -390,10 +390,10 @@
|
|
|
390
390
|
"exportedName": "deleteRepository",
|
|
391
391
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
392
392
|
},
|
|
393
|
-
"
|
|
393
|
+
"40cab697af9103d22cb9f2973d1ace3b4ed6a28979": {
|
|
394
394
|
"workers": {
|
|
395
395
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
396
|
-
"moduleId":
|
|
396
|
+
"moduleId": 64001,
|
|
397
397
|
"async": false,
|
|
398
398
|
"exportedName": "getFeatureMetadata",
|
|
399
399
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
@@ -405,10 +405,10 @@
|
|
|
405
405
|
"exportedName": "getFeatureMetadata",
|
|
406
406
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
407
407
|
},
|
|
408
|
-
"
|
|
408
|
+
"605bc12a49d50c6d4b36182d1f3a18a118c8e3ffc4": {
|
|
409
409
|
"workers": {
|
|
410
410
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
411
|
-
"moduleId":
|
|
411
|
+
"moduleId": 64001,
|
|
412
412
|
"async": false,
|
|
413
413
|
"exportedName": "approveFeature",
|
|
414
414
|
"filename": "src/presentation/web/app/actions/approve-feature.ts"
|
|
@@ -420,10 +420,10 @@
|
|
|
420
420
|
"exportedName": "approveFeature",
|
|
421
421
|
"filename": "src/presentation/web/app/actions/approve-feature.ts"
|
|
422
422
|
},
|
|
423
|
-
"
|
|
423
|
+
"70b12c3b48f5049212ea95b85988e5172df0c89788": {
|
|
424
424
|
"workers": {
|
|
425
425
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
426
|
-
"moduleId":
|
|
426
|
+
"moduleId": 64001,
|
|
427
427
|
"async": false,
|
|
428
428
|
"exportedName": "rejectFeature",
|
|
429
429
|
"filename": "src/presentation/web/app/actions/reject-feature.ts"
|
|
@@ -435,10 +435,55 @@
|
|
|
435
435
|
"exportedName": "rejectFeature",
|
|
436
436
|
"filename": "src/presentation/web/app/actions/reject-feature.ts"
|
|
437
437
|
},
|
|
438
|
-
"
|
|
438
|
+
"60e93d18af966c5a155a106e6fd53c8425a0e6015e": {
|
|
439
439
|
"workers": {
|
|
440
440
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
441
|
-
"moduleId":
|
|
441
|
+
"moduleId": 64001,
|
|
442
|
+
"async": false,
|
|
443
|
+
"exportedName": "submitExplorationFeedback",
|
|
444
|
+
"filename": "src/presentation/web/app/actions/submit-exploration-feedback.ts"
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
"layer": {
|
|
448
|
+
"app/(dashboard)/feature/[featureId]/page": "action-browser"
|
|
449
|
+
},
|
|
450
|
+
"exportedName": "submitExplorationFeedback",
|
|
451
|
+
"filename": "src/presentation/web/app/actions/submit-exploration-feedback.ts"
|
|
452
|
+
},
|
|
453
|
+
"60d8f7bd9c7162a16157301e8af0d958b2d6054296": {
|
|
454
|
+
"workers": {
|
|
455
|
+
"app/(dashboard)/feature/[featureId]/page": {
|
|
456
|
+
"moduleId": 64001,
|
|
457
|
+
"async": false,
|
|
458
|
+
"exportedName": "promoteExploration",
|
|
459
|
+
"filename": "src/presentation/web/app/actions/promote-exploration.ts"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"layer": {
|
|
463
|
+
"app/(dashboard)/feature/[featureId]/page": "action-browser"
|
|
464
|
+
},
|
|
465
|
+
"exportedName": "promoteExploration",
|
|
466
|
+
"filename": "src/presentation/web/app/actions/promote-exploration.ts"
|
|
467
|
+
},
|
|
468
|
+
"406f91d2911ffec33bb1f2bf3226fce0ebe3aea047": {
|
|
469
|
+
"workers": {
|
|
470
|
+
"app/(dashboard)/feature/[featureId]/page": {
|
|
471
|
+
"moduleId": 64001,
|
|
472
|
+
"async": false,
|
|
473
|
+
"exportedName": "discardExploration",
|
|
474
|
+
"filename": "src/presentation/web/app/actions/discard-exploration.ts"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
"layer": {
|
|
478
|
+
"app/(dashboard)/feature/[featureId]/page": "action-browser"
|
|
479
|
+
},
|
|
480
|
+
"exportedName": "discardExploration",
|
|
481
|
+
"filename": "src/presentation/web/app/actions/discard-exploration.ts"
|
|
482
|
+
},
|
|
483
|
+
"4057e0d3a1f9908f1c5b16ed830d5eeb5ff0164cda": {
|
|
484
|
+
"workers": {
|
|
485
|
+
"app/(dashboard)/feature/[featureId]/page": {
|
|
486
|
+
"moduleId": 64001,
|
|
442
487
|
"async": false,
|
|
443
488
|
"exportedName": "getFeatureArtifact",
|
|
444
489
|
"filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
|
|
@@ -450,10 +495,10 @@
|
|
|
450
495
|
"exportedName": "getFeatureArtifact",
|
|
451
496
|
"filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
|
|
452
497
|
},
|
|
453
|
-
"
|
|
498
|
+
"40b07407502283181691c18b85b5b174c86388a7fc": {
|
|
454
499
|
"workers": {
|
|
455
500
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
456
|
-
"moduleId":
|
|
501
|
+
"moduleId": 64001,
|
|
457
502
|
"async": false,
|
|
458
503
|
"exportedName": "getResearchArtifact",
|
|
459
504
|
"filename": "src/presentation/web/app/actions/get-research-artifact.ts"
|
|
@@ -465,10 +510,10 @@
|
|
|
465
510
|
"exportedName": "getResearchArtifact",
|
|
466
511
|
"filename": "src/presentation/web/app/actions/get-research-artifact.ts"
|
|
467
512
|
},
|
|
468
|
-
"
|
|
513
|
+
"40067d4927a966a4dfb570af74fdcad73a4a8dad72": {
|
|
469
514
|
"workers": {
|
|
470
515
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
471
|
-
"moduleId":
|
|
516
|
+
"moduleId": 64001,
|
|
472
517
|
"async": false,
|
|
473
518
|
"exportedName": "getMergeReviewData",
|
|
474
519
|
"filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
|
|
@@ -480,10 +525,10 @@
|
|
|
480
525
|
"exportedName": "getMergeReviewData",
|
|
481
526
|
"filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
|
|
482
527
|
},
|
|
483
|
-
"
|
|
528
|
+
"40fd50f0d07dedc146eb3b14fe807bb44dde85fba1": {
|
|
484
529
|
"workers": {
|
|
485
530
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
486
|
-
"moduleId":
|
|
531
|
+
"moduleId": 64001,
|
|
487
532
|
"async": false,
|
|
488
533
|
"exportedName": "getFeaturePhaseTimings",
|
|
489
534
|
"filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
|
|
@@ -495,10 +540,10 @@
|
|
|
495
540
|
"exportedName": "getFeaturePhaseTimings",
|
|
496
541
|
"filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
|
|
497
542
|
},
|
|
498
|
-
"
|
|
543
|
+
"4062be9be9684bcfaec11df83e4948151cb8dabf39": {
|
|
499
544
|
"workers": {
|
|
500
545
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
501
|
-
"moduleId":
|
|
546
|
+
"moduleId": 64001,
|
|
502
547
|
"async": false,
|
|
503
548
|
"exportedName": "getFeaturePlan",
|
|
504
549
|
"filename": "src/presentation/web/app/actions/get-feature-plan.ts"
|
|
@@ -510,10 +555,10 @@
|
|
|
510
555
|
"exportedName": "getFeaturePlan",
|
|
511
556
|
"filename": "src/presentation/web/app/actions/get-feature-plan.ts"
|
|
512
557
|
},
|
|
513
|
-
"
|
|
558
|
+
"40920293cf25cd03169051993964629df458f5857d": {
|
|
514
559
|
"workers": {
|
|
515
560
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
516
|
-
"moduleId":
|
|
561
|
+
"moduleId": 64001,
|
|
517
562
|
"async": false,
|
|
518
563
|
"exportedName": "rebaseFeature",
|
|
519
564
|
"filename": "src/presentation/web/app/actions/rebase-feature.ts"
|
|
@@ -525,10 +570,10 @@
|
|
|
525
570
|
"exportedName": "rebaseFeature",
|
|
526
571
|
"filename": "src/presentation/web/app/actions/rebase-feature.ts"
|
|
527
572
|
},
|
|
528
|
-
"
|
|
573
|
+
"40764d89e2a63ac6bd9d1195099539282567e549de": {
|
|
529
574
|
"workers": {
|
|
530
575
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
531
|
-
"moduleId":
|
|
576
|
+
"moduleId": 64001,
|
|
532
577
|
"async": false,
|
|
533
578
|
"exportedName": "getFeatureDrawerData",
|
|
534
579
|
"filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
|
|
@@ -540,10 +585,10 @@
|
|
|
540
585
|
"exportedName": "getFeatureDrawerData",
|
|
541
586
|
"filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
|
|
542
587
|
},
|
|
543
|
-
"
|
|
588
|
+
"40b1619673c5e788e48c8d12f207291eb668c78574": {
|
|
544
589
|
"workers": {
|
|
545
590
|
"app/(dashboard)/feature/[featureId]/page": {
|
|
546
|
-
"moduleId":
|
|
591
|
+
"moduleId": 64001,
|
|
547
592
|
"async": false,
|
|
548
593
|
"exportedName": "getBranchSyncStatus",
|
|
549
594
|
"filename": "src/presentation/web/app/actions/get-branch-sync-status.ts"
|
|
@@ -17,6 +17,7 @@ R.c("server/chunks/ssr/[root-of-the-server]__dffa13c5._.js")
|
|
|
17
17
|
R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
|
|
18
18
|
R.c("server/chunks/ssr/src_presentation_web_app_(dashboard)_feature_[featureId]_page_tsx_797907a1._.js")
|
|
19
19
|
R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js")
|
|
20
|
-
R.c("server/chunks/ssr/
|
|
20
|
+
R.c("server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_9453ce8b._.js")
|
|
21
|
+
R.c("server/chunks/ssr/[root-of-the-server]__96ba046b._.js")
|
|
21
22
|
R.m(28579)
|
|
22
23
|
module.exports=R.m(28579).exports
|