@shepai/cli 1.77.1 → 1.77.2-pr240.0ae5c6e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/json-schema/FeatureFlags.yaml +21 -0
- package/apis/json-schema/Settings.yaml +3 -0
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +7 -2
- package/dist/packages/core/src/domain/generated/output.d.ts +21 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +6 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +6 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +17 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.js +27 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +13 -3
- 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 +1 -2
- package/dist/packages/core/src/infrastructure/services/settings.service.d.ts +10 -0
- package/dist/packages/core/src/infrastructure/services/settings.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/settings.service.js +15 -0
- package/dist/src/presentation/web/app/actions/load-settings.d.ts +9 -0
- package/dist/src/presentation/web/app/actions/load-settings.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/load-settings.js +33 -0
- package/dist/src/presentation/web/app/actions/update-settings.d.ts +11 -0
- package/dist/src/presentation/web/app/actions/update-settings.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/update-settings.js +45 -0
- package/dist/src/presentation/web/app/global-error.d.ts +7 -0
- package/dist/src/presentation/web/app/global-error.d.ts.map +1 -0
- package/dist/src/presentation/web/app/global-error.js +5 -0
- package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
- package/dist/src/presentation/web/app/layout.js +3 -1
- package/dist/src/presentation/web/app/settings/page.d.ts +4 -0
- package/dist/src/presentation/web/app/settings/page.d.ts.map +1 -0
- package/dist/src/presentation/web/app/settings/page.js +12 -0
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +2 -1
- 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 +2 -1
- package/dist/src/presentation/web/components/common/editor-type-icons.d.ts +8 -0
- package/dist/src/presentation/web/components/common/editor-type-icons.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/editor-type-icons.js +42 -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 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +1 -1
- 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 +2 -0
- package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node.js +2 -1
- package/dist/src/presentation/web/components/common/review-drawer-shell/review-drawer-shell.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/review-drawer-shell/review-drawer-shell.js +2 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +75 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +36 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.js +8 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.js +22 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.js +54 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.js +27 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +45 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +37 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.js +68 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.js +62 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts +8 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +245 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +39 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +76 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +55 -0
- package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +3 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts +3 -1
- 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 +3 -4
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +4 -0
- package/dist/src/presentation/web/components/ui/switch.d.ts +7 -0
- package/dist/src/presentation/web/components/ui/switch.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/switch.js +8 -0
- package/dist/src/presentation/web/hooks/feature-flags-context.d.ts +19 -0
- package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -0
- package/dist/src/presentation/web/hooks/feature-flags-context.js +20 -0
- package/dist/src/presentation/web/lib/feature-flags.d.ts +14 -2
- package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/feature-flags.js +39 -4
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/app-path-routes-manifest.json +1 -0
- package/web/.next/build-manifest.json +5 -5
- package/web/.next/cache/.previewinfo +1 -1
- package/web/.next/cache/.rscinfo +1 -1
- package/web/.next/cache/.tsbuildinfo +1 -1
- package/web/.next/cache/config.json +3 -3
- package/web/.next/fallback-build-manifest.json +2 -2
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +1 -1
- package/web/.next/required-server-files.json +1 -1
- package/web/.next/routes-manifest.json +6 -0
- package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +9 -8
- 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]/page/build-manifest.json +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +9 -8
- 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 +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +9 -8
- 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 +3 -3
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
- package/web/.next/server/app/(dashboard)/create/page.js +9 -8
- 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]/page/build-manifest.json +3 -3
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +9 -8
- 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 +3 -3
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
- package/web/.next/server/app/(dashboard)/page.js +9 -8
- 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 +3 -3
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +9 -8
- 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 +3 -3
- package/web/.next/server/app/_global-error/page.js +4 -3
- package/web/.next/server/app/_global-error/page.js.nft.json +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/build-manifest.json +3 -3
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
- package/web/.next/server/app/_not-found/page.js +10 -8
- 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/settings/page/app-paths-manifest.json +3 -0
- package/web/.next/server/app/settings/page/build-manifest.json +18 -0
- package/web/.next/server/app/settings/page/next-font-manifest.json +6 -0
- package/web/.next/server/app/settings/page/react-loadable-manifest.json +1 -0
- package/web/.next/server/app/settings/page/server-reference-manifest.json +50 -0
- package/web/.next/server/app/settings/page.js +18 -0
- package/web/.next/server/app/settings/page.js.map +5 -0
- package/web/.next/server/app/settings/page.js.nft.json +1 -0
- package/web/.next/server/app/settings/page_client-reference-manifest.js +2 -0
- package/web/.next/server/app/skills/page/build-manifest.json +3 -3
- package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/skills/page.js +12 -9
- 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 +3 -3
- package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/tools/page.js +10 -8
- 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 +3 -3
- package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
- package/web/.next/server/app/version/page.js +9 -8
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app-paths-manifest.json +1 -0
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_190bdc35._.js +4 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js.map → 403f9_next_dist_190bdc35._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +6 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +6 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js.map +1 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js +3 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js.map +1 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js +3 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_bec3d8d3.js → 403f9_next_dist_esm_build_templates_app-page_2eacac96.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2eacac96.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_c27615b6.js → 403f9_next_dist_esm_build_templates_app-page_46d6bf1b.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_46d6bf1b.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_bec3d8d3.js → server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_dbf21e04.js → 403f9_next_dist_esm_build_templates_app-page_6c70ecca.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_6c70ecca.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d302115b.js → server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_d302115b.js → 403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js.map +1 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d82f78f0.js +4 -0
- package/web/.next/server/chunks/ssr/{_884ddade._.js.map → 403f9_next_dist_esm_build_templates_app-page_d82f78f0.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/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js.map +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0880ff0e._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__8a947500._.js.map → [root-of-the-server]__0880ff0e._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js → [root-of-the-server]__09af7f56._.js} +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js.map → [root-of-the-server]__09af7f56._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__6b17a22d._.js.map → [root-of-the-server]__11033878._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1c870feb._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1c870feb._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__6ee2450e._.js.map → [root-of-the-server]__23b5ca2c._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__249c74f6._.js.map → [root-of-the-server]__357d99f9._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__4be9a9bb._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__4be9a9bb._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__52485955._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__5edfc56b._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__c18f84a4._.js.map → [root-of-the-server]__5edfc56b._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8c88ef55._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__fa87595c._.js.map → [root-of-the-server]__8c88ef55._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
- 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]__ad2b2a3c._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aea328fd._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aea328fd._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c3c963c6._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__2018e25f._.js.map → [root-of-the-server]__c3c963c6._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c9777776._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__3b4af5ae._.js.map → [root-of-the-server]__c9777776._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fd36b8bf._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fd36b8bf._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__804c006d._.js.map → [root-of-the-server]__fdc75809._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0e9d6bf7._.js +1 -1
- package/web/.next/server/chunks/ssr/_0e9d6bf7._.js.map +1 -1
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_8e8822d6.js → server/chunks/ssr/_16235e5e._.js} +3 -3
- package/web/.next/server/chunks/ssr/_16235e5e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_3a4c94e3._.js +3 -0
- package/web/.next/server/chunks/ssr/_3a4c94e3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_4093a637._.js +5 -0
- package/web/.next/server/chunks/ssr/_4093a637._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_5428b384._.js +3 -0
- package/web/.next/server/chunks/ssr/_5428b384._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_61351ed3._.js +1 -1
- package/web/.next/server/chunks/ssr/_61351ed3._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_6645f218._.js +21 -0
- package/web/.next/server/chunks/ssr/_6645f218._.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_ad8a094f._.js → server/chunks/ssr/_6887cba3._.js} +3 -3
- package/web/.next/server/chunks/ssr/_6887cba3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_6e08ce21._.js +1 -1
- package/web/.next/server/chunks/ssr/_6e08ce21._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_8400c8bb._.js +1 -1
- package/web/.next/server/chunks/ssr/_8400c8bb._.js.map +1 -1
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_3197d5cb._.js → server/chunks/ssr/_88c4dab8._.js} +2 -2
- package/web/.next/server/chunks/ssr/_88c4dab8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js → _8eeee4db._.js} +3 -3
- package/web/.next/server/chunks/ssr/_8eeee4db._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_956601a1._.js +9 -0
- package/web/.next/server/chunks/ssr/_956601a1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_9d11d025._.js +7 -0
- package/web/.next/server/chunks/ssr/_9d11d025._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a37f5f18._.js +13 -0
- package/web/.next/server/chunks/ssr/_a37f5f18._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_c26c679f._.js +3 -0
- package/web/.next/server/chunks/ssr/_c26c679f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_caf6533c._.js +3 -0
- package/web/.next/server/chunks/ssr/_caf6533c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_d4b20e29._.js +3 -0
- package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_e830422e._.js +4 -0
- package/web/.next/server/chunks/ssr/_e830422e._.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_884ddade._.js → server/chunks/ssr/_ed11dcd6._.js} +3 -3
- package/web/.next/server/chunks/ssr/_ed11dcd6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_f38b49fe._.js +3 -0
- package/web/.next/server/chunks/ssr/_f38b49fe._.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_9d039634.js → server/chunks/ssr/_f4d222d6._.js} +3 -3
- package/web/.next/server/chunks/ssr/_f4d222d6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_f7f6173c._.js +3 -0
- package/web/.next/server/chunks/ssr/_f7f6173c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +3 -0
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -0
- 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/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
- package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js.map +1 -0
- 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_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js.map +1 -1
- package/web/.next/server/middleware-build-manifest.js +3 -3
- 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 +59 -22
- package/web/.next/standalone/src/presentation/web/.next/BUILD_ID +1 -1
- package/web/.next/standalone/src/presentation/web/.next/app-path-routes-manifest.json +1 -0
- package/web/.next/standalone/src/presentation/web/.next/build-manifest.json +5 -5
- package/web/.next/standalone/src/presentation/web/.next/prerender-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/required-server-files.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/routes-manifest.json +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js +9 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +9 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +9 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js +9 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +9 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js +9 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +9 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page.js +4 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js +10 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/app-paths-manifest.json +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/build-manifest.json +18 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/next-font-manifest.json +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/react-loadable-manifest.json +1 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/server-reference-manifest.json +50 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js +18 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js.map +5 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js.nft.json +1 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page_client-reference-manifest.js +2 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js +12 -9
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js +10 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/build-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js +9 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app-paths-manifest.json +1 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_190bdc35._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2eacac96.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_c27615b6.js → 403f9_next_dist_esm_build_templates_app-page_46d6bf1b.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_dbf21e04.js → 403f9_next_dist_esm_build_templates_app-page_6c70ecca.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d82f78f0.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__0880ff0e._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js → [root-of-the-server]__09af7f56._.js} +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__1c870feb._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__4be9a9bb._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__52485955._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__5edfc56b._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8c88ef55._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aea328fd._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c3c963c6._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c9777776._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fd36b8bf._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_0e9d6bf7._.js +1 -1
- package/web/.next/{server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_8e8822d6.js → standalone/src/presentation/web/.next/server/chunks/ssr/_16235e5e._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_3a4c94e3._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_4093a637._.js +5 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_5428b384._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_61351ed3._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6645f218._.js +21 -0
- package/web/.next/{server/chunks/ssr/_ad8a094f._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_6887cba3._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6e08ce21._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_8400c8bb._.js +1 -1
- package/web/.next/{server/chunks/ssr/_3197d5cb._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_88c4dab8._.js} +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js → _8eeee4db._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_956601a1._.js +9 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9d11d025._.js +7 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_a37f5f18._.js +13 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_c26c679f._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_caf6533c._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_d4b20e29._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_e830422e._.js +4 -0
- package/web/.next/{server/chunks/ssr/_884ddade._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_ed11dcd6._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_f38b49fe._.js +3 -0
- package/web/.next/{server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_9d039634.js → standalone/src/presentation/web/.next/server/chunks/ssr/_f4d222d6._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_f7f6173c._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/middleware-build-manifest.js +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/pages/500.html +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.json +59 -22
- package/web/.next/standalone/src/presentation/web/app/actions/load-settings.ts +43 -0
- package/web/.next/standalone/src/presentation/web/app/actions/update-settings.ts +73 -0
- package/web/.next/standalone/src/presentation/web/app/global-error.tsx +23 -0
- package/web/.next/standalone/src/presentation/web/app/layout.tsx +5 -1
- package/web/.next/standalone/src/presentation/web/app/settings/page.tsx +27 -0
- package/web/.next/standalone/src/presentation/web/components/common/base-drawer/base-drawer.tsx +2 -1
- package/web/.next/standalone/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.tsx +2 -1
- package/web/.next/standalone/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.tsx +2 -1
- package/web/.next/standalone/src/presentation/web/components/common/editor-type-icons.tsx +84 -0
- package/web/.next/standalone/src/presentation/web/components/common/feature-node/derive-feature-state.ts +2 -1
- package/web/.next/standalone/src/presentation/web/components/common/feature-node/feature-node-state-config.ts +3 -0
- package/web/.next/standalone/src/presentation/web/components/common/repository-node/repository-node.tsx +2 -1
- package/web/.next/standalone/src/presentation/web/components/common/review-drawer-shell/review-drawer-shell.tsx +2 -1
- package/web/.next/standalone/src/presentation/web/components/features/settings/agent-settings-section.stories.tsx +43 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/agent-settings-section.tsx +183 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/database-settings-section.stories.tsx +28 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/database-settings-section.tsx +43 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/environment-settings-section.stories.tsx +33 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/environment-settings-section.tsx +125 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.tsx +44 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/feature-flags-settings-section.tsx +94 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/notification-settings-section.stories.tsx +71 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/notification-settings-section.tsx +178 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/settings-page-client.stories.tsx +46 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/settings-page-client.tsx +706 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/workflow-settings-section.stories.tsx +62 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/workflow-settings-section.tsx +274 -0
- package/web/.next/standalone/src/presentation/web/components/layouts/app-shell/app-shell.tsx +3 -0
- package/web/.next/standalone/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.tsx +5 -0
- package/web/.next/standalone/src/presentation/web/components/layouts/app-sidebar/app-sidebar.tsx +15 -3
- package/web/.next/standalone/src/presentation/web/components/ui/switch.tsx +35 -0
- package/web/.next/standalone/src/presentation/web/hooks/feature-flags-context.tsx +30 -0
- package/web/.next/standalone/src/presentation/web/lib/feature-flags.ts +47 -4
- package/web/.next/standalone/src/presentation/web/public/icons/editors/vscode.svg +3 -0
- package/web/.next/standalone/src/presentation/web/public/icons/editors/windsurf.svg +4 -0
- package/web/.next/standalone/src/presentation/web/public/icons/editors/zed.svg +4 -0
- package/web/.next/standalone/src/presentation/web/server.js +1 -1
- package/web/.next/static/chunks/{0853e1358b862314.js → 056b923048a700f3.js} +1 -1
- package/web/.next/static/chunks/239fda2c7ded3d48.js +1 -0
- package/web/.next/static/chunks/3479d6ae297e5410.css +2 -0
- package/web/.next/static/chunks/356ebc89a2a97627.js +1 -0
- package/web/.next/static/chunks/36d88ff9f7db4eb9.js +1 -0
- package/web/.next/static/chunks/429af5c5c4ef5df3.js +3 -0
- package/web/.next/static/chunks/55c131b6fc504375.js +1 -0
- package/web/.next/static/chunks/66c225e5e51ffb0b.js +2 -0
- package/web/.next/static/chunks/700501f5ac2bb320.js +1 -0
- package/web/.next/static/chunks/711bad15861ca1d0.js +1 -0
- package/web/.next/static/chunks/730cb306a35d6396.js +1 -0
- package/web/.next/static/chunks/7942efebc71dc363.js +1 -0
- package/web/.next/static/chunks/{8cbc99412f24eb01.js → 8039796f8c3e43ad.js} +1 -1
- package/web/.next/static/chunks/89aac43287d73b02.js +1 -0
- package/web/.next/static/chunks/907556417091ee06.js +11 -0
- package/web/.next/static/chunks/{00adfce42dbbd5ef.js → 98e3a7cf58fc912a.js} +1 -1
- package/web/.next/static/chunks/{ec76915c456404e6.js → 9c1b8cc32d9bc9ca.js} +1 -1
- package/web/.next/static/chunks/aa6cc6df962a3fc0.js +3 -0
- package/web/.next/static/chunks/b3e546795810eb02.js +1 -0
- package/web/.next/static/chunks/{8b8d01272ba4aebd.js → c24914717d72fb9c.js} +1 -1
- package/web/.next/static/chunks/c63d1c145c5a07dc.js +1 -0
- package/web/.next/static/chunks/{07f00e2e73d322d2.js → d4d8f0a137bd2eb4.js} +3 -3
- package/web/.next/static/chunks/eb9841ec4d80af01.js +1 -0
- package/web/.next/static/chunks/fc00e1b83852da4e.js +1 -0
- package/web/.next/static/chunks/{turbopack-05820f781f3ffc22.js → turbopack-080e470ea902d0ba.js} +1 -1
- package/web/.next/trace +1 -1
- package/web/.next/trace-build +1 -1
- package/web/.next/types/link.d.ts +1 -0
- package/web/.next/types/routes.d.ts +2 -1
- package/web/.next/types/validator.ts +9 -0
- package/web/public/icons/editors/vscode.svg +3 -0
- package/web/public/icons/editors/windsurf.svg +4 -0
- package/web/public/icons/editors/zed.svg +4 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js +0 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js +0 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js +0 -4
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_8e8822d6.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_9d039634.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_bec3d8d3.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c27615b6.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d302115b.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_dbf21e04.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2018e25f._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__3b4af5ae._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6ee2450e._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8a947500._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +0 -3
- package/web/.next/server/chunks/ssr/_07c2a32a._.js +0 -9
- package/web/.next/server/chunks/ssr/_07c2a32a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_3197d5cb._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_380c6567._.js +0 -6
- package/web/.next/server/chunks/ssr/_380c6567._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_44cce4e0._.js +0 -4
- package/web/.next/server/chunks/ssr/_44cce4e0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_5ee4f5a7._.js +0 -7
- package/web/.next/server/chunks/ssr/_5ee4f5a7._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_6640df4c._.js +0 -6
- package/web/.next/server/chunks/ssr/_6640df4c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_9f940437._.js +0 -3
- package/web/.next/server/chunks/ssr/_9f940437._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_ad8a094f._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_dc379243._.js +0 -4
- package/web/.next/server/chunks/ssr/_dc379243._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_e806976d._.js +0 -3
- package/web/.next/server/chunks/ssr/_e806976d._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_67178b88._.js +0 -13
- package/web/.next/server/chunks/ssr/src_presentation_web_67178b88._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js.map +0 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__2018e25f._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__3b4af5ae._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6ee2450e._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8a947500._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_07c2a32a._.js +0 -9
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_380c6567._.js +0 -6
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_44cce4e0._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_5ee4f5a7._.js +0 -7
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6640df4c._.js +0 -6
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9f940437._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_dc379243._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_e806976d._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_67178b88._.js +0 -13
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js +0 -3
- package/web/.next/static/chunks/1f5c93a8b939416d.js +0 -5
- package/web/.next/static/chunks/3f205fd6adbfd20a.js +0 -7
- package/web/.next/static/chunks/424982cd78174a1a.js +0 -1
- package/web/.next/static/chunks/4a3b3cfcc85e7254.js +0 -1
- package/web/.next/static/chunks/4e7375d89f61c79d.js +0 -4
- package/web/.next/static/chunks/5d0a6417c4e4e545.js +0 -1
- package/web/.next/static/chunks/7194d56ee0c66306.js +0 -1
- package/web/.next/static/chunks/7e6f572625c82efd.js +0 -1
- package/web/.next/static/chunks/8b6a6c28b4f733d0.js +0 -1
- package/web/.next/static/chunks/9215b6fb973482c5.js +0 -1
- package/web/.next/static/chunks/ab411f151f1b87cc.js +0 -1
- package/web/.next/static/chunks/b6c507fc42d9a277.js +0 -1
- package/web/.next/static/chunks/c6ade368deec2ef6.js +0 -1
- package/web/.next/static/chunks/e12fff3b57456bc2.css +0 -2
- /package/web/.next/server/chunks/ssr/{[root-of-the-server]__80e5bed2._.js.map → [root-of-the-server]__52485955._.js.map} +0 -0
- /package/web/.next/static/{kPTTy-YsS3np6cPgsciL2 → RiARmAGwzi1nabSHZVwYY}/_buildManifest.js +0 -0
- /package/web/.next/static/{kPTTy-YsS3np6cPgsciL2 → RiARmAGwzi1nabSHZVwYY}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{kPTTy-YsS3np6cPgsciL2 → RiARmAGwzi1nabSHZVwYY}/_ssgManifest.js +0 -0
package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useState, useTransition, useRef, useEffect } from 'react';
|
|
4
|
+
import { Flag, Check } from 'lucide-react';
|
|
5
|
+
import { toast } from 'sonner';
|
|
6
|
+
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '../../ui/card.js';
|
|
7
|
+
import { Label } from '../../ui/label.js';
|
|
8
|
+
import { Switch } from '../../ui/switch.js';
|
|
9
|
+
import { updateSettingsAction } from '../../../app/actions/update-settings.js';
|
|
10
|
+
const FLAG_DESCRIPTIONS = {
|
|
11
|
+
skills: 'Enable Skills navigation and functionality in the web UI',
|
|
12
|
+
envDeploy: 'Enable environment deployment features in the web UI',
|
|
13
|
+
debug: 'Enable debug UI elements and verbose client-side logging',
|
|
14
|
+
};
|
|
15
|
+
const FLAG_LABELS = {
|
|
16
|
+
skills: 'Skills',
|
|
17
|
+
envDeploy: 'Deployments',
|
|
18
|
+
debug: 'Debug',
|
|
19
|
+
};
|
|
20
|
+
const FLAG_KEYS = ['skills', 'envDeploy', 'debug'];
|
|
21
|
+
export function FeatureFlagsSettingsSection({ featureFlags }) {
|
|
22
|
+
const [flags, setFlags] = useState({ ...featureFlags });
|
|
23
|
+
const [isPending, startTransition] = useTransition();
|
|
24
|
+
const [showSaved, setShowSaved] = useState(false);
|
|
25
|
+
const prevPendingRef = useRef(false);
|
|
26
|
+
useEffect(() => {
|
|
27
|
+
if (prevPendingRef.current && !isPending) {
|
|
28
|
+
setShowSaved(true);
|
|
29
|
+
const timer = setTimeout(() => setShowSaved(false), 2000);
|
|
30
|
+
return () => clearTimeout(timer);
|
|
31
|
+
}
|
|
32
|
+
prevPendingRef.current = isPending;
|
|
33
|
+
}, [isPending]);
|
|
34
|
+
function handleFlagChange(key, value) {
|
|
35
|
+
const newFlags = { ...flags, [key]: value };
|
|
36
|
+
setFlags(newFlags);
|
|
37
|
+
startTransition(async () => {
|
|
38
|
+
const result = await updateSettingsAction({ featureFlags: newFlags });
|
|
39
|
+
if (!result.success) {
|
|
40
|
+
toast.error(result.error ?? 'Failed to save feature flags');
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
return (_jsxs(Card, { id: "feature-flags", className: "scroll-mt-6", "data-testid": "feature-flags-settings-section", children: [_jsxs(CardHeader, { children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Flag, { className: "text-muted-foreground h-4 w-4" }), _jsx(CardTitle, { children: "Feature Flags" })] }), isPending ? _jsx("span", { className: "text-muted-foreground text-xs", children: "Saving..." }) : null, showSaved && !isPending ? (_jsxs("span", { className: "flex items-center gap-1 text-xs text-green-600", children: [_jsx(Check, { className: "h-3 w-3" }), "Saved"] })) : null] }), _jsx(CardDescription, { children: "Toggle experimental and optional features. Changes take effect after page navigation." })] }), _jsx(CardContent, { className: "space-y-4", children: FLAG_KEYS.map((key) => (_jsxs("div", { className: "flex items-center justify-between gap-4", children: [_jsxs("div", { className: "space-y-0.5", children: [_jsx(Label, { htmlFor: `flag-${key}`, children: FLAG_LABELS[key] }), _jsx("p", { className: "text-muted-foreground text-xs", children: FLAG_DESCRIPTIONS[key] })] }), _jsx(Switch, { id: `flag-${key}`, "data-testid": `switch-flag-${key}`, checked: flags[key], onCheckedChange: (v) => handleFlagChange(key, v) })] }, key))) })] }));
|
|
45
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/react';
|
|
2
|
+
import { FeatureFlagsSettingsSection } from './feature-flags-settings-section.js';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof FeatureFlagsSettingsSection;
|
|
6
|
+
tags: string[];
|
|
7
|
+
parameters: {
|
|
8
|
+
layout: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export default meta;
|
|
12
|
+
type Story = StoryObj<typeof meta>;
|
|
13
|
+
export declare const Default: Story;
|
|
14
|
+
export declare const AllEnabled: Story;
|
|
15
|
+
export declare const AllDisabled: Story;
|
|
16
|
+
//# sourceMappingURL=feature-flags-settings-section.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feature-flags-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/feature-flags-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAE/E,QAAA,MAAM,IAAI;;;;;;;CAO0C,CAAC;AAErD,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAQrB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,KAQxB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAQzB,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { FeatureFlagsSettingsSection } from './feature-flags-settings-section.js';
|
|
2
|
+
const meta = {
|
|
3
|
+
title: 'Features/Settings/FeatureFlagsSettingsSection',
|
|
4
|
+
component: FeatureFlagsSettingsSection,
|
|
5
|
+
tags: ['autodocs'],
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: 'padded',
|
|
8
|
+
},
|
|
9
|
+
};
|
|
10
|
+
export default meta;
|
|
11
|
+
export const Default = {
|
|
12
|
+
args: {
|
|
13
|
+
featureFlags: {
|
|
14
|
+
skills: false,
|
|
15
|
+
envDeploy: false,
|
|
16
|
+
debug: false,
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
export const AllEnabled = {
|
|
21
|
+
args: {
|
|
22
|
+
featureFlags: {
|
|
23
|
+
skills: true,
|
|
24
|
+
envDeploy: true,
|
|
25
|
+
debug: true,
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
};
|
|
29
|
+
export const AllDisabled = {
|
|
30
|
+
args: {
|
|
31
|
+
featureFlags: {
|
|
32
|
+
skills: false,
|
|
33
|
+
envDeploy: false,
|
|
34
|
+
debug: false,
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
};
|
package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { NotificationPreferences } from '../../../../../../packages/core/src/domain/generated/output.js';
|
|
2
|
+
export interface NotificationSettingsSectionProps {
|
|
3
|
+
notifications: NotificationPreferences;
|
|
4
|
+
}
|
|
5
|
+
export declare function NotificationSettingsSection({ notifications }: NotificationSettingsSectionProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
//# sourceMappingURL=notification-settings-section.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notification-settings-section.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/notification-settings-section.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAiBpF,MAAM,WAAW,gCAAgC;IAC/C,aAAa,EAAE,uBAAuB,CAAC;CACxC;AAED,wBAAgB,2BAA2B,CAAC,EAAE,aAAa,EAAE,EAAE,gCAAgC,2CAkJ9F"}
|
package/dist/src/presentation/web/components/features/settings/notification-settings-section.js
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useState, useTransition, useRef, useEffect } from 'react';
|
|
4
|
+
import { Bell, Check } from 'lucide-react';
|
|
5
|
+
import { toast } from 'sonner';
|
|
6
|
+
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '../../ui/card.js';
|
|
7
|
+
import { Label } from '../../ui/label.js';
|
|
8
|
+
import { Switch } from '../../ui/switch.js';
|
|
9
|
+
import { Separator } from '../../ui/separator.js';
|
|
10
|
+
import { updateSettingsAction } from '../../../app/actions/update-settings.js';
|
|
11
|
+
const AGENT_EVENT_TOGGLES = [
|
|
12
|
+
{ key: 'agentStarted', label: 'Agent Started' },
|
|
13
|
+
{ key: 'phaseCompleted', label: 'Phase Completed' },
|
|
14
|
+
{ key: 'waitingApproval', label: 'Waiting Approval' },
|
|
15
|
+
{ key: 'agentCompleted', label: 'Agent Completed' },
|
|
16
|
+
{ key: 'agentFailed', label: 'Agent Failed' },
|
|
17
|
+
];
|
|
18
|
+
const PR_EVENT_TOGGLES = [
|
|
19
|
+
{ key: 'prMerged', label: 'PR Merged' },
|
|
20
|
+
{ key: 'prClosed', label: 'PR Closed' },
|
|
21
|
+
{ key: 'prChecksPassed', label: 'PR Checks Passed' },
|
|
22
|
+
{ key: 'prChecksFailed', label: 'PR Checks Failed' },
|
|
23
|
+
];
|
|
24
|
+
export function NotificationSettingsSection({ notifications }) {
|
|
25
|
+
const [inApp, setInApp] = useState(notifications.inApp.enabled);
|
|
26
|
+
const [browser, setBrowser] = useState(notifications.browser.enabled);
|
|
27
|
+
const [desktop, setDesktop] = useState(notifications.desktop.enabled);
|
|
28
|
+
const [events, setEvents] = useState({ ...notifications.events });
|
|
29
|
+
const [isPending, startTransition] = useTransition();
|
|
30
|
+
const [showSaved, setShowSaved] = useState(false);
|
|
31
|
+
const prevPendingRef = useRef(false);
|
|
32
|
+
useEffect(() => {
|
|
33
|
+
if (prevPendingRef.current && !isPending) {
|
|
34
|
+
setShowSaved(true);
|
|
35
|
+
const timer = setTimeout(() => setShowSaved(false), 2000);
|
|
36
|
+
return () => clearTimeout(timer);
|
|
37
|
+
}
|
|
38
|
+
prevPendingRef.current = isPending;
|
|
39
|
+
}, [isPending]);
|
|
40
|
+
function save(payload) {
|
|
41
|
+
startTransition(async () => {
|
|
42
|
+
const result = await updateSettingsAction(payload);
|
|
43
|
+
if (!result.success) {
|
|
44
|
+
toast.error(result.error ?? 'Failed to save notification settings');
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
function buildFullPayload(overrides = {}) {
|
|
49
|
+
return {
|
|
50
|
+
notifications: {
|
|
51
|
+
inApp: { enabled: overrides.inApp ?? inApp },
|
|
52
|
+
browser: { enabled: overrides.browser ?? browser },
|
|
53
|
+
desktop: { enabled: overrides.desktop ?? desktop },
|
|
54
|
+
events: overrides.events ?? events,
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
function handleChannelChange(channel, setter, value) {
|
|
59
|
+
setter(value);
|
|
60
|
+
save(buildFullPayload({ [channel]: value }));
|
|
61
|
+
}
|
|
62
|
+
function handleEventChange(key, value) {
|
|
63
|
+
const newEvents = { ...events, [key]: value };
|
|
64
|
+
setEvents(newEvents);
|
|
65
|
+
save(buildFullPayload({ events: newEvents }));
|
|
66
|
+
}
|
|
67
|
+
return (_jsxs(Card, { id: "notifications", className: "scroll-mt-6", "data-testid": "notification-settings-section", children: [_jsxs(CardHeader, { children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Bell, { className: "text-muted-foreground h-4 w-4" }), _jsx(CardTitle, { children: "Notifications" })] }), isPending ? _jsx("span", { className: "text-muted-foreground text-xs", children: "Saving..." }) : null, showSaved && !isPending ? (_jsxs("span", { className: "flex items-center gap-1 text-xs text-green-600", children: [_jsx(Check, { className: "h-3 w-3" }), "Saved"] })) : null] }), _jsx(CardDescription, { children: "Configure notification channels and event preferences" })] }), _jsxs(CardContent, { className: "space-y-4", children: [_jsxs("div", { className: "space-y-3", children: [_jsx("h3", { className: "text-sm font-semibold", children: "Channels" }), _jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: "notif-in-app", children: "In-App" }), _jsx(Switch, { id: "notif-in-app", "data-testid": "switch-in-app", checked: inApp, onCheckedChange: (v) => handleChannelChange('inApp', setInApp, v) })] }), _jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: "notif-browser", children: "Browser" }), _jsx(Switch, { id: "notif-browser", "data-testid": "switch-browser", checked: browser, onCheckedChange: (v) => handleChannelChange('browser', setBrowser, v) })] }), _jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: "notif-desktop", children: "Desktop" }), _jsx(Switch, { id: "notif-desktop", "data-testid": "switch-desktop", checked: desktop, onCheckedChange: (v) => handleChannelChange('desktop', setDesktop, v) })] })] }), _jsx(Separator, {}), _jsxs("div", { className: "space-y-3", children: [_jsx("h3", { className: "text-sm font-semibold", children: "Agent Events" }), AGENT_EVENT_TOGGLES.map(({ key, label }) => (_jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: `notif-event-${key}`, children: label }), _jsx(Switch, { id: `notif-event-${key}`, "data-testid": `switch-event-${key}`, checked: events[key], onCheckedChange: (v) => handleEventChange(key, v) })] }, key)))] }), _jsx(Separator, {}), _jsxs("div", { className: "space-y-3", children: [_jsx("h3", { className: "text-sm font-semibold", children: "PR Events" }), PR_EVENT_TOGGLES.map(({ key, label }) => (_jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: `notif-event-${key}`, children: label }), _jsx(Switch, { id: `notif-event-${key}`, "data-testid": `switch-event-${key}`, checked: events[key], onCheckedChange: (v) => handleEventChange(key, v) })] }, key)))] })] })] }));
|
|
68
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/react';
|
|
2
|
+
import { NotificationSettingsSection } from './notification-settings-section.js';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof NotificationSettingsSection;
|
|
6
|
+
tags: string[];
|
|
7
|
+
parameters: {
|
|
8
|
+
layout: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export default meta;
|
|
12
|
+
type Story = StoryObj<typeof meta>;
|
|
13
|
+
export declare const Default: Story;
|
|
14
|
+
export declare const AllEnabled: Story;
|
|
15
|
+
export declare const AllDisabled: Story;
|
|
16
|
+
//# sourceMappingURL=notification-settings-section.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notification-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/notification-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAE9E,QAAA,MAAM,IAAI;;;;;;;CAO0C,CAAC;AAErD,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AA0BnC,eAAO,MAAM,OAAO,EAAE,KASrB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,KASxB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KASzB,CAAC"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { NotificationSettingsSection } from './notification-settings-section.js';
|
|
2
|
+
const meta = {
|
|
3
|
+
title: 'Features/Settings/NotificationSettingsSection',
|
|
4
|
+
component: NotificationSettingsSection,
|
|
5
|
+
tags: ['autodocs'],
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: 'padded',
|
|
8
|
+
},
|
|
9
|
+
};
|
|
10
|
+
export default meta;
|
|
11
|
+
const allEvents = {
|
|
12
|
+
agentStarted: true,
|
|
13
|
+
phaseCompleted: true,
|
|
14
|
+
waitingApproval: true,
|
|
15
|
+
agentCompleted: true,
|
|
16
|
+
agentFailed: true,
|
|
17
|
+
prMerged: true,
|
|
18
|
+
prClosed: true,
|
|
19
|
+
prChecksPassed: true,
|
|
20
|
+
prChecksFailed: true,
|
|
21
|
+
};
|
|
22
|
+
const noEvents = {
|
|
23
|
+
agentStarted: false,
|
|
24
|
+
phaseCompleted: false,
|
|
25
|
+
waitingApproval: false,
|
|
26
|
+
agentCompleted: false,
|
|
27
|
+
agentFailed: false,
|
|
28
|
+
prMerged: false,
|
|
29
|
+
prClosed: false,
|
|
30
|
+
prChecksPassed: false,
|
|
31
|
+
prChecksFailed: false,
|
|
32
|
+
};
|
|
33
|
+
export const Default = {
|
|
34
|
+
args: {
|
|
35
|
+
notifications: {
|
|
36
|
+
inApp: { enabled: true },
|
|
37
|
+
browser: { enabled: true },
|
|
38
|
+
desktop: { enabled: false },
|
|
39
|
+
events: allEvents,
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
export const AllEnabled = {
|
|
44
|
+
args: {
|
|
45
|
+
notifications: {
|
|
46
|
+
inApp: { enabled: true },
|
|
47
|
+
browser: { enabled: true },
|
|
48
|
+
desktop: { enabled: true },
|
|
49
|
+
events: allEvents,
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
export const AllDisabled = {
|
|
54
|
+
args: {
|
|
55
|
+
notifications: {
|
|
56
|
+
inApp: { enabled: false },
|
|
57
|
+
browser: { enabled: false },
|
|
58
|
+
desktop: { enabled: false },
|
|
59
|
+
events: noEvents,
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Settings } from '../../../../../../packages/core/src/domain/generated/output.js';
|
|
2
|
+
export interface SettingsPageClientProps {
|
|
3
|
+
settings: Settings;
|
|
4
|
+
shepHome: string;
|
|
5
|
+
dbFileSize: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function SettingsPageClient({ settings, shepHome, dbFileSize }: SettingsPageClientProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=settings-page-client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"settings-page-client.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.tsx"],"names":[],"mappings":"AAoBA,OAAO,KAAK,EACV,QAAQ,EAGT,MAAM,sCAAsC,CAAC;AAwB9C,MAAM,WAAW,uBAAuB;IACtC,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;CACpB;AAuGD,wBAAgB,kBAAkB,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,UAAU,EAAE,EAAE,uBAAuB,2CAsiB7F"}
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useState, useTransition, useRef, useEffect, useCallback } from 'react';
|
|
4
|
+
import { Eye, EyeOff, Check } from 'lucide-react';
|
|
5
|
+
import { toast } from 'sonner';
|
|
6
|
+
import { Label } from '../../ui/label.js';
|
|
7
|
+
import { Input } from '../../ui/input.js';
|
|
8
|
+
import { Button } from '../../ui/button.js';
|
|
9
|
+
import { Switch } from '../../ui/switch.js';
|
|
10
|
+
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from '../../ui/select.js';
|
|
11
|
+
import { updateSettingsAction } from '../../../app/actions/update-settings.js';
|
|
12
|
+
import { AgentType, AgentAuthMethod, EditorType } from '../../../../../../packages/core/src/domain/generated/output.js';
|
|
13
|
+
import { getAgentTypeIcon } from '../../common/feature-node/agent-type-icons.js';
|
|
14
|
+
import { getEditorTypeIcon } from '../../common/editor-type-icons.js';
|
|
15
|
+
const AGENT_TYPE_OPTIONS = [
|
|
16
|
+
{ value: AgentType.ClaudeCode, label: 'Claude Code' },
|
|
17
|
+
{ value: AgentType.Cursor, label: 'Cursor' },
|
|
18
|
+
{ value: AgentType.GeminiCli, label: 'Gemini CLI' },
|
|
19
|
+
{ value: AgentType.Aider, label: 'Aider' },
|
|
20
|
+
{ value: AgentType.Continue, label: 'Continue' },
|
|
21
|
+
{ value: AgentType.Dev, label: 'Dev' },
|
|
22
|
+
];
|
|
23
|
+
const AUTH_METHOD_OPTIONS = [
|
|
24
|
+
{ value: AgentAuthMethod.Session, label: 'Session' },
|
|
25
|
+
{ value: AgentAuthMethod.Token, label: 'Token' },
|
|
26
|
+
];
|
|
27
|
+
const EDITOR_OPTIONS = [
|
|
28
|
+
{ value: EditorType.VsCode, label: 'VS Code' },
|
|
29
|
+
{ value: EditorType.Cursor, label: 'Cursor' },
|
|
30
|
+
{ value: EditorType.Windsurf, label: 'Windsurf' },
|
|
31
|
+
{ value: EditorType.Zed, label: 'Zed' },
|
|
32
|
+
{ value: EditorType.Antigravity, label: 'Antigravity' },
|
|
33
|
+
];
|
|
34
|
+
function useSaveIndicator() {
|
|
35
|
+
const [isPending, startTransition] = useTransition();
|
|
36
|
+
const [showSaved, setShowSaved] = useState(false);
|
|
37
|
+
const prevPendingRef = useRef(false);
|
|
38
|
+
useEffect(() => {
|
|
39
|
+
if (prevPendingRef.current && !isPending) {
|
|
40
|
+
setShowSaved(true);
|
|
41
|
+
const timer = setTimeout(() => setShowSaved(false), 2000);
|
|
42
|
+
return () => clearTimeout(timer);
|
|
43
|
+
}
|
|
44
|
+
prevPendingRef.current = isPending;
|
|
45
|
+
}, [isPending]);
|
|
46
|
+
const save = useCallback((payload) => {
|
|
47
|
+
startTransition(async () => {
|
|
48
|
+
const result = await updateSettingsAction(payload);
|
|
49
|
+
if (!result.success) {
|
|
50
|
+
toast.error(result.error ?? 'Failed to save settings');
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
}, [startTransition]);
|
|
54
|
+
return { isPending, showSaved, save };
|
|
55
|
+
}
|
|
56
|
+
function SettingsRow({ label, htmlFor, children, }) {
|
|
57
|
+
return (_jsxs("div", { className: "flex items-center justify-between gap-4 border-b py-3 last:border-b-0", children: [_jsx(Label, { htmlFor: htmlFor, className: "text-sm font-normal whitespace-nowrap", children: label }), _jsx("div", { className: "flex items-center gap-2", children: children })] }));
|
|
58
|
+
}
|
|
59
|
+
function SelectRow({ label, id, testId, value, options, onChange, }) {
|
|
60
|
+
return (_jsx(SettingsRow, { label: label, htmlFor: id, children: _jsxs(Select, { value: value, onValueChange: onChange, children: [_jsx(SelectTrigger, { id: id, "data-testid": testId, className: "w-45", children: _jsx(SelectValue, {}) }), _jsx(SelectContent, { children: options.map((opt) => (_jsx(SelectItem, { value: opt.value, children: opt.label }, opt.value))) })] }) }));
|
|
61
|
+
}
|
|
62
|
+
function SwitchRow({ label, id, testId, checked, onChange, }) {
|
|
63
|
+
return (_jsx(SettingsRow, { label: label, htmlFor: id, children: _jsx(Switch, { id: id, "data-testid": testId, checked: checked, onCheckedChange: onChange }) }));
|
|
64
|
+
}
|
|
65
|
+
export function SettingsPageClient({ settings, shepHome, dbFileSize }) {
|
|
66
|
+
const { isPending, showSaved, save } = useSaveIndicator();
|
|
67
|
+
const featureFlags = settings.featureFlags ?? { skills: false, envDeploy: false, debug: false };
|
|
68
|
+
// Agent state
|
|
69
|
+
const [agentType, setAgentType] = useState(settings.agent.type);
|
|
70
|
+
const [authMethod, setAuthMethod] = useState(settings.agent.authMethod);
|
|
71
|
+
const [token, setToken] = useState(settings.agent.token ?? '');
|
|
72
|
+
const [showToken, setShowToken] = useState(false);
|
|
73
|
+
// Environment state
|
|
74
|
+
const [editor, setEditor] = useState(settings.environment.defaultEditor);
|
|
75
|
+
const shell = settings.environment.shellPreference;
|
|
76
|
+
// Workflow state
|
|
77
|
+
const [openPr, setOpenPr] = useState(settings.workflow.openPrOnImplementationComplete);
|
|
78
|
+
const [pushOnComplete, setPushOnComplete] = useState(settings.workflow.approvalGateDefaults.pushOnImplementationComplete);
|
|
79
|
+
const [allowPrd, setAllowPrd] = useState(settings.workflow.approvalGateDefaults.allowPrd);
|
|
80
|
+
const [allowPlan, setAllowPlan] = useState(settings.workflow.approvalGateDefaults.allowPlan);
|
|
81
|
+
const [allowMerge, setAllowMerge] = useState(settings.workflow.approvalGateDefaults.allowMerge);
|
|
82
|
+
const [ciMaxFix, setCiMaxFix] = useState(settings.workflow.ciMaxFixAttempts != null ? String(settings.workflow.ciMaxFixAttempts) : '');
|
|
83
|
+
const [ciTimeout, setCiTimeout] = useState(settings.workflow.ciWatchTimeoutMs != null
|
|
84
|
+
? String(Math.round(settings.workflow.ciWatchTimeoutMs / 1000))
|
|
85
|
+
: '');
|
|
86
|
+
const [ciLogMax, setCiLogMax] = useState(settings.workflow.ciLogMaxChars != null ? String(settings.workflow.ciLogMaxChars) : '');
|
|
87
|
+
// Notification state
|
|
88
|
+
const [inApp, setInApp] = useState(settings.notifications.inApp.enabled);
|
|
89
|
+
const [browser, setBrowser] = useState(settings.notifications.browser.enabled);
|
|
90
|
+
const [desktop, setDesktop] = useState(settings.notifications.desktop.enabled);
|
|
91
|
+
const [events, setEvents] = useState({ ...settings.notifications.events });
|
|
92
|
+
// Feature flags state
|
|
93
|
+
const [flags, setFlags] = useState({ ...featureFlags });
|
|
94
|
+
// Original CI values for blur comparison
|
|
95
|
+
const originalCiMaxFix = settings.workflow.ciMaxFixAttempts != null ? String(settings.workflow.ciMaxFixAttempts) : '';
|
|
96
|
+
const originalCiTimeout = settings.workflow.ciWatchTimeoutMs != null
|
|
97
|
+
? String(Math.round(settings.workflow.ciWatchTimeoutMs / 1000))
|
|
98
|
+
: '';
|
|
99
|
+
const originalCiLogMax = settings.workflow.ciLogMaxChars != null ? String(settings.workflow.ciLogMaxChars) : '';
|
|
100
|
+
function parseOptionalInt(value) {
|
|
101
|
+
if (value === '')
|
|
102
|
+
return undefined;
|
|
103
|
+
const n = parseInt(value, 10);
|
|
104
|
+
return Number.isNaN(n) || n <= 0 ? undefined : n;
|
|
105
|
+
}
|
|
106
|
+
// Agent helpers
|
|
107
|
+
function buildAgentPayload(overrides = {}) {
|
|
108
|
+
const merged = { type: agentType, authMethod, ...overrides };
|
|
109
|
+
const result = { type: merged.type, authMethod: merged.authMethod };
|
|
110
|
+
if (merged.authMethod === AgentAuthMethod.Token) {
|
|
111
|
+
result.token = overrides.token ?? token;
|
|
112
|
+
}
|
|
113
|
+
return { agent: result };
|
|
114
|
+
}
|
|
115
|
+
// Workflow helpers
|
|
116
|
+
function buildWorkflowPayload(overrides = {}) {
|
|
117
|
+
const timeoutSeconds = parseOptionalInt(overrides.ciTimeout ?? ciTimeout);
|
|
118
|
+
return {
|
|
119
|
+
workflow: {
|
|
120
|
+
openPrOnImplementationComplete: overrides.openPr ?? openPr,
|
|
121
|
+
approvalGateDefaults: {
|
|
122
|
+
pushOnImplementationComplete: overrides.pushOnComplete ?? pushOnComplete,
|
|
123
|
+
allowPrd: overrides.allowPrd ?? allowPrd,
|
|
124
|
+
allowPlan: overrides.allowPlan ?? allowPlan,
|
|
125
|
+
allowMerge: overrides.allowMerge ?? allowMerge,
|
|
126
|
+
},
|
|
127
|
+
ciMaxFixAttempts: parseOptionalInt(overrides.ciMaxFix ?? ciMaxFix),
|
|
128
|
+
ciWatchTimeoutMs: timeoutSeconds != null ? timeoutSeconds * 1000 : undefined,
|
|
129
|
+
ciLogMaxChars: parseOptionalInt(overrides.ciLogMax ?? ciLogMax),
|
|
130
|
+
},
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
// Notification helpers
|
|
134
|
+
function buildNotificationPayload(overrides = {}) {
|
|
135
|
+
return {
|
|
136
|
+
notifications: {
|
|
137
|
+
inApp: { enabled: overrides.inApp ?? inApp },
|
|
138
|
+
browser: { enabled: overrides.browser ?? browser },
|
|
139
|
+
desktop: { enabled: overrides.desktop ?? desktop },
|
|
140
|
+
events: overrides.events ?? events,
|
|
141
|
+
},
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
return (_jsxs("div", { "data-testid": "settings-page-client", className: "max-w-lg", children: [_jsxs("div", { className: "flex items-center justify-between border-b pb-3", children: [_jsx("h1", { className: "text-lg font-semibold tracking-tight", children: "Settings" }), isPending ? _jsx("span", { className: "text-muted-foreground text-xs", children: "Saving..." }) : null, showSaved && !isPending ? (_jsxs("span", { className: "flex items-center gap-1 text-xs text-green-600", children: [_jsx(Check, { className: "h-3 w-3" }), "Saved"] })) : null] }), _jsxs("div", { children: [_jsx("h2", { className: "text-muted-foreground mt-6 mb-1 text-xs font-medium tracking-wide uppercase", "data-testid": "agent-settings-section", children: "Agent" }), _jsx(SettingsRow, { label: "Agent", htmlFor: "agent-type", children: _jsxs(Select, { value: agentType, onValueChange: (v) => {
|
|
145
|
+
setAgentType(v);
|
|
146
|
+
save(buildAgentPayload({ type: v }));
|
|
147
|
+
}, children: [_jsx(SelectTrigger, { id: "agent-type", "data-testid": "agent-type-select", className: "w-45", children: _jsx(SelectValue, {}) }), _jsx(SelectContent, { children: AGENT_TYPE_OPTIONS.map((opt) => {
|
|
148
|
+
const Icon = getAgentTypeIcon(opt.value);
|
|
149
|
+
return (_jsx(SelectItem, { value: opt.value, children: _jsxs("span", { className: "flex items-center gap-2", children: [_jsx(Icon, { className: "h-4 w-4 shrink-0" }), opt.label] }) }, opt.value));
|
|
150
|
+
}) })] }) }), _jsx(SelectRow, { label: "Authentication", id: "auth-method", testId: "auth-method-select", value: authMethod, options: AUTH_METHOD_OPTIONS, onChange: (v) => {
|
|
151
|
+
setAuthMethod(v);
|
|
152
|
+
save(buildAgentPayload({ authMethod: v }));
|
|
153
|
+
} }), authMethod === AgentAuthMethod.Token && (_jsx(SettingsRow, { label: "API Token", htmlFor: "agent-token", children: _jsxs("div", { className: "relative w-45", children: [_jsx(Input, { id: "agent-token", "data-testid": "agent-token-input", type: showToken ? 'text' : 'password', value: token, onChange: (e) => setToken(e.target.value), onBlur: () => {
|
|
154
|
+
if (token !== (settings.agent.token ?? '')) {
|
|
155
|
+
save(buildAgentPayload({ token }));
|
|
156
|
+
}
|
|
157
|
+
}, placeholder: "Enter token", className: "pr-8" }), _jsx(Button, { type: "button", variant: "ghost", size: "sm", className: "absolute top-0 right-0 h-full px-2 hover:bg-transparent", onClick: () => setShowToken(!showToken), "data-testid": "toggle-token-visibility", "aria-label": showToken ? 'Hide token' : 'Show token', children: showToken ? _jsx(EyeOff, { className: "h-3 w-3" }) : _jsx(Eye, { className: "h-3 w-3" }) })] }) })), _jsx("h2", { className: "text-muted-foreground mt-6 mb-1 text-xs font-medium tracking-wide uppercase", "data-testid": "environment-settings-section", children: "Environment" }), _jsx(SettingsRow, { label: "Editor", htmlFor: "default-editor", children: _jsxs(Select, { value: editor, onValueChange: (v) => {
|
|
158
|
+
setEditor(v);
|
|
159
|
+
save({ environment: { defaultEditor: v, shellPreference: shell } });
|
|
160
|
+
}, children: [_jsx(SelectTrigger, { id: "default-editor", "data-testid": "editor-select", className: "w-45", children: _jsx(SelectValue, {}) }), _jsx(SelectContent, { children: EDITOR_OPTIONS.map((opt) => {
|
|
161
|
+
const Icon = getEditorTypeIcon(opt.value);
|
|
162
|
+
return (_jsx(SelectItem, { value: opt.value, children: _jsxs("span", { className: "flex items-center gap-2", children: [_jsx(Icon, { className: "h-4 w-4 shrink-0" }), opt.label] }) }, opt.value));
|
|
163
|
+
}) })] }) }), _jsx("h2", { className: "text-muted-foreground mt-6 mb-1 text-xs font-medium tracking-wide uppercase", "data-testid": "workflow-settings-section", children: "Workflow" }), _jsx(SwitchRow, { label: "Open PR on complete", id: "open-pr", testId: "switch-open-pr", checked: openPr, onChange: (v) => {
|
|
164
|
+
setOpenPr(v);
|
|
165
|
+
save(buildWorkflowPayload({ openPr: v }));
|
|
166
|
+
} }), _jsx(SwitchRow, { label: "Push on complete", id: "push-on-complete", testId: "switch-push-on-complete", checked: pushOnComplete, onChange: (v) => {
|
|
167
|
+
setPushOnComplete(v);
|
|
168
|
+
save(buildWorkflowPayload({ pushOnComplete: v }));
|
|
169
|
+
} }), _jsx(SwitchRow, { label: "Auto-approve PRD", id: "allow-prd", testId: "switch-allow-prd", checked: allowPrd, onChange: (v) => {
|
|
170
|
+
setAllowPrd(v);
|
|
171
|
+
save(buildWorkflowPayload({ allowPrd: v }));
|
|
172
|
+
} }), _jsx(SwitchRow, { label: "Auto-approve Plan", id: "allow-plan", testId: "switch-allow-plan", checked: allowPlan, onChange: (v) => {
|
|
173
|
+
setAllowPlan(v);
|
|
174
|
+
save(buildWorkflowPayload({ allowPlan: v }));
|
|
175
|
+
} }), _jsx(SwitchRow, { label: "Auto-approve Merge", id: "allow-merge", testId: "switch-allow-merge", checked: allowMerge, onChange: (v) => {
|
|
176
|
+
setAllowMerge(v);
|
|
177
|
+
save(buildWorkflowPayload({ allowMerge: v }));
|
|
178
|
+
} }), _jsx("h2", { className: "text-muted-foreground mt-6 mb-1 text-xs font-medium tracking-wide uppercase", "data-testid": "ci-settings-section", children: "CI" }), _jsx(SettingsRow, { label: "Max fix attempts", htmlFor: "ci-max-fix", children: _jsx(Input, { id: "ci-max-fix", "data-testid": "ci-max-fix-input", type: "text", inputMode: "numeric", pattern: "[0-9]*", placeholder: "3", value: ciMaxFix, onChange: (e) => setCiMaxFix(e.target.value), onBlur: () => {
|
|
179
|
+
if (ciMaxFix !== originalCiMaxFix)
|
|
180
|
+
save(buildWorkflowPayload({ ciMaxFix }));
|
|
181
|
+
}, className: "w-20" }) }), _jsx(SettingsRow, { label: "Watch timeout (s)", htmlFor: "ci-timeout", children: _jsx(Input, { id: "ci-timeout", "data-testid": "ci-timeout-input", type: "text", inputMode: "numeric", pattern: "[0-9]*", placeholder: "300", value: ciTimeout, onChange: (e) => setCiTimeout(e.target.value), onBlur: () => {
|
|
182
|
+
if (ciTimeout !== originalCiTimeout)
|
|
183
|
+
save(buildWorkflowPayload({ ciTimeout }));
|
|
184
|
+
}, className: "w-20" }) }), _jsx(SettingsRow, { label: "Max log chars", htmlFor: "ci-log-max", children: _jsx(Input, { id: "ci-log-max", "data-testid": "ci-log-max-input", type: "text", inputMode: "numeric", pattern: "[0-9]*", placeholder: "50000", value: ciLogMax, onChange: (e) => setCiLogMax(e.target.value), onBlur: () => {
|
|
185
|
+
if (ciLogMax !== originalCiLogMax)
|
|
186
|
+
save(buildWorkflowPayload({ ciLogMax }));
|
|
187
|
+
}, className: "w-20" }) }), _jsx("h2", { className: "text-muted-foreground mt-6 mb-1 text-xs font-medium tracking-wide uppercase", "data-testid": "notification-settings-section", children: "Notifications" }), _jsx(SwitchRow, { label: "In-app", id: "notif-in-app", testId: "switch-in-app", checked: inApp, onChange: (v) => {
|
|
188
|
+
setInApp(v);
|
|
189
|
+
save(buildNotificationPayload({ inApp: v }));
|
|
190
|
+
} }), _jsx(SwitchRow, { label: "Browser", id: "notif-browser", testId: "switch-browser", checked: browser, onChange: (v) => {
|
|
191
|
+
setBrowser(v);
|
|
192
|
+
save(buildNotificationPayload({ browser: v }));
|
|
193
|
+
} }), _jsx(SwitchRow, { label: "Desktop", id: "notif-desktop", testId: "switch-desktop", checked: desktop, onChange: (v) => {
|
|
194
|
+
setDesktop(v);
|
|
195
|
+
save(buildNotificationPayload({ desktop: v }));
|
|
196
|
+
} }), _jsx(SwitchRow, { label: "Agent started", id: "notif-event-agentStarted", testId: "switch-event-agentStarted", checked: events.agentStarted, onChange: (v) => {
|
|
197
|
+
const newEvents = { ...events, agentStarted: v };
|
|
198
|
+
setEvents(newEvents);
|
|
199
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
200
|
+
} }), _jsx(SwitchRow, { label: "Phase completed", id: "notif-event-phaseCompleted", testId: "switch-event-phaseCompleted", checked: events.phaseCompleted, onChange: (v) => {
|
|
201
|
+
const newEvents = { ...events, phaseCompleted: v };
|
|
202
|
+
setEvents(newEvents);
|
|
203
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
204
|
+
} }), _jsx(SwitchRow, { label: "Waiting approval", id: "notif-event-waitingApproval", testId: "switch-event-waitingApproval", checked: events.waitingApproval, onChange: (v) => {
|
|
205
|
+
const newEvents = { ...events, waitingApproval: v };
|
|
206
|
+
setEvents(newEvents);
|
|
207
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
208
|
+
} }), _jsx(SwitchRow, { label: "Agent completed", id: "notif-event-agentCompleted", testId: "switch-event-agentCompleted", checked: events.agentCompleted, onChange: (v) => {
|
|
209
|
+
const newEvents = { ...events, agentCompleted: v };
|
|
210
|
+
setEvents(newEvents);
|
|
211
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
212
|
+
} }), _jsx(SwitchRow, { label: "Agent failed", id: "notif-event-agentFailed", testId: "switch-event-agentFailed", checked: events.agentFailed, onChange: (v) => {
|
|
213
|
+
const newEvents = { ...events, agentFailed: v };
|
|
214
|
+
setEvents(newEvents);
|
|
215
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
216
|
+
} }), _jsx(SwitchRow, { label: "PR merged", id: "notif-event-prMerged", testId: "switch-event-prMerged", checked: events.prMerged, onChange: (v) => {
|
|
217
|
+
const newEvents = { ...events, prMerged: v };
|
|
218
|
+
setEvents(newEvents);
|
|
219
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
220
|
+
} }), _jsx(SwitchRow, { label: "PR closed", id: "notif-event-prClosed", testId: "switch-event-prClosed", checked: events.prClosed, onChange: (v) => {
|
|
221
|
+
const newEvents = { ...events, prClosed: v };
|
|
222
|
+
setEvents(newEvents);
|
|
223
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
224
|
+
} }), _jsx(SwitchRow, { label: "PR checks passed", id: "notif-event-prChecksPassed", testId: "switch-event-prChecksPassed", checked: events.prChecksPassed, onChange: (v) => {
|
|
225
|
+
const newEvents = { ...events, prChecksPassed: v };
|
|
226
|
+
setEvents(newEvents);
|
|
227
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
228
|
+
} }), _jsx(SwitchRow, { label: "PR checks failed", id: "notif-event-prChecksFailed", testId: "switch-event-prChecksFailed", checked: events.prChecksFailed, onChange: (v) => {
|
|
229
|
+
const newEvents = { ...events, prChecksFailed: v };
|
|
230
|
+
setEvents(newEvents);
|
|
231
|
+
save(buildNotificationPayload({ events: newEvents }));
|
|
232
|
+
} }), _jsx("h2", { className: "text-muted-foreground mt-6 mb-1 text-xs font-medium tracking-wide uppercase", "data-testid": "feature-flags-settings-section", children: "Feature Flags" }), _jsx(SwitchRow, { label: "Skills", id: "flag-skills", testId: "switch-flag-skills", checked: flags.skills, onChange: (v) => {
|
|
233
|
+
const newFlags = { ...flags, skills: v };
|
|
234
|
+
setFlags(newFlags);
|
|
235
|
+
save({ featureFlags: newFlags });
|
|
236
|
+
} }), _jsx(SwitchRow, { label: "Deployments", id: "flag-envDeploy", testId: "switch-flag-envDeploy", checked: flags.envDeploy, onChange: (v) => {
|
|
237
|
+
const newFlags = { ...flags, envDeploy: v };
|
|
238
|
+
setFlags(newFlags);
|
|
239
|
+
save({ featureFlags: newFlags });
|
|
240
|
+
} }), _jsx(SwitchRow, { label: "Debug", id: "flag-debug", testId: "switch-flag-debug", checked: flags.debug, onChange: (v) => {
|
|
241
|
+
const newFlags = { ...flags, debug: v };
|
|
242
|
+
setFlags(newFlags);
|
|
243
|
+
save({ featureFlags: newFlags });
|
|
244
|
+
} }), _jsx("h2", { className: "text-muted-foreground mt-6 mb-1 text-xs font-medium tracking-wide uppercase", "data-testid": "database-settings-section", children: "Database" }), _jsx(SettingsRow, { label: "Location", children: _jsx("span", { className: "text-muted-foreground max-w-50 truncate font-mono text-xs", "data-testid": "shep-home-path", children: shepHome }) }), _jsx(SettingsRow, { label: "Size", children: _jsx("span", { className: "text-muted-foreground text-xs", "data-testid": "db-file-size", children: dbFileSize }) })] })] }));
|
|
245
|
+
}
|
package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/react';
|
|
2
|
+
import { SettingsPageClient } from './settings-page-client.js';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof SettingsPageClient;
|
|
6
|
+
tags: string[];
|
|
7
|
+
parameters: {
|
|
8
|
+
layout: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export default meta;
|
|
12
|
+
type Story = StoryObj<typeof meta>;
|
|
13
|
+
export declare const Default: Story;
|
|
14
|
+
export declare const AllSections: Story;
|
|
15
|
+
//# sourceMappingURL=settings-page-client.stories.d.ts.map
|
package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"settings-page-client.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAM5D,QAAA,MAAM,IAAI;;;;;;;CAOiC,CAAC;AAE5C,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAMrB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAkBzB,CAAC"}
|
package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { SettingsPageClient } from './settings-page-client.js';
|
|
2
|
+
import { createDefaultSettings } from '../../../../../../packages/core/src/domain/factories/settings-defaults.factory.js';
|
|
3
|
+
import { AgentType, AgentAuthMethod } from '../../../../../../packages/core/src/domain/generated/output.js';
|
|
4
|
+
const defaultSettings = createDefaultSettings();
|
|
5
|
+
const meta = {
|
|
6
|
+
title: 'Features/Settings/SettingsPageClient',
|
|
7
|
+
component: SettingsPageClient,
|
|
8
|
+
tags: ['autodocs'],
|
|
9
|
+
parameters: {
|
|
10
|
+
layout: 'padded',
|
|
11
|
+
},
|
|
12
|
+
};
|
|
13
|
+
export default meta;
|
|
14
|
+
export const Default = {
|
|
15
|
+
args: {
|
|
16
|
+
settings: defaultSettings,
|
|
17
|
+
shepHome: '/home/user/.shep',
|
|
18
|
+
dbFileSize: '2.4 MB',
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
export const AllSections = {
|
|
22
|
+
args: {
|
|
23
|
+
settings: {
|
|
24
|
+
...defaultSettings,
|
|
25
|
+
agent: {
|
|
26
|
+
type: AgentType.GeminiCli,
|
|
27
|
+
authMethod: AgentAuthMethod.Token,
|
|
28
|
+
token: 'sk-test-token-12345',
|
|
29
|
+
},
|
|
30
|
+
featureFlags: {
|
|
31
|
+
skills: true,
|
|
32
|
+
envDeploy: true,
|
|
33
|
+
debug: false,
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
shepHome: '/opt/shep',
|
|
37
|
+
dbFileSize: '12.8 MB',
|
|
38
|
+
},
|
|
39
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { WorkflowConfig } from '../../../../../../packages/core/src/domain/generated/output.js';
|
|
2
|
+
export interface WorkflowSettingsSectionProps {
|
|
3
|
+
workflow: WorkflowConfig;
|
|
4
|
+
}
|
|
5
|
+
export declare function WorkflowSettingsSection({ workflow }: WorkflowSettingsSectionProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
//# sourceMappingURL=workflow-settings-section.d.ts.map
|
package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workflow-settings-section.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/workflow-settings-section.tsx"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AAE3E,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,wBAAgB,uBAAuB,CAAC,EAAE,QAAQ,EAAE,EAAE,4BAA4B,2CAgQjF"}
|