@shepai/cli 1.106.3 → 1.106.4-pr327.f3fea88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/json-schema/FeatureFlags.yaml +5 -0
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +4 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +3 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.js +11 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +5 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/spec.schema.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/spec.schema.js +6 -1
- package/dist/src/presentation/web/app/api/chat/stream/route.d.ts +14 -0
- package/dist/src/presentation/web/app/api/chat/stream/route.d.ts.map +1 -0
- package/dist/src/presentation/web/app/api/chat/stream/route.js +153 -0
- package/dist/src/presentation/web/app/chat/page.d.ts +4 -0
- package/dist/src/presentation/web/app/chat/page.d.ts.map +1 -0
- package/dist/src/presentation/web/app/chat/page.js +11 -0
- package/dist/src/presentation/web/components/features/chat/chat-empty-state.d.ts +6 -0
- package/dist/src/presentation/web/components/features/chat/chat-empty-state.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/chat-empty-state.js +14 -0
- package/dist/src/presentation/web/components/features/chat/chat-empty-state.stories.d.ts +7 -0
- package/dist/src/presentation/web/components/features/chat/chat-empty-state.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/chat-empty-state.stories.js +15 -0
- package/dist/src/presentation/web/components/features/chat/chat-header.d.ts +7 -0
- package/dist/src/presentation/web/components/features/chat/chat-header.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/chat-header.js +10 -0
- package/dist/src/presentation/web/components/features/chat/chat-header.stories.d.ts +8 -0
- package/dist/src/presentation/web/components/features/chat/chat-header.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/chat-header.stories.js +20 -0
- package/dist/src/presentation/web/components/features/chat/chat-page-client.d.ts +2 -0
- package/dist/src/presentation/web/components/features/chat/chat-page-client.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/chat-page-client.js +50 -0
- package/dist/src/presentation/web/components/features/chat/chat-page-client.stories.d.ts +7 -0
- package/dist/src/presentation/web/components/features/chat/chat-page-client.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/chat-page-client.stories.js +15 -0
- package/dist/src/presentation/web/components/features/chat/chat-view.d.ts +24 -0
- package/dist/src/presentation/web/components/features/chat/chat-view.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/chat-view.js +17 -0
- package/dist/src/presentation/web/components/features/chat/chat-view.stories.d.ts +14 -0
- package/dist/src/presentation/web/components/features/chat/chat-view.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/chat-view.stories.js +149 -0
- package/dist/src/presentation/web/components/features/chat/index.d.ts +5 -0
- package/dist/src/presentation/web/components/features/chat/index.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/chat/index.js +4 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +3 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +3 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +6 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -1
- package/dist/src/presentation/web/components/ui/avatar.d.ts +12 -0
- package/dist/src/presentation/web/components/ui/avatar.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/avatar.js +23 -0
- package/dist/src/presentation/web/components/ui/chat-container.d.ts +17 -0
- package/dist/src/presentation/web/components/ui/chat-container.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/chat-container.js +14 -0
- package/dist/src/presentation/web/components/ui/code-block.d.ts +17 -0
- package/dist/src/presentation/web/components/ui/code-block.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/code-block.js +29 -0
- package/dist/src/presentation/web/components/ui/loader.d.ts +60 -0
- package/dist/src/presentation/web/components/ui/loader.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/loader.js +190 -0
- package/dist/src/presentation/web/components/ui/markdown.d.ts +12 -0
- package/dist/src/presentation/web/components/ui/markdown.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/markdown.js +50 -0
- package/dist/src/presentation/web/components/ui/message.d.ts +35 -0
- package/dist/src/presentation/web/components/ui/message.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/message.js +18 -0
- package/dist/src/presentation/web/components/ui/prompt-input.d.ts +30 -0
- package/dist/src/presentation/web/components/ui/prompt-input.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/prompt-input.js +98 -0
- package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/feature-flags-context.js +6 -1
- package/dist/src/presentation/web/hooks/use-chat.d.ts +57 -0
- package/dist/src/presentation/web/hooks/use-chat.d.ts.map +1 -0
- package/dist/src/presentation/web/hooks/use-chat.js +217 -0
- package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
- package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/feature-flags.js +7 -0
- 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 +2 -0
- package/web/.next/build-manifest.json +7 -7
- package/web/.next/fallback-build-manifest.json +2 -2
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +3 -3
- package/web/.next/required-server-files.json +3 -3
- package/web/.next/routes-manifest.json +12 -0
- package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +20 -20
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/build-manifest.json +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +25 -25
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +25 -25
- 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 +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +18 -18
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +5 -5
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +20 -20
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/build-manifest.json +5 -5
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +25 -25
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +5 -5
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +25 -25
- 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 +5 -5
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +18 -18
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +5 -5
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +18 -18
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error/page/build-manifest.json +5 -5
- package/web/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/server/app/_global-error.rsc +7 -7
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +2 -2
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +7 -7
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +3 -3
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +3 -3
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/build-manifest.json +5 -5
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/agent-events/route.js +1 -2
- package/web/.next/server/app/api/agent-events/route.js.nft.json +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/attachments/upload-from-path/route.js +1 -1
- package/web/.next/server/app/api/attachments/upload-from-path/route.js.nft.json +1 -1
- package/web/.next/server/app/api/chat/stream/route/app-paths-manifest.json +3 -0
- package/web/.next/server/app/api/chat/stream/route/build-manifest.json +11 -0
- package/web/.next/server/app/api/chat/stream/route/server-reference-manifest.json +4 -0
- package/web/.next/server/app/api/chat/stream/route.js +6 -0
- package/web/.next/server/app/api/chat/stream/route.js.map +5 -0
- package/web/.next/server/app/api/chat/stream/route.js.nft.json +1 -0
- package/web/.next/server/app/api/chat/stream/route_client-reference-manifest.js +2 -0
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/feature-logs/route.js +1 -1
- package/web/.next/server/app/api/feature-logs/route.js.nft.json +1 -1
- package/web/.next/server/app/chat/page/app-paths-manifest.json +3 -0
- package/web/.next/server/app/chat/page/build-manifest.json +18 -0
- package/web/.next/server/app/chat/page/next-font-manifest.json +6 -0
- package/web/.next/server/app/chat/page/react-loadable-manifest.json +1 -0
- package/web/.next/server/app/chat/page/server-reference-manifest.json +20 -0
- package/web/.next/server/app/chat/page.js +17 -0
- package/web/.next/server/app/chat/page.js.map +5 -0
- package/web/.next/server/app/chat/page.js.nft.json +1 -0
- package/web/.next/server/app/chat/page_client-reference-manifest.js +2 -0
- package/web/.next/server/app/settings/page/build-manifest.json +5 -5
- package/web/.next/server/app/settings/page/server-reference-manifest.json +5 -5
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/build-manifest.json +5 -5
- package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/skills/page.js +4 -4
- 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 +5 -5
- package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/build-manifest.json +5 -5
- package/web/.next/server/app/version/page/server-reference-manifest.json +2 -2
- 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 +2 -0
- package/web/.next/server/chunks/403f9_next_567de315._.js +1 -1
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_chat_stream_route_actions_ea265361.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__332c8d91._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__3b72e8b0._.js +1 -1
- package/web/.next/server/chunks/{[root-of-the-server]__91d44424._.js → [root-of-the-server]__52c318d1._.js} +2 -2
- package/web/.next/server/chunks/[root-of-the-server]__57104a4c._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__7d63f9a4._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__99c20fe5._.js +5 -0
- package/web/.next/server/chunks/[root-of-the-server]__99c20fe5._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__9a136c79._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__a1c7c02a._.js +1 -1
- package/web/.next/server/chunks/{[root-of-the-server]__db04ed44._.js → [root-of-the-server]__a5879003._.js} +2 -2
- package/web/.next/server/chunks/[root-of-the-server]__aae14de3._.js +6 -0
- package/web/.next/server/chunks/[root-of-the-server]__aae14de3._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__b2f9a412._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__d2c18946._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__d9d410a8._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__f47bb8a5._.js +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +4 -0
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_0a7546ed.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_0a7546ed.js.map +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_978cbb4c.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_978cbb4c.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__13482941._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__13482941._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1f1931f8._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1f1931f8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__248ee887._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__24dd0927._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__26d31159._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__26d31159._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2a6f3e3f._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2a6f3e3f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__51fc98b0._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__51fc98b0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__57f37786._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__57f37786._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__5d87af2e._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6803b571._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6803b571._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__708dcad1._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__708dcad1._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__845a9d2a._.js → [root-of-the-server]__753f42eb._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__753f42eb._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__89e8a5cc._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__89e8a5cc._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8e002910._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8e002910._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__99857356._.js +61 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__99857356._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9b8f6941._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9b8f6941._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b062b383._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_135edb9c._.js +1 -1
- package/web/.next/server/chunks/ssr/_135edb9c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_1f9b7ad3._.js → _15dc3761._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_1f9b7ad3._.js.map → _15dc3761._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_25eb2abf._.js +4 -0
- package/web/.next/server/chunks/ssr/_25eb2abf._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_273d4632._.js +1 -1
- package/web/.next/server/chunks/ssr/_34ba40e0._.js +3 -0
- package/web/.next/server/chunks/ssr/_34ba40e0._.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/_6a2e8373._.js +3 -0
- package/web/.next/server/chunks/ssr/_6a2e8373._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_6e08ce21._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_7ba5f9bd._.js +9 -0
- package/web/.next/server/chunks/ssr/_7ba5f9bd._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_8dacd1e7._.js +2 -2
- package/web/.next/server/chunks/ssr/_8dacd1e7._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_906e9cde._.js +3 -0
- package/web/.next/server/chunks/ssr/_906e9cde._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a37f5f18._.js +1 -1
- package/web/.next/server/chunks/ssr/_a37f5f18._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_b407679c._.js +3 -0
- package/web/.next/server/chunks/ssr/_b407679c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_cc77a143._.js +1 -1
- package/web/.next/server/chunks/ssr/_cc77a143._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d7c4fb01._.js +7 -0
- package/web/.next/server/chunks/ssr/_d7c4fb01._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_eb8add9f._.js +4 -0
- package/web/.next/server/chunks/ssr/_eb8add9f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_f5316e67._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/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_7275ce5d._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_7275ce5d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_758dfa10._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_758dfa10._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_84803221.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_84803221.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_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_db9fa0c2._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -0
- package/web/.next/server/middleware-build-manifest.js +5 -5
- 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 +38 -31
- package/web/.next/static/chunks/0000a3bd9d33363e.js +1 -0
- package/web/.next/static/chunks/{29c29800f5a2acc6.js → 0146cc63e09aa1fc.js} +1 -1
- package/web/.next/static/chunks/01c44c0f52e94d13.js +1 -0
- package/web/.next/static/chunks/025972c91961cb4f.js +1 -0
- package/web/.next/static/chunks/04077bc8814ebb95.js +1 -0
- package/web/.next/static/chunks/040f765faf202f21.js +1 -0
- package/web/.next/static/chunks/0452bf6331941e3f.js +1 -0
- package/web/.next/static/chunks/04abfd0d3656c990.js +1 -0
- package/web/.next/static/chunks/04ba2061ab93d4b4.js +1 -0
- package/web/.next/static/chunks/053a7b986353ec4b.js +1 -0
- package/web/.next/static/chunks/06f273bdc5828685.js +1 -0
- package/web/.next/static/chunks/0749a5b512d6df6b.js +1 -0
- package/web/.next/static/chunks/07720f62d0494cff.js +1 -0
- package/web/.next/static/chunks/07b3a3fe5ed6806c.js +1 -0
- package/web/.next/static/chunks/07ed2655f92b082d.js +1 -0
- package/web/.next/static/chunks/0820c893f5292ab6.js +1 -0
- package/web/.next/static/chunks/08fb03f101641646.js +1 -0
- package/web/.next/static/chunks/0992e1494eb73f73.js +1 -0
- package/web/.next/static/chunks/{b2b65ee0666a829a.js → 0b0f65124c9e6e98.js} +1 -1
- package/web/.next/static/chunks/0b64f70d18b592a9.js +1 -0
- package/web/.next/static/chunks/0b925ca1a402d3cd.js +1 -0
- package/web/.next/static/chunks/0c4d93176dc739f0.js +1 -0
- package/web/.next/static/chunks/0c65283281ae11be.js +1 -0
- package/web/.next/static/chunks/0c82301271695b04.js +1 -0
- package/web/.next/static/chunks/0d6db841c33ab4f1.js +1 -0
- package/web/.next/static/chunks/0d813d73dacd9b43.js +1 -0
- package/web/.next/static/chunks/0dcf159fb9a610e4.js +1 -0
- package/web/.next/static/chunks/0e7dfad45e402b87.js +1 -0
- package/web/.next/static/chunks/0e827c7f60ca4551.js +1 -0
- package/web/.next/static/chunks/0f619c5c402fb9f4.js +1 -0
- package/web/.next/static/chunks/0f83f16fa24fd5d7.js +1 -0
- package/web/.next/static/chunks/0feedea346fd5fbe.js +1 -0
- package/web/.next/static/chunks/12dbfd5ed203fd8c.js +1 -0
- package/web/.next/static/chunks/13ab63bcbd1b9d73.js +1 -0
- package/web/.next/static/chunks/14e6e069b833483c.js +1 -0
- package/web/.next/static/chunks/15049e8c70931a5c.js +1 -0
- package/web/.next/static/chunks/15e9e6d3526dba19.js +1 -0
- package/web/.next/static/chunks/1675a99c138a8dff.js +1 -0
- package/web/.next/static/chunks/18257a988399c500.js +1 -0
- package/web/.next/static/chunks/18b8b7c0f43653ed.js +1 -0
- package/web/.next/static/chunks/1903ea0fc4a1c66a.js +1 -0
- package/web/.next/static/chunks/1a9763ce5ba22b57.js +1 -0
- package/web/.next/static/chunks/1c5a18c436c08be5.js +1 -0
- package/web/.next/static/chunks/1d95a3b4ad425e84.js +1 -0
- package/web/.next/static/chunks/1e88753738d86281.js +1 -0
- package/web/.next/static/chunks/1f5b06b26b55f61e.js +1 -0
- package/web/.next/static/chunks/20e893034947cff0.js +1 -0
- package/web/.next/static/chunks/2199bd4a3f61c371.js +1 -0
- package/web/.next/static/chunks/21f6010e9d824e2b.js +1 -0
- package/web/.next/static/chunks/2277de4cd5d76ea0.js +1 -0
- package/web/.next/static/chunks/23874b32b27bc398.js +1 -0
- package/web/.next/static/chunks/242af1b1794692bb.js +1 -0
- package/web/.next/static/chunks/24ff7613e7640548.js +1 -0
- package/web/.next/static/chunks/255b89458bc45261.js +1 -0
- package/web/.next/static/chunks/256f95ef70dd81c3.js +1 -0
- package/web/.next/static/chunks/2612e5560f8ba2c2.js +1 -0
- package/web/.next/static/chunks/26cc1fb330a4c4ef.js +1 -0
- package/web/.next/static/chunks/2796913db81fa3a0.js +1 -0
- package/web/.next/static/chunks/2a0985b01345546d.js +1 -0
- package/web/.next/static/chunks/2a13aed05cd157cb.js +1 -0
- package/web/.next/static/chunks/2a65cbda6248ac45.js +1 -0
- package/web/.next/static/chunks/2a9e798066780ccb.js +1 -0
- package/web/.next/static/chunks/2aecaa7075dff32c.js +1 -0
- package/web/.next/static/chunks/2aff3eb00311b5ff.js +1 -0
- package/web/.next/static/chunks/2b601943d3e94e5b.js +1 -0
- package/web/.next/static/chunks/2ce5939b18e1a21e.js +1 -0
- package/web/.next/static/chunks/2d204a2a777b935d.js +1 -0
- package/web/.next/static/chunks/2d64b4ffcaccace0.js +1 -0
- package/web/.next/static/chunks/2d890ccc3bdefafa.js +1 -0
- package/web/.next/static/chunks/2e25aca5b7400f56.js +1 -0
- package/web/.next/static/chunks/2ed750fa9ff05fb4.js +1 -0
- package/web/.next/static/chunks/2f1a7ab193aa56ab.js +1 -0
- package/web/.next/static/chunks/2fc0965d77242987.js +1 -0
- package/web/.next/static/chunks/3054fd6667aee1d2.js +1 -0
- package/web/.next/static/chunks/305ea36a55b1b01d.js +1 -0
- package/web/.next/static/chunks/31345772bfb5b56d.js +1 -0
- package/web/.next/static/chunks/31e19c87048a2dd2.js +1 -0
- package/web/.next/static/chunks/32a5dff7a1424ce7.js +1 -0
- package/web/.next/static/chunks/3320db3c4bd922dd.js +1 -0
- package/web/.next/static/chunks/338b409bcf9c5da6.js +1 -0
- package/web/.next/static/chunks/33f71ecfbcc40eb8.js +1 -0
- package/web/.next/static/chunks/35bc063ce1c82d62.js +1 -0
- package/web/.next/static/chunks/366630af12ceb9aa.js +1 -0
- package/web/.next/static/chunks/36a02bc96e797be1.js +1 -0
- package/web/.next/static/chunks/3857a5a593f557b6.js +1 -0
- package/web/.next/static/chunks/38f38199611b387a.js +1 -0
- package/web/.next/static/chunks/39fd8dea78ce33a1.js +1 -0
- package/web/.next/static/chunks/3a9753d40e045b8f.js +1 -0
- package/web/.next/static/chunks/3ae3c50c728eab31.js +11 -0
- package/web/.next/static/chunks/3b811f725088f5ec.js +1 -0
- package/web/.next/static/chunks/3d0086082ce28745.js +1 -0
- package/web/.next/static/chunks/3daba4c77e106a0b.js +1 -0
- package/web/.next/static/chunks/3eeb840a2075bfde.js +1 -0
- package/web/.next/static/chunks/3f2585c9332265e2.js +1 -0
- package/web/.next/static/chunks/3f701f917196c596.js +1 -0
- package/web/.next/static/chunks/4028b1961891bd0b.js +1 -0
- package/web/.next/static/chunks/40962df79d5b9308.js +1 -0
- package/web/.next/static/chunks/40bdb6b0b6b24b30.js +1 -0
- package/web/.next/static/chunks/419f2849c47d15b0.js +1 -0
- package/web/.next/static/chunks/4301b2746001957f.js +1 -0
- package/web/.next/static/chunks/458a6ec844531967.js +1 -0
- package/web/.next/static/chunks/45ae42a60c5885ba.js +1 -0
- package/web/.next/static/chunks/45d55f26409a62e9.js +1 -0
- package/web/.next/static/chunks/469057391d9b81af.js +1 -0
- package/web/.next/static/chunks/46af0d08db9ec138.js +1 -0
- package/web/.next/static/chunks/47dd15642d568b90.js +1 -0
- package/web/.next/static/chunks/4be33773114cd302.js +1 -0
- package/web/.next/static/chunks/4c3eff62cda82668.js +1 -0
- package/web/.next/static/chunks/4c592610236f630f.js +4 -0
- package/web/.next/static/chunks/4cc404bcff34a71f.js +1 -0
- package/web/.next/static/chunks/4d44c49ec4cdd79f.js +1 -0
- package/web/.next/static/chunks/4f0c36555d75e5fe.js +1 -0
- package/web/.next/static/chunks/554aadda059a8430.js +1 -0
- package/web/.next/static/chunks/55c4d9d2fddbead4.js +1 -0
- package/web/.next/static/chunks/55dc4e8d31455c2d.js +1 -0
- package/web/.next/static/chunks/5737640b5eb3844c.js +1 -0
- package/web/.next/static/chunks/5874c94c33f9b7b0.js +1 -0
- package/web/.next/static/chunks/58d9b3be51fd5de0.js +1 -0
- package/web/.next/static/chunks/5a4e2f295be16022.js +1 -0
- package/web/.next/static/chunks/5bc3c8f3a6aca6fa.js +1 -0
- package/web/.next/static/chunks/5c3c605bb590e3e7.js +1 -0
- package/web/.next/static/chunks/5c955aad7e021e56.js +1 -0
- package/web/.next/static/chunks/5cb21622c5e5747e.js +1 -0
- package/web/.next/static/chunks/5cdf0942d4f7ed5f.js +1 -0
- package/web/.next/static/chunks/5d4a3f9a24a357ab.js +1 -0
- package/web/.next/static/chunks/5d97d16f083409e9.js +1 -0
- package/web/.next/static/chunks/60f3d869542bf677.js +1 -0
- package/web/.next/static/chunks/62224eae737b4521.js +1 -0
- package/web/.next/static/chunks/6539d0757f0cfc29.js +1 -0
- package/web/.next/static/chunks/65a238abdcb11bcd.js +1 -0
- package/web/.next/static/chunks/65b76ab700c2a9d0.js +1 -0
- package/web/.next/static/chunks/660ad72a4adcb7fc.js +1 -0
- package/web/.next/static/chunks/664c671566a249f4.js +1 -0
- package/web/.next/static/chunks/66bbfced65db425f.js +1 -0
- package/web/.next/static/chunks/68b6eedefa12f8c7.js +1 -0
- package/web/.next/static/chunks/68fa8559029f9f41.js +1 -0
- package/web/.next/static/chunks/6947ab623933a779.js +1 -0
- package/web/.next/static/chunks/6e9f2a1a17352af0.js +1 -0
- package/web/.next/static/chunks/6ee18bbefc401436.js +1 -0
- package/web/.next/static/chunks/6f83a2cba6850e4a.js +1 -0
- package/web/.next/static/chunks/6fb42a88b84aa22b.js +1 -0
- package/web/.next/static/chunks/6ffd8d481eb5e86a.js +1 -0
- package/web/.next/static/chunks/70ebb562067defff.js +1 -0
- package/web/.next/static/chunks/719ffd0d25696861.js +1 -0
- package/web/.next/static/chunks/71bbf75ff7ac7d1c.js +1 -0
- package/web/.next/static/chunks/72452c79bb483893.js +1 -0
- package/web/.next/static/chunks/{0102ce60a2a42fab.js → 73512dcafc035901.js} +1 -1
- package/web/.next/static/chunks/737b452d10950f75.js +1 -0
- package/web/.next/static/chunks/73c9849a26d56eaf.js +1 -0
- package/web/.next/static/chunks/742ddcbde2de0a5f.js +1 -0
- package/web/.next/static/chunks/75f20501876081ae.js +1 -0
- package/web/.next/static/chunks/771904aa3f2b5890.js +1 -0
- package/web/.next/static/chunks/78140b3927f34ee1.js +1 -0
- package/web/.next/static/chunks/78c2221a0e9ac3e0.js +1 -0
- package/web/.next/static/chunks/7a16988476a29ae1.js +1 -0
- package/web/.next/static/chunks/7aebb2852b03cf3b.js +1 -0
- package/web/.next/static/chunks/{d4ee1f8f03cee0aa.js → 7b3bad34a11293ef.js} +1 -1
- package/web/.next/static/chunks/7cada01735a2de18.js +1 -0
- package/web/.next/static/chunks/7cd5e13ac856cf73.js +1 -0
- package/web/.next/static/chunks/7d0c918f6da54095.js +1 -0
- package/web/.next/static/chunks/7e55ce83f10514a3.js +1 -0
- package/web/.next/static/chunks/7e70c7df8d1224f0.js +1 -0
- package/web/.next/static/chunks/7f3161de6996c05f.js +1 -0
- package/web/.next/static/chunks/806207333fba56e3.js +1 -0
- package/web/.next/static/chunks/825f5a75a38db3ec.js +1 -0
- package/web/.next/static/chunks/82df15d2af5efffe.js +1 -0
- package/web/.next/static/chunks/83397d71344d405d.js +1 -0
- package/web/.next/static/chunks/8478b108a35675bb.js +1 -0
- package/web/.next/static/chunks/84b6fde40fe98bbc.js +1 -0
- package/web/.next/static/chunks/8525e0fed6102ee4.js +1 -0
- package/web/.next/static/chunks/858a571e17cbe069.js +1 -0
- package/web/.next/static/chunks/8599414ffd4e15f5.js +1 -0
- package/web/.next/static/chunks/85da8b6aabbfc33c.js +1 -0
- package/web/.next/static/chunks/8866422156b74976.js +1 -0
- package/web/.next/static/chunks/8884218357d06e4c.js +1 -0
- package/web/.next/static/chunks/890e85bcb002030f.js +1 -0
- package/web/.next/static/chunks/8a6482e4289bd485.js +1 -0
- package/web/.next/static/chunks/8b34938e48e56746.js +1 -0
- package/web/.next/static/chunks/8bc16f2ee0ac282b.js +1 -0
- package/web/.next/static/chunks/8c05e7493172a40a.js +1 -0
- package/web/.next/static/chunks/8c16bb1814e36e5d.js +1 -0
- package/web/.next/static/chunks/8d9c6ac44d75942c.js +1 -0
- package/web/.next/static/chunks/8e2d9292729601b9.js +1 -0
- package/web/.next/static/chunks/8ed313638226f782.js +1 -0
- package/web/.next/static/chunks/{cfe4dc9904fcfddb.js → 8f4b01641dd98daa.js} +1 -1
- package/web/.next/static/chunks/8f98e5a8f241fe53.js +1 -0
- package/web/.next/static/chunks/8fc154c5edda0beb.js +1 -0
- package/web/.next/static/chunks/8fe2d5b09bf432b8.js +1 -0
- package/web/.next/static/chunks/8fe35ce71e4ad05b.js +1 -0
- package/web/.next/static/chunks/9067d4871d0c903f.js +1 -0
- package/web/.next/static/chunks/92d091aa318b78fb.js +1 -0
- package/web/.next/static/chunks/93af57e60f3a66ba.js +1 -0
- package/web/.next/static/chunks/93dd149a0766adcc.js +1 -0
- package/web/.next/static/chunks/957474fa08a22115.js +1 -0
- package/web/.next/static/chunks/95b925bb74686af7.js +1 -0
- package/web/.next/static/chunks/96158847987b2403.js +1 -0
- package/web/.next/static/chunks/975c124d34c8c6a8.js +1 -0
- package/web/.next/static/chunks/97bf3636621b58c7.js +1 -0
- package/web/.next/static/chunks/97e9c48e0abc9a50.js +1 -0
- package/web/.next/static/chunks/{fe70e73feb07bcfd.js → 98c68c9ea7a9e597.js} +1 -1
- package/web/.next/static/chunks/99052b059a0075f9.js +1 -0
- package/web/.next/static/chunks/99de3f6268e262a3.js +1 -0
- package/web/.next/static/chunks/99e12f466e3868ca.js +1 -0
- package/web/.next/static/chunks/9ba434534d00d922.js +1 -0
- package/web/.next/static/chunks/9d3cb38ab5fb405b.js +1 -0
- package/web/.next/static/chunks/9d5adb23e0187d9c.js +1 -0
- package/web/.next/static/chunks/9d8444f3f16a0998.js +1 -0
- package/web/.next/static/chunks/9dd2a16ac3fea1f1.js +1 -0
- package/web/.next/static/chunks/9e66ab37fd08bc66.js +1 -0
- package/web/.next/static/chunks/a09fa49dbf0f3636.js +1 -0
- package/web/.next/static/chunks/a2000986cd87a131.js +1 -0
- package/web/.next/static/chunks/a31fd9cfaa7a3158.js +1 -0
- package/web/.next/static/chunks/a38e1790e76ded6c.js +1 -0
- package/web/.next/static/chunks/a662e9340d282c55.js +1 -0
- package/web/.next/static/chunks/a77c0a719a2cc920.js +1 -0
- package/web/.next/static/chunks/a7f8cdb6749f9bdd.js +1 -0
- package/web/.next/static/chunks/a8a4fdbbcb3a5998.js +1 -0
- package/web/.next/static/chunks/a8f26eabe8187392.js +1 -0
- package/web/.next/static/chunks/a954d978d5e9781e.js +1 -0
- package/web/.next/static/chunks/a977e04dad1a77c7.js +1 -0
- package/web/.next/static/chunks/abd77592929f00d5.js +1 -0
- package/web/.next/static/chunks/ac53962c1a4765c7.js +1 -0
- package/web/.next/static/chunks/ade5ee5b3412436e.js +1 -0
- package/web/.next/static/chunks/ae84e9326b9e9200.js +2 -0
- package/web/.next/static/chunks/b0810838151379a2.js +1 -0
- package/web/.next/static/chunks/b1106224fbc2f015.js +1 -0
- package/web/.next/static/chunks/b13329875853d9a5.js +1 -0
- package/web/.next/static/chunks/b1460995e7a388b9.css +1 -0
- package/web/.next/static/chunks/b2b08e8fb70210c7.js +1 -0
- package/web/.next/static/chunks/b2f0e49369262eea.js +1 -0
- package/web/.next/static/chunks/b46abe587d05f58c.js +1 -0
- package/web/.next/static/chunks/b555154c60b9d90c.js +1 -0
- package/web/.next/static/chunks/b61982efe6f7e40e.js +1 -0
- package/web/.next/static/chunks/b6972d679174ce65.js +1 -0
- package/web/.next/static/chunks/b6ae34a5c2627d04.js +1 -0
- package/web/.next/static/chunks/bae57337da9a2d34.js +1 -0
- package/web/.next/static/chunks/bba2ccf4fd7849e1.js +1 -0
- package/web/.next/static/chunks/bc21e40585b8dcf4.js +1 -0
- package/web/.next/static/chunks/bd0cd7805b800eab.js +1 -0
- package/web/.next/static/chunks/bf13e9bc0390b21d.js +59 -0
- package/web/.next/static/chunks/bfec0c4899344791.js +1 -0
- package/web/.next/static/chunks/c1a40361928a6f90.js +1 -0
- package/web/.next/static/chunks/c1f34786f0d6908c.js +2 -0
- package/web/.next/static/chunks/c1fa94e9df162cb2.js +1 -0
- package/web/.next/static/chunks/c260a37325b283d3.js +1 -0
- package/web/.next/static/chunks/c3abb9ed0d089656.js +1 -0
- package/web/.next/static/chunks/c49a32e2d002dd91.js +1 -0
- package/web/.next/static/chunks/c564bdda2d517997.js +1 -0
- package/web/.next/static/chunks/c5c7a925445f4d05.js +1 -0
- package/web/.next/static/chunks/c7e793951b20a67f.js +1 -0
- package/web/.next/static/chunks/c86d4c471f194ad0.js +1 -0
- package/web/.next/static/chunks/c8d2cd372806e8b4.js +1 -0
- package/web/.next/static/chunks/c932b41ef3a40647.js +1 -0
- package/web/.next/static/chunks/c95abf23ce28b320.js +1 -0
- package/web/.next/static/chunks/c9d225b49db0980e.js +1 -0
- package/web/.next/static/chunks/c9e3afa09e76a4b2.js +1 -0
- package/web/.next/static/chunks/c9ef2470073e11cb.js +1 -0
- package/web/.next/static/chunks/ca201ae288dba155.js +1 -0
- package/web/.next/static/chunks/ca6196a863fc258d.js +1 -0
- package/web/.next/static/chunks/cac3a64966a112f7.js +1 -0
- package/web/.next/static/chunks/cb1e02415930189c.js +1 -0
- package/web/.next/static/chunks/cb412c095989545d.js +1 -0
- package/web/.next/static/chunks/cba332976e88a351.js +1 -0
- package/web/.next/static/chunks/cbf0c6470851a2f0.js +1 -0
- package/web/.next/static/chunks/cc60420e9bf53d96.js +1 -0
- package/web/.next/static/chunks/cc9054c5e6e1c706.js +1 -0
- package/web/.next/static/chunks/cd3bf2c5469b9646.js +1 -0
- package/web/.next/static/chunks/cdd7964a31b63d66.js +1 -0
- package/web/.next/static/chunks/cdd7f91e23b5ea49.js +1 -0
- package/web/.next/static/chunks/ce6a2fd4485c50c7.js +1 -0
- package/web/.next/static/chunks/d04de4be30ab78ca.js +3 -0
- package/web/.next/static/chunks/d0be65e7d38590b6.js +1 -0
- package/web/.next/static/chunks/d128b5501807e6f0.js +1 -0
- package/web/.next/static/chunks/d2124558f2b71c54.js +1 -0
- package/web/.next/static/chunks/d21a7ac5bcd538a3.js +1 -0
- package/web/.next/static/chunks/d35123b0dc2e2702.js +1 -0
- package/web/.next/static/chunks/d3ff3d218c7ad329.js +1 -0
- package/web/.next/static/chunks/d47def0da790a783.js +1 -0
- package/web/.next/static/chunks/d56169a6ceb14d27.js +1 -0
- package/web/.next/static/chunks/d5f1eede831e271a.js +1 -0
- package/web/.next/static/chunks/d62ba6ca7b41e179.js +1 -0
- package/web/.next/static/chunks/d6e74c394e816b3a.js +1 -0
- package/web/.next/static/chunks/d700d036b0dd9d28.js +1 -0
- package/web/.next/static/chunks/d7922dc82b3d8177.js +1 -0
- package/web/.next/static/chunks/d79a28dee31b3e43.js +1 -0
- package/web/.next/static/chunks/d88d6c7dd4fb3eb0.js +1 -0
- package/web/.next/static/chunks/d95b6e4c9a832b75.js +1 -0
- package/web/.next/static/chunks/dac044a4e6d8e3d4.js +1 -0
- package/web/.next/static/chunks/db873305cb622122.js +1 -0
- package/web/.next/static/chunks/dba11645cc1ddde8.js +1 -0
- package/web/.next/static/chunks/dbfb2921fe1fbe42.js +1 -0
- package/web/.next/static/chunks/dc75258a3914ab28.js +1 -0
- package/web/.next/static/chunks/ddbb7e6d2aa7940f.js +1 -0
- package/web/.next/static/chunks/ddcfb6c08594ccb7.js +1 -0
- package/web/.next/static/chunks/de82d83003608b30.js +1 -0
- package/web/.next/static/chunks/debe9e537fa1dd5c.js +1 -0
- package/web/.next/static/chunks/e0e2881173c1b4ea.js +1 -0
- package/web/.next/static/chunks/e16538f1db410909.js +1 -0
- package/web/.next/static/chunks/e1dcb6b88dd2cbfb.js +1 -0
- package/web/.next/static/chunks/e1ec2aeadbc3e43e.js +1 -0
- package/web/.next/static/chunks/e4967b0e84ca5a95.js +1 -0
- package/web/.next/static/chunks/e4c653eb9557c225.js +1 -0
- package/web/.next/static/chunks/e51516e366109a4d.js +1 -0
- package/web/.next/static/chunks/e759235b76258903.js +1 -0
- package/web/.next/static/chunks/e75c5376799db08c.js +1 -0
- package/web/.next/static/chunks/e8341f198526730e.js +1 -0
- package/web/.next/static/chunks/e8d014f4a5df5f4b.js +1 -0
- package/web/.next/static/chunks/eab21ff64827175b.js +1 -0
- package/web/.next/static/chunks/eaf5638419fe834d.js +1 -0
- package/web/.next/static/chunks/eb49387d22b57020.js +1 -0
- package/web/.next/static/chunks/ebb7e6387076d1f2.js +1 -0
- package/web/.next/static/chunks/ecf9bd4e51bc22b2.js +1 -0
- package/web/.next/static/chunks/ed5f5eaaba3fe86e.js +1 -0
- package/web/.next/static/chunks/ee3792dfe67952fc.js +1 -0
- package/web/.next/static/chunks/ee96f625d002bb6f.js +1 -0
- package/web/.next/static/chunks/f01c407dc77e32e6.js +1 -0
- package/web/.next/static/chunks/f05e324248b7eefa.js +1 -0
- package/web/.next/static/chunks/f116adff993e4e78.js +1 -0
- package/web/.next/static/chunks/f48a6189ac11bc51.js +1 -0
- package/web/.next/static/chunks/f57a12cf8a7fa100.js +1 -0
- package/web/.next/static/chunks/f6bf8273ddaca996.js +1 -0
- package/web/.next/static/chunks/f7313a12522304e8.js +1 -0
- package/web/.next/static/chunks/f7938fccffa01b89.js +1 -0
- package/web/.next/static/chunks/f7b685bb0cb377c2.js +1 -0
- package/web/.next/static/chunks/f7e499a9733db05b.js +1 -0
- package/web/.next/static/chunks/fa113f988d09306b.js +1 -0
- package/web/.next/static/chunks/fc1587c1e44444d4.js +1 -0
- package/web/.next/static/chunks/fcb420148a0cf38e.js +1 -0
- package/web/.next/static/chunks/fd6bbc9c53b0101e.js +1 -0
- package/web/.next/static/chunks/fef1f3b5114b8d2d.js +1 -0
- package/web/.next/static/chunks/{b1eadf24106c53ce.js → ff20a3511ab6687b.js} +1 -1
- package/web/.next/static/chunks/{turbopack-426d9bc2450816ba.js → turbopack-19fdba76a6171f31.js} +1 -1
- package/web/package.json +6 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +0 -6
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__3b22a1eb._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__3b22a1eb._.js.map +0 -1
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_d0119342._.js +0 -3
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_d0119342._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__52485955._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__845a9d2a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d91fdd51._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d91fdd51._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_025a2fa0._.js +0 -4
- package/web/.next/server/chunks/ssr/_025a2fa0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_1bb131c4._.js +0 -3
- package/web/.next/server/chunks/ssr/_1bb131c4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_3a4c94e3._.js +0 -3
- package/web/.next/server/chunks/ssr/_3a4c94e3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_8afac0ca._.js +0 -3
- package/web/.next/server/chunks/ssr/_8afac0ca._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_9ac70f88._.js +0 -5
- package/web/.next/server/chunks/ssr/_9ac70f88._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_a68d7e1c._.js +0 -9
- package/web/.next/server/chunks/ssr/_a68d7e1c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_b5fc318a._.js +0 -3
- package/web/.next/server/chunks/ssr/_b5fc318a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_e6f2da4f._.js +0 -7
- package/web/.next/server/chunks/ssr/_e6f2da4f._.js.map +0 -1
- package/web/.next/static/chunks/07b853e29af1e5f2.js +0 -1
- package/web/.next/static/chunks/3bb35e0689e8b6b7.js +0 -1
- package/web/.next/static/chunks/52b56677c842e45f.js +0 -3
- package/web/.next/static/chunks/77ae4e64052864f9.js +0 -2
- package/web/.next/static/chunks/79474459eb409359.js +0 -1
- package/web/.next/static/chunks/84a181ff3270fd9f.js +0 -1
- package/web/.next/static/chunks/8c0f3126502dea0a.js +0 -11
- package/web/.next/static/chunks/8c3a1b4dd386fb21.js +0 -1
- package/web/.next/static/chunks/c750d771701b9b97.js +0 -1
- package/web/.next/static/chunks/d4d8f0a137bd2eb4.js +0 -4
- package/web/.next/static/chunks/db122a6247f69104.css +0 -1
- package/web/.next/static/chunks/ea320f314a210a70.js +0 -2
- package/web/.next/static/chunks/ed3a602003bcb31b.js +0 -1
- /package/web/.next/server/chunks/{ssr/[root-of-the-server]__52485955._.js.map → 744ca_web__next-internal_server_app_api_chat_stream_route_actions_ea265361.js.map} +0 -0
- /package/web/.next/server/chunks/{[root-of-the-server]__91d44424._.js.map → [root-of-the-server]__52c318d1._.js.map} +0 -0
- /package/web/.next/server/chunks/{[root-of-the-server]__db04ed44._.js.map → [root-of-the-server]__a5879003._.js.map} +0 -0
- /package/web/.next/static/{uT0QQwg2cbMo46NG69Bky → OiQDaxgdMUYHZ4ZGZWNWt}/_buildManifest.js +0 -0
- /package/web/.next/static/{uT0QQwg2cbMo46NG69Bky → OiQDaxgdMUYHZ4ZGZWNWt}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{uT0QQwg2cbMo46NG69Bky → OiQDaxgdMUYHZ4ZGZWNWt}/_ssgManifest.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,98348,e=>{"use strict";let t=Object.freeze(JSON.parse('{"displayName":"WebAssembly Interface Types","foldingStartMarker":"([\\\\[{])\\\\s*","foldingStopMarker":"\\\\s*([]}])","name":"wit","patterns":[{"include":"#comment"},{"include":"#package"},{"include":"#toplevel-use"},{"include":"#world"},{"include":"#interface"},{"include":"#whitespace"}],"repository":{"block-comments":{"patterns":[{"match":"/\\\\*\\\\*/","name":"comment.block.empty.wit"},{"applyEndPatternLast":1,"begin":"/\\\\*\\\\*","end":"\\\\*/","name":"comment.block.documentation.wit","patterns":[{"include":"#block-comments"},{"include":"#markdown"},{"include":"#whitespace"}]},{"applyEndPatternLast":1,"begin":"/\\\\*(?!\\\\*)","end":"\\\\*/","name":"comment.block.wit","patterns":[{"include":"#block-comments"},{"include":"#whitespace"}]}]},"boolean":{"match":"\\\\b(bool)\\\\b","name":"entity.name.type.boolean.wit"},"comment":{"patterns":[{"include":"#block-comments"},{"include":"#doc-comment"},{"include":"#line-comment"}]},"container":{"name":"meta.container.ty.wit","patterns":[{"include":"#tuple"},{"include":"#list"},{"include":"#option"},{"include":"#result"},{"include":"#handle"}]},"doc-comment":{"begin":"^\\\\s*///","end":"$","name":"comment.line.documentation.wit","patterns":[{"include":"#markdown"}]},"enum":{"applyEndPatternLast":1,"begin":"\\\\b(enum)\\\\b\\\\s+%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(\\\\{)","beginCaptures":{"1":{"name":"keyword.other.enum.enum-items.wit"},"2":{"name":"entity.name.type.id.enum-items.wit"},"7":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.enum-items.wit","patterns":[{"include":"#comment"},{"include":"#enum-cases"},{"include":"#whitespace"}]},"enum-cases":{"name":"meta.enum-cases.wit","patterns":[{"include":"#comment"},{"match":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b","name":"variable.other.enummember.id.enum-cases.wit"},{"match":"(,)","name":"punctuation.comma.wit"},{"include":"#whitespace"}]},"extern":{"name":"meta.extern-type.wit","patterns":[{"name":"meta.interface-type.wit","patterns":[{"applyEndPatternLast":1,"begin":"\\\\b(interface)\\\\b\\\\s*(\\\\{)","beginCaptures":{"1":{"name":"keyword.other.interface.interface-type.wit"},"2":{"name":"ppunctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"patterns":[{"include":"#comment"},{"include":"#interface-items"},{"include":"#whitespace"}]}]},{"include":"#function-definition"},{"include":"#use-path"}]},"flags":{"applyEndPatternLast":1,"begin":"\\\\b(flags)\\\\s+%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(\\\\{)","beginCaptures":{"1":{"name":"keyword.other.flags.flags-items.wit"},"2":{"name":"entity.name.type.id.flags-items.wit"},"7":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.flags-items.wit","patterns":[{"include":"#comment"},{"include":"#flags-fields"},{"include":"#whitespace"}]},"flags-fields":{"name":"meta.flags-fields.wit","patterns":[{"include":"#comment"},{"match":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b","name":"variable.other.enummember.id.flags-fields.wit"},{"match":"(,)","name":"punctuation.comma.wit"},{"include":"#whitespace"}]},"function":{"applyEndPatternLast":1,"begin":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(:)","beginCaptures":{"1":{"name":"entity.name.function.id.func-item.wit"},"2":{"name":"meta.word.wit"},"4":{"name":"meta.word-separator.wit"},"5":{"name":"meta.word.wit"},"6":{"name":"keyword.operator.key-value.wit"}},"end":"((?<=\\\\n)|(?=}))","name":"meta.func-item.wit","patterns":[{"include":"#function-definition"},{"include":"#whitespace"}]},"function-definition":{"name":"meta.func-type.wit","patterns":[{"applyEndPatternLast":1,"begin":"\\\\b(static\\\\s+)?(func)\\\\b","beginCaptures":{"1":{"name":"storage.modifier.static.func-item.wit"},"2":{"name":"keyword.other.func.func-type.wit"}},"end":"((?<=\\\\n)|(?=}))","name":"meta.function.wit","patterns":[{"include":"#comment"},{"include":"#parameter-list"},{"include":"#result-list"},{"include":"#whitespace"}]}]},"handle":{"captures":{"1":{"name":"entity.name.type.borrow.handle.wit"},"2":{"name":"punctuation.brackets.angle.begin.wit"},"3":{"name":"entity.name.type.id.handle.wit"},"8":{"name":"punctuation.brackets.angle.end.wit"}},"match":"\\\\b(borrow)\\\\b(<)\\\\s*%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(>)","name":"meta.handle.ty.wit"},"identifier":{"match":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b","name":"entity.name.type.id.wit"},"interface":{"applyEndPatternLast":1,"begin":"^\\\\b(default\\\\s+)?(interface)\\\\s+%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(\\\\{)","beginCaptures":{"1":{"name":"storage.modifier.default.interface-item.wit"},"2":{"name":"keyword.declaration.interface.interface-item.wit storage.type.wit"},"3":{"name":"entity.name.type.id.interface-item.wit"},"8":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.interface-item.wit","patterns":[{"include":"#comment"},{"include":"#interface-items"},{"include":"#whitespace"}]},"interface-items":{"name":"meta.interface-items.wit","patterns":[{"include":"#typedef-item"},{"include":"#use"},{"include":"#function"}]},"line-comment":{"match":"\\\\s*//.*","name":"comment.line.double-slash.wit"},"list":{"applyEndPatternLast":1,"begin":"\\\\b(list)\\\\b(<)","beginCaptures":{"1":{"name":"entity.name.type.list.wit"},"2":{"name":"punctuation.brackets.angle.begin.wit"}},"end":"(>)","endCaptures":{"1":{"name":"punctuation.brackets.angle.end.wit"}},"name":"meta.list.ty.wit","patterns":[{"include":"#comment"},{"include":"#types","name":"meta.types.list.wit"},{"include":"#whitespace"}]},"markdown":{"patterns":[{"captures":{"1":{"name":"markup.heading.markdown"}},"match":"\\\\G\\\\s*(#+.*)$"},{"captures":{"2":{"name":"punctuation.definition.quote.begin.markdown"}},"match":"\\\\G\\\\s*((>)\\\\s+)+"},{"captures":{"1":{"name":"punctuation.definition.list.begin.markdown"}},"match":"\\\\G\\\\s*(-)\\\\s+"},{"captures":{"1":{"name":"markup.list.numbered.markdown"},"2":{"name":"punctuation.definition.list.begin.markdown"}},"match":"\\\\G\\\\s*(([0-9]+\\\\.)\\\\s+)"},{"captures":{"1":{"name":"markup.italic.markdown"}},"match":"(`.*?`)"},{"captures":{"1":{"name":"markup.bold.markdown"}},"match":"\\\\b(__.*?__)"},{"captures":{"1":{"name":"markup.italic.markdown"}},"match":"\\\\b(_.*?_)"},{"captures":{"1":{"name":"markup.bold.markdown"}},"match":"(\\\\*\\\\*.*?\\\\*\\\\*)"},{"captures":{"1":{"name":"markup.italic.markdown"}},"match":"(\\\\*.*?\\\\*)"}]},"named-type-list":{"applyEndPatternLast":1,"begin":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b\\\\s*(:)","beginCaptures":{"1":{"name":"variable.parameter.id.named-type.wit"},"6":{"name":"keyword.operator.key-value.wit"}},"end":"((,)|(?=\\\\))|(?=\\\\n))","endCaptures":{"2":{"name":"punctuation.comma.wit"}},"name":"meta.named-type-list.wit","patterns":[{"include":"#comment"},{"include":"#types"},{"include":"#whitespace"}]},"numeric":{"match":"\\\\b(u8|u16|u32|u64|s8|s16|s32|s64|float32|float64)\\\\b","name":"entity.name.type.numeric.wit"},"operator":{"patterns":[{"match":"=","name":"punctuation.equal.wit"},{"match":",","name":"punctuation.comma.wit"},{"match":":","name":"keyword.operator.key-value.wit"},{"match":";","name":"punctuation.semicolon.wit"},{"match":"\\\\(","name":"punctuation.brackets.round.begin.wit"},{"match":"\\\\)","name":"punctuation.brackets.round.end.wit"},{"match":"\\\\{","name":"punctuation.brackets.curly.begin.wit"},{"match":"}","name":"punctuation.brackets.curly.end.wit"},{"match":"<","name":"punctuation.brackets.angle.begin.wit"},{"match":">","name":"punctuation.brackets.angle.end.wit"},{"match":"\\\\*","name":"keyword.operator.star.wit"},{"match":"->","name":"keyword.operator.arrow.skinny.wit"}]},"option":{"applyEndPatternLast":1,"begin":"\\\\b(option)\\\\b(<)","beginCaptures":{"1":{"name":"entity.name.type.option.wit"},"2":{"name":"punctuation.brackets.angle.begin.wit"}},"end":"(>)","endCaptures":{"1":{"name":"punctuation.brackets.angle.end.wit"}},"name":"meta.option.ty.wit","patterns":[{"include":"#comment"},{"include":"#types","name":"meta.types.option.wit"},{"include":"#whitespace"}]},"package":{"captures":{"1":{"name":"storage.modifier.package-decl.wit"},"2":{"name":"meta.id.package-decl.wit","patterns":[{"captures":{"1":{"name":"entity.name.namespace.package-identifier.wit","patterns":[{"include":"#identifier"}]},"2":{"name":"keyword.operator.namespace.package-identifier.wit"},"3":{"name":"entity.name.type.package-identifier.wit","patterns":[{"include":"#identifier"}]},"5":{"name":"keyword.operator.versioning.package-identifier.wit"},"6":{"name":"constant.numeric.versioning.package-identifier.wit"}},"match":"([^:]+)(:)([^@]+)((@)(\\\\S+))?","name":"meta.package-identifier.wit"}]}},"match":"^(package)\\\\s+(\\\\S+)\\\\s*","name":"meta.package-decl.wit"},"parameter-list":{"applyEndPatternLast":1,"begin":"(\\\\()","beginCaptures":{"1":{"name":"punctuation.brackets.round.begin.wit"}},"end":"(\\\\))","endCaptures":{"1":{"name":"punctuation.brackets.round.end.wit"}},"name":"meta.param-list.wit","patterns":[{"include":"#comment"},{"include":"#named-type-list"},{"include":"#whitespace"}]},"primitive":{"name":"meta.primitive.ty.wit","patterns":[{"include":"#numeric"},{"include":"#boolean"},{"include":"#string"}]},"record":{"applyEndPatternLast":1,"begin":"\\\\b(record)\\\\b\\\\s+%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(\\\\{)","beginCaptures":{"1":{"name":"keyword.declaration.record.record-item.wit"},"2":{"name":"entity.name.type.id.record-item.wit"},"7":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.record-item.wit","patterns":[{"include":"#comment"},{"include":"#record-fields"},{"include":"#whitespace"}]},"record-fields":{"applyEndPatternLast":1,"begin":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b\\\\s*(:)","beginCaptures":{"1":{"name":"variable.declaration.id.record-fields.wit"},"6":{"name":"keyword.operator.key-value.wit"}},"end":"((,)|(?=})|(?=\\\\n))","endCaptures":{"2":{"name":"punctuation.comma.wit"}},"name":"meta.record-fields.wit","patterns":[{"include":"#comment"},{"include":"#types","name":"meta.types.record-fields.wit"},{"include":"#whitespace"}]},"resource":{"applyEndPatternLast":1,"begin":"\\\\b(resource)\\\\b\\\\s+%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)","beginCaptures":{"1":{"name":"keyword.other.resource.wit"},"2":{"name":"entity.name.type.id.resource.wit"}},"end":"((?<=\\\\n)|(?=}))","name":"meta.resource-item.wit","patterns":[{"include":"#comment"},{"include":"#resource-methods"},{"include":"#whitespace"}]},"resource-methods":{"applyEndPatternLast":1,"begin":"(\\\\{)","beginCaptures":{"1":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.resource-methods.wit","patterns":[{"include":"#comment"},{"applyEndPatternLast":1,"begin":"\\\\b(constructor)\\\\b","beginCaptures":{"1":{"name":"keyword.other.constructor.constructor-type.wit"},"2":{"name":"punctuation.brackets.round.begin.wit"}},"end":"((?<=\\\\n)|(?=}))","name":"meta.constructor-type.wit","patterns":[{"include":"#comment"},{"include":"#parameter-list"},{"include":"#whitespace"}]},{"include":"#function"},{"include":"#whitespace"}]},"result":{"applyEndPatternLast":1,"begin":"\\\\b(result)\\\\b","beginCaptures":{"1":{"name":"entity.name.type.result.wit"},"2":{"name":"punctuation.brackets.angle.begin.wit"}},"end":"((?<=\\\\n)|(?=,)|(?=}))","name":"meta.result.ty.wit","patterns":[{"include":"#comment"},{"applyEndPatternLast":1,"begin":"(<)","beginCaptures":{"1":{"name":"punctuation.brackets.angle.begin.wit"}},"end":"(>)","endCaptures":{"1":{"name":"punctuation.brackets.angle.end.wit"}},"name":"meta.inner.result.wit","patterns":[{"include":"#comment"},{"match":"(?<!\\\\w)(_)(?!\\\\w)","name":"variable.other.inferred-type.result.wit"},{"include":"#types","name":"meta.types.result.wit"},{"match":"(?<!result)\\\\s*(,)","name":"punctuation.comma.wit"},{"include":"#whitespace"}]},{"include":"#whitespace"}]},"result-list":{"applyEndPatternLast":1,"begin":"(->)","beginCaptures":{"1":{"name":"keyword.operator.arrow.skinny.wit"}},"end":"((?<=\\\\n)|(?=}))","name":"meta.result-list.wit","patterns":[{"include":"#comment"},{"include":"#types"},{"include":"#parameter-list"},{"include":"#whitespace"}]},"string":{"match":"\\\\b(string|char)\\\\b","name":"entity.name.type.string.wit"},"toplevel-use":{"captures":{"1":{"name":"keyword.other.use.toplevel-use-item.wit"},"2":{"name":"meta.interface.toplevel-use-item.wit","patterns":[{"match":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b","name":"entity.name.type.declaration.interface.toplevel-use-item.wit"},{"captures":{"1":{"name":"keyword.operator.versioning.interface.toplevel-use-item.wit"},"2":{"name":"constant.numeric.versioning.interface.toplevel-use-item.wit"}},"match":"(@)((0|[1-9]\\\\d*)\\\\.(0|[1-9]\\\\d*)\\\\.(0|[1-9]\\\\d*)(?:-((?:0|[1-9]\\\\d*|\\\\d*[-A-Za-z][-0-9A-Za-z]*)(?:\\\\.(?:0|[1-9]\\\\d*|\\\\d*[-A-Za-z][-0-9A-Za-z]*))*))?(?:\\\\+([-0-9A-Za-z]+(?:\\\\.[-0-9A-Za-z]+)*))?)","name":"meta.versioning.interface.toplevel-use-item.wit"}]},"4":{"name":"keyword.control.as.toplevel-use-item.wit"},"5":{"name":"entity.name.type.toplevel-use-item.wit"}},"match":"^(use)\\\\s+(\\\\S+)(\\\\s+(as)\\\\s+(\\\\S+))?\\\\s*","name":"meta.toplevel-use-item.wit"},"tuple":{"applyEndPatternLast":1,"begin":"\\\\b(tuple)\\\\b(<)","beginCaptures":{"1":{"name":"entity.name.type.tuple.wit"},"2":{"name":"punctuation.brackets.angle.begin.wit"}},"end":"(>)","endCaptures":{"1":{"name":"punctuation.brackets.angle.end.wit"}},"name":"meta.tuple.ty.wit","patterns":[{"include":"#comment"},{"include":"#types","name":"meta.types.tuple.wit"},{"match":"(,)","name":"punctuation.comma.wit"},{"include":"#whitespace"}]},"type-definition":{"applyEndPatternLast":1,"begin":"\\\\b(type)\\\\b\\\\s+%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(=)","beginCaptures":{"1":{"name":"keyword.declaration.type.type-item.wit storage.type.wit"},"2":{"name":"entity.name.type.id.type-item.wit"},"7":{"name":"punctuation.equal.wit"}},"end":"(?<=\\\\n)","name":"meta.type-item.wit","patterns":[{"include":"#types","name":"meta.types.type-item.wit"},{"include":"#whitespace"}]},"typedef-item":{"name":"meta.typedef-item.wit","patterns":[{"include":"#resource"},{"include":"#variant"},{"include":"#record"},{"include":"#flags"},{"include":"#enum"},{"include":"#type-definition"}]},"types":{"name":"meta.ty.wit","patterns":[{"include":"#primitive"},{"include":"#container"},{"include":"#identifier"}]},"use":{"applyEndPatternLast":1,"begin":"\\\\b(use)\\\\b\\\\s+(\\\\S+)(\\\\.)(\\\\{)","beginCaptures":{"1":{"name":"keyword.other.use.use-item.wit"},"2":{"patterns":[{"include":"#use-path"},{"include":"#whitespace"}]},"3":{"name":"keyword.operator.namespace-separator.use-item.wit"},"4":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.use-item.wit","patterns":[{"include":"#comment"},{"match":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b","name":"entity.name.type.declaration.use-names-item.use-item.wit"},{"match":"(,)","name":"punctuation.comma.wit"},{"include":"#whitespace"}]},"use-path":{"name":"meta.use-path.wit","patterns":[{"match":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b","name":"entity.name.namespace.id.use-path.wit"},{"captures":{"1":{"name":"keyword.operator.versioning.id.use-path.wit"},"2":{"name":"constant.numeric.versioning.id.use-path.wit"}},"match":"(@)((0|[1-9]\\\\d*)\\\\.(0|[1-9]\\\\d*)\\\\.(0|[1-9]\\\\d*)(?:-((?:0|[1-9]\\\\d*|\\\\d*[-A-Za-z][-0-9A-Za-z]*)(?:\\\\.(?:0|[1-9]\\\\d*|\\\\d*[-A-Za-z][-0-9A-Za-z]*))*))?(?:\\\\+([-0-9A-Za-z]+(?:\\\\.[-0-9A-Za-z]+)*))?)","name":"meta.versioning.id.use-path.wit"},{"match":"\\\\.","name":"keyword.operator.namespace-separator.use-path.wit"}]},"variant":{"applyEndPatternLast":1,"begin":"\\\\b(variant)\\\\s+%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(\\\\{)","beginCaptures":{"1":{"name":"keyword.other.variant.wit"},"2":{"name":"entity.name.type.id.variant.wit"},"7":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.variant.wit","patterns":[{"include":"#comment"},{"include":"#variant-cases"},{"include":"#enum-cases"},{"include":"#whitespace"}]},"variant-cases":{"applyEndPatternLast":1,"begin":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b\\\\s*(\\\\()","beginCaptures":{"1":{"name":"variable.other.enummember.id.variant-cases.wit"},"6":{"name":"punctuation.brackets.round.begin.wit"}},"end":"(\\\\))\\\\s*(,)?","endCaptures":{"1":{"name":"punctuation.brackets.round.end.wit"},"2":{"name":"punctuation.comma.wit"}},"name":"meta.variant-cases.wit","patterns":[{"include":"#types","name":"meta.types.variant-cases.wit"},{"include":"#whitespace"}]},"whitespace":{"match":"\\\\s+","name":"meta.whitespace.wit"},"world":{"applyEndPatternLast":1,"begin":"^\\\\b(default\\\\s+)?(world)\\\\s+%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\s*(\\\\{)","beginCaptures":{"1":{"name":"storage.modifier.default.world-item.wit"},"2":{"name":"keyword.declaration.world.world-item.wit storage.type.wit"},"3":{"name":"entity.name.type.id.world-item.wit"},"8":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.world-item.wit","patterns":[{"include":"#comment"},{"applyEndPatternLast":1,"begin":"\\\\b(export)\\\\b\\\\s+(\\\\S+)","beginCaptures":{"1":{"name":"keyword.control.export.export-item.wit"},"2":{"name":"meta.id.export-item.wit","patterns":[{"match":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b","name":"variable.other.constant.id.export-item.wit"},{"captures":{"1":{"name":"keyword.operator.versioning.id.export-item.wit"},"2":{"name":"constant.numeric.versioning.id.export-item.wit"}},"match":"(@)((0|[1-9]\\\\d*)\\\\.(0|[1-9]\\\\d*)\\\\.(0|[1-9]\\\\d*)(?:-((?:0|[1-9]\\\\d*|\\\\d*[-A-Za-z][-0-9A-Za-z]*)(?:\\\\.(?:0|[1-9]\\\\d*|\\\\d*[-A-Za-z][-0-9A-Za-z]*))*))?(?:\\\\+([-0-9A-Za-z]+(?:\\\\.[-0-9A-Za-z]+)*))?)","name":"meta.versioning.id.export-item.wit"}]}},"end":"((?<=\\\\n)|(?=}))","name":"meta.export-item.wit","patterns":[{"include":"#extern"},{"include":"#whitespace"}]},{"applyEndPatternLast":1,"begin":"\\\\b(import)\\\\b\\\\s+(\\\\S+)","beginCaptures":{"1":{"name":"keyword.control.import.import-item.wit"},"2":{"name":"meta.id.import-item.wit","patterns":[{"match":"\\\\b%?((?<![-\\\\w])([a-z][0-9a-z]*|[A-Z][0-9A-Z]*)((-)([a-z][0-9a-z]*|[A-Z][0-9A-Z]*))*)\\\\b","name":"variable.other.constant.id.import-item.wit"},{"captures":{"1":{"name":"keyword.operator.versioning.id.import-item.wit"},"2":{"name":"constant.numeric.versioning.id.import-item.wit"}},"match":"(@)((0|[1-9]\\\\d*)\\\\.(0|[1-9]\\\\d*)\\\\.(0|[1-9]\\\\d*)(?:-((?:0|[1-9]\\\\d*|\\\\d*[-A-Za-z][-0-9A-Za-z]*)(?:\\\\.(?:0|[1-9]\\\\d*|\\\\d*[-A-Za-z][-0-9A-Za-z]*))*))?(?:\\\\+([-0-9A-Za-z]+(?:\\\\.[-0-9A-Za-z]+)*))?)","name":"meta.versioning.id.import-item.wit"}]}},"end":"((?<=\\\\n)|(?=}))","name":"meta.import-item.wit","patterns":[{"include":"#extern"},{"include":"#whitespace"}]},{"applyEndPatternLast":1,"begin":"\\\\b(include)\\\\s+(\\\\S+)\\\\s*","beginCaptures":{"1":{"name":"keyword.control.include.include-item.wit"},"2":{"name":"meta.use-path.include-item.wit","patterns":[{"include":"#use-path"}]}},"end":"(?<=\\\\n)","name":"meta.include-item.wit","patterns":[{"applyEndPatternLast":1,"begin":"\\\\b(with)\\\\b\\\\s+(\\\\{)","beginCaptures":{"1":{"name":"keyword.control.with.include-item.wit"},"2":{"name":"punctuation.brackets.curly.begin.wit"}},"end":"(})","endCaptures":{"1":{"name":"punctuation.brackets.curly.end.wit"}},"name":"meta.with.include-item.wit","patterns":[{"include":"#comment"},{"captures":{"1":{"name":"variable.other.id.include-names-item.wit"},"2":{"name":"keyword.control.as.include-names-item.wit"},"3":{"name":"entity.name.type.include-names-item.wit"}},"match":"(\\\\S+)\\\\s+(as)\\\\s+([^,\\\\s]+)","name":"meta.include-names-item.wit"},{"match":"(,)","name":"punctuation.comma.wit"},{"include":"#whitespace"}]}]},{"include":"#use"},{"include":"#typedef-item"},{"include":"#whitespace"}]}},"scopeName":"source.wit"}'));e.s(["default",0,[t]])}]);
|