@shepai/cli 1.151.1 → 1.151.2-pr460.ba381d8

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.
Files changed (672) hide show
  1. package/apis/json-schema/InteractiveAgentConfig.yaml +25 -0
  2. package/apis/json-schema/InteractiveMessage.yaml +23 -0
  3. package/apis/json-schema/InteractiveMessageRole.yaml +7 -0
  4. package/apis/json-schema/InteractiveSession.yaml +30 -0
  5. package/apis/json-schema/InteractiveSessionStatus.yaml +9 -0
  6. package/apis/json-schema/Settings.yaml +3 -0
  7. package/dist/packages/core/src/application/ports/output/agents/agent-executor-factory.interface.d.ts +17 -0
  8. package/dist/packages/core/src/application/ports/output/agents/agent-executor-factory.interface.d.ts.map +1 -1
  9. package/dist/packages/core/src/application/ports/output/agents/index.d.ts +1 -0
  10. package/dist/packages/core/src/application/ports/output/agents/index.d.ts.map +1 -1
  11. package/dist/packages/core/src/application/ports/output/agents/interactive-agent-executor.interface.d.ts +53 -0
  12. package/dist/packages/core/src/application/ports/output/agents/interactive-agent-executor.interface.d.ts.map +1 -0
  13. package/dist/packages/core/src/application/ports/output/agents/interactive-agent-executor.interface.js +13 -0
  14. package/dist/packages/core/src/application/ports/output/repositories/index.d.ts +2 -0
  15. package/dist/packages/core/src/application/ports/output/repositories/index.d.ts.map +1 -1
  16. package/dist/packages/core/src/application/ports/output/repositories/interactive-message-repository.interface.d.ts +37 -0
  17. package/dist/packages/core/src/application/ports/output/repositories/interactive-message-repository.interface.d.ts.map +1 -0
  18. package/dist/packages/core/src/application/ports/output/repositories/interactive-message-repository.interface.js +10 -0
  19. package/dist/packages/core/src/application/ports/output/repositories/interactive-session-repository.interface.d.ts +54 -0
  20. package/dist/packages/core/src/application/ports/output/repositories/interactive-session-repository.interface.d.ts.map +1 -0
  21. package/dist/packages/core/src/application/ports/output/repositories/interactive-session-repository.interface.js +10 -0
  22. package/dist/packages/core/src/application/ports/output/services/index.d.ts +1 -0
  23. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  24. package/dist/packages/core/src/application/ports/output/services/interactive-session-service.interface.d.ts +169 -0
  25. package/dist/packages/core/src/application/ports/output/services/interactive-session-service.interface.d.ts.map +1 -0
  26. package/dist/packages/core/src/application/ports/output/services/interactive-session-service.interface.js +12 -0
  27. package/dist/packages/core/src/application/use-cases/interactive/get-interactive-chat-state.use-case.d.ts +26 -0
  28. package/dist/packages/core/src/application/use-cases/interactive/get-interactive-chat-state.use-case.d.ts.map +1 -0
  29. package/dist/packages/core/src/application/use-cases/interactive/get-interactive-chat-state.use-case.js +41 -0
  30. package/dist/packages/core/src/application/use-cases/interactive/index.d.ts +14 -0
  31. package/dist/packages/core/src/application/use-cases/interactive/index.d.ts.map +1 -0
  32. package/dist/packages/core/src/application/use-cases/interactive/index.js +9 -0
  33. package/dist/packages/core/src/application/use-cases/interactive/send-interactive-message.use-case.d.ts +31 -0
  34. package/dist/packages/core/src/application/use-cases/interactive/send-interactive-message.use-case.d.ts.map +1 -0
  35. package/dist/packages/core/src/application/use-cases/interactive/send-interactive-message.use-case.js +43 -0
  36. package/dist/packages/core/src/application/use-cases/interactive/start-interactive-session.use-case.d.ts +34 -0
  37. package/dist/packages/core/src/application/use-cases/interactive/start-interactive-session.use-case.d.ts.map +1 -0
  38. package/dist/packages/core/src/application/use-cases/interactive/start-interactive-session.use-case.js +43 -0
  39. package/dist/packages/core/src/application/use-cases/interactive/stop-interactive-session.use-case.d.ts +27 -0
  40. package/dist/packages/core/src/application/use-cases/interactive/stop-interactive-session.use-case.d.ts.map +1 -0
  41. package/dist/packages/core/src/application/use-cases/interactive/stop-interactive-session.use-case.js +42 -0
  42. package/dist/packages/core/src/domain/errors/concurrent-session-limit.error.d.ts +13 -0
  43. package/dist/packages/core/src/domain/errors/concurrent-session-limit.error.d.ts.map +1 -0
  44. package/dist/packages/core/src/domain/errors/concurrent-session-limit.error.js +19 -0
  45. package/dist/packages/core/src/domain/generated/output.d.ts +77 -0
  46. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  47. package/dist/packages/core/src/domain/generated/output.js +12 -0
  48. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  49. package/dist/packages/core/src/infrastructure/di/container.js +47 -0
  50. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/interactive-message.mapper.d.ts +36 -0
  51. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/interactive-message.mapper.d.ts.map +1 -0
  52. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/interactive-message.mapper.js +41 -0
  53. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/interactive-session.mapper.d.ts +37 -0
  54. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/interactive-session.mapper.d.ts.map +1 -0
  55. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/interactive-session.mapper.js +45 -0
  56. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +3 -0
  57. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  58. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +10 -0
  59. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/045-create-interactive-tables.d.ts +22 -0
  60. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/045-create-interactive-tables.d.ts.map +1 -0
  61. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/045-create-interactive-tables.js +52 -0
  62. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/046-add-interactive-agent-settings.d.ts +16 -0
  63. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/046-add-interactive-agent-settings.d.ts.map +1 -0
  64. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/046-add-interactive-agent-settings.js +27 -0
  65. package/dist/packages/core/src/infrastructure/repositories/sqlite-interactive-message.repository.d.ts +18 -0
  66. package/dist/packages/core/src/infrastructure/repositories/sqlite-interactive-message.repository.d.ts.map +1 -0
  67. package/dist/packages/core/src/infrastructure/repositories/sqlite-interactive-message.repository.js +58 -0
  68. package/dist/packages/core/src/infrastructure/repositories/sqlite-interactive-session.repository.d.ts +23 -0
  69. package/dist/packages/core/src/infrastructure/repositories/sqlite-interactive-session.repository.d.ts.map +1 -0
  70. package/dist/packages/core/src/infrastructure/repositories/sqlite-interactive-session.repository.js +85 -0
  71. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  72. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +10 -3
  73. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts +18 -0
  74. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts.map +1 -1
  75. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.js +27 -0
  76. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.d.ts +43 -0
  77. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.d.ts.map +1 -0
  78. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.js +280 -0
  79. package/dist/packages/core/src/infrastructure/services/agents/common/executors/mock-executor-factory.service.d.ts +3 -0
  80. package/dist/packages/core/src/infrastructure/services/agents/common/executors/mock-executor-factory.service.d.ts.map +1 -1
  81. package/dist/packages/core/src/infrastructure/services/agents/common/executors/mock-executor-factory.service.js +6 -0
  82. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +1 -1
  83. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.d.ts.map +1 -1
  84. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.js +8 -2
  85. package/dist/packages/core/src/infrastructure/services/interactive/feature-context.builder.d.ts +26 -0
  86. package/dist/packages/core/src/infrastructure/services/interactive/feature-context.builder.d.ts.map +1 -0
  87. package/dist/packages/core/src/infrastructure/services/interactive/feature-context.builder.js +140 -0
  88. package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.d.ts +87 -0
  89. package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.d.ts.map +1 -0
  90. package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.js +786 -0
  91. package/dist/src/presentation/web/app/(dashboard)/@drawer/chat/page.d.ts +3 -0
  92. package/dist/src/presentation/web/app/(dashboard)/@drawer/chat/page.d.ts.map +1 -0
  93. package/dist/src/presentation/web/app/(dashboard)/@drawer/chat/page.js +6 -0
  94. package/dist/src/presentation/web/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.d.ts.map +1 -1
  95. package/dist/src/presentation/web/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -2
  96. package/dist/src/presentation/web/app/(dashboard)/@drawer/feature/[featureId]/page.d.ts.map +1 -1
  97. package/dist/src/presentation/web/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -2
  98. package/dist/src/presentation/web/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.d.ts +11 -0
  99. package/dist/src/presentation/web/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.d.ts.map +1 -0
  100. package/dist/src/presentation/web/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +18 -0
  101. package/dist/src/presentation/web/app/(dashboard)/chat/page.d.ts +3 -0
  102. package/dist/src/presentation/web/app/(dashboard)/chat/page.d.ts.map +1 -0
  103. package/dist/src/presentation/web/app/(dashboard)/chat/page.js +4 -0
  104. package/dist/src/presentation/web/app/(dashboard)/repository/[repositoryId]/[tab]/page.d.ts +3 -0
  105. package/dist/src/presentation/web/app/(dashboard)/repository/[repositoryId]/[tab]/page.d.ts.map +1 -0
  106. package/dist/src/presentation/web/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +4 -0
  107. package/dist/src/presentation/web/app/api/agent-events/route.d.ts +6 -0
  108. package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
  109. package/dist/src/presentation/web/app/api/agent-events/route.js +54 -1
  110. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/messages/route.d.ts +24 -0
  111. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/messages/route.d.ts.map +1 -0
  112. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/messages/route.js +76 -0
  113. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stop/route.d.ts +16 -0
  114. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stop/route.d.ts.map +1 -0
  115. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stop/route.js +21 -0
  116. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stream/route.d.ts +21 -0
  117. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stream/route.d.ts.map +1 -0
  118. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stream/route.js +87 -0
  119. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/messages/route.d.ts +19 -0
  120. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/messages/route.d.ts.map +1 -0
  121. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/messages/route.js +78 -0
  122. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/route.d.ts +18 -0
  123. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/route.d.ts.map +1 -0
  124. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/route.js +43 -0
  125. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/stream/route.d.ts +19 -0
  126. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/stream/route.d.ts.map +1 -0
  127. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/stream/route.js +92 -0
  128. package/dist/src/presentation/web/app/api/interactive/sessions/route.d.ts +12 -0
  129. package/dist/src/presentation/web/app/api/interactive/sessions/route.d.ts.map +1 -0
  130. package/dist/src/presentation/web/app/api/interactive/sessions/route.js +37 -0
  131. package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
  132. package/dist/src/presentation/web/app/layout.js +2 -1
  133. package/dist/src/presentation/web/components/assistant-ui/thread.d.ts +6 -0
  134. package/dist/src/presentation/web/components/assistant-ui/thread.d.ts.map +1 -0
  135. package/dist/src/presentation/web/components/assistant-ui/thread.js +192 -0
  136. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts +1 -1
  137. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
  138. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +1 -0
  139. package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.d.ts +1 -1
  140. package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.d.ts.map +1 -1
  141. package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.js +1 -0
  142. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts +3 -1
  143. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
  144. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +5 -6
  145. package/dist/src/presentation/web/components/common/control-center-drawer/global-chat-drawer-client.d.ts +2 -0
  146. package/dist/src/presentation/web/components/common/control-center-drawer/global-chat-drawer-client.d.ts.map +1 -0
  147. package/dist/src/presentation/web/components/common/control-center-drawer/global-chat-drawer-client.js +17 -0
  148. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.d.ts +3 -1
  149. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.d.ts.map +1 -1
  150. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +15 -8
  151. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +7 -1
  152. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
  153. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +11 -4
  154. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  155. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +7 -2
  156. package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.d.ts +1 -0
  157. package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.d.ts.map +1 -1
  158. package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.js +6 -14
  159. package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
  160. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +6 -2
  161. package/dist/src/presentation/web/components/features/chat/AgentStatusBadge.d.ts +21 -0
  162. package/dist/src/presentation/web/components/features/chat/AgentStatusBadge.d.ts.map +1 -0
  163. package/dist/src/presentation/web/components/features/chat/AgentStatusBadge.js +46 -0
  164. package/dist/src/presentation/web/components/features/chat/AgentStatusBadge.stories.d.ts +20 -0
  165. package/dist/src/presentation/web/components/features/chat/AgentStatusBadge.stories.d.ts.map +1 -0
  166. package/dist/src/presentation/web/components/features/chat/AgentStatusBadge.stories.js +52 -0
  167. package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts +18 -0
  168. package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts.map +1 -0
  169. package/dist/src/presentation/web/components/features/chat/ChatComposer.js +16 -0
  170. package/dist/src/presentation/web/components/features/chat/ChatInput.d.ts +19 -0
  171. package/dist/src/presentation/web/components/features/chat/ChatInput.d.ts.map +1 -0
  172. package/dist/src/presentation/web/components/features/chat/ChatInput.js +42 -0
  173. package/dist/src/presentation/web/components/features/chat/ChatInput.stories.d.ts +14 -0
  174. package/dist/src/presentation/web/components/features/chat/ChatInput.stories.d.ts.map +1 -0
  175. package/dist/src/presentation/web/components/features/chat/ChatInput.stories.js +56 -0
  176. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.d.ts +21 -0
  177. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.d.ts.map +1 -0
  178. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.js +43 -0
  179. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.stories.d.ts +24 -0
  180. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.stories.d.ts.map +1 -0
  181. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.stories.js +84 -0
  182. package/dist/src/presentation/web/components/features/chat/ChatMessageList.d.ts +25 -0
  183. package/dist/src/presentation/web/components/features/chat/ChatMessageList.d.ts.map +1 -0
  184. package/dist/src/presentation/web/components/features/chat/ChatMessageList.js +36 -0
  185. package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts +2 -0
  186. package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts.map +1 -0
  187. package/dist/src/presentation/web/components/features/chat/ChatSheet.js +243 -0
  188. package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts +6 -0
  189. package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts.map +1 -0
  190. package/dist/src/presentation/web/components/features/chat/ChatTab.js +67 -0
  191. package/dist/src/presentation/web/components/features/chat/ChatTab.stories.d.ts +25 -0
  192. package/dist/src/presentation/web/components/features/chat/ChatTab.stories.d.ts.map +1 -0
  193. package/dist/src/presentation/web/components/features/chat/ChatTab.stories.js +237 -0
  194. package/dist/src/presentation/web/components/features/chat/useChatRuntime.d.ts +34 -0
  195. package/dist/src/presentation/web/components/features/chat/useChatRuntime.d.ts.map +1 -0
  196. package/dist/src/presentation/web/components/features/chat/useChatRuntime.js +266 -0
  197. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  198. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +8 -8
  199. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.d.ts +13 -0
  200. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.d.ts.map +1 -0
  201. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.js +30 -0
  202. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts +1 -2
  203. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  204. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +5 -13
  205. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  206. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +45 -2
  207. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
  208. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +13 -65
  209. package/dist/src/presentation/web/components/providers/query-provider.d.ts +4 -0
  210. package/dist/src/presentation/web/components/providers/query-provider.d.ts.map +1 -0
  211. package/dist/src/presentation/web/components/providers/query-provider.js +16 -0
  212. package/dist/src/presentation/web/hooks/use-attachments.d.ts +26 -0
  213. package/dist/src/presentation/web/hooks/use-attachments.d.ts.map +1 -0
  214. package/dist/src/presentation/web/hooks/use-attachments.js +227 -0
  215. package/dist/tsconfig.build.tsbuildinfo +1 -1
  216. package/package.json +3 -1
  217. package/web/.next/BUILD_ID +1 -1
  218. package/web/.next/app-path-routes-manifest.json +11 -0
  219. package/web/.next/build-manifest.json +5 -5
  220. package/web/.next/fallback-build-manifest.json +2 -2
  221. package/web/.next/prerender-manifest.json +3 -3
  222. package/web/.next/required-server-files.js +3 -3
  223. package/web/.next/required-server-files.json +3 -3
  224. package/web/.next/routes-manifest.json +69 -0
  225. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/build-manifest.json +3 -3
  226. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +82 -82
  227. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +2 -2
  228. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  229. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  230. package/web/.next/server/app/(dashboard)/@drawer/chat/page/app-paths-manifest.json +3 -0
  231. package/web/.next/server/app/(dashboard)/@drawer/chat/page/build-manifest.json +18 -0
  232. package/web/.next/server/app/(dashboard)/@drawer/chat/page/next-font-manifest.json +6 -0
  233. package/web/.next/server/app/(dashboard)/@drawer/chat/page/react-loadable-manifest.json +8 -0
  234. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +395 -0
  235. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +22 -0
  236. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.map +5 -0
  237. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -0
  238. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +2 -0
  239. package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +3 -3
  240. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +84 -84
  241. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +2 -2
  242. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  243. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  244. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/build-manifest.json +3 -3
  245. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +98 -98
  246. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -2
  247. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  248. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  249. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +3 -3
  250. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +98 -98
  251. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -2
  252. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  253. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  254. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/app-paths-manifest.json +3 -0
  255. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/build-manifest.json +18 -0
  256. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/next-font-manifest.json +6 -0
  257. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/react-loadable-manifest.json +8 -0
  258. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +395 -0
  259. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +22 -0
  260. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.map +5 -0
  261. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -0
  262. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +2 -0
  263. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +3 -3
  264. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +78 -78
  265. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +2 -2
  266. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  267. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  268. package/web/.next/server/app/(dashboard)/chat/page/app-paths-manifest.json +3 -0
  269. package/web/.next/server/app/(dashboard)/chat/page/build-manifest.json +18 -0
  270. package/web/.next/server/app/(dashboard)/chat/page/next-font-manifest.json +6 -0
  271. package/web/.next/server/app/(dashboard)/chat/page/react-loadable-manifest.json +8 -0
  272. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +395 -0
  273. package/web/.next/server/app/(dashboard)/chat/page.js +22 -0
  274. package/web/.next/server/app/(dashboard)/chat/page.js.map +5 -0
  275. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -0
  276. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +2 -0
  277. package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +3 -3
  278. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +84 -84
  279. package/web/.next/server/app/(dashboard)/create/page.js +2 -2
  280. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  281. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  282. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/build-manifest.json +3 -3
  283. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +98 -98
  284. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +2 -2
  285. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  286. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  287. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +3 -3
  288. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +98 -98
  289. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +2 -2
  290. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  291. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  292. package/web/.next/server/app/(dashboard)/page/build-manifest.json +3 -3
  293. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +78 -78
  294. package/web/.next/server/app/(dashboard)/page.js +2 -2
  295. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  296. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  297. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/app-paths-manifest.json +3 -0
  298. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/build-manifest.json +18 -0
  299. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/next-font-manifest.json +6 -0
  300. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/react-loadable-manifest.json +8 -0
  301. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +395 -0
  302. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +22 -0
  303. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.map +5 -0
  304. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -0
  305. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +2 -0
  306. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +3 -3
  307. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +78 -78
  308. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +2 -2
  309. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  310. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  311. package/web/.next/server/app/_global-error/page/build-manifest.json +3 -3
  312. package/web/.next/server/app/_global-error.html +2 -2
  313. package/web/.next/server/app/_global-error.rsc +1 -1
  314. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  315. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  316. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  317. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  318. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  319. package/web/.next/server/app/_not-found/page/build-manifest.json +3 -3
  320. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +36 -6
  321. package/web/.next/server/app/_not-found/page.js +2 -2
  322. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  323. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  324. package/web/.next/server/app/api/attachments/preview/route.js +1 -1
  325. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  326. package/web/.next/server/app/api/evidence/route.js +1 -1
  327. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  328. package/web/.next/server/app/api/graph-data/route.js +1 -1
  329. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  330. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route/app-paths-manifest.json +3 -0
  331. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route/build-manifest.json +11 -0
  332. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route/server-reference-manifest.json +4 -0
  333. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js +7 -0
  334. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.map +5 -0
  335. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -0
  336. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route_client-reference-manifest.js +2 -0
  337. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route/app-paths-manifest.json +3 -0
  338. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route/build-manifest.json +11 -0
  339. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route/server-reference-manifest.json +4 -0
  340. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route.js +7 -0
  341. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route.js.map +5 -0
  342. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route.js.nft.json +1 -0
  343. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route_client-reference-manifest.js +2 -0
  344. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route/app-paths-manifest.json +3 -0
  345. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route/build-manifest.json +11 -0
  346. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route/server-reference-manifest.json +4 -0
  347. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route.js +6 -0
  348. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route.js.map +5 -0
  349. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route.js.nft.json +1 -0
  350. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route_client-reference-manifest.js +2 -0
  351. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route/app-paths-manifest.json +3 -0
  352. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route/build-manifest.json +11 -0
  353. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route/server-reference-manifest.json +4 -0
  354. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route.js +7 -0
  355. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route.js.map +5 -0
  356. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route.js.nft.json +1 -0
  357. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route_client-reference-manifest.js +2 -0
  358. package/web/.next/server/app/api/interactive/sessions/[id]/route/app-paths-manifest.json +3 -0
  359. package/web/.next/server/app/api/interactive/sessions/[id]/route/build-manifest.json +11 -0
  360. package/web/.next/server/app/api/interactive/sessions/[id]/route/server-reference-manifest.json +4 -0
  361. package/web/.next/server/app/api/interactive/sessions/[id]/route.js +7 -0
  362. package/web/.next/server/app/api/interactive/sessions/[id]/route.js.map +5 -0
  363. package/web/.next/server/app/api/interactive/sessions/[id]/route.js.nft.json +1 -0
  364. package/web/.next/server/app/api/interactive/sessions/[id]/route_client-reference-manifest.js +2 -0
  365. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route/app-paths-manifest.json +3 -0
  366. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route/build-manifest.json +11 -0
  367. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route/server-reference-manifest.json +4 -0
  368. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route.js +6 -0
  369. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route.js.map +5 -0
  370. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route.js.nft.json +1 -0
  371. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route_client-reference-manifest.js +2 -0
  372. package/web/.next/server/app/api/interactive/sessions/route/app-paths-manifest.json +3 -0
  373. package/web/.next/server/app/api/interactive/sessions/route/build-manifest.json +11 -0
  374. package/web/.next/server/app/api/interactive/sessions/route/server-reference-manifest.json +4 -0
  375. package/web/.next/server/app/api/interactive/sessions/route.js +7 -0
  376. package/web/.next/server/app/api/interactive/sessions/route.js.map +5 -0
  377. package/web/.next/server/app/api/interactive/sessions/route.js.nft.json +1 -0
  378. package/web/.next/server/app/api/interactive/sessions/route_client-reference-manifest.js +2 -0
  379. package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
  380. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
  381. package/web/.next/server/app/api/tools/route.js +2 -2
  382. package/web/.next/server/app/settings/page/build-manifest.json +3 -3
  383. package/web/.next/server/app/settings/page/server-reference-manifest.json +42 -42
  384. package/web/.next/server/app/settings/page.js +3 -3
  385. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  386. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  387. package/web/.next/server/app/skills/page/build-manifest.json +3 -3
  388. package/web/.next/server/app/skills/page/server-reference-manifest.json +46 -16
  389. package/web/.next/server/app/skills/page.js +3 -3
  390. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  391. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  392. package/web/.next/server/app/tools/page/build-manifest.json +3 -3
  393. package/web/.next/server/app/tools/page/server-reference-manifest.json +46 -16
  394. package/web/.next/server/app/tools/page.js +3 -3
  395. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  396. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  397. package/web/.next/server/app/version/page/build-manifest.json +3 -3
  398. package/web/.next/server/app/version/page/server-reference-manifest.json +36 -6
  399. package/web/.next/server/app/version/page.js +2 -2
  400. package/web/.next/server/app/version/page.js.nft.json +1 -1
  401. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  402. package/web/.next/server/app-paths-manifest.json +11 -0
  403. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +8 -2
  404. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  405. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_interactive_sessions_route_actions_f2e7447f.js +3 -0
  406. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_interactive_sessions_route_actions_f2e7447f.js.map +1 -0
  407. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_chat_[featureId]_messages_route_actions_f98e5802.js +3 -0
  408. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_chat_[featureId]_messages_route_actions_f98e5802.js.map +1 -0
  409. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_chat_[featureId]_stop_route_actions_36518d35.js +3 -0
  410. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_chat_[featureId]_stop_route_actions_36518d35.js.map +1 -0
  411. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_chat_[featureId]_stream_route_actions_e6210931.js +3 -0
  412. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_chat_[featureId]_stream_route_actions_e6210931.js.map +1 -0
  413. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_sessions_[id]_messages_route_actions_be179971.js +3 -0
  414. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_sessions_[id]_messages_route_actions_be179971.js.map +1 -0
  415. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_sessions_[id]_stream_route_actions_58ab2b5b.js +3 -0
  416. package/web/.next/server/chunks/8ba4b_server_app_api_interactive_sessions_[id]_stream_route_actions_58ab2b5b.js.map +1 -0
  417. package/web/.next/server/chunks/[root-of-the-server]__10852c5c._.js +3 -0
  418. package/web/.next/server/chunks/[root-of-the-server]__10852c5c._.js.map +1 -0
  419. package/web/.next/server/chunks/[root-of-the-server]__2b71641f._.js +3 -0
  420. package/web/.next/server/chunks/[root-of-the-server]__2b71641f._.js.map +1 -0
  421. package/web/.next/server/chunks/[root-of-the-server]__2bb675ff._.js +3 -0
  422. package/web/.next/server/chunks/[root-of-the-server]__2bb675ff._.js.map +1 -0
  423. package/web/.next/server/chunks/[root-of-the-server]__4408a5ba._.js +12 -0
  424. package/web/.next/server/chunks/[root-of-the-server]__4408a5ba._.js.map +1 -0
  425. package/web/.next/server/chunks/[root-of-the-server]__6565a045._.js +3 -0
  426. package/web/.next/server/chunks/[root-of-the-server]__6565a045._.js.map +1 -0
  427. package/web/.next/server/chunks/[root-of-the-server]__8a281f8d._.js +18 -0
  428. package/web/.next/server/chunks/[root-of-the-server]__8a281f8d._.js.map +1 -0
  429. package/web/.next/server/chunks/[root-of-the-server]__8f8d6afe._.js +3 -0
  430. package/web/.next/server/chunks/[root-of-the-server]__8f8d6afe._.js.map +1 -0
  431. package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js +1 -1
  432. package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js.map +1 -1
  433. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  434. package/web/.next/server/chunks/{[root-of-the-server]__26565141._.js → [root-of-the-server]__acea6565._.js} +2 -2
  435. package/web/.next/server/chunks/{[root-of-the-server]__26565141._.js.map → [root-of-the-server]__acea6565._.js.map} +1 -1
  436. package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js +3 -0
  437. package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js.map +1 -0
  438. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  439. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  440. package/web/.next/server/chunks/{[root-of-the-server]__25f23d5d._.js → [root-of-the-server]__e3692208._.js} +2 -2
  441. package/web/.next/server/chunks/{[root-of-the-server]__25f23d5d._.js.map → [root-of-the-server]__e3692208._.js.map} +1 -1
  442. package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_interactive_sessions_[id]_route_actions_a4ea4d16.js +3 -0
  443. package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_interactive_sessions_[id]_route_actions_a4ea4d16.js.map +1 -0
  444. package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +1 -1
  445. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2c44200f.js +4 -0
  446. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2c44200f.js.map +1 -0
  447. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_56f4f121.js +4 -0
  448. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_56f4f121.js.map +1 -0
  449. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_77436e06.js +4 -0
  450. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_77436e06.js.map +1 -0
  451. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_b9bb0443.js +4 -0
  452. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_b9bb0443.js.map +1 -0
  453. package/web/.next/server/chunks/ssr/744ca_web_app_(dashboard)_repository_[repositoryId]_[tab]_page_tsx_2e9a3025._.js +3 -0
  454. package/web/.next/server/chunks/ssr/744ca_web_app_(dashboard)_repository_[repositoryId]_[tab]_page_tsx_2e9a3025._.js.map +1 -0
  455. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  456. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  457. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +7 -0
  458. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -0
  459. package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_4b319ae6._.js +3 -0
  460. package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_4b319ae6._.js.map +1 -0
  461. package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js +1 -1
  462. package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js.map +1 -1
  463. package/web/.next/server/chunks/ssr/[root-of-the-server]__17ed7ed1._.js +4 -0
  464. package/web/.next/server/chunks/ssr/[root-of-the-server]__17ed7ed1._.js.map +1 -0
  465. package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js +4 -0
  466. package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js.map +1 -0
  467. package/web/.next/server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js +7 -0
  468. package/web/.next/server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js.map +1 -0
  469. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  470. package/web/.next/server/chunks/ssr/[root-of-the-server]__42bf1807._.js +4 -0
  471. package/web/.next/server/chunks/ssr/[root-of-the-server]__42bf1807._.js.map +1 -0
  472. package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js +4 -0
  473. package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js.map +1 -0
  474. package/web/.next/server/chunks/ssr/[root-of-the-server]__684a868c._.js +1 -1
  475. package/web/.next/server/chunks/ssr/[root-of-the-server]__684a868c._.js.map +1 -1
  476. package/web/.next/server/chunks/ssr/[root-of-the-server]__7528eb6f._.js +3 -0
  477. package/web/.next/server/chunks/ssr/[root-of-the-server]__7528eb6f._.js.map +1 -0
  478. package/web/.next/server/chunks/ssr/[root-of-the-server]__88f7e8e6._.js +4 -0
  479. package/web/.next/server/chunks/ssr/[root-of-the-server]__88f7e8e6._.js.map +1 -0
  480. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js +4 -0
  481. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js.map +1 -0
  482. package/web/.next/server/chunks/ssr/[root-of-the-server]__b14946f5._.js +2 -2
  483. package/web/.next/server/chunks/ssr/[root-of-the-server]__b8d4bd27._.js +3 -0
  484. package/web/.next/server/chunks/ssr/[root-of-the-server]__b8d4bd27._.js.map +1 -0
  485. package/web/.next/server/chunks/ssr/[root-of-the-server]__c16bf5de._.js +1 -1
  486. package/web/.next/server/chunks/ssr/[root-of-the-server]__c16bf5de._.js.map +1 -1
  487. package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js +4 -0
  488. package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js.map +1 -0
  489. package/web/.next/server/chunks/ssr/[root-of-the-server]__ede6df1f._.js +3 -0
  490. package/web/.next/server/chunks/ssr/[root-of-the-server]__ede6df1f._.js.map +1 -0
  491. package/web/.next/server/chunks/ssr/[root-of-the-server]__f80bfc75._.js +4 -0
  492. package/web/.next/server/chunks/ssr/[root-of-the-server]__f80bfc75._.js.map +1 -0
  493. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  494. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  495. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  496. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  497. package/web/.next/server/chunks/ssr/_3a0b989f._.js +6 -0
  498. package/web/.next/server/chunks/ssr/_3a0b989f._.js.map +1 -0
  499. package/web/.next/server/chunks/ssr/_48e5757d._.js +9 -0
  500. package/web/.next/server/chunks/ssr/_48e5757d._.js.map +1 -0
  501. package/web/.next/server/chunks/ssr/{_4093a637._.js → _4c42590e._.js} +2 -2
  502. package/web/.next/server/chunks/ssr/_4c42590e._.js.map +1 -0
  503. package/web/.next/server/chunks/ssr/{_6c7faa01._.js → _507a8382._.js} +2 -2
  504. package/web/.next/server/chunks/ssr/_507a8382._.js.map +1 -0
  505. package/web/.next/server/chunks/ssr/_56b9d60f._.js +3 -0
  506. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -0
  507. package/web/.next/server/chunks/ssr/_5f69c13f._.js +4 -0
  508. package/web/.next/server/chunks/ssr/_5f69c13f._.js.map +1 -0
  509. package/web/.next/server/chunks/ssr/_78ff6f1d._.js +3 -0
  510. package/web/.next/server/chunks/ssr/_78ff6f1d._.js.map +1 -0
  511. package/web/.next/server/chunks/ssr/_7c5b97c6._.js +4 -0
  512. package/web/.next/server/chunks/ssr/_7c5b97c6._.js.map +1 -0
  513. package/web/.next/server/chunks/ssr/_8219712a._.js +3 -0
  514. package/web/.next/server/chunks/ssr/_8219712a._.js.map +1 -0
  515. package/web/.next/server/chunks/ssr/_82c57f10._.js +4 -0
  516. package/web/.next/server/chunks/ssr/_82c57f10._.js.map +1 -0
  517. package/web/.next/server/chunks/ssr/{_0020fddd._.js → _8b57edb8._.js} +2 -2
  518. package/web/.next/server/chunks/ssr/_8b57edb8._.js.map +1 -0
  519. package/web/.next/server/chunks/ssr/_8d733ce4._.js +3 -0
  520. package/web/.next/server/chunks/ssr/_8d733ce4._.js.map +1 -0
  521. package/web/.next/server/chunks/ssr/{_6256a985._.js → _9495d50b._.js} +3 -3
  522. package/web/.next/server/chunks/ssr/{_6256a985._.js.map → _9495d50b._.js.map} +1 -1
  523. package/web/.next/server/chunks/ssr/_a0e3f7e4._.js +4 -0
  524. package/web/.next/server/chunks/ssr/_a0e3f7e4._.js.map +1 -0
  525. package/web/.next/server/chunks/ssr/_ac4a3873._.js +3 -0
  526. package/web/.next/server/chunks/ssr/_ac4a3873._.js.map +1 -0
  527. package/web/.next/server/chunks/ssr/_ca0aa7f0._.js +4 -0
  528. package/web/.next/server/chunks/ssr/_ca0aa7f0._.js.map +1 -0
  529. package/web/.next/server/chunks/ssr/_cb5a021e._.js +4 -0
  530. package/web/.next/server/chunks/ssr/_cb5a021e._.js.map +1 -0
  531. package/web/.next/server/chunks/ssr/_cfbd1d7e._.js +1 -1
  532. package/web/.next/server/chunks/ssr/_cfbd1d7e._.js.map +1 -1
  533. package/web/.next/server/chunks/ssr/_d4b20e29._.js +1 -1
  534. package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -1
  535. package/web/.next/server/chunks/ssr/_d86175ae._.js +4 -0
  536. package/web/.next/server/chunks/ssr/_d86175ae._.js.map +1 -0
  537. package/web/.next/server/chunks/ssr/_d8bedf13._.js +4 -0
  538. package/web/.next/server/chunks/ssr/_d8bedf13._.js.map +1 -0
  539. package/web/.next/server/chunks/ssr/_de71404e._.js +3 -0
  540. package/web/.next/server/chunks/ssr/_de71404e._.js.map +1 -0
  541. package/web/.next/server/chunks/ssr/{_2a9037e8._.js → _eb9467e9._.js} +3 -3
  542. package/web/.next/server/chunks/ssr/_eb9467e9._.js.map +1 -0
  543. package/web/.next/server/chunks/ssr/_fa7efce3._.js +6 -0
  544. package/web/.next/server/chunks/ssr/_fa7efce3._.js.map +1 -0
  545. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  546. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  547. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_global-chat-drawer-client_tsx_158c4b12._.js +3 -0
  548. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_global-chat-drawer-client_tsx_158c4b12._.js.map +1 -0
  549. package/web/.next/server/chunks/ssr/node_modules__pnpm_8ec2c790._.js +3 -0
  550. package/web/.next/server/chunks/ssr/node_modules__pnpm_8ec2c790._.js.map +1 -0
  551. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js +3 -0
  552. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js.map +1 -0
  553. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js +3 -0
  554. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js.map +1 -0
  555. package/web/.next/server/chunks/ssr/src_presentation_web_app_(dashboard)_chat_page_tsx_85327270._.js +3 -0
  556. package/web/.next/server/chunks/ssr/src_presentation_web_app_(dashboard)_chat_page_tsx_85327270._.js.map +1 -0
  557. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  558. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  559. package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js +3 -0
  560. package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js.map +1 -0
  561. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  562. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  563. package/web/.next/server/middleware-build-manifest.js +3 -3
  564. package/web/.next/server/pages/500.html +2 -2
  565. package/web/.next/server/server-reference-manifest.js +1 -1
  566. package/web/.next/server/server-reference-manifest.json +1346 -562
  567. package/web/.next/static/chunks/0c38793438b8c038.js +1 -0
  568. package/web/.next/static/chunks/0e73b25a355804a2.js +5 -0
  569. package/web/.next/static/chunks/11091b676d1b3bd4.js +1 -0
  570. package/web/.next/static/chunks/16f6471485cbfed1.css +1 -0
  571. package/web/.next/static/chunks/22c459f1877b1e4f.js +1 -0
  572. package/web/.next/static/chunks/2354d39c63978576.js +1 -0
  573. package/web/.next/static/chunks/40b6bcf1a2de4a0f.js +1 -0
  574. package/web/.next/static/chunks/476ebad4abb27ee8.js +7 -0
  575. package/web/.next/static/chunks/487a3d47f76ba2ce.js +1 -0
  576. package/web/.next/static/chunks/4b2c4a5c35ebb70d.js +1 -0
  577. package/web/.next/static/chunks/5ae60a052ab5f437.js +5 -0
  578. package/web/.next/static/chunks/6a5c79587318fe1e.js +1 -0
  579. package/web/.next/static/chunks/{b113da1fbdb83ffa.js → 73b5be3394d27358.js} +2 -2
  580. package/web/.next/static/chunks/9dd319c237b73197.js +1 -0
  581. package/web/.next/static/chunks/b546fac6810f555b.js +1 -0
  582. package/web/.next/static/chunks/c80523e4d172cdea.js +3 -0
  583. package/web/.next/static/chunks/cd54b758f58061d0.js +1 -0
  584. package/web/.next/static/chunks/ce18a48f7d5d53c0.js +1 -0
  585. package/web/.next/static/chunks/{cfe4dc9904fcfddb.js → d0e04c4bd51d2553.js} +1 -1
  586. package/web/.next/static/chunks/e51493c981deb9fd.js +1 -0
  587. package/web/.next/static/chunks/ec7cd7e136a1b320.js +1 -0
  588. package/web/.next/static/chunks/f0b1a5ded6ab6885.js +1 -0
  589. package/web/.next/static/chunks/feed0046c419c228.js +5 -0
  590. package/web/.next/static/chunks/{turbopack-c2d183e05f30c7dc.js → turbopack-432ef324fc27240c.js} +1 -1
  591. package/web/package.json +7 -2
  592. package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js +0 -3
  593. package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js.map +0 -1
  594. package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_8b618f7d._.js +0 -3
  595. package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_8b618f7d._.js.map +0 -1
  596. package/web/.next/server/chunks/ssr/[root-of-the-server]__2138fa7e._.js +0 -4
  597. package/web/.next/server/chunks/ssr/[root-of-the-server]__2138fa7e._.js.map +0 -1
  598. package/web/.next/server/chunks/ssr/[root-of-the-server]__29580090._.js +0 -4
  599. package/web/.next/server/chunks/ssr/[root-of-the-server]__29580090._.js.map +0 -1
  600. package/web/.next/server/chunks/ssr/[root-of-the-server]__3ef34e4c._.js +0 -4
  601. package/web/.next/server/chunks/ssr/[root-of-the-server]__3ef34e4c._.js.map +0 -1
  602. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js +0 -4
  603. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js.map +0 -1
  604. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js +0 -4
  605. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js.map +0 -1
  606. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +0 -7
  607. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +0 -1
  608. package/web/.next/server/chunks/ssr/[root-of-the-server]__c094882b._.js +0 -4
  609. package/web/.next/server/chunks/ssr/[root-of-the-server]__c094882b._.js.map +0 -1
  610. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js +0 -3
  611. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js.map +0 -1
  612. package/web/.next/server/chunks/ssr/[root-of-the-server]__dac5dbf1._.js +0 -4
  613. package/web/.next/server/chunks/ssr/[root-of-the-server]__dac5dbf1._.js.map +0 -1
  614. package/web/.next/server/chunks/ssr/[root-of-the-server]__df7c1cd3._.js +0 -3
  615. package/web/.next/server/chunks/ssr/[root-of-the-server]__df7c1cd3._.js.map +0 -1
  616. package/web/.next/server/chunks/ssr/[root-of-the-server]__fae8b355._.js +0 -4
  617. package/web/.next/server/chunks/ssr/[root-of-the-server]__fae8b355._.js.map +0 -1
  618. package/web/.next/server/chunks/ssr/_0020fddd._.js.map +0 -1
  619. package/web/.next/server/chunks/ssr/_01046927._.js +0 -9
  620. package/web/.next/server/chunks/ssr/_01046927._.js.map +0 -1
  621. package/web/.next/server/chunks/ssr/_0c473fef._.js +0 -6
  622. package/web/.next/server/chunks/ssr/_0c473fef._.js.map +0 -1
  623. package/web/.next/server/chunks/ssr/_1b719e7f._.js +0 -4
  624. package/web/.next/server/chunks/ssr/_1b719e7f._.js.map +0 -1
  625. package/web/.next/server/chunks/ssr/_2a9037e8._.js.map +0 -1
  626. package/web/.next/server/chunks/ssr/_37e8548b._.js +0 -4
  627. package/web/.next/server/chunks/ssr/_37e8548b._.js.map +0 -1
  628. package/web/.next/server/chunks/ssr/_4093a637._.js.map +0 -1
  629. package/web/.next/server/chunks/ssr/_55d763e2._.js +0 -4
  630. package/web/.next/server/chunks/ssr/_55d763e2._.js.map +0 -1
  631. package/web/.next/server/chunks/ssr/_5b5dbf5b._.js +0 -3
  632. package/web/.next/server/chunks/ssr/_5b5dbf5b._.js.map +0 -1
  633. package/web/.next/server/chunks/ssr/_6c7faa01._.js.map +0 -1
  634. package/web/.next/server/chunks/ssr/_8fcc39d4._.js +0 -3
  635. package/web/.next/server/chunks/ssr/_8fcc39d4._.js.map +0 -1
  636. package/web/.next/server/chunks/ssr/_b71645b4._.js +0 -4
  637. package/web/.next/server/chunks/ssr/_b71645b4._.js.map +0 -1
  638. package/web/.next/server/chunks/ssr/_d8575088._.js +0 -3
  639. package/web/.next/server/chunks/ssr/_d8575088._.js.map +0 -1
  640. package/web/.next/server/chunks/ssr/_e9e9ed20._.js +0 -6
  641. package/web/.next/server/chunks/ssr/_e9e9ed20._.js.map +0 -1
  642. package/web/.next/server/chunks/ssr/node_modules__pnpm_55c7a131._.js +0 -3
  643. package/web/.next/server/chunks/ssr/node_modules__pnpm_55c7a131._.js.map +0 -1
  644. package/web/.next/server/chunks/ssr/src_presentation_web_1be4a9a5._.js +0 -3
  645. package/web/.next/server/chunks/ssr/src_presentation_web_1be4a9a5._.js.map +0 -1
  646. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js +0 -3
  647. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js.map +0 -1
  648. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js +0 -3
  649. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js.map +0 -1
  650. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +0 -3
  651. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +0 -1
  652. package/web/.next/static/chunks/067e63e1f8a471c7.js +0 -5
  653. package/web/.next/static/chunks/08baac5434d9528e.js +0 -13
  654. package/web/.next/static/chunks/176b3e6837dce4ad.js +0 -1
  655. package/web/.next/static/chunks/1dc8d2933f22de05.js +0 -1
  656. package/web/.next/static/chunks/2dfeeccc2f180ab8.js +0 -1
  657. package/web/.next/static/chunks/49057cf8cd37e262.js +0 -1
  658. package/web/.next/static/chunks/4cec255f2754e5ec.js +0 -1
  659. package/web/.next/static/chunks/56f68c783c480176.js +0 -1
  660. package/web/.next/static/chunks/601d93593f5f664f.js +0 -1
  661. package/web/.next/static/chunks/768e2db272a413cc.js +0 -1
  662. package/web/.next/static/chunks/9b8678597fa1db84.css +0 -1
  663. package/web/.next/static/chunks/b02205ef744953bc.js +0 -1
  664. package/web/.next/static/chunks/b70dd4985a814b27.js +0 -1
  665. package/web/.next/static/chunks/c28ae41d01ad3130.js +0 -1
  666. package/web/.next/static/chunks/db5dc8b848e7ddd1.js +0 -1
  667. package/web/.next/static/chunks/e860f0c546deeabc.js +0 -1
  668. package/web/.next/static/chunks/f66c996402a430f5.js +0 -1
  669. package/web/.next/static/chunks/fdd703b4cec873bb.js +0 -1
  670. /package/web/.next/static/{qifXEaEcnY1cbH8eHlEIN → VIJH9LQh8Ro1-nip3v-Am}/_buildManifest.js +0 -0
  671. /package/web/.next/static/{qifXEaEcnY1cbH8eHlEIN → VIJH9LQh8Ro1-nip3v-Am}/_clientMiddlewareManifest.json +0 -0
  672. /package/web/.next/static/{qifXEaEcnY1cbH8eHlEIN → VIJH9LQh8Ro1-nip3v-Am}/_ssgManifest.js +0 -0
