@shepai/cli 1.123.0 → 1.124.0-pr396.2dd2ae6
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 +68 -5
- package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.js +6 -4
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.d.ts +28 -0
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.js +81 -0
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts +16 -0
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.js +43 -0
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +15 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.d.ts +35 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.js +66 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts +42 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.js +169 -0
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +6 -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 +125 -0
- package/dist/src/presentation/web/app/actions/rebase-feature.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/rebase-feature.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/rebase-feature.js +16 -0
- package/dist/src/presentation/web/app/actions/sync-repository.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/sync-repository.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/sync-repository.js +16 -0
- package/dist/src/presentation/web/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 +2 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +4 -4
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.d.ts +4 -0
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.js +32 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +4 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +2 -2
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts +4 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +8 -3
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts +6 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.js +30 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.js +14 -6
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts +1 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +16 -0
- package/dist/src/presentation/web/components/common/open-action-menu/open-action-menu.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/open-action-menu/open-action-menu.stories.js +3 -0
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +3 -3
- package/dist/src/presentation/web/components/common/repository-node/repository-node.js +1 -1
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.d.ts +4 -0
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.js +11 -0
- package/dist/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/create/page/server-reference-manifest.json +59 -44
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
- 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 +86 -56
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -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 +86 -56
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -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]/page/server-reference-manifest.json +55 -40
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +59 -44
- package/web/.next/server/app/(dashboard)/create/page.js +1 -1
- 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 +86 -56
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -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 +86 -56
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -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 +55 -40
- package/web/.next/server/app/(dashboard)/page.js +1 -1
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +55 -40
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
- 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 +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
- package/web/.next/server/app/settings/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/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/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/server-reference-manifest.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- 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_9efdd752.js +3 -0
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_9efdd752.js.map +1 -0
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_6ce19942.js +3 -0
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_6ce19942.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__06fef644._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__14664e9b._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__14664e9b._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__16a547fc._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__16a547fc._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__545792ab._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__545792ab._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7a715c73._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__ce6057f6._.js.map → [root-of-the-server]__7a715c73._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8c553503._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a32640a5._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__7cbda1ea._.js.map → [root-of-the-server]__a32640a5._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a7de2711._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c94704d6._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c94704d6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_135edb9c._.js +1 -1
- package/web/.next/server/chunks/ssr/_135edb9c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_2f6f48b8._.js +1 -1
- package/web/.next/server/chunks/ssr/_2f6f48b8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_966c4532._.js +3 -0
- package/web/.next/server/chunks/ssr/{_fd4c574b._.js.map → _966c4532._.js.map} +1 -1
- 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/{_960ceb5d._.js → _e2638d5f._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_960ceb5d._.js.map → _e2638d5f._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_e9703421._.js +1 -1
- package/web/.next/server/chunks/ssr/_e9703421._.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__next-internal_server_app_(dashboard)_page_actions_883074bc.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_883074bc.js.map +1 -0
- 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_components_bf50c527._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js.map +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_de814675._.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_d1d40a09._.js +5 -0
- package/web/.next/server/chunks/ssr/{src_presentation_web_c4337169._.js.map → src_presentation_web_d1d40a09._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_e4e3c09b._.js +5 -0
- package/web/.next/server/chunks/ssr/{src_presentation_web_5f039db1._.js.map → src_presentation_web_e4e3c09b._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_f6b57368._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_f6b57368._.js.map +1 -0
- 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 +357 -250
- package/web/.next/static/chunks/{e418898e8e02f50a.js → 0a25d970e4abd189.js} +1 -1
- package/web/.next/static/chunks/{9821072252ddb89a.js → 11fbcb908d07e234.js} +1 -1
- package/web/.next/static/chunks/4b51f8f4e49665b8.js +1 -0
- package/web/.next/static/chunks/{373e10090c6410c4.js → 513b719e49ca003a.js} +1 -1
- package/web/.next/static/chunks/{f0dfeedb263eb906.js → 77304c4f9c5bb158.js} +1 -1
- package/web/.next/static/chunks/{3f6c44cbad751310.js → 80f9e0cade7d717b.js} +1 -1
- package/web/.next/static/chunks/{310be54600c8ce20.js → 8b87caa5e8e72539.js} +2 -2
- package/web/.next/static/chunks/9b7dbb75030aac3e.js +1 -0
- package/web/.next/static/chunks/{64d063449c3be0ec.js → cd008e10baaeae9a.js} +1 -1
- package/web/.next/static/chunks/d71ce7044ed5a85a.js +2 -0
- package/web/.next/static/chunks/db8d50abcf46d8b3.js +1 -0
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_f30d0343.js +0 -3
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_f30d0343.js.map +0 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_9f1775bb.js +0 -3
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_9f1775bb.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7cbda1ea._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9e8b25ad._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9e8b25ad._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aed1d6f8._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aed1d6f8._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ce6057f6._.js +0 -3
- package/web/.next/server/chunks/ssr/_fd4c574b._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_5f039db1._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_2a52b697.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_2a52b697.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_c4337169._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_db779ef4._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_db779ef4._.js.map +0 -1
- package/web/.next/static/chunks/694718e5449b3150.js +0 -1
- package/web/.next/static/chunks/878643f90bc6360f.js +0 -2
- package/web/.next/static/chunks/94af5be1ccf8842e.js +0 -1
- package/web/.next/static/chunks/eb9841ec4d80af01.js +0 -1
- /package/web/.next/static/{gBTe97SiNDA2hbG9dbfpb → MpP2wa-zjPqcZxmpuDBjj}/_buildManifest.js +0 -0
- /package/web/.next/static/{gBTe97SiNDA2hbG9dbfpb → MpP2wa-zjPqcZxmpuDBjj}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{gBTe97SiNDA2hbG9dbfpb → MpP2wa-zjPqcZxmpuDBjj}/_ssgManifest.js +0 -0
package/package.json
CHANGED
package/web/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
MpP2wa-zjPqcZxmpuDBjj
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"static/chunks/a6dad97d9634a72d.js"
|
|
8
8
|
],
|
|
9
9
|
"lowPriorityFiles": [
|
|
10
|
-
"static/
|
|
11
|
-
"static/
|
|
10
|
+
"static/MpP2wa-zjPqcZxmpuDBjj/_ssgManifest.js",
|
|
11
|
+
"static/MpP2wa-zjPqcZxmpuDBjj/_buildManifest.js"
|
|
12
12
|
],
|
|
13
13
|
"rootMainFiles": [
|
|
14
14
|
"static/chunks/ed3a602003bcb31b.js",
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"polyfillFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/MpP2wa-zjPqcZxmpuDBjj/_ssgManifest.js",
|
|
9
|
+
"static/MpP2wa-zjPqcZxmpuDBjj/_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": "0b4accc350b55963e90d5123a8d11c8b",
|
|
33
|
+
"previewModeSigningKey": "3a1fd5046c6e4a001f1ff7e00c74be8f16f86ba14eb20000ae14726ab83416a7",
|
|
34
|
+
"previewModeEncryptionKey": "cf2958e5972c76d4d80fcc3d20b7f15b2f1a7db8c85b353cd03b52be5ab69cc2"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -2,11 +2,11 @@ self.__SERVER_FILES_MANIFEST={
|
|
|
2
2
|
"version": 1,
|
|
3
3
|
"config": {
|
|
4
4
|
"env": {
|
|
5
|
-
"NEXT_PUBLIC_SHEP_VERSION": "1.
|
|
5
|
+
"NEXT_PUBLIC_SHEP_VERSION": "1.124.0",
|
|
6
6
|
"NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
|
-
"NEXT_PUBLIC_SHEP_BRANCH": "
|
|
9
|
-
"NEXT_PUBLIC_SHEP_COMMIT": "
|
|
8
|
+
"NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
|
|
9
|
+
"NEXT_PUBLIC_SHEP_COMMIT": "2dd2ae6bf35e8e3d312764329cd7daa1cf425b9b",
|
|
10
10
|
"NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
"version": 1,
|
|
3
3
|
"config": {
|
|
4
4
|
"env": {
|
|
5
|
-
"NEXT_PUBLIC_SHEP_VERSION": "1.
|
|
5
|
+
"NEXT_PUBLIC_SHEP_VERSION": "1.124.0",
|
|
6
6
|
"NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
|
-
"NEXT_PUBLIC_SHEP_BRANCH": "
|
|
9
|
-
"NEXT_PUBLIC_SHEP_COMMIT": "
|
|
8
|
+
"NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
|
|
9
|
+
"NEXT_PUBLIC_SHEP_COMMIT": "2dd2ae6bf35e8e3d312764329cd7daa1cf425b9b",
|
|
10
10
|
"NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"0039522ebd7ee2e643f70b34553864c82ce51558a3": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/(dashboard)/@drawer/create/page": {
|
|
6
|
-
"moduleId":
|
|
6
|
+
"moduleId": 56743,
|
|
7
7
|
"async": false,
|
|
8
8
|
"exportedName": "pickFolder",
|
|
9
9
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"exportedName": "pickFolder",
|
|
16
16
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
17
17
|
},
|
|
18
|
-
"
|
|
18
|
+
"4049e8b525603b058edf0eb126b8e2c755d8d02179": {
|
|
19
19
|
"workers": {
|
|
20
20
|
"app/(dashboard)/@drawer/create/page": {
|
|
21
|
-
"moduleId":
|
|
21
|
+
"moduleId": 56743,
|
|
22
22
|
"async": false,
|
|
23
23
|
"exportedName": "getDeploymentLogs",
|
|
24
24
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"exportedName": "getDeploymentLogs",
|
|
31
31
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
32
32
|
},
|
|
33
|
-
"
|
|
33
|
+
"40b074d59e6240ca3f82a21709baa913683076f06d": {
|
|
34
34
|
"workers": {
|
|
35
35
|
"app/(dashboard)/@drawer/create/page": {
|
|
36
|
-
"moduleId":
|
|
36
|
+
"moduleId": 56743,
|
|
37
37
|
"async": false,
|
|
38
38
|
"exportedName": "deployFeature",
|
|
39
39
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"exportedName": "deployFeature",
|
|
46
46
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
48
|
+
"406ddd2c104a03f8ec14071941eb6609dc46d4afa1": {
|
|
49
49
|
"workers": {
|
|
50
50
|
"app/(dashboard)/@drawer/create/page": {
|
|
51
|
-
"moduleId":
|
|
51
|
+
"moduleId": 56743,
|
|
52
52
|
"async": false,
|
|
53
53
|
"exportedName": "deployRepository",
|
|
54
54
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"exportedName": "deployRepository",
|
|
61
61
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"40836846b2ea635cf6abf2ce56f369a5ebaf64a98e": {
|
|
64
64
|
"workers": {
|
|
65
65
|
"app/(dashboard)/@drawer/create/page": {
|
|
66
|
-
"moduleId":
|
|
66
|
+
"moduleId": 56743,
|
|
67
67
|
"async": false,
|
|
68
68
|
"exportedName": "stopDeployment",
|
|
69
69
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"exportedName": "stopDeployment",
|
|
76
76
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
77
77
|
},
|
|
78
|
-
"
|
|
78
|
+
"40f2407acefb2959dca248cafa31692c52dddbb728": {
|
|
79
79
|
"workers": {
|
|
80
80
|
"app/(dashboard)/@drawer/create/page": {
|
|
81
|
-
"moduleId":
|
|
81
|
+
"moduleId": 56743,
|
|
82
82
|
"async": false,
|
|
83
83
|
"exportedName": "getDeploymentStatus",
|
|
84
84
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
@@ -90,10 +90,10 @@
|
|
|
90
90
|
"exportedName": "getDeploymentStatus",
|
|
91
91
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
92
92
|
},
|
|
93
|
-
"
|
|
93
|
+
"4066a779d7f7e0d3391342ac22c3b84815e4951001": {
|
|
94
94
|
"workers": {
|
|
95
95
|
"app/(dashboard)/@drawer/create/page": {
|
|
96
|
-
"moduleId":
|
|
96
|
+
"moduleId": 56743,
|
|
97
97
|
"async": false,
|
|
98
98
|
"exportedName": "openIde",
|
|
99
99
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
@@ -105,10 +105,10 @@
|
|
|
105
105
|
"exportedName": "openIde",
|
|
106
106
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
107
107
|
},
|
|
108
|
-
"
|
|
108
|
+
"4097056cc044328f2de36cb3b79cc4c39d734e05c7": {
|
|
109
109
|
"workers": {
|
|
110
110
|
"app/(dashboard)/@drawer/create/page": {
|
|
111
|
-
"moduleId":
|
|
111
|
+
"moduleId": 56743,
|
|
112
112
|
"async": false,
|
|
113
113
|
"exportedName": "openShell",
|
|
114
114
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
@@ -120,10 +120,10 @@
|
|
|
120
120
|
"exportedName": "openShell",
|
|
121
121
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"4015e4a2e1a0244e438de364804b677b170ef97e53": {
|
|
124
124
|
"workers": {
|
|
125
125
|
"app/(dashboard)/@drawer/create/page": {
|
|
126
|
-
"moduleId":
|
|
126
|
+
"moduleId": 56743,
|
|
127
127
|
"async": false,
|
|
128
128
|
"exportedName": "openFolder",
|
|
129
129
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
@@ -135,10 +135,25 @@
|
|
|
135
135
|
"exportedName": "openFolder",
|
|
136
136
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
137
137
|
},
|
|
138
|
-
"
|
|
138
|
+
"4004fc99d008448ddf2756e90c131e34dc76591b1d": {
|
|
139
139
|
"workers": {
|
|
140
140
|
"app/(dashboard)/@drawer/create/page": {
|
|
141
|
-
"moduleId":
|
|
141
|
+
"moduleId": 56743,
|
|
142
|
+
"async": false,
|
|
143
|
+
"exportedName": "syncRepository",
|
|
144
|
+
"filename": "src/presentation/web/app/actions/sync-repository.ts"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"layer": {
|
|
148
|
+
"app/(dashboard)/@drawer/create/page": "action-browser"
|
|
149
|
+
},
|
|
150
|
+
"exportedName": "syncRepository",
|
|
151
|
+
"filename": "src/presentation/web/app/actions/sync-repository.ts"
|
|
152
|
+
},
|
|
153
|
+
"00b6581fae9e5dfcd069a5dc284f9bf62463c5e1c1": {
|
|
154
|
+
"workers": {
|
|
155
|
+
"app/(dashboard)/@drawer/create/page": {
|
|
156
|
+
"moduleId": 56743,
|
|
142
157
|
"async": false,
|
|
143
158
|
"exportedName": "isAgentSetupComplete",
|
|
144
159
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
@@ -150,10 +165,10 @@
|
|
|
150
165
|
"exportedName": "isAgentSetupComplete",
|
|
151
166
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
152
167
|
},
|
|
153
|
-
"
|
|
168
|
+
"00239b2ee099076b21ed1daaac8fb21eeffea86a2c": {
|
|
154
169
|
"workers": {
|
|
155
170
|
"app/(dashboard)/@drawer/create/page": {
|
|
156
|
-
"moduleId":
|
|
171
|
+
"moduleId": 56743,
|
|
157
172
|
"async": false,
|
|
158
173
|
"exportedName": "checkAgentAuth",
|
|
159
174
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
@@ -165,10 +180,10 @@
|
|
|
165
180
|
"exportedName": "checkAgentAuth",
|
|
166
181
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
167
182
|
},
|
|
168
|
-
"
|
|
183
|
+
"00380714b68d506c2421a1627882c467ea1d157039": {
|
|
169
184
|
"workers": {
|
|
170
185
|
"app/(dashboard)/@drawer/create/page": {
|
|
171
|
-
"moduleId":
|
|
186
|
+
"moduleId": 56743,
|
|
172
187
|
"async": false,
|
|
173
188
|
"exportedName": "getAllAgentModels",
|
|
174
189
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
@@ -180,10 +195,10 @@
|
|
|
180
195
|
"exportedName": "getAllAgentModels",
|
|
181
196
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
182
197
|
},
|
|
183
|
-
"
|
|
198
|
+
"609db23f990500c024abbad582c989ced025fcf56a": {
|
|
184
199
|
"workers": {
|
|
185
200
|
"app/(dashboard)/@drawer/create/page": {
|
|
186
|
-
"moduleId":
|
|
201
|
+
"moduleId": 56743,
|
|
187
202
|
"async": false,
|
|
188
203
|
"exportedName": "updateAgentAndModel",
|
|
189
204
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
@@ -195,10 +210,10 @@
|
|
|
195
210
|
"exportedName": "updateAgentAndModel",
|
|
196
211
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
197
212
|
},
|
|
198
|
-
"
|
|
213
|
+
"70d00933e1f1a20f0af99554f6a2d59c17a953bfaf": {
|
|
199
214
|
"workers": {
|
|
200
215
|
"app/(dashboard)/@drawer/create/page": {
|
|
201
|
-
"moduleId":
|
|
216
|
+
"moduleId": 56743,
|
|
202
217
|
"async": false,
|
|
203
218
|
"exportedName": "deleteFeature",
|
|
204
219
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
@@ -210,10 +225,10 @@
|
|
|
210
225
|
"exportedName": "deleteFeature",
|
|
211
226
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
212
227
|
},
|
|
213
|
-
"
|
|
228
|
+
"409ac2bb08823fea68507239aac7b9f67a902c424e": {
|
|
214
229
|
"workers": {
|
|
215
230
|
"app/(dashboard)/@drawer/create/page": {
|
|
216
|
-
"moduleId":
|
|
231
|
+
"moduleId": 56743,
|
|
217
232
|
"async": false,
|
|
218
233
|
"exportedName": "resumeFeature",
|
|
219
234
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
@@ -225,10 +240,10 @@
|
|
|
225
240
|
"exportedName": "resumeFeature",
|
|
226
241
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
227
242
|
},
|
|
228
|
-
"
|
|
243
|
+
"400bfab150387647a84140e136dc0c2909383c7725": {
|
|
229
244
|
"workers": {
|
|
230
245
|
"app/(dashboard)/@drawer/create/page": {
|
|
231
|
-
"moduleId":
|
|
246
|
+
"moduleId": 56743,
|
|
232
247
|
"async": false,
|
|
233
248
|
"exportedName": "startFeature",
|
|
234
249
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
@@ -240,10 +255,10 @@
|
|
|
240
255
|
"exportedName": "startFeature",
|
|
241
256
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
242
257
|
},
|
|
243
|
-
"
|
|
258
|
+
"40087eccdc9757696d6bf28ec512f37e6fd9adfbcd": {
|
|
244
259
|
"workers": {
|
|
245
260
|
"app/(dashboard)/@drawer/create/page": {
|
|
246
|
-
"moduleId":
|
|
261
|
+
"moduleId": 56743,
|
|
247
262
|
"async": false,
|
|
248
263
|
"exportedName": "stopFeature",
|
|
249
264
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
@@ -255,10 +270,10 @@
|
|
|
255
270
|
"exportedName": "stopFeature",
|
|
256
271
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
257
272
|
},
|
|
258
|
-
"
|
|
273
|
+
"40bae1ca5395933800ea2b593fc4e4382646c73e4e": {
|
|
259
274
|
"workers": {
|
|
260
275
|
"app/(dashboard)/@drawer/create/page": {
|
|
261
|
-
"moduleId":
|
|
276
|
+
"moduleId": 56743,
|
|
262
277
|
"async": false,
|
|
263
278
|
"exportedName": "addRepository",
|
|
264
279
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
@@ -270,10 +285,10 @@
|
|
|
270
285
|
"exportedName": "addRepository",
|
|
271
286
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
272
287
|
},
|
|
273
|
-
"
|
|
288
|
+
"404dc370f64f7174247b87bdb70b8712f5ecc29a0b": {
|
|
274
289
|
"workers": {
|
|
275
290
|
"app/(dashboard)/@drawer/create/page": {
|
|
276
|
-
"moduleId":
|
|
291
|
+
"moduleId": 56743,
|
|
277
292
|
"async": false,
|
|
278
293
|
"exportedName": "deleteRepository",
|
|
279
294
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
@@ -285,10 +300,10 @@
|
|
|
285
300
|
"exportedName": "deleteRepository",
|
|
286
301
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
287
302
|
},
|
|
288
|
-
"
|
|
303
|
+
"407a779201fe540143a974ace51bf0eb5c3af5216f": {
|
|
289
304
|
"workers": {
|
|
290
305
|
"app/(dashboard)/@drawer/create/page": {
|
|
291
|
-
"moduleId":
|
|
306
|
+
"moduleId": 56743,
|
|
292
307
|
"async": false,
|
|
293
308
|
"exportedName": "getFeatureMetadata",
|
|
294
309
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
@@ -300,10 +315,10 @@
|
|
|
300
315
|
"exportedName": "getFeatureMetadata",
|
|
301
316
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
302
317
|
},
|
|
303
|
-
"
|
|
318
|
+
"00298fe8994c38a88d6b0705fbc105688836e3a7b8": {
|
|
304
319
|
"workers": {
|
|
305
320
|
"app/(dashboard)/@drawer/create/page": {
|
|
306
|
-
"moduleId":
|
|
321
|
+
"moduleId": 56743,
|
|
307
322
|
"async": false,
|
|
308
323
|
"exportedName": "getWorkflowDefaults",
|
|
309
324
|
"filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
|
|
@@ -315,10 +330,10 @@
|
|
|
315
330
|
"exportedName": "getWorkflowDefaults",
|
|
316
331
|
"filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
|
|
317
332
|
},
|
|
318
|
-
"
|
|
333
|
+
"407e323ca220584eabcdc044d3f2738fe8c5bc10ed": {
|
|
319
334
|
"workers": {
|
|
320
335
|
"app/(dashboard)/@drawer/create/page": {
|
|
321
|
-
"moduleId":
|
|
336
|
+
"moduleId": 56743,
|
|
322
337
|
"async": false,
|
|
323
338
|
"exportedName": "createFeature",
|
|
324
339
|
"filename": "src/presentation/web/app/actions/create-feature.ts"
|
|
@@ -14,7 +14,7 @@ R.c("server/chunks/ssr/403f9_next_dist_client_components_builtin_unauthorized_a2
|
|
|
14
14
|
R.c("server/chunks/ssr/[root-of-the-server]__6677a82c._.js")
|
|
15
15
|
R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
|
|
16
16
|
R.c("server/chunks/ssr/src_presentation_web_app_(dashboard)_create_page_tsx_c60c859a._.js")
|
|
17
|
-
R.c("server/chunks/ssr/
|
|
17
|
+
R.c("server/chunks/ssr/src_presentation_web_d1d40a09._.js")
|
|
18
18
|
R.c("server/chunks/ssr/[root-of-the-server]__14664e9b._.js")
|
|
19
19
|
R.m(26467)
|
|
20
20
|
module.exports=R.m(26467).exports
|