@shepai/cli 1.116.0-pr367.8e10c48 → 1.116.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts +14 -0
- 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/index.d.ts +0 -2
- package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/worktree-service.interface.d.ts +2 -1
- package/dist/packages/core/src/application/ports/output/services/worktree-service.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/cleanup-feature-worktree.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/cleanup-feature-worktree.use-case.js +6 -1
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts +3 -1
- 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 +30 -2
- package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.js +1 -1
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +4 -20
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +6 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts +12 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.js +98 -26
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.js +13 -1
- 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-graph.js +1 -0
- 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 +18 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.js +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.js +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/implement.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/implement.node.js +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/ci-watch-fix-loop.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/ci-watch-fix-loop.js +13 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts +4 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.js +9 -17
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts +2 -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 +8 -4
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.js +7 -4
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/repair.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/repair.node.js +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/validate.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/validate.node.js +1 -0
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +1 -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 +71 -1
- package/dist/packages/core/src/infrastructure/services/git/worktree.service.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/git/worktree.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/worktree.service.js +5 -3
- package/dist/packages/core/src/infrastructure/services/ide-launchers/compute-worktree-path.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/ide-launchers/compute-worktree-path.js +3 -1
- package/dist/packages/core/src/infrastructure/services/ide-launchers/json-driven-ide-launcher.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/ide-launchers/json-driven-ide-launcher.service.js +5 -1
- package/dist/packages/core/src/infrastructure/services/pr-sync/pr-sync-watcher.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/pr-sync/pr-sync-watcher.service.js +12 -0
- package/dist/src/presentation/cli/commands/ui.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/ui.command.js +0 -15
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
- package/dist/src/presentation/web/dev-server.js +0 -20
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/app-path-routes-manifest.json +1 -5
- package/web/.next/build-manifest.json +6 -6
- package/web/.next/fallback-build-manifest.json +2 -2
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +2 -2
- package/web/.next/required-server-files.json +2 -2
- package/web/.next/routes-manifest.json +0 -24
- package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +20 -20
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +18 -18
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +20 -20
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +18 -18
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +18 -18
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error/page/build-manifest.json +4 -4
- package/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/build-manifest.json +4 -4
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/settings/page/build-manifest.json +4 -4
- package/web/.next/server/app/settings/page/server-reference-manifest.json +5 -5
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/build-manifest.json +4 -4
- package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/tools/page/build-manifest.json +4 -4
- package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/build-manifest.json +4 -4
- package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app-paths-manifest.json +1 -5
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +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/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_a1104008.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_a1104008.js.map +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_92642200.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_92642200.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__039967e3._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__039967e3._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__07a39ff2._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__24dd0927._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__24dd0927._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2773312c._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2773312c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__5d87af2e._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6367aea0._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6367aea0._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__89e8a5cc._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__89e8a5cc._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b1e68e34._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b1e68e34._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__cbd8062c._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__cbd8062c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e70c5627._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e70c5627._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_135edb9c._.js +1 -1
- package/web/.next/server/chunks/ssr/_135edb9c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{node_modules__pnpm_747b43ac._.js → _1bb131c4._.js} +2 -2
- package/web/.next/server/chunks/ssr/_1bb131c4._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_273d4632._.js +3 -0
- package/web/.next/server/chunks/ssr/_273d4632._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_6d26a08f._.js +3 -0
- package/web/.next/server/chunks/ssr/_6d26a08f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_8dacd1e7._.js +1 -1
- package/web/.next/server/chunks/ssr/_8dacd1e7._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_8e762bfa._.js +3 -0
- package/web/.next/server/chunks/ssr/{_28862ed0._.js.map → _8e762bfa._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{_383572e0._.js → _9f6e3d20._.js} +2 -2
- package/web/.next/server/chunks/ssr/_9f6e3d20._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a68d7e1c._.js +9 -0
- package/web/.next/server/chunks/ssr/_a68d7e1c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_b5fc318a._.js +3 -0
- package/web/.next/server/chunks/ssr/_b5fc318a._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_c1fbab88._.js +3 -0
- package/web/.next/server/chunks/ssr/_c1fbab88._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_cc77a143._.js +1 -1
- package/web/.next/server/chunks/ssr/_cc77a143._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f4d222d6._.js +1 -1
- package/web/.next/server/chunks/ssr/_f5316e67._.js +3 -0
- package/web/.next/server/chunks/ssr/_f5316e67._.js.map +1 -0
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_888633e1.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_888633e1.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ce7cbc3c._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_ce7cbc3c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_e2604413._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_e2604413._.js.map +1 -1
- package/web/.next/server/middleware-build-manifest.js +4 -4
- 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 +32 -54
- package/web/.next/static/chunks/17fd217453792496.js +11 -0
- package/web/.next/static/chunks/303a1217006489b9.js +1 -0
- package/web/.next/static/chunks/33479aee057faf05.js +1 -0
- package/web/.next/static/chunks/{c6dc0749ac370da4.js → 3375766cc7dda1d8.js} +2 -2
- package/web/.next/static/chunks/{f60771797b58531f.js → 35bf7817ea1c468d.js} +1 -1
- package/web/.next/static/chunks/3a806cf059241bc9.js +1 -0
- package/web/.next/static/chunks/{604d36c352fff6c0.js → 3c962e81416806a3.js} +2 -2
- package/web/.next/static/chunks/3fc8dae693118412.js +1 -0
- package/web/.next/static/chunks/57b45edf86522369.css +1 -0
- package/web/.next/static/chunks/5d83ac35ca137033.js +1 -0
- package/web/.next/static/chunks/619af41a8d3232e5.js +1 -0
- package/web/.next/static/chunks/{98e3a7cf58fc912a.js → 672e3da3ad26005b.js} +1 -1
- package/web/.next/static/chunks/{e510518c9ca6e844.js → 814f40e65ab8e09e.js} +1 -1
- package/web/.next/static/chunks/84a181ff3270fd9f.js +1 -0
- package/web/.next/static/chunks/b1f3c0e8e9872ef8.js +1 -0
- package/web/.next/static/chunks/{51ca7e4cad588da4.js → b5357e9cc8668be7.js} +1 -1
- package/web/.next/static/chunks/{385710675a1d06c9.js → b830ce63d018922d.js} +1 -1
- package/web/.next/static/chunks/ed3a602003bcb31b.js +1 -0
- package/web/.next/static/chunks/fcde0cbb2976b933.js +1 -0
- package/web/.next/static/chunks/{turbopack-b1685b5f87ad1d60.js → turbopack-426d9bc2450816ba.js} +1 -1
- package/dist/packages/core/src/application/ports/output/services/tunnel-service.interface.d.ts +0 -41
- package/dist/packages/core/src/application/ports/output/services/tunnel-service.interface.d.ts.map +0 -1
- package/dist/packages/core/src/application/ports/output/services/tunnel-service.interface.js +0 -14
- package/dist/packages/core/src/application/ports/output/services/webhook-service.interface.d.ts +0 -65
- package/dist/packages/core/src/application/ports/output/services/webhook-service.interface.d.ts.map +0 -1
- package/dist/packages/core/src/application/ports/output/services/webhook-service.interface.js +0 -10
- package/dist/packages/core/src/infrastructure/services/tunnel/cloudflare-tunnel.service.d.ts +0 -36
- package/dist/packages/core/src/infrastructure/services/tunnel/cloudflare-tunnel.service.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/tunnel/cloudflare-tunnel.service.js +0 -148
- package/dist/packages/core/src/infrastructure/services/webhook/github-webhook.service.d.ts +0 -75
- package/dist/packages/core/src/infrastructure/services/webhook/github-webhook.service.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/webhook/github-webhook.service.js +0 -372
- package/dist/packages/core/src/infrastructure/services/webhook/webhook-manager.service.d.ts +0 -82
- package/dist/packages/core/src/infrastructure/services/webhook/webhook-manager.service.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/webhook/webhook-manager.service.js +0 -192
- package/dist/src/presentation/web/app/actions/load-webhook-status.d.ts +0 -3
- package/dist/src/presentation/web/app/actions/load-webhook-status.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/load-webhook-status.js +0 -19
- package/dist/src/presentation/web/app/api/webhooks/deliveries/route.d.ts +0 -9
- package/dist/src/presentation/web/app/api/webhooks/deliveries/route.d.ts.map +0 -1
- package/dist/src/presentation/web/app/api/webhooks/deliveries/route.js +0 -27
- package/dist/src/presentation/web/app/api/webhooks/github/route.d.ts +0 -17
- package/dist/src/presentation/web/app/api/webhooks/github/route.d.ts.map +0 -1
- package/dist/src/presentation/web/app/api/webhooks/github/route.js +0 -70
- package/dist/src/presentation/web/app/api/webhooks/status/route.d.ts +0 -9
- package/dist/src/presentation/web/app/api/webhooks/status/route.d.ts.map +0 -1
- package/dist/src/presentation/web/app/api/webhooks/status/route.js +0 -26
- package/dist/src/presentation/web/app/webhooks/page.d.ts +0 -4
- package/dist/src/presentation/web/app/webhooks/page.d.ts.map +0 -1
- package/dist/src/presentation/web/app/webhooks/page.js +0 -9
- package/dist/src/presentation/web/components/features/webhooks/types.d.ts +0 -32
- package/dist/src/presentation/web/components/features/webhooks/types.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/types.js +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhook-delivery-table.d.ts +0 -6
- package/dist/src/presentation/web/components/features/webhooks/webhook-delivery-table.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhook-delivery-table.js +0 -38
- package/dist/src/presentation/web/components/features/webhooks/webhook-delivery-table.stories.d.ts +0 -9
- package/dist/src/presentation/web/components/features/webhooks/webhook-delivery-table.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhook-delivery-table.stories.js +0 -69
- package/dist/src/presentation/web/components/features/webhooks/webhook-repo-list.d.ts +0 -7
- package/dist/src/presentation/web/components/features/webhooks/webhook-repo-list.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhook-repo-list.js +0 -11
- package/dist/src/presentation/web/components/features/webhooks/webhook-repo-list.stories.d.ts +0 -9
- package/dist/src/presentation/web/components/features/webhooks/webhook-repo-list.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhook-repo-list.stories.js +0 -31
- package/dist/src/presentation/web/components/features/webhooks/webhook-status-cards.d.ts +0 -6
- package/dist/src/presentation/web/components/features/webhooks/webhook-status-cards.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhook-status-cards.js +0 -21
- package/dist/src/presentation/web/components/features/webhooks/webhook-status-cards.stories.d.ts +0 -9
- package/dist/src/presentation/web/components/features/webhooks/webhook-status-cards.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhook-status-cards.stories.js +0 -56
- package/dist/src/presentation/web/components/features/webhooks/webhooks-page-client.d.ts +0 -6
- package/dist/src/presentation/web/components/features/webhooks/webhooks-page-client.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhooks-page-client.js +0 -39
- package/dist/src/presentation/web/components/features/webhooks/webhooks-page-client.stories.d.ts +0 -8
- package/dist/src/presentation/web/components/features/webhooks/webhooks-page-client.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/webhooks/webhooks-page-client.stories.js +0 -59
- package/web/.next/server/app/api/webhooks/deliveries/route/app-paths-manifest.json +0 -3
- package/web/.next/server/app/api/webhooks/deliveries/route/build-manifest.json +0 -11
- package/web/.next/server/app/api/webhooks/deliveries/route/server-reference-manifest.json +0 -4
- package/web/.next/server/app/api/webhooks/deliveries/route.js +0 -6
- package/web/.next/server/app/api/webhooks/deliveries/route.js.map +0 -5
- package/web/.next/server/app/api/webhooks/deliveries/route.js.nft.json +0 -1
- package/web/.next/server/app/api/webhooks/deliveries/route_client-reference-manifest.js +0 -2
- package/web/.next/server/app/api/webhooks/github/route/app-paths-manifest.json +0 -3
- package/web/.next/server/app/api/webhooks/github/route/build-manifest.json +0 -11
- package/web/.next/server/app/api/webhooks/github/route/server-reference-manifest.json +0 -4
- package/web/.next/server/app/api/webhooks/github/route.js +0 -6
- package/web/.next/server/app/api/webhooks/github/route.js.map +0 -5
- package/web/.next/server/app/api/webhooks/github/route.js.nft.json +0 -1
- package/web/.next/server/app/api/webhooks/github/route_client-reference-manifest.js +0 -2
- package/web/.next/server/app/api/webhooks/status/route/app-paths-manifest.json +0 -3
- package/web/.next/server/app/api/webhooks/status/route/build-manifest.json +0 -11
- package/web/.next/server/app/api/webhooks/status/route/server-reference-manifest.json +0 -4
- package/web/.next/server/app/api/webhooks/status/route.js +0 -6
- package/web/.next/server/app/api/webhooks/status/route.js.map +0 -5
- package/web/.next/server/app/api/webhooks/status/route.js.nft.json +0 -1
- package/web/.next/server/app/api/webhooks/status/route_client-reference-manifest.js +0 -2
- package/web/.next/server/app/webhooks/page/app-paths-manifest.json +0 -3
- package/web/.next/server/app/webhooks/page/build-manifest.json +0 -18
- package/web/.next/server/app/webhooks/page/next-font-manifest.json +0 -6
- package/web/.next/server/app/webhooks/page/react-loadable-manifest.json +0 -1
- package/web/.next/server/app/webhooks/page/server-reference-manifest.json +0 -35
- package/web/.next/server/app/webhooks/page.js +0 -16
- package/web/.next/server/app/webhooks/page.js.map +0 -5
- package/web/.next/server/app/webhooks/page.js.nft.json +0 -1
- package/web/.next/server/app/webhooks/page_client-reference-manifest.js +0 -2
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_webhooks_deliveries_route_actions_d9e34c8d.js +0 -3
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_webhooks_deliveries_route_actions_d9e34c8d.js.map +0 -1
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_webhooks_github_route_actions_1b0d0c38.js +0 -3
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_webhooks_github_route_actions_1b0d0c38.js.map +0 -1
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_webhooks_status_route_actions_1a0d86a1.js +0 -3
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_webhooks_status_route_actions_1a0d86a1.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__15e5d45c._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__15e5d45c._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__23be381e._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__23be381e._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__9fc760c0._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__9fc760c0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_activity_22f9667f.js +0 -3
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_activity_22f9667f.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__5d847b7b._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__5d847b7b._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__87a7ae30._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__87a7ae30._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__920dccd5._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__920dccd5._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a42f5a88._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a42f5a88._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_26b2c311._.js +0 -3
- package/web/.next/server/chunks/ssr/_26b2c311._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_27dd06aa._.js +0 -3
- package/web/.next/server/chunks/ssr/_27dd06aa._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_28862ed0._.js +0 -3
- package/web/.next/server/chunks/ssr/_383572e0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_809c53f6._.js +0 -9
- package/web/.next/server/chunks/ssr/_809c53f6._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_9eea4c51._.js +0 -3
- package/web/.next/server/chunks/ssr/_9eea4c51._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_a4899a76._.js +0 -3
- package/web/.next/server/chunks/ssr/_a4899a76._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_b7eb93fc._.js +0 -4
- package/web/.next/server/chunks/ssr/_b7eb93fc._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_e0a01382._.js +0 -3
- package/web/.next/server/chunks/ssr/_e0a01382._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_f8b36e2c._.js +0 -3
- package/web/.next/server/chunks/ssr/_f8b36e2c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_webhooks_webhooks-page-client_tsx_b2662ea3._.js +0 -3
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_webhooks_webhooks-page-client_tsx_b2662ea3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_747b43ac._.js.map +0 -1
- package/web/.next/static/chunks/06b948216df083c1.js +0 -1
- package/web/.next/static/chunks/2bdc11361b8f2602.js +0 -1
- package/web/.next/static/chunks/31f35710932542ef.js +0 -1
- package/web/.next/static/chunks/40b6bcf1a2de4a0f.js +0 -1
- package/web/.next/static/chunks/4714eb891fa4fd81.js +0 -1
- package/web/.next/static/chunks/523340641468b5f2.js +0 -1
- package/web/.next/static/chunks/5f6161ceb4263319.js +0 -1
- package/web/.next/static/chunks/9a7361e2365b2d8e.js +0 -1
- package/web/.next/static/chunks/9af45e885bd4ccef.js +0 -1
- package/web/.next/static/chunks/bbfb591f6aaa7255.css +0 -1
- package/web/.next/static/chunks/c7e793951b20a67f.js +0 -1
- package/web/.next/static/chunks/e9621b096a69e4e8.js +0 -11
- package/web/.next/static/chunks/f644140e21b75f61.js +0 -1
- /package/web/.next/static/{kQ3LD6zhRbOzb0MYK2n5b → oySSHprbXXpmQhRjypXRR}/_buildManifest.js +0 -0
- /package/web/.next/static/{kQ3LD6zhRbOzb0MYK2n5b → oySSHprbXXpmQhRjypXRR}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{kQ3LD6zhRbOzb0MYK2n5b → oySSHprbXXpmQhRjypXRR}/_ssgManifest.js +0 -0
package/package.json
CHANGED
package/web/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
oySSHprbXXpmQhRjypXRR
|
|
@@ -27,12 +27,8 @@
|
|
|
27
27
|
"/api/tools/[id]/launch/route": "/api/tools/[id]/launch",
|
|
28
28
|
"/api/tools/route": "/api/tools",
|
|
29
29
|
"/api/version/route": "/api/version",
|
|
30
|
-
"/api/webhooks/deliveries/route": "/api/webhooks/deliveries",
|
|
31
|
-
"/api/webhooks/github/route": "/api/webhooks/github",
|
|
32
|
-
"/api/webhooks/status/route": "/api/webhooks/status",
|
|
33
30
|
"/settings/page": "/settings",
|
|
34
31
|
"/skills/page": "/skills",
|
|
35
32
|
"/tools/page": "/tools",
|
|
36
|
-
"/version/page": "/version"
|
|
37
|
-
"/webhooks/page": "/webhooks"
|
|
33
|
+
"/version/page": "/version"
|
|
38
34
|
}
|
|
@@ -7,15 +7,15 @@
|
|
|
7
7
|
"static/chunks/a6dad97d9634a72d.js"
|
|
8
8
|
],
|
|
9
9
|
"lowPriorityFiles": [
|
|
10
|
-
"static/
|
|
11
|
-
"static/
|
|
10
|
+
"static/oySSHprbXXpmQhRjypXRR/_ssgManifest.js",
|
|
11
|
+
"static/oySSHprbXXpmQhRjypXRR/_buildManifest.js"
|
|
12
12
|
],
|
|
13
13
|
"rootMainFiles": [
|
|
14
|
-
"static/chunks/
|
|
15
|
-
"static/chunks/
|
|
16
|
-
"static/chunks/4b6cc9f65260f2bd.js",
|
|
14
|
+
"static/chunks/ed3a602003bcb31b.js",
|
|
15
|
+
"static/chunks/84a181ff3270fd9f.js",
|
|
17
16
|
"static/chunks/cfe4dc9904fcfddb.js",
|
|
17
|
+
"static/chunks/4b6cc9f65260f2bd.js",
|
|
18
18
|
"static/chunks/d4d8f0a137bd2eb4.js",
|
|
19
|
-
"static/chunks/turbopack-
|
|
19
|
+
"static/chunks/turbopack-426d9bc2450816ba.js"
|
|
20
20
|
]
|
|
21
21
|
}
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"polyfillFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/oySSHprbXXpmQhRjypXRR/_ssgManifest.js",
|
|
9
|
+
"static/oySSHprbXXpmQhRjypXRR/_buildManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": []
|
|
12
12
|
}
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"dynamicRoutes": {},
|
|
30
30
|
"notFoundRoutes": [],
|
|
31
31
|
"preview": {
|
|
32
|
-
"previewModeId": "
|
|
33
|
-
"previewModeSigningKey": "
|
|
34
|
-
"previewModeEncryptionKey": "
|
|
32
|
+
"previewModeId": "455af69cae2b7c70072992ba54984be7",
|
|
33
|
+
"previewModeSigningKey": "4f4923942815115424469c48bfcf98f54af99cab93a82c934ea23c546c8ed4da",
|
|
34
|
+
"previewModeEncryptionKey": "3965f069eeb33a81945a21f49252b2be3accdbb37a5b51e6aefb4605d23aeaad"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -5,8 +5,8 @@ self.__SERVER_FILES_MANIFEST={
|
|
|
5
5
|
"NEXT_PUBLIC_SHEP_VERSION": "1.116.0",
|
|
6
6
|
"NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
|
-
"NEXT_PUBLIC_SHEP_BRANCH": "
|
|
9
|
-
"NEXT_PUBLIC_SHEP_COMMIT": "
|
|
8
|
+
"NEXT_PUBLIC_SHEP_BRANCH": "main",
|
|
9
|
+
"NEXT_PUBLIC_SHEP_COMMIT": "d9a6f8dae5446c2bf7c3d47ce9778d0a95f9fb9f",
|
|
10
10
|
"NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"NEXT_PUBLIC_SHEP_VERSION": "1.116.0",
|
|
6
6
|
"NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
|
-
"NEXT_PUBLIC_SHEP_BRANCH": "
|
|
9
|
-
"NEXT_PUBLIC_SHEP_COMMIT": "
|
|
8
|
+
"NEXT_PUBLIC_SHEP_BRANCH": "main",
|
|
9
|
+
"NEXT_PUBLIC_SHEP_COMMIT": "d9a6f8dae5446c2bf7c3d47ce9778d0a95f9fb9f",
|
|
10
10
|
"NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -174,24 +174,6 @@
|
|
|
174
174
|
"routeKeys": {},
|
|
175
175
|
"namedRegex": "^/api/version(?:/)?$"
|
|
176
176
|
},
|
|
177
|
-
{
|
|
178
|
-
"page": "/api/webhooks/deliveries",
|
|
179
|
-
"regex": "^/api/webhooks/deliveries(?:/)?$",
|
|
180
|
-
"routeKeys": {},
|
|
181
|
-
"namedRegex": "^/api/webhooks/deliveries(?:/)?$"
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"page": "/api/webhooks/github",
|
|
185
|
-
"regex": "^/api/webhooks/github(?:/)?$",
|
|
186
|
-
"routeKeys": {},
|
|
187
|
-
"namedRegex": "^/api/webhooks/github(?:/)?$"
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"page": "/api/webhooks/status",
|
|
191
|
-
"regex": "^/api/webhooks/status(?:/)?$",
|
|
192
|
-
"routeKeys": {},
|
|
193
|
-
"namedRegex": "^/api/webhooks/status(?:/)?$"
|
|
194
|
-
},
|
|
195
177
|
{
|
|
196
178
|
"page": "/create",
|
|
197
179
|
"regex": "^/create(?:/)?$",
|
|
@@ -221,12 +203,6 @@
|
|
|
221
203
|
"regex": "^/version(?:/)?$",
|
|
222
204
|
"routeKeys": {},
|
|
223
205
|
"namedRegex": "^/version(?:/)?$"
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"page": "/webhooks",
|
|
227
|
-
"regex": "^/webhooks(?:/)?$",
|
|
228
|
-
"routeKeys": {},
|
|
229
|
-
"namedRegex": "^/webhooks(?:/)?$"
|
|
230
206
|
}
|
|
231
207
|
],
|
|
232
208
|
"dataRoutes": [],
|
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
],
|
|
7
7
|
"lowPriorityFiles": [],
|
|
8
8
|
"rootMainFiles": [
|
|
9
|
-
"static/chunks/
|
|
10
|
-
"static/chunks/
|
|
11
|
-
"static/chunks/4b6cc9f65260f2bd.js",
|
|
9
|
+
"static/chunks/ed3a602003bcb31b.js",
|
|
10
|
+
"static/chunks/84a181ff3270fd9f.js",
|
|
12
11
|
"static/chunks/cfe4dc9904fcfddb.js",
|
|
12
|
+
"static/chunks/4b6cc9f65260f2bd.js",
|
|
13
13
|
"static/chunks/d4d8f0a137bd2eb4.js",
|
|
14
|
-
"static/chunks/turbopack-
|
|
14
|
+
"static/chunks/turbopack-426d9bc2450816ba.js"
|
|
15
15
|
],
|
|
16
16
|
"pages": {},
|
|
17
17
|
"ampFirstPages": []
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"00ee3b9e79fffd8920d5a614fab920fc860fcabbba": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/(dashboard)/@drawer/create/page": {
|
|
6
6
|
"moduleId": 94566,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"exportedName": "pickFolder",
|
|
16
16
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
17
17
|
},
|
|
18
|
-
"
|
|
18
|
+
"402fa7d88ad92fc47a4adb55f9f6a53801be2be489": {
|
|
19
19
|
"workers": {
|
|
20
20
|
"app/(dashboard)/@drawer/create/page": {
|
|
21
21
|
"moduleId": 94566,
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"exportedName": "getDeploymentLogs",
|
|
31
31
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
32
32
|
},
|
|
33
|
-
"
|
|
33
|
+
"4076d415acb5c87ae80cd2396ef1e4e068c9e40b99": {
|
|
34
34
|
"workers": {
|
|
35
35
|
"app/(dashboard)/@drawer/create/page": {
|
|
36
36
|
"moduleId": 94566,
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"exportedName": "deployFeature",
|
|
46
46
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
48
|
+
"401838f3d6dbaa8af147d8d52a9fde27321ee6850a": {
|
|
49
49
|
"workers": {
|
|
50
50
|
"app/(dashboard)/@drawer/create/page": {
|
|
51
51
|
"moduleId": 94566,
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"exportedName": "deployRepository",
|
|
61
61
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"40612213f66b4939860bd192671a305cf267c9c60f": {
|
|
64
64
|
"workers": {
|
|
65
65
|
"app/(dashboard)/@drawer/create/page": {
|
|
66
66
|
"moduleId": 94566,
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"exportedName": "stopDeployment",
|
|
76
76
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
77
77
|
},
|
|
78
|
-
"
|
|
78
|
+
"40abe0c68927524b5295c6d54b9ef4237f255114f9": {
|
|
79
79
|
"workers": {
|
|
80
80
|
"app/(dashboard)/@drawer/create/page": {
|
|
81
81
|
"moduleId": 94566,
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"exportedName": "getDeploymentStatus",
|
|
91
91
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
92
92
|
},
|
|
93
|
-
"
|
|
93
|
+
"4067ff81ff556f82b01c400c1c76658d2e08291c58": {
|
|
94
94
|
"workers": {
|
|
95
95
|
"app/(dashboard)/@drawer/create/page": {
|
|
96
96
|
"moduleId": 94566,
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"exportedName": "openIde",
|
|
106
106
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
107
107
|
},
|
|
108
|
-
"
|
|
108
|
+
"407310f31e0f5585b2f25ddeefb43011de5897dda8": {
|
|
109
109
|
"workers": {
|
|
110
110
|
"app/(dashboard)/@drawer/create/page": {
|
|
111
111
|
"moduleId": 94566,
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"exportedName": "openShell",
|
|
121
121
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"40cd5e3aac1acf3b64b3f0567b5f069d397a677a14": {
|
|
124
124
|
"workers": {
|
|
125
125
|
"app/(dashboard)/@drawer/create/page": {
|
|
126
126
|
"moduleId": 94566,
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"exportedName": "openFolder",
|
|
136
136
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
137
137
|
},
|
|
138
|
-
"
|
|
138
|
+
"00dc107dbb440a3623d44e2ad064db581203de1900": {
|
|
139
139
|
"workers": {
|
|
140
140
|
"app/(dashboard)/@drawer/create/page": {
|
|
141
141
|
"moduleId": 94566,
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
"exportedName": "isAgentSetupComplete",
|
|
151
151
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
152
152
|
},
|
|
153
|
-
"
|
|
153
|
+
"0003f727e210790e1b300e492aeabd2d8f2b384a42": {
|
|
154
154
|
"workers": {
|
|
155
155
|
"app/(dashboard)/@drawer/create/page": {
|
|
156
156
|
"moduleId": 94566,
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"exportedName": "checkAgentAuth",
|
|
166
166
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
167
167
|
},
|
|
168
|
-
"
|
|
168
|
+
"004c697a951f1df5e00e95fd55f58f70d45accc6ed": {
|
|
169
169
|
"workers": {
|
|
170
170
|
"app/(dashboard)/@drawer/create/page": {
|
|
171
171
|
"moduleId": 94566,
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"exportedName": "getAllAgentModels",
|
|
181
181
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
182
182
|
},
|
|
183
|
-
"
|
|
183
|
+
"60832eb8469c32099c1d0aea460064023677305b17": {
|
|
184
184
|
"workers": {
|
|
185
185
|
"app/(dashboard)/@drawer/create/page": {
|
|
186
186
|
"moduleId": 94566,
|
|
@@ -195,7 +195,7 @@
|
|
|
195
195
|
"exportedName": "updateAgentAndModel",
|
|
196
196
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
197
197
|
},
|
|
198
|
-
"
|
|
198
|
+
"706276c57b7033b2f07a625cb1b23c0d2a94da4601": {
|
|
199
199
|
"workers": {
|
|
200
200
|
"app/(dashboard)/@drawer/create/page": {
|
|
201
201
|
"moduleId": 94566,
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
"exportedName": "deleteFeature",
|
|
211
211
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
212
212
|
},
|
|
213
|
-
"
|
|
213
|
+
"40701b49c42757086300b547a5c4f336ec74c43fcc": {
|
|
214
214
|
"workers": {
|
|
215
215
|
"app/(dashboard)/@drawer/create/page": {
|
|
216
216
|
"moduleId": 94566,
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"exportedName": "resumeFeature",
|
|
226
226
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
227
227
|
},
|
|
228
|
-
"
|
|
228
|
+
"4077b552ebe670f8ed271c3aaee78edd220e07023f": {
|
|
229
229
|
"workers": {
|
|
230
230
|
"app/(dashboard)/@drawer/create/page": {
|
|
231
231
|
"moduleId": 94566,
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
"exportedName": "addRepository",
|
|
241
241
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
242
242
|
},
|
|
243
|
-
"
|
|
243
|
+
"401917952dc949ecf1fb70629ca5ed8dbcea5482e0": {
|
|
244
244
|
"workers": {
|
|
245
245
|
"app/(dashboard)/@drawer/create/page": {
|
|
246
246
|
"moduleId": 94566,
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
"exportedName": "deleteRepository",
|
|
256
256
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
257
257
|
},
|
|
258
|
-
"
|
|
258
|
+
"40841fcfca61179cfa97b99f6b86a7ddec27830a0c": {
|
|
259
259
|
"workers": {
|
|
260
260
|
"app/(dashboard)/@drawer/create/page": {
|
|
261
261
|
"moduleId": 94566,
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"exportedName": "getFeatureMetadata",
|
|
271
271
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
272
272
|
},
|
|
273
|
-
"
|
|
273
|
+
"00edfcb9f1309802e8fd3d8ae4403598128bad944b": {
|
|
274
274
|
"workers": {
|
|
275
275
|
"app/(dashboard)/@drawer/create/page": {
|
|
276
276
|
"moduleId": 94566,
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
"exportedName": "getWorkflowDefaults",
|
|
286
286
|
"filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
|
|
287
287
|
},
|
|
288
|
-
"
|
|
288
|
+
"40a79b019f3900132d0dfbf4266de578d282ab86a0": {
|
|
289
289
|
"workers": {
|
|
290
290
|
"app/(dashboard)/@drawer/create/page": {
|
|
291
291
|
"moduleId": 94566,
|