@@ -0,0 +1,2 @@
1
+ globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
2
+ globalThis.__RSC_MANIFEST["/(dashboard)/chat/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx <module evaluation>":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx <module evaluation>":{"id":87292,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx <module evaluation>":{"id":75921,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx":{"id":75921,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js"],"async":false},"[project]/src/presentation/web/components/providers/query-provider.tsx <module evaluation>":{"id":4858,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js"],"async":false},"[project]/src/presentation/web/components/providers/query-provider.tsx":{"id":4858,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx <module evaluation>":{"id":48246,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js","/_next/static/chunks/487a3d47f76ba2ce.js","/_next/static/chunks/6a5c79587318fe1e.js","/_next/static/chunks/73b5be3394d27358.js","/_next/static/chunks/f0b1a5ded6ab6885.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx":{"id":48246,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js","/_next/static/chunks/487a3d47f76ba2ce.js","/_next/static/chunks/6a5c79587318fe1e.js","/_next/static/chunks/73b5be3394d27358.js","/_next/static/chunks/f0b1a5ded6ab6885.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts <module evaluation>":{"id":17840,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js","/_next/static/chunks/487a3d47f76ba2ce.js","/_next/static/chunks/6a5c79587318fe1e.js","/_next/static/chunks/73b5be3394d27358.js","/_next/static/chunks/f0b1a5ded6ab6885.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts":{"id":17840,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js","/_next/static/chunks/487a3d47f76ba2ce.js","/_next/static/chunks/6a5c79587318fe1e.js","/_next/static/chunks/73b5be3394d27358.js","/_next/static/chunks/f0b1a5ded6ab6885.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/global-chat-drawer-client.tsx <module evaluation>":{"id":78496,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js","/_next/static/chunks/487a3d47f76ba2ce.js","/_next/static/chunks/6a5c79587318fe1e.js","/_next/static/chunks/73b5be3394d27358.js","/_next/static/chunks/f0b1a5ded6ab6885.js","/_next/static/chunks/2354d39c63978576.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/global-chat-drawer-client.tsx":{"id":78496,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/476ebad4abb27ee8.js","/_next/static/chunks/c80523e4d172cdea.js","/_next/static/chunks/4b2c4a5c35ebb70d.js","/_next/static/chunks/feed0046c419c228.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/5ae60a052ab5f437.js","/_next/static/chunks/ec7cd7e136a1b320.js","/_next/static/chunks/487a3d47f76ba2ce.js","/_next/static/chunks/6a5c79587318fe1e.js","/_next/static/chunks/73b5be3394d27358.js","/_next/static/chunks/f0b1a5ded6ab6885.js","/_next/static/chunks/2354d39c63978576.js"],"async":false}},"ssrModuleMapping":{"40799":{"*":{"id":69218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"73006":{"*":{"id":76926,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"67804":{"*":{"id":78378,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"50122":{"*":{"id":18508,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"19292":{"*":{"id":55259,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"30088":{"*":{"id":33028,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"66658":{"*":{"id":42422,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"98295":{"*":{"id":84831,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"87292":{"*":{"id":66560,"name":"*","chunks":["server/chunks/ssr/_48e5757d._.js","server/chunks/ssr/_4c42590e._.js","server/chunks/ssr/node_modules__pnpm_8ec2c790._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_8b57edb8._.js","server/chunks/ssr/[root-of-the-server]__ede6df1f._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_ac4a3873._.js","server/chunks/ssr/src_presentation_web_components_357e3eb0._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/_48e5757d._.js","server/chunks/ssr/_4c42590e._.js","server/chunks/ssr/node_modules__pnpm_8ec2c790._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_8b57edb8._.js","server/chunks/ssr/[root-of-the-server]__ede6df1f._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_ac4a3873._.js","server/chunks/ssr/src_presentation_web_components_357e3eb0._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"75921":{"*":{"id":21333,"name":"*","chunks":["server/chunks/ssr/_48e5757d._.js","server/chunks/ssr/_4c42590e._.js","server/chunks/ssr/node_modules__pnpm_8ec2c790._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_8b57edb8._.js","server/chunks/ssr/[root-of-the-server]__ede6df1f._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_ac4a3873._.js","server/chunks/ssr/src_presentation_web_components_357e3eb0._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"4858":{"*":{"id":41835,"name":"*","chunks":["server/chunks/ssr/_48e5757d._.js","server/chunks/ssr/_4c42590e._.js","server/chunks/ssr/node_modules__pnpm_8ec2c790._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_8b57edb8._.js","server/chunks/ssr/[root-of-the-server]__ede6df1f._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_ac4a3873._.js","server/chunks/ssr/src_presentation_web_components_357e3eb0._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"48246":{"*":{"id":59949,"name":"*","chunks":["server/chunks/ssr/_48e5757d._.js","server/chunks/ssr/_4c42590e._.js","server/chunks/ssr/node_modules__pnpm_8ec2c790._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_8b57edb8._.js","server/chunks/ssr/[root-of-the-server]__ede6df1f._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_ac4a3873._.js","server/chunks/ssr/src_presentation_web_components_357e3eb0._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_de71404e._.js","server/chunks/ssr/_05c23ad9._.js","server/chunks/ssr/_eb9467e9._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js"],"async":false}},"17840":{"*":{"id":16533,"name":"*","chunks":["server/chunks/ssr/_48e5757d._.js","server/chunks/ssr/_4c42590e._.js","server/chunks/ssr/node_modules__pnpm_8ec2c790._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_8b57edb8._.js","server/chunks/ssr/[root-of-the-server]__ede6df1f._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_ac4a3873._.js","server/chunks/ssr/src_presentation_web_components_357e3eb0._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_de71404e._.js","server/chunks/ssr/_05c23ad9._.js","server/chunks/ssr/_eb9467e9._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js"],"async":false}},"78496":{"*":{"id":30156,"name":"*","chunks":["server/chunks/ssr/_48e5757d._.js","server/chunks/ssr/_4c42590e._.js","server/chunks/ssr/node_modules__pnpm_8ec2c790._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_8b57edb8._.js","server/chunks/ssr/[root-of-the-server]__ede6df1f._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/[root-of-the-server]__31f1c3b0._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_ac4a3873._.js","server/chunks/ssr/src_presentation_web_components_357e3eb0._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/_de71404e._.js","server/chunks/ssr/_05c23ad9._.js","server/chunks/ssr/_eb9467e9._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/f3a1f_components_common_control-center-drawer_global-chat-drawer-client_tsx_158c4b12._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40799":{"*":{"id":48035,"name":"*","chunks":[],"async":false}},"73006":{"*":{"id":22994,"name":"*","chunks":[],"async":false}},"67804":{"*":{"id":21809,"name":"*","chunks":[],"async":false}},"50122":{"*":{"id":70251,"name":"*","chunks":[],"async":false}},"19292":{"*":{"id":39498,"name":"*","chunks":[],"async":false}},"30088":{"*":{"id":2021,"name":"*","chunks":[],"async":false}},"66658":{"*":{"id":47390,"name":"*","chunks":[],"async":false}},"98295":{"*":{"id":73449,"name":"*","chunks":[],"async":false}},"87292":{"*":{"id":34168,"name":"*","chunks":[],"async":false}},"25251":{"*":{"id":11900,"name":"*","chunks":[],"async":false}},"75921":{"*":{"id":59259,"name":"*","chunks":[],"async":false}},"4858":{"*":{"id":19488,"name":"*","chunks":[],"async":false}},"48246":{"*":{"id":87979,"name":"*","chunks":[],"async":false}},"17840":{"*":{"id":81035,"name":"*","chunks":[],"async":false}},"78496":{"*":{"id":95607,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/presentation/web/app/global-error":[],"[project]/src/presentation/web/app/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/8180973e9cd6a99e.css","inlined":false},{"path":"static/chunks/16f6471485cbfed1.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/8180973e9cd6a99e.css","inlined":false},{"path":"static/chunks/16f6471485cbfed1.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/@drawer/chat/page":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/8180973e9cd6a99e.css","inlined":false},{"path":"static/chunks/16f6471485cbfed1.css","inlined":false}]},"entryJSFiles":{"[project]/src/presentation/web/app/global-error":["static/chunks/356ebc89a2a97627.js","static/chunks/fe70e73feb07bcfd.js"],"[project]/src/presentation/web/app/layout":["static/chunks/83fc7ea32e18c9a5.js","static/chunks/476ebad4abb27ee8.js","static/chunks/c80523e4d172cdea.js","static/chunks/4b2c4a5c35ebb70d.js","static/chunks/feed0046c419c228.js","static/chunks/672e3da3ad26005b.js","static/chunks/5ae60a052ab5f437.js","static/chunks/ec7cd7e136a1b320.js"],"[project]/src/presentation/web/app/(dashboard)/layout":["static/chunks/83fc7ea32e18c9a5.js","static/chunks/476ebad4abb27ee8.js","static/chunks/c80523e4d172cdea.js","static/chunks/4b2c4a5c35ebb70d.js","static/chunks/feed0046c419c228.js","static/chunks/672e3da3ad26005b.js","static/chunks/5ae60a052ab5f437.js","static/chunks/ec7cd7e136a1b320.js","static/chunks/487a3d47f76ba2ce.js","static/chunks/6a5c79587318fe1e.js","static/chunks/73b5be3394d27358.js","static/chunks/f0b1a5ded6ab6885.js"],"[project]/src/presentation/web/app/(dashboard)/@drawer/chat/page":["static/chunks/83fc7ea32e18c9a5.js","static/chunks/476ebad4abb27ee8.js","static/chunks/c80523e4d172cdea.js","static/chunks/4b2c4a5c35ebb70d.js","static/chunks/feed0046c419c228.js","static/chunks/672e3da3ad26005b.js","static/chunks/5ae60a052ab5f437.js","static/chunks/ec7cd7e136a1b320.js","static/chunks/487a3d47f76ba2ce.js","static/chunks/6a5c79587318fe1e.js","static/chunks/73b5be3394d27358.js","static/chunks/f0b1a5ded6ab6885.js","static/chunks/2354d39c63978576.js"]}}
@@ -6,12 +6,12 @@
6
6
  ],
7
7
  "lowPriorityFiles": [],
8
8
  "rootMainFiles": [
9
- "static/chunks/4cec255f2754e5ec.js",
9
+ "static/chunks/40b6bcf1a2de4a0f.js",
10
10
  "static/chunks/c7e793951b20a67f.js",
11
11
  "static/chunks/4b6cc9f65260f2bd.js",
12
- "static/chunks/cfe4dc9904fcfddb.js",
12
+ "static/chunks/d0e04c4bd51d2553.js",
13
13
  "static/chunks/d4d8f0a137bd2eb4.js",
14
- "static/chunks/turbopack-c2d183e05f30c7dc.js"
14
+ "static/chunks/turbopack-432ef324fc27240c.js"
15
15
  ],
16
16
  "pages": {},
17
17
  "ampFirstPages": []
@@ -1,9 +1,39 @@
1
1
  {
2
2
  "node": {
3
- "00f3e4dac3826c41e54142cd649d9ec971b9f3f52b": {
3
+ "00944a476110a08aba0f891f96b6e4bfd0b148fb20": {
4
4
  "workers": {
5
5
  "app/(dashboard)/create/page": {
6
- "moduleId": 53450,
6
+ "moduleId": 13924,
7
+ "async": false,
8
+ "exportedName": "getAllAgentModels",
9
+ "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
10
+ }
11
+ },
12
+ "layer": {
13
+ "app/(dashboard)/create/page": "action-browser"
14
+ },
15
+ "exportedName": "getAllAgentModels",
16
+ "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
17
+ },
18
+ "605ecb08f96f054bea80588bf9e91f9f548d682f26": {
19
+ "workers": {
20
+ "app/(dashboard)/create/page": {
21
+ "moduleId": 13924,
22
+ "async": false,
23
+ "exportedName": "updateAgentAndModel",
24
+ "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
25
+ }
26
+ },
27
+ "layer": {
28
+ "app/(dashboard)/create/page": "action-browser"
29
+ },
30
+ "exportedName": "updateAgentAndModel",
31
+ "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
32
+ },
33
+ "006946b9955eba853047b75a934f2c5fd3e532e903": {
34
+ "workers": {
35
+ "app/(dashboard)/create/page": {
36
+ "moduleId": 13924,
7
37
  "async": false,
8
38
  "exportedName": "pickFolder",
9
39
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -15,10 +45,10 @@
15
45
  "exportedName": "pickFolder",
16
46
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
17
47
  },
18
- "40afc33c63ebfdaa76f50fd5a037aaaf941c590817": {
48
+ "4003582fa8512113bf02cc71fe4bc342d984fea00d": {
19
49
  "workers": {
20
50
  "app/(dashboard)/create/page": {
21
- "moduleId": 53450,
51
+ "moduleId": 13924,
22
52
  "async": false,
23
53
  "exportedName": "listGitHubRepositories",
24
54
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -30,10 +60,10 @@
30
60
  "exportedName": "listGitHubRepositories",
31
61
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
32
62
  },
33
- "4000e2534edc219eb3a10b70e6275cd6baf8a4a8a3": {
63
+ "4040d5d6b493dc8132bd2cf17d357f3e187b9bf1a4": {
34
64
  "workers": {
35
65
  "app/(dashboard)/create/page": {
36
- "moduleId": 53450,
66
+ "moduleId": 13924,
37
67
  "async": false,
38
68
  "exportedName": "importGitHubRepository",
39
69
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -45,10 +75,10 @@
45
75
  "exportedName": "importGitHubRepository",
46
76
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
47
77
  },
48
- "4073ef881c28c583e824cedf550f5b38bbf3f863da": {
78
+ "40ef285e7e913eb7bdb2c0e0609f66f6ae415289b3": {
49
79
  "workers": {
50
80
  "app/(dashboard)/create/page": {
51
- "moduleId": 53450,
81
+ "moduleId": 13924,
52
82
  "async": false,
53
83
  "exportedName": "deployFeature",
54
84
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -60,10 +90,10 @@
60
90
  "exportedName": "deployFeature",
61
91
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
62
92
  },
63
- "40bf13ad5e10ba629b4d7aef7cd3898b7c0ef5db85": {
93
+ "403132b0c325231db868574d17484b2414636f37c5": {
64
94
  "workers": {
65
95
  "app/(dashboard)/create/page": {
66
- "moduleId": 53450,
96
+ "moduleId": 13924,
67
97
  "async": false,
68
98
  "exportedName": "deployRepository",
69
99
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -75,10 +105,10 @@
75
105
  "exportedName": "deployRepository",
76
106
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
77
107
  },
78
- "40974b3bb649e8e7e1d252e8a448822b9264a58ed0": {
108
+ "40b31f400995e512342877bc97abf840df8f348334": {
79
109
  "workers": {
80
110
  "app/(dashboard)/create/page": {
81
- "moduleId": 53450,
111
+ "moduleId": 13924,
82
112
  "async": false,
83
113
  "exportedName": "stopDeployment",
84
114
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -90,10 +120,10 @@
90
120
  "exportedName": "stopDeployment",
91
121
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
92
122
  },
93
- "4067121a189a21759cd742ababcf173d99affafc74": {
123
+ "40941db1474ef5465bc95a50078060f73b509f883c": {
94
124
  "workers": {
95
125
  "app/(dashboard)/create/page": {
96
- "moduleId": 53450,
126
+ "moduleId": 13924,
97
127
  "async": false,
98
128
  "exportedName": "getDeploymentStatus",
99
129
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -105,10 +135,10 @@
105
135
  "exportedName": "getDeploymentStatus",
106
136
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
107
137
  },
108
- "409b298323d45b69829ecd47729ad47bd7bfe189fa": {
138
+ "4065089747f21c466d87769197a3c284cf5068ffe6": {
109
139
  "workers": {
110
140
  "app/(dashboard)/create/page": {
111
- "moduleId": 53450,
141
+ "moduleId": 13924,
112
142
  "async": false,
113
143
  "exportedName": "openIde",
114
144
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -120,10 +150,10 @@
120
150
  "exportedName": "openIde",
121
151
  "filename": "src/presentation/web/app/actions/open-ide.ts"
122
152
  },
123
- "40f7af7967888226745c8aaced8beba5d7870385fb": {
153
+ "40625f7afbc57a0aaf0916502f61dc5ad3a00a8556": {
124
154
  "workers": {
125
155
  "app/(dashboard)/create/page": {
126
- "moduleId": 53450,
156
+ "moduleId": 13924,
127
157
  "async": false,
128
158
  "exportedName": "openShell",
129
159
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -135,10 +165,10 @@
135
165
  "exportedName": "openShell",
136
166
  "filename": "src/presentation/web/app/actions/open-shell.ts"
137
167
  },
138
- "40d83804e6b7375488a3bc7d93e52c3e773b018119": {
168
+ "4068ff7cbd4b35a2e9a51010c148209d5889229236": {
139
169
  "workers": {
140
170
  "app/(dashboard)/create/page": {
141
- "moduleId": 53450,
171
+ "moduleId": 13924,
142
172
  "async": false,
143
173
  "exportedName": "openFolder",
144
174
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -150,10 +180,10 @@
150
180
  "exportedName": "openFolder",
151
181
  "filename": "src/presentation/web/app/actions/open-folder.ts"
152
182
  },
153
- "407cf41303e5b47b14afa7b61cb8c2641dd334ab84": {
183
+ "402acb181d09e58dcd98c5158e061aeb1d6219c8d2": {
154
184
  "workers": {
155
185
  "app/(dashboard)/create/page": {
156
- "moduleId": 53450,
186
+ "moduleId": 13924,
157
187
  "async": false,
158
188
  "exportedName": "syncRepository",
159
189
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
@@ -165,10 +195,10 @@
165
195
  "exportedName": "syncRepository",
166
196
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
167
197
  },
168
- "408d34f89318e2b0959f1c5b714c9de3478fd104ef": {
198
+ "400ce0563ff29617a9a11a2d9c8b25616e3f28d102": {
169
199
  "workers": {
170
200
  "app/(dashboard)/create/page": {
171
- "moduleId": 53450,
201
+ "moduleId": 13924,
172
202
  "async": false,
173
203
  "exportedName": "getDeploymentLogs",
174
204
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -180,10 +210,10 @@
180
210
  "exportedName": "getDeploymentLogs",
181
211
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
182
212
  },
183
- "00c29953f9c836bba7b8be2c0c5dfead91c532abef": {
213
+ "00177b90436e72f7cca2d50e81960534f6886cc0f9": {
184
214
  "workers": {
185
215
  "app/(dashboard)/create/page": {
186
- "moduleId": 53450,
216
+ "moduleId": 13924,
187
217
  "async": false,
188
218
  "exportedName": "isAgentSetupComplete",
189
219
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -195,10 +225,10 @@
195
225
  "exportedName": "isAgentSetupComplete",
196
226
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
197
227
  },
198
- "0077296847d832bbabcf12fd6cf40d5da0ceb5746c": {
228
+ "008bba3a0b32232e43c1693e51c0cfd34190d3499c": {
199
229
  "workers": {
200
230
  "app/(dashboard)/create/page": {
201
- "moduleId": 53450,
231
+ "moduleId": 13924,
202
232
  "async": false,
203
233
  "exportedName": "checkAgentAuth",
204
234
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -210,10 +240,10 @@
210
240
  "exportedName": "checkAgentAuth",
211
241
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
212
242
  },
213
- "00a71472e8879c5215e0aac845340274d054a3385f": {
243
+ "0069871783d5eca402e5e883a42db0658d72b4b372": {
214
244
  "workers": {
215
245
  "app/(dashboard)/create/page": {
216
- "moduleId": 53450,
246
+ "moduleId": 13924,
217
247
  "async": false,
218
248
  "exportedName": "checkToolStatus",
219
249
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -225,40 +255,10 @@
225
255
  "exportedName": "checkToolStatus",
226
256
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
227
257
  },
228
- "00658f84a3cf4dc8cd88e340ebe495b210d044ad97": {
229
- "workers": {
230
- "app/(dashboard)/create/page": {
231
- "moduleId": 53450,
232
- "async": false,
233
- "exportedName": "getAllAgentModels",
234
- "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
235
- }
236
- },
237
- "layer": {
238
- "app/(dashboard)/create/page": "action-browser"
239
- },
240
- "exportedName": "getAllAgentModels",
241
- "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
242
- },
243
- "60aa3a970d3658c41c618248cb91f32e0f52895503": {
244
- "workers": {
245
- "app/(dashboard)/create/page": {
246
- "moduleId": 53450,
247
- "async": false,
248
- "exportedName": "updateAgentAndModel",
249
- "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
250
- }
251
- },
252
- "layer": {
253
- "app/(dashboard)/create/page": "action-browser"
254
- },
255
- "exportedName": "updateAgentAndModel",
256
- "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
257
- },
258
- "404ef00757ee51d31c8d8658653cec33e319a924c9": {
258
+ "40ae520eb21a3277352337edb008ffe01e7ca6eb96": {
259
259
  "workers": {
260
260
  "app/(dashboard)/create/page": {
261
- "moduleId": 53450,
261
+ "moduleId": 13924,
262
262
  "async": false,
263
263
  "exportedName": "archiveFeature",
264
264
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
@@ -270,10 +270,10 @@
270
270
  "exportedName": "archiveFeature",
271
271
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
272
272
  },
273
- "78431eccb83995d861dde24e35dd453adf86eeb443": {
273
+ "782a48455af87bfbe11e439551cedf476797ff610c": {
274
274
  "workers": {
275
275
  "app/(dashboard)/create/page": {
276
- "moduleId": 53450,
276
+ "moduleId": 13924,
277
277
  "async": false,
278
278
  "exportedName": "deleteFeature",
279
279
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -285,10 +285,10 @@
285
285
  "exportedName": "deleteFeature",
286
286
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
287
287
  },
288
- "40df7a2133e7e311f0b2aa903e0f2501811481cf9e": {
288
+ "400ed758818d3dd5bd23ed4382452798159450b28a": {
289
289
  "workers": {
290
290
  "app/(dashboard)/create/page": {
291
- "moduleId": 53450,
291
+ "moduleId": 13924,
292
292
  "async": false,
293
293
  "exportedName": "resumeFeature",
294
294
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -300,10 +300,10 @@
300
300
  "exportedName": "resumeFeature",
301
301
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
302
302
  },
303
- "40680e355217571485426a192386249872fa0df2e8": {
303
+ "409f9d009f180656165bd505b286d57e141b3fa7f7": {
304
304
  "workers": {
305
305
  "app/(dashboard)/create/page": {
306
- "moduleId": 53450,
306
+ "moduleId": 13924,
307
307
  "async": false,
308
308
  "exportedName": "startFeature",
309
309
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -315,10 +315,10 @@
315
315
  "exportedName": "startFeature",
316
316
  "filename": "src/presentation/web/app/actions/start-feature.ts"
317
317
  },
318
- "4005d95a32efe2a160f6151d6d1f5ac9b30176d950": {
318
+ "40fee1a26227cacc23d96b99b08c103ffeb03e1072": {
319
319
  "workers": {
320
320
  "app/(dashboard)/create/page": {
321
- "moduleId": 53450,
321
+ "moduleId": 13924,
322
322
  "async": false,
323
323
  "exportedName": "stopFeature",
324
324
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -330,10 +330,10 @@
330
330
  "exportedName": "stopFeature",
331
331
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
332
332
  },
333
- "405b39ecf531e8423194ce631900027e2c36a6386c": {
333
+ "40938cf49e9ea46360d98731584c50a6b1b5df27f2": {
334
334
  "workers": {
335
335
  "app/(dashboard)/create/page": {
336
- "moduleId": 53450,
336
+ "moduleId": 13924,
337
337
  "async": false,
338
338
  "exportedName": "unarchiveFeature",
339
339
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
@@ -345,10 +345,10 @@
345
345
  "exportedName": "unarchiveFeature",
346
346
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
347
347
  },
348
- "40ccbd25db907b983d76375a049fb711d7e70133da": {
348
+ "40701b04e70c01207e0a46ef9eaa204e597e9f7f6b": {
349
349
  "workers": {
350
350
  "app/(dashboard)/create/page": {
351
- "moduleId": 53450,
351
+ "moduleId": 13924,
352
352
  "async": false,
353
353
  "exportedName": "addRepository",
354
354
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -360,10 +360,10 @@
360
360
  "exportedName": "addRepository",
361
361
  "filename": "src/presentation/web/app/actions/add-repository.ts"
362
362
  },
363
- "400f47a9cdeba6c59e3dce3145e2dcde60fa4e1cc4": {
363
+ "40e4964eb442d43924e952ec3e8f1d8259c8afee11": {
364
364
  "workers": {
365
365
  "app/(dashboard)/create/page": {
366
- "moduleId": 53450,
366
+ "moduleId": 13924,
367
367
  "async": false,
368
368
  "exportedName": "deleteRepository",
369
369
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -375,10 +375,10 @@
375
375
  "exportedName": "deleteRepository",
376
376
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
377
377
  },
378
- "40a059a32de9c446849d06f9867ae4e90ad6ffcc4f": {
378
+ "406e21668dc21cfaf6e1066665038444a565aea39e": {
379
379
  "workers": {
380
380
  "app/(dashboard)/create/page": {
381
- "moduleId": 53450,
381
+ "moduleId": 13924,
382
382
  "async": false,
383
383
  "exportedName": "getFeatureMetadata",
384
384
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -390,10 +390,10 @@
390
390
  "exportedName": "getFeatureMetadata",
391
391
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
392
392
  },
393
- "00c33feca640ed8b293b631231f8329596beb655b2": {
393
+ "0013f148c8bce1b576fd2b5c55688cc3c37ee274ee": {
394
394
  "workers": {
395
395
  "app/(dashboard)/create/page": {
396
- "moduleId": 53450,
396
+ "moduleId": 13924,
397
397
  "async": false,
398
398
  "exportedName": "getWorkflowDefaults",
399
399
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
@@ -405,10 +405,10 @@
405
405
  "exportedName": "getWorkflowDefaults",
406
406
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
407
407
  },
408
- "40f7b8214b2947cc9d7d43194a514371d5cf3e94c8": {
408
+ "40a79f0a9c3d33b0a75aeaa874bd2f872ef6344c3e": {
409
409
  "workers": {
410
410
  "app/(dashboard)/create/page": {
411
- "moduleId": 53450,
411
+ "moduleId": 13924,
412
412
  "async": false,
413
413
  "exportedName": "getViewerPermission",
414
414
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts"
@@ -420,10 +420,10 @@
420
420
  "exportedName": "getViewerPermission",
421
421
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts"
422
422
  },
423
- "403c818449704f603d5c54cf8aed5d80fbd225e59a": {
423
+ "40135dc7551f52d6ead6d525a237fda87f77242883": {
424
424
  "workers": {
425
425
  "app/(dashboard)/create/page": {
426
- "moduleId": 53450,
426
+ "moduleId": 13924,
427
427
  "async": false,
428
428
  "exportedName": "createFeature",
429
429
  "filename": "src/presentation/web/app/actions/create-feature.ts"
@@ -8,7 +8,7 @@ R.c("server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js")
8
8
  R.c("server/chunks/ssr/[root-of-the-server]__b14946f5._.js")
9
9
  R.c("server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js")
10
10
  R.c("server/chunks/ssr/_4b432739._.js")
11
- R.c("server/chunks/ssr/_6c7faa01._.js")
11
+ R.c("server/chunks/ssr/_507a8382._.js")
12
12
  R.c("server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js")
13
13
  R.c("server/chunks/ssr/src_presentation_web_app_not-found_tsx_64b86c46._.js")
14
14
  R.c("server/chunks/ssr/403f9_next_dist_client_components_44deecdf._.js")
@@ -17,6 +17,6 @@ R.c("server/chunks/ssr/[root-of-the-server]__0b150ddf._.js")
17
17
  R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
18
18
  R.c("server/chunks/ssr/src_presentation_web_app_(dashboard)_create_page_tsx_c60c859a._.js")
19
19
  R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js")
20
- R.c("server/chunks/ssr/_e9e9ed20._.js")
20
+ R.c("server/chunks/ssr/_fa7efce3._.js")
21
21
  R.m(41586)
22
22
  module.exports=R.m(41586).exports