@meistrari/chat-nuxt 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +274 -0
- package/dist/module.d.mts +3 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +250 -0
- package/dist/runtime/assets/css/code-theme.css +1 -0
- package/dist/runtime/assets/css/markstream.css +1 -0
- package/dist/runtime/components/AppStatusToast.d.vue.ts +3 -0
- package/dist/runtime/components/AppStatusToast.vue +42 -0
- package/dist/runtime/components/AppStatusToast.vue.d.ts +3 -0
- package/dist/runtime/components/TelaChat.d.vue.ts +19 -0
- package/dist/runtime/components/TelaChat.vue +25 -0
- package/dist/runtime/components/TelaChat.vue.d.ts +19 -0
- package/dist/runtime/components/app-markdown-render.d.vue.ts +15 -0
- package/dist/runtime/components/app-markdown-render.vue +45 -0
- package/dist/runtime/components/app-markdown-render.vue.d.ts +15 -0
- package/dist/runtime/components/application-card.d.vue.ts +9 -0
- package/dist/runtime/components/application-card.vue +52 -0
- package/dist/runtime/components/application-card.vue.d.ts +9 -0
- package/dist/runtime/components/audio-preview.d.vue.ts +14 -0
- package/dist/runtime/components/audio-preview.vue +52 -0
- package/dist/runtime/components/audio-preview.vue.d.ts +14 -0
- package/dist/runtime/components/chat/bash-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/bash-widget.vue +86 -0
- package/dist/runtime/components/chat/bash-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/canvas-selector-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/canvas-selector-modal.vue +290 -0
- package/dist/runtime/components/chat/canvas-selector-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/context-config.d.vue.ts +30 -0
- package/dist/runtime/components/chat/context-config.vue +423 -0
- package/dist/runtime/components/chat/context-config.vue.d.ts +30 -0
- package/dist/runtime/components/chat/conversation-item.d.vue.ts +20 -0
- package/dist/runtime/components/chat/conversation-item.vue +184 -0
- package/dist/runtime/components/chat/conversation-item.vue.d.ts +20 -0
- package/dist/runtime/components/chat/conversation-list.d.vue.ts +10 -0
- package/dist/runtime/components/chat/conversation-list.vue +78 -0
- package/dist/runtime/components/chat/conversation-list.vue.d.ts +10 -0
- package/dist/runtime/components/chat/doc-sdk-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/doc-sdk-widget.vue +74 -0
- package/dist/runtime/components/chat/doc-sdk-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/file-preview.d.vue.ts +7 -0
- package/dist/runtime/components/chat/file-preview.vue +313 -0
- package/dist/runtime/components/chat/file-preview.vue.d.ts +7 -0
- package/dist/runtime/components/chat/files-view.d.vue.ts +6 -0
- package/dist/runtime/components/chat/files-view.vue +399 -0
- package/dist/runtime/components/chat/files-view.vue.d.ts +6 -0
- package/dist/runtime/components/chat/generic-tool-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/generic-tool-widget.vue +334 -0
- package/dist/runtime/components/chat/generic-tool-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/grep-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/grep-widget.vue +259 -0
- package/dist/runtime/components/chat/grep-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/mention-dropdown.d.vue.ts +14 -0
- package/dist/runtime/components/chat/mention-dropdown.vue +90 -0
- package/dist/runtime/components/chat/mention-dropdown.vue.d.ts +14 -0
- package/dist/runtime/components/chat/message-bubble.d.vue.ts +11 -0
- package/dist/runtime/components/chat/message-bubble.vue +288 -0
- package/dist/runtime/components/chat/message-bubble.vue.d.ts +11 -0
- package/dist/runtime/components/chat/message-input.d.vue.ts +34 -0
- package/dist/runtime/components/chat/message-input.vue +428 -0
- package/dist/runtime/components/chat/message-input.vue.d.ts +34 -0
- package/dist/runtime/components/chat/message-list.d.vue.ts +11 -0
- package/dist/runtime/components/chat/message-list.vue +36 -0
- package/dist/runtime/components/chat/message-list.vue.d.ts +11 -0
- package/dist/runtime/components/chat/model-selector.d.vue.ts +15 -0
- package/dist/runtime/components/chat/model-selector.vue +35 -0
- package/dist/runtime/components/chat/model-selector.vue.d.ts +15 -0
- package/dist/runtime/components/chat/new-conversation-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/new-conversation-modal.vue +271 -0
- package/dist/runtime/components/chat/new-conversation-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/read-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/read-widget.vue +195 -0
- package/dist/runtime/components/chat/read-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/reasoning-message.d.vue.ts +13 -0
- package/dist/runtime/components/chat/reasoning-message.vue +341 -0
- package/dist/runtime/components/chat/reasoning-message.vue.d.ts +13 -0
- package/dist/runtime/components/chat/reasoning-step-item.d.vue.ts +37 -0
- package/dist/runtime/components/chat/reasoning-step-item.vue +125 -0
- package/dist/runtime/components/chat/reasoning-step-item.vue.d.ts +37 -0
- package/dist/runtime/components/chat/reasoning-steps.d.vue.ts +12 -0
- package/dist/runtime/components/chat/reasoning-steps.vue +47 -0
- package/dist/runtime/components/chat/reasoning-steps.vue.d.ts +12 -0
- package/dist/runtime/components/chat/reasoning-thought.d.vue.ts +11 -0
- package/dist/runtime/components/chat/reasoning-thought.vue +287 -0
- package/dist/runtime/components/chat/reasoning-thought.vue.d.ts +11 -0
- package/dist/runtime/components/chat/tela-skill-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/tela-skill-widget.vue +94 -0
- package/dist/runtime/components/chat/tela-skill-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/thinking-indicator.d.vue.ts +3 -0
- package/dist/runtime/components/chat/thinking-indicator.vue +52 -0
- package/dist/runtime/components/chat/thinking-indicator.vue.d.ts +3 -0
- package/dist/runtime/components/chat/thinking-widget.d.vue.ts +8 -0
- package/dist/runtime/components/chat/thinking-widget.vue +53 -0
- package/dist/runtime/components/chat/thinking-widget.vue.d.ts +8 -0
- package/dist/runtime/components/chat/topbar.d.vue.ts +43 -0
- package/dist/runtime/components/chat/topbar.vue +223 -0
- package/dist/runtime/components/chat/topbar.vue.d.ts +43 -0
- package/dist/runtime/components/chat/usage-view.d.vue.ts +8 -0
- package/dist/runtime/components/chat/usage-view.vue +393 -0
- package/dist/runtime/components/chat/usage-view.vue.d.ts +8 -0
- package/dist/runtime/components/chat/vault-link.d.vue.ts +20 -0
- package/dist/runtime/components/chat/vault-link.vue +34 -0
- package/dist/runtime/components/chat/vault-link.vue.d.ts +20 -0
- package/dist/runtime/components/chat/web-search-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/web-search-widget.vue +121 -0
- package/dist/runtime/components/chat/web-search-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/workstation-query-widget.d.vue.ts +10 -0
- package/dist/runtime/components/chat/workstation-query-widget.vue +552 -0
- package/dist/runtime/components/chat/workstation-query-widget.vue.d.ts +10 -0
- package/dist/runtime/components/chat/workstation-selector-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/workstation-selector-modal.vue +272 -0
- package/dist/runtime/components/chat/workstation-selector-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/write-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/write-widget.vue +165 -0
- package/dist/runtime/components/chat/write-widget.vue.d.ts +9 -0
- package/dist/runtime/components/conversation-files-panel.d.vue.ts +3 -0
- package/dist/runtime/components/conversation-files-panel.vue +252 -0
- package/dist/runtime/components/conversation-files-panel.vue.d.ts +3 -0
- package/dist/runtime/components/csv-preview.d.vue.ts +20 -0
- package/dist/runtime/components/csv-preview.vue +157 -0
- package/dist/runtime/components/csv-preview.vue.d.ts +20 -0
- package/dist/runtime/components/file-preview-panel.d.vue.ts +3 -0
- package/dist/runtime/components/file-preview-panel.vue +185 -0
- package/dist/runtime/components/file-preview-panel.vue.d.ts +3 -0
- package/dist/runtime/components/file-uploader.d.vue.ts +16 -0
- package/dist/runtime/components/file-uploader.vue +136 -0
- package/dist/runtime/components/file-uploader.vue.d.ts +16 -0
- package/dist/runtime/components/icons/anthropic.d.vue.ts +3 -0
- package/dist/runtime/components/icons/anthropic.vue +5 -0
- package/dist/runtime/components/icons/anthropic.vue.d.ts +3 -0
- package/dist/runtime/components/image-preview.d.vue.ts +14 -0
- package/dist/runtime/components/image-preview.vue +54 -0
- package/dist/runtime/components/image-preview.vue.d.ts +14 -0
- package/dist/runtime/components/json-tree-node.d.vue.ts +9 -0
- package/dist/runtime/components/json-tree-node.vue +109 -0
- package/dist/runtime/components/json-tree-node.vue.d.ts +9 -0
- package/dist/runtime/components/json-viewer.d.vue.ts +6 -0
- package/dist/runtime/components/json-viewer.vue +88 -0
- package/dist/runtime/components/json-viewer.vue.d.ts +6 -0
- package/dist/runtime/components/pdf-preview.d.vue.ts +20 -0
- package/dist/runtime/components/pdf-preview.vue +89 -0
- package/dist/runtime/components/pdf-preview.vue.d.ts +20 -0
- package/dist/runtime/components/pdf-viewer.d.vue.ts +10 -0
- package/dist/runtime/components/pdf-viewer.vue +265 -0
- package/dist/runtime/components/pdf-viewer.vue.d.ts +10 -0
- package/dist/runtime/components/powered-by-tela.d.vue.ts +3 -0
- package/dist/runtime/components/powered-by-tela.vue +14 -0
- package/dist/runtime/components/powered-by-tela.vue.d.ts +3 -0
- package/dist/runtime/components/renderers/artifact-display.d.vue.ts +15 -0
- package/dist/runtime/components/renderers/artifact-display.vue +105 -0
- package/dist/runtime/components/renderers/artifact-display.vue.d.ts +15 -0
- package/dist/runtime/components/renderers/audio-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/audio-renderer.vue +52 -0
- package/dist/runtime/components/renderers/audio-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/csv-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/csv-renderer.vue +203 -0
- package/dist/runtime/components/renderers/csv-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/renderers/image-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/image-renderer.vue +44 -0
- package/dist/runtime/components/renderers/image-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/markdown-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/markdown-renderer.vue +66 -0
- package/dist/runtime/components/renderers/markdown-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/renderers/mermaid-diagram.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/mermaid-diagram.vue +165 -0
- package/dist/runtime/components/renderers/mermaid-diagram.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/text-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/text-renderer.vue +70 -0
- package/dist/runtime/components/renderers/text-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/video-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/video-renderer.vue +43 -0
- package/dist/runtime/components/renderers/video-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/text-preview.d.vue.ts +19 -0
- package/dist/runtime/components/text-preview.vue +105 -0
- package/dist/runtime/components/text-preview.vue.d.ts +19 -0
- package/dist/runtime/components/video-preview.d.vue.ts +14 -0
- package/dist/runtime/components/video-preview.vue +55 -0
- package/dist/runtime/components/video-preview.vue.d.ts +14 -0
- package/dist/runtime/composables/PageNavigation.d.ts +13 -0
- package/dist/runtime/composables/PageNavigation.js +18 -0
- package/dist/runtime/composables/useChat.d.ts +25 -0
- package/dist/runtime/composables/useChat.js +512 -0
- package/dist/runtime/composables/useChatApi.d.ts +6 -0
- package/dist/runtime/composables/useChatApi.js +28 -0
- package/dist/runtime/composables/useConversationFiles.d.ts +13 -0
- package/dist/runtime/composables/useConversationFiles.js +98 -0
- package/dist/runtime/composables/useConversationFilesPanel.d.ts +11 -0
- package/dist/runtime/composables/useConversationFilesPanel.js +35 -0
- package/dist/runtime/composables/useConversations.d.ts +15 -0
- package/dist/runtime/composables/useConversations.js +191 -0
- package/dist/runtime/composables/useDiagramExport.d.ts +11 -0
- package/dist/runtime/composables/useDiagramExport.js +186 -0
- package/dist/runtime/composables/useEmbedConfig.d.ts +13 -0
- package/dist/runtime/composables/useEmbedConfig.js +11 -0
- package/dist/runtime/composables/useFeatureFlags.d.ts +19 -0
- package/dist/runtime/composables/useFeatureFlags.js +67 -0
- package/dist/runtime/composables/useFileDrop.d.ts +17 -0
- package/dist/runtime/composables/useFileDrop.js +89 -0
- package/dist/runtime/composables/useFilePreviewPanel.d.ts +30 -0
- package/dist/runtime/composables/useFilePreviewPanel.js +42 -0
- package/dist/runtime/composables/useFileUpload.d.ts +7 -0
- package/dist/runtime/composables/useFileUpload.js +39 -0
- package/dist/runtime/composables/useGitHubSkills.d.ts +6 -0
- package/dist/runtime/composables/useGitHubSkills.js +68 -0
- package/dist/runtime/composables/useGitHubSkillsCallback.d.ts +5 -0
- package/dist/runtime/composables/useGitHubSkillsCallback.js +42 -0
- package/dist/runtime/composables/useIDB.d.ts +11 -0
- package/dist/runtime/composables/useIDB.js +57 -0
- package/dist/runtime/composables/useInputHistory.d.ts +7 -0
- package/dist/runtime/composables/useInputHistory.js +36 -0
- package/dist/runtime/composables/useKnowledgeSources.d.ts +6 -0
- package/dist/runtime/composables/useKnowledgeSources.js +15 -0
- package/dist/runtime/composables/useMediaCache.d.ts +13 -0
- package/dist/runtime/composables/useMediaCache.js +92 -0
- package/dist/runtime/composables/useMentionAutocomplete.d.ts +10 -0
- package/dist/runtime/composables/useMentionAutocomplete.js +272 -0
- package/dist/runtime/composables/useMermaidRenderer.d.ts +5 -0
- package/dist/runtime/composables/useMermaidRenderer.js +121 -0
- package/dist/runtime/composables/usePdf.d.ts +21 -0
- package/dist/runtime/composables/usePdf.js +138 -0
- package/dist/runtime/composables/usePolling.d.ts +12 -0
- package/dist/runtime/composables/usePolling.js +55 -0
- package/dist/runtime/composables/useSelectedModel.d.ts +4 -0
- package/dist/runtime/composables/useSelectedModel.js +46 -0
- package/dist/runtime/composables/useSplashScreen.d.ts +3 -0
- package/dist/runtime/composables/useSplashScreen.js +4 -0
- package/dist/runtime/composables/useStatusToast.d.ts +22 -0
- package/dist/runtime/composables/useStatusToast.js +40 -0
- package/dist/runtime/composables/useTela.d.ts +12 -0
- package/dist/runtime/composables/useTela.js +47 -0
- package/dist/runtime/composables/useToolFormatting.d.ts +5 -0
- package/dist/runtime/composables/useToolFormatting.js +61 -0
- package/dist/runtime/composables/useVault.d.ts +13 -0
- package/dist/runtime/composables/useVault.js +35 -0
- package/dist/runtime/composables/useVerbConjugation.d.ts +6 -0
- package/dist/runtime/composables/useVerbConjugation.js +256 -0
- package/dist/runtime/composables/useWorkspaceContextFiles.d.ts +19 -0
- package/dist/runtime/composables/useWorkspaceContextFiles.js +74 -0
- package/dist/runtime/composables/useWorkspaceCredentials.d.ts +34 -0
- package/dist/runtime/composables/useWorkspaceCredentials.js +175 -0
- package/dist/runtime/composables/useWorkspaceExternalSkills.d.ts +22 -0
- package/dist/runtime/composables/useWorkspaceExternalSkills.js +135 -0
- package/dist/runtime/composables/useWorkspaceKnowledgeSources.d.ts +11 -0
- package/dist/runtime/composables/useWorkspaceKnowledgeSources.js +88 -0
- package/dist/runtime/composables/useWorkspaceMembers.d.ts +13 -0
- package/dist/runtime/composables/useWorkspaceMembers.js +37 -0
- package/dist/runtime/composables/useWorkspacePersonalization.d.ts +6 -0
- package/dist/runtime/composables/useWorkspacePersonalization.js +19 -0
- package/dist/runtime/composables/useWorkspaceSettings.d.ts +30 -0
- package/dist/runtime/composables/useWorkspaceSettings.js +135 -0
- package/dist/runtime/composables/useWorkspaceTelaTools.d.ts +13 -0
- package/dist/runtime/composables/useWorkspaceTelaTools.js +91 -0
- package/dist/runtime/composables/useWorkspaces.d.ts +5 -0
- package/dist/runtime/composables/useWorkspaces.js +14 -0
- package/dist/runtime/composables/useZoomPan.d.ts +18 -0
- package/dist/runtime/composables/useZoomPan.js +130 -0
- package/dist/runtime/embed/components/ChatEmbed.d.vue.ts +23 -0
- package/dist/runtime/embed/components/ChatEmbed.vue +27 -0
- package/dist/runtime/embed/components/ChatEmbed.vue.d.ts +23 -0
- package/dist/runtime/embed/components/ChatEmbedInner.d.vue.ts +19 -0
- package/dist/runtime/embed/components/ChatEmbedInner.vue +604 -0
- package/dist/runtime/embed/components/ChatEmbedInner.vue.d.ts +19 -0
- package/dist/runtime/public/favicon.svg +4 -0
- package/dist/runtime/public/files/archive.svg +9 -0
- package/dist/runtime/public/files/audio.svg +4 -0
- package/dist/runtime/public/files/c.svg +4 -0
- package/dist/runtime/public/files/cpp.svg +6 -0
- package/dist/runtime/public/files/css.svg +4 -0
- package/dist/runtime/public/files/doc.svg +5 -0
- package/dist/runtime/public/files/generic.svg +7 -0
- package/dist/runtime/public/files/go.svg +6 -0
- package/dist/runtime/public/files/html.svg +4 -0
- package/dist/runtime/public/files/image.svg +3 -0
- package/dist/runtime/public/files/java.svg +7 -0
- package/dist/runtime/public/files/javascript.svg +4 -0
- package/dist/runtime/public/files/json.svg +5 -0
- package/dist/runtime/public/files/markdown.svg +5 -0
- package/dist/runtime/public/files/pdf.svg +5 -0
- package/dist/runtime/public/files/presentation.svg +5 -0
- package/dist/runtime/public/files/python.svg +5 -0
- package/dist/runtime/public/files/ruby.svg +5 -0
- package/dist/runtime/public/files/rust.svg +13 -0
- package/dist/runtime/public/files/sheet.svg +9 -0
- package/dist/runtime/public/files/shell.svg +5 -0
- package/dist/runtime/public/files/sql.svg +6 -0
- package/dist/runtime/public/files/typescript.svg +5 -0
- package/dist/runtime/public/files/video.svg +5 -0
- package/dist/runtime/public/files/yaml.svg +7 -0
- package/dist/runtime/public/github.svg +3 -0
- package/dist/runtime/public/robots.txt +1 -0
- package/dist/runtime/server/api/admin/trigger-usage-report.post.d.ts +2 -0
- package/dist/runtime/server/api/admin/trigger-usage-report.post.js +15 -0
- package/dist/runtime/server/api/chat/conversations/[id]/cancel.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/cancel.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/clear.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/clear.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/duplicate.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/duplicate.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/files.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/files.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.delete.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.delete.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.patch.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.patch.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/[messageId]/retry.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/[messageId]/retry.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/usage.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/usage.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/generate-title.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/generate-title.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/index.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/index.post.js +1 -0
- package/dist/runtime/server/api/chat/workspace/settings.get.d.ts +2 -0
- package/dist/runtime/server/api/chat/workspace/settings.get.js +14 -0
- package/dist/runtime/server/api/conversations/[id]/cancel.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/cancel.post.js +58 -0
- package/dist/runtime/server/api/conversations/[id]/clear.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/clear.post.js +38 -0
- package/dist/runtime/server/api/conversations/[id]/duplicate.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/duplicate.post.js +41 -0
- package/dist/runtime/server/api/conversations/[id]/files.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/files.get.js +131 -0
- package/dist/runtime/server/api/conversations/[id]/index.delete.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.delete.js +35 -0
- package/dist/runtime/server/api/conversations/[id]/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.get.js +34 -0
- package/dist/runtime/server/api/conversations/[id]/index.patch.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.patch.js +54 -0
- package/dist/runtime/server/api/conversations/[id]/messages/[messageId]/retry.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/[messageId]/retry.post.js +168 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.get.js +220 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.post.js +181 -0
- package/dist/runtime/server/api/conversations/[id]/usage.get.d.ts +8 -0
- package/dist/runtime/server/api/conversations/[id]/usage.get.js +96 -0
- package/dist/runtime/server/api/conversations/generate-title.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/generate-title.post.js +49 -0
- package/dist/runtime/server/api/conversations/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/index.get.js +11 -0
- package/dist/runtime/server/api/conversations/index.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/index.post.js +41 -0
- package/dist/runtime/server/api/external-skills/discover.post.d.ts +2 -0
- package/dist/runtime/server/api/external-skills/discover.post.js +65 -0
- package/dist/runtime/server/api/github/disconnect.post.d.ts +2 -0
- package/dist/runtime/server/api/github/disconnect.post.js +21 -0
- package/dist/runtime/server/api/github/status.get.d.ts +2 -0
- package/dist/runtime/server/api/github/status.get.js +23 -0
- package/dist/runtime/server/api/tela/canvas.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/canvas.get.js +18 -0
- package/dist/runtime/server/api/tela/projects.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/projects.get.js +9 -0
- package/dist/runtime/server/api/tela/workspaces.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/workspaces.get.js +9 -0
- package/dist/runtime/server/api/tela/workstations.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/workstations.get.js +24 -0
- package/dist/runtime/server/api/vault/permalink-metadata.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/permalink-metadata.post.js +77 -0
- package/dist/runtime/server/api/vault/resolve.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/resolve.post.js +82 -0
- package/dist/runtime/server/api/vault/upload.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/upload.post.js +55 -0
- package/dist/runtime/server/api/workspace/credentials/[id].delete.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/[id].delete.js +18 -0
- package/dist/runtime/server/api/workspace/credentials/[id].put.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/[id].put.js +28 -0
- package/dist/runtime/server/api/workspace/credentials/index.get.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/index.get.js +10 -0
- package/dist/runtime/server/api/workspace/credentials/index.post.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/index.post.js +33 -0
- package/dist/runtime/server/api/workspace/settings.get.d.ts +2 -0
- package/dist/runtime/server/api/workspace/settings.get.js +27 -0
- package/dist/runtime/server/api/workspace/settings.patch.d.ts +2 -0
- package/dist/runtime/server/api/workspace/settings.patch.js +86 -0
- package/dist/runtime/server/api/workspace/usage.get.d.ts +48 -0
- package/dist/runtime/server/api/workspace/usage.get.js +186 -0
- package/dist/runtime/server/db/index.d.ts +6 -0
- package/dist/runtime/server/db/index.js +19 -0
- package/dist/runtime/server/db/schema/conversation-usage.d.ts +438 -0
- package/dist/runtime/server/db/schema/conversation-usage.js +34 -0
- package/dist/runtime/server/db/schema/conversations.d.ts +197 -0
- package/dist/runtime/server/db/schema/conversations.js +18 -0
- package/dist/runtime/server/db/schema/external-skills.d.ts +235 -0
- package/dist/runtime/server/db/schema/external-skills.js +26 -0
- package/dist/runtime/server/db/schema/index.d.ts +5 -0
- package/dist/runtime/server/db/schema/index.js +5 -0
- package/dist/runtime/server/db/schema/messages.d.ts +221 -0
- package/dist/runtime/server/db/schema/messages.js +19 -0
- package/dist/runtime/server/db/schema/workspace-settings.d.ts +164 -0
- package/dist/runtime/server/db/schema/workspace-settings.js +15 -0
- package/dist/runtime/server/db/schema.d.ts +1 -0
- package/dist/runtime/server/db/schema.js +1 -0
- package/dist/runtime/server/middleware/domain-validation.d.ts +2 -0
- package/dist/runtime/server/middleware/domain-validation.js +22 -0
- package/dist/runtime/server/middleware/request-logger.d.ts +2 -0
- package/dist/runtime/server/middleware/request-logger.js +15 -0
- package/dist/runtime/server/prompts/base-system.d.ts +2 -0
- package/dist/runtime/server/prompts/base-system.js +100 -0
- package/dist/runtime/server/prompts/base-system.md +99 -0
- package/dist/runtime/server/prompts/knowledge-sources.d.ts +2 -0
- package/dist/runtime/server/prompts/knowledge-sources.js +37 -0
- package/dist/runtime/server/prompts/knowledge-sources.md +36 -0
- package/dist/runtime/server/tasks/send-daily-usage-report.d.ts +2 -0
- package/dist/runtime/server/tasks/send-daily-usage-report.js +73 -0
- package/dist/runtime/server/tsconfig.json +21 -0
- package/dist/runtime/server/utils/agent-api.d.ts +39 -0
- package/dist/runtime/server/utils/agent-api.js +169 -0
- package/dist/runtime/server/utils/auth-api.d.ts +1 -0
- package/dist/runtime/server/utils/auth-api.js +25 -0
- package/dist/runtime/server/utils/auth.d.ts +17 -0
- package/dist/runtime/server/utils/auth.js +28 -0
- package/dist/runtime/server/utils/billing.d.ts +37 -0
- package/dist/runtime/server/utils/billing.js +68 -0
- package/dist/runtime/server/utils/chat-context.d.ts +9 -0
- package/dist/runtime/server/utils/chat-context.js +24 -0
- package/dist/runtime/server/utils/chat-message-builder.d.ts +4 -0
- package/dist/runtime/server/utils/chat-message-builder.js +39 -0
- package/dist/runtime/server/utils/chat-prompts.d.ts +7 -0
- package/dist/runtime/server/utils/chat-prompts.js +9 -0
- package/dist/runtime/server/utils/chat-workspace-settings.d.ts +16 -0
- package/dist/runtime/server/utils/chat-workspace-settings.js +115 -0
- package/dist/runtime/server/utils/external-skills.d.ts +2 -0
- package/dist/runtime/server/utils/external-skills.js +15 -0
- package/dist/runtime/server/utils/logger.d.ts +2 -0
- package/dist/runtime/server/utils/logger.js +12 -0
- package/dist/runtime/server/utils/slack.d.ts +32 -0
- package/dist/runtime/server/utils/slack.js +102 -0
- package/dist/runtime/server/utils/tela-api.d.ts +2 -0
- package/dist/runtime/server/utils/tela-api.js +29 -0
- package/dist/runtime/server/utils/vault.d.ts +3 -0
- package/dist/runtime/server/utils/vault.js +52 -0
- package/dist/runtime/server/utils/workspace-settings-resolver.stub.d.ts +2 -0
- package/dist/runtime/server/utils/workspace-settings-resolver.stub.js +1 -0
- package/dist/runtime/server/utils/workspace.d.ts +4 -0
- package/dist/runtime/server/utils/workspace.js +21 -0
- package/dist/runtime/types/agent.d.ts +168 -0
- package/dist/runtime/types/agent.js +95 -0
- package/dist/runtime/types/chat-workspace-settings-resolver.d.ts +4 -0
- package/dist/runtime/types/chat.d.ts +81 -0
- package/dist/runtime/types/chat.js +12 -0
- package/dist/runtime/types/credential.d.ts +8 -0
- package/dist/runtime/types/credential.js +0 -0
- package/dist/runtime/types/csv.d.ts +4 -0
- package/dist/runtime/types/csv.js +0 -0
- package/dist/runtime/types/external-skills.d.ts +8 -0
- package/dist/runtime/types/external-skills.js +0 -0
- package/dist/runtime/types/feature-flags.d.ts +7 -0
- package/dist/runtime/types/feature-flags.js +6 -0
- package/dist/runtime/types/reasoning.d.ts +17 -0
- package/dist/runtime/types/reasoning.js +0 -0
- package/dist/runtime/types/tela.d.ts +46 -0
- package/dist/runtime/types/tela.js +0 -0
- package/dist/runtime/types/workspace.d.ts +20 -0
- package/dist/runtime/types/workspace.js +0 -0
- package/dist/runtime/utils/calculate-usage.d.ts +48 -0
- package/dist/runtime/utils/calculate-usage.js +63 -0
- package/dist/runtime/utils/code-detection.d.ts +1 -0
- package/dist/runtime/utils/code-detection.js +24 -0
- package/dist/runtime/utils/export-conversation.d.ts +2 -0
- package/dist/runtime/utils/export-conversation.js +43 -0
- package/dist/runtime/utils/file.d.ts +46 -0
- package/dist/runtime/utils/file.js +500 -0
- package/dist/runtime/utils/format-time.d.ts +22 -0
- package/dist/runtime/utils/format-time.js +96 -0
- package/dist/runtime/utils/markdown-nodes.d.ts +22 -0
- package/dist/runtime/utils/markdown-nodes.js +40 -0
- package/dist/runtime/utils/string.d.ts +4 -0
- package/dist/runtime/utils/string.js +5 -0
- package/dist/runtime/utils/tela-chat.d.ts +19 -0
- package/dist/runtime/utils/tela-chat.js +20 -0
- package/dist/types.d.mts +7 -0
- package/package.json +72 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#397DF6"/>
|
|
3
|
+
<rect x="2.46155" y="8.8" width="10.4615" height="1.2" rx="0.6" fill="white"/>
|
|
4
|
+
<rect x="2.46155" y="11.2" width="8.61539" height="1.2" rx="0.6" fill="white" fill-opacity="0.6"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#DFE3E7"/>
|
|
3
|
+
<rect x="3" y="4" width="10" height="1.2" rx="0.6" fill="#8B9399"/>
|
|
4
|
+
<rect x="3" y="6.4" width="7" height="1.2" rx="0.6" fill="#8B9399" fill-opacity="0.7"/>
|
|
5
|
+
<rect x="3" y="8.8" width="9" height="1.2" rx="0.6" fill="#8B9399" fill-opacity="0.5"/>
|
|
6
|
+
<rect x="3" y="11.2" width="5" height="1.2" rx="0.6" fill="#8B9399" fill-opacity="0.3"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#00ADD8"/>
|
|
3
|
+
<path d="M2.5 7.2C2.5 7.2 2.48 7.18 2.5 7.15L2.65 7H5.3C5.32 7 5.33 7.02 5.32 7.04L5.2 7.2C5.2 7.22 5.18 7.22 5.15 7.22H2.5ZM1.5 7.9C1.5 7.9 1.48 7.88 1.5 7.85L1.65 7.7H5.2C5.22 7.7 5.24 7.72 5.22 7.74L5.15 7.9C5.14 7.92 5.12 7.92 5.1 7.92H1.5ZM3.5 8.6C3.5 8.6 3.48 8.58 3.5 8.55L3.6 8.4H5.1C5.12 8.4 5.13 8.42 5.13 8.44L5.1 8.6C5.1 8.62 5.08 8.62 5.05 8.62H3.5Z" fill="white"/>
|
|
4
|
+
<path d="M10.5 7C9.9 7.15 9.5 7.35 9.2 7.7C8.7 8.25 8.75 8.95 9.3 9.4C9.75 9.75 10.35 9.8 10.9 9.55C11.5 9.3 11.85 8.8 11.9 8.15C11.9 7.55 11.5 7.1 10.9 7.02C10.75 7 10.65 7 10.5 7Z" fill="white"/>
|
|
5
|
+
<path d="M12.5 6.5C13 6.7 13.35 7.05 13.5 7.55C13.7 8.2 13.55 8.8 13.1 9.35C12.6 9.95 11.95 10.25 11.15 10.3C10.4 10.35 9.7 10.15 9.15 9.6C8.65 9.1 8.5 8.5 8.6 7.8C8.7 7.1 9.1 6.55 9.7 6.15C10.3 5.75 11 5.6 11.75 5.7C12.05 5.75 12.3 5.85 12.5 6V6.5Z" fill="white"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#E34F26"/>
|
|
3
|
+
<path d="M4 4L4.7 11.5L8 12.5L11.3 11.5L12 4H4ZM10.5 5.5L10.3 7.5H6.5L6.6 8.5H10.2L9.9 11L8 11.5L6.1 11L6 9.5H7L7.05 10.3L8 10.5L8.95 10.3L9.05 9H6L5.7 5.5H10.5Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9 6C9 5.80222 9.05865 5.60888 9.16853 5.44443C9.27841 5.27998 9.43459 5.15181 9.61732 5.07612C9.80004 5.00043 10.0011 4.98063 10.1951 5.01921C10.3891 5.0578 10.5673 5.15304 10.7071 5.29289C10.847 5.43275 10.9422 5.61093 10.9808 5.80491C11.0194 5.99889 10.9996 6.19996 10.9239 6.38268C10.8482 6.56541 10.72 6.72159 10.5556 6.83147C10.3911 6.94135 10.1978 7 10 7C9.73478 7 9.48043 6.89464 9.29289 6.70711C9.10536 6.51957 9 6.26522 9 6ZM14.75 3.5V12.5C14.75 12.8315 14.6183 13.1495 14.3839 13.3839C14.1495 13.6183 13.8315 13.75 13.5 13.75H2.5C2.16848 13.75 1.85054 13.6183 1.61612 13.3839C1.3817 13.1495 1.25 12.8315 1.25 12.5V3.5C1.25 3.16848 1.3817 2.85054 1.61612 2.61612C1.85054 2.3817 2.16848 2.25 2.5 2.25H13.5C13.8315 2.25 14.1495 2.3817 14.3839 2.61612C14.6183 2.85054 14.75 3.16848 14.75 3.5ZM2.75 3.75V8.7325L4.86625 6.61625C5.10066 6.38191 5.41854 6.25027 5.75 6.25027C6.08146 6.25027 6.39934 6.38191 6.63375 6.61625L9.20687 9.1875L10.2806 8.11438C10.515 7.88004 10.8329 7.74839 11.1644 7.74839C11.4958 7.74839 11.8137 7.88004 12.0481 8.11438L13.25 9.31812V3.75H2.75ZM2.75 12.25H10.1462L5.75 7.85375L2.75 10.8538V12.25ZM13.25 12.25V11.4375L11.1644 9.35188L10.2675 10.25L12.2675 12.25H13.25Z" fill="#4E535A"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#007396"/>
|
|
3
|
+
<path d="M6 10C6 10 5.5 10.3 6.3 10.4C7.3 10.5 7.8 10.5 9 10.3C9 10.3 9.3 10.5 9.7 10.7C7.5 11.6 4.7 10.6 6 10Z" fill="white"/>
|
|
4
|
+
<path d="M5.6 8.8C5.6 8.8 5 9.2 5.8 9.3C6.9 9.5 7.9 9.5 9.5 9.2C9.5 9.2 9.7 9.4 10 9.5C7.3 10.3 4.2 9.6 5.6 8.8Z" fill="white"/>
|
|
5
|
+
<path d="M8.5 6.5C9.1 7.2 8.4 7.8 8.4 7.8C8.4 7.8 10 7 9.1 5.9C8.3 4.9 7.7 4.4 10.5 2.8C10.5 2.8 6.5 3.9 8.5 6.5Z" fill="white"/>
|
|
6
|
+
<path d="M11 11.2C11 11.2 11.4 11.5 10.6 11.7C9.1 12.1 5.5 12.2 4.2 11.7C3.8 11.6 4.5 11.2 4.8 11.2C5.1 11.1 5.3 11.1 5.3 11.1C4.7 10.7 2 11.9 4.6 12.3C9.9 13.1 14.2 11.7 11 11.2Z" fill="white"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#F7DF1E"/>
|
|
3
|
+
<text x="8" y="11" font-family="Arial, sans-serif" font-size="7" font-weight="bold" fill="#323330" text-anchor="middle">JS</text>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#5A10CC"/>
|
|
3
|
+
<path d="M6.65385 6L4.72031 7.8852C4.59955 8.00294 4.59955 8.19706 4.72031 8.3148L6.65385 10.2" stroke="white" stroke-linecap="round"/>
|
|
4
|
+
<path d="M9.5461 6L11.4796 7.8852C11.6004 8.00294 11.6004 8.19706 11.4796 8.3148L9.5461 10.2" stroke="white" stroke-linecap="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#5B6870"/>
|
|
3
|
+
<path d="M3 5V11H4.5V7.5L6 9.5L7.5 7.5V11H9V5H7.5L6 7.5L4.5 5H3Z" fill="white"/>
|
|
4
|
+
<path d="M10.5 8.5V5H12V8.5L13.5 7V9L11.25 11L9 9V7L10.5 8.5Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#F45E43"/>
|
|
3
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#B30B00" fill-opacity="0.4"/>
|
|
4
|
+
<path d="M8.56925 4.43331C8.57266 4.66281 8.54963 4.89026 8.51609 5.11683C8.49335 5.27091 8.47857 5.42616 8.44986 5.57877C8.39188 5.89074 8.32878 6.20154 8.2381 6.50588C8.19404 6.65409 8.1534 6.80347 8.09967 6.94845C8.08035 7.0004 8.11218 7.03855 8.13378 7.07612C8.30916 7.38075 8.49705 7.67687 8.70597 7.95803C8.91318 8.23684 9.12722 8.51007 9.36741 8.76041C9.39896 8.79328 9.43221 8.8241 9.4632 8.85726C9.48338 8.87927 9.50527 8.87223 9.52857 8.86783C10.032 8.77538 10.5402 8.72901 11.051 8.73224C11.36 8.73429 11.6698 8.75894 11.9719 8.83143C12.2556 8.89952 12.5237 9.00547 12.7437 9.21619C13.0458 9.50556 13.068 9.93199 12.8775 10.2613C12.7667 10.4529 12.5848 10.5551 12.3784 10.6129C12.0683 10.6997 11.7588 10.6813 11.4461 10.6226C11.2511 10.5859 11.0604 10.5354 10.8742 10.4676C10.6127 10.3722 10.3631 10.2487 10.1241 10.1028C9.85034 9.93581 9.59224 9.74681 9.35263 9.5311C9.33216 9.51261 9.31368 9.50821 9.28867 9.51466C9.11073 9.56015 8.92967 9.59038 8.75259 9.64027C8.6369 9.67285 8.51837 9.69339 8.40154 9.72186C8.04709 9.80844 7.69406 9.90089 7.34671 10.015C7.17901 10.0699 7.01301 10.1298 6.84559 10.1853C6.81205 10.1964 6.7913 10.2137 6.7731 10.2466C6.5946 10.568 6.40387 10.8814 6.20063 11.1869C6.00593 11.4795 5.799 11.7622 5.56876 12.0251C5.35302 12.2716 5.12136 12.5017 4.84962 12.6852C4.63928 12.8272 4.41956 12.9402 4.16772 12.9807C3.81866 13.037 3.49974 12.9751 3.23056 12.728C3.04694 12.5595 2.97531 12.3415 3.00743 12.0909C3.04978 11.758 3.24335 11.5147 3.46734 11.294C3.7223 11.0425 4.01422 10.8424 4.31808 10.6592C4.63416 10.4685 4.96104 10.3009 5.29617 10.1495C5.43346 10.0875 5.57103 10.0265 5.71088 9.97161C5.74357 9.9587 5.76432 9.93904 5.78166 9.90793C5.97637 9.56191 6.15658 9.20885 6.31149 8.84171C6.40813 8.61279 6.5025 8.38329 6.58835 8.15026C6.72876 7.76785 6.86946 7.38545 7.00789 7.00245C7.05536 6.87068 7.09686 6.73656 7.14063 6.60332C7.15996 6.54462 7.12045 6.49913 7.10055 6.45305C7.03802 6.30661 6.98373 6.15722 6.93058 6.00696C6.82541 5.70996 6.74212 5.4062 6.68613 5.09599C6.60711 4.66017 6.57271 4.22024 6.66481 3.78178C6.71824 3.52762 6.82256 3.29665 7.04143 3.14609C7.31942 2.95504 7.61134 2.96355 7.90639 3.10119C8.16221 3.22034 8.314 3.43664 8.41831 3.69579C8.51354 3.93175 8.56129 4.17798 8.56896 4.43301L8.56925 4.43331ZM9.83527 9.30805C9.85375 9.33094 9.85972 9.3418 9.86853 9.34884C10.1275 9.55135 10.3989 9.73301 10.6968 9.86919C10.8253 9.92789 10.9563 9.98042 11.0905 10.0256C11.2528 10.0805 11.4151 10.1286 11.5876 10.116C11.7133 10.1069 11.8301 10.0746 11.9373 9.99597C12.0751 9.89472 12.1439 9.56602 11.958 9.42515C11.8759 9.36293 11.7832 9.31979 11.6826 9.29954C11.5271 9.26843 11.3682 9.26726 11.2113 9.24818C10.7531 9.19271 10.3017 9.26784 9.83499 9.30746L9.83527 9.30805ZM5.50509 10.6C5.4525 10.6061 5.42237 10.6349 5.38713 10.651C5.12619 10.7722 4.87321 10.9087 4.62649 11.0584C4.29591 11.2591 3.97642 11.4757 3.7206 11.7762C3.62793 11.8851 3.55915 12.0096 3.54835 12.1598C3.54067 12.2649 3.59098 12.3459 3.68535 12.3902C3.82691 12.4568 3.95169 12.3955 4.06539 12.3259C4.36072 12.146 4.58641 11.8839 4.80442 11.6166C5.00737 11.368 5.18673 11.1009 5.3641 10.8327C5.41214 10.7599 5.45449 10.6833 5.5048 10.5997L5.50509 10.6ZM7.49253 5.91334C7.50958 5.90982 7.51157 5.90043 7.51413 5.89103C7.57325 5.68677 7.62925 5.48163 7.6716 5.27296C7.75176 4.87735 7.8123 4.4785 7.8177 4.0735C7.81998 3.90797 7.81372 3.74128 7.70855 3.6004C7.64972 3.52146 7.57126 3.49211 7.47945 3.5106C7.28105 3.55081 7.21283 3.71251 7.17645 3.88714C7.12045 4.15655 7.13296 4.43008 7.16906 4.70155C7.20061 4.93956 7.25177 5.17376 7.31885 5.40385C7.36917 5.57671 7.42317 5.7484 7.49281 5.91334H7.49253ZM8.75969 8.9817C8.44901 8.5855 8.13748 8.20133 7.87143 7.75758C7.69662 8.33075 7.44108 8.85022 7.21624 9.38876C7.72788 9.24994 8.22986 9.08941 8.75941 8.9817H8.75969Z" fill="#FEFDFC"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#F4B540"/>
|
|
3
|
+
<rect x="5.5" y="6.5" width="7.5" height="5.5" rx="1" stroke="white"/>
|
|
4
|
+
<path d="M5.85294 10H5C4.17157 10 3.5 9.32843 3.5 8.5V5.5C3.5 4.67157 4.17157 4 5 4H10C10.8284 4 11.5 4.67157 11.5 5.5V6.30769" stroke="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#3776AB"/>
|
|
3
|
+
<path d="M7.95 3.5C6.5 3.5 6.6 4.1 6.6 4.1V4.8H8.1V5H5.6C5.6 5 4.3 4.85 4.3 6.7C4.3 8.55 5.35 8.45 5.35 8.45H6V7.65C6 7.65 5.96 6.55 7.1 6.55H8.6C8.6 6.55 9.6 6.57 9.6 5.55V4.3C9.6 4.3 9.75 3.5 7.95 3.5ZM7.1 4C7.3 4 7.45 4.15 7.45 4.35C7.45 4.55 7.3 4.7 7.1 4.7C6.9 4.7 6.75 4.55 6.75 4.35C6.75 4.15 6.9 4 7.1 4Z" fill="#FFD43B"/>
|
|
4
|
+
<path d="M8.05 12.5C9.5 12.5 9.4 11.9 9.4 11.9V11.2H7.9V11H10.4C10.4 11 11.7 11.15 11.7 9.3C11.7 7.45 10.65 7.55 10.65 7.55H10V8.35C10 8.35 10.04 9.45 8.9 9.45H7.4C7.4 9.45 6.4 9.43 6.4 10.45V11.7C6.4 11.7 6.25 12.5 8.05 12.5ZM8.9 12C8.7 12 8.55 11.85 8.55 11.65C8.55 11.45 8.7 11.3 8.9 11.3C9.1 11.3 9.25 11.45 9.25 11.65C9.25 11.85 9.1 12 8.9 12Z" fill="#FFD43B"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#CC342D"/>
|
|
3
|
+
<path d="M12.5 3.5L11 8L12.5 12.5L4 12.5L3.5 8L5.5 4.5L8 3.5L12.5 3.5Z" fill="#FFFFFF" fill-opacity="0.9"/>
|
|
4
|
+
<path d="M8 4.5L5 6L4.5 9L6 11.5L9.5 11.5L11.5 9L11 6L8 4.5Z" fill="#CC342D" fill-opacity="0.3"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#000000"/>
|
|
3
|
+
<circle cx="8" cy="8" r="4.5" stroke="white" stroke-width="1"/>
|
|
4
|
+
<circle cx="8" cy="3.2" r="0.6" fill="white"/>
|
|
5
|
+
<circle cx="12.15" cy="5.6" r="0.6" fill="white"/>
|
|
6
|
+
<circle cx="12.15" cy="10.4" r="0.6" fill="white"/>
|
|
7
|
+
<circle cx="8" cy="12.8" r="0.6" fill="white"/>
|
|
8
|
+
<circle cx="3.85" cy="10.4" r="0.6" fill="white"/>
|
|
9
|
+
<circle cx="3.85" cy="5.6" r="0.6" fill="white"/>
|
|
10
|
+
<path d="M6.5 6.5H8.5C9.05 6.5 9.5 6.95 9.5 7.5C9.5 8.05 9.05 8.5 8.5 8.5H6.5V6.5Z" fill="white"/>
|
|
11
|
+
<path d="M6.5 8.5H8L9.5 10.5H8L6.5 8.5Z" fill="white"/>
|
|
12
|
+
<rect x="5.5" y="6.5" width="1" height="4" fill="white"/>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#52AC7F"/>
|
|
3
|
+
<rect x="2.46155" y="8.8" width="3.69231" height="1.2" rx="0.6" fill="white"/>
|
|
4
|
+
<rect x="7.38464" y="8.8" width="2.46154" height="1.2" rx="0.6" fill="white"/>
|
|
5
|
+
<rect x="11.077" y="8.8" width="2.46154" height="1.2" rx="0.6" fill="white"/>
|
|
6
|
+
<rect x="2.46155" y="11.2" width="3.69231" height="1.2" rx="0.6" fill="white" fill-opacity="0.6"/>
|
|
7
|
+
<rect x="7.38464" y="11.2" width="2.46154" height="1.2" rx="0.6" fill="white" fill-opacity="0.6"/>
|
|
8
|
+
<rect x="11.077" y="11.2" width="2.46154" height="1.2" rx="0.6" fill="white" fill-opacity="0.6"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#4EAA25"/>
|
|
3
|
+
<path d="M4 5.5L7 8L4 10.5" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M8 11H12" stroke="white" stroke-width="1.2" stroke-linecap="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#F29111"/>
|
|
3
|
+
<ellipse cx="8" cy="5" rx="4.5" ry="1.5" fill="white"/>
|
|
4
|
+
<path d="M3.5 5V11C3.5 11.83 5.51 12.5 8 12.5C10.49 12.5 12.5 11.83 12.5 11V5" stroke="white" stroke-width="1"/>
|
|
5
|
+
<path d="M3.5 8C3.5 8.83 5.51 9.5 8 9.5C10.49 9.5 12.5 8.83 12.5 8" stroke="white" stroke-width="1"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#3178C6"/>
|
|
3
|
+
<path d="M4 6.5H8V7.5H6.5V12H5.5V7.5H4V6.5Z" fill="white"/>
|
|
4
|
+
<path d="M8.5 10.5C8.75 10.8 9.1 11 9.5 11C9.85 11 10.05 10.85 10.05 10.65C10.05 10.4 9.85 10.3 9.4 10.15L9.15 10.05C8.45 9.75 8 9.4 8 8.6C8 7.85 8.55 7.3 9.4 7.3C10 7.3 10.45 7.5 10.8 8L10.1 8.5C9.95 8.25 9.75 8.1 9.4 8.1C9.05 8.1 8.85 8.3 8.85 8.5C8.85 8.75 9.05 8.85 9.45 9L9.7 9.1C10.55 9.4 11.05 9.75 11.05 10.6C11.05 11.45 10.35 11.9 9.5 11.9C8.65 11.9 8.05 11.55 7.7 11L8.5 10.5Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0V0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8V8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16V16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8V8Z" fill="#ED3151"/>
|
|
3
|
+
<rect x="3.5" y="4.5" width="9" height="7" rx="1" stroke="white"/>
|
|
4
|
+
<path d="M9.75 8C9.7501 8.04244 9.73922 8.08419 9.71841 8.12118C9.6976 8.15817 9.66758 8.18915 9.63125 8.2111L7.38 9.58828C7.34204 9.61152 7.29857 9.62421 7.25407 9.62504C7.20958 9.62586 7.16566 9.61479 7.12688 9.59297C7.08845 9.57149 7.05645 9.54016 7.03415 9.50221C7.01185 9.46426 7.00006 9.42105 7 9.37703V6.62297C7.00006 6.57895 7.01185 6.53575 7.03415 6.49779C7.05645 6.45984 7.08845 6.42851 7.12688 6.40703C7.16566 6.38521 7.20958 6.37414 7.25407 6.37497C7.29857 6.37579 7.34204 6.38848 7.38 6.41172L9.63125 7.78891C9.66758 7.81086 9.6976 7.84183 9.71841 7.87882C9.73922 7.91581 9.7501 7.95756 9.75 8Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 8C0 5.19974 0 3.79961 0.544967 2.73005C1.02433 1.78924 1.78924 1.02433 2.73005 0.544967C3.79961 0 5.19974 0 8 0C10.8003 0 12.2004 0 13.27 0.544967C14.2108 1.02433 14.9757 1.78924 15.455 2.73005C16 3.79961 16 5.19974 16 8C16 10.8003 16 12.2004 15.455 13.27C14.9757 14.2108 14.2108 14.9757 13.27 15.455C12.2004 16 10.8003 16 8 16C5.19974 16 3.79961 16 2.73005 15.455C1.78924 14.9757 1.02433 14.2108 0.544967 13.27C0 12.2004 0 10.8003 0 8Z" fill="#CB171E"/>
|
|
3
|
+
<rect x="4" y="5" width="3" height="1" rx="0.5" fill="white"/>
|
|
4
|
+
<rect x="5" y="7" width="4" height="1" rx="0.5" fill="white" fill-opacity="0.8"/>
|
|
5
|
+
<rect x="6" y="9" width="5" height="1" rx="0.5" fill="white" fill-opacity="0.6"/>
|
|
6
|
+
<rect x="5" y="11" width="3" height="1" rx="0.5" fill="white" fill-opacity="0.4"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 0C3.1325 0 0 3.1325 0 7C0 10.0975 2.00375 12.7138 4.78625 13.6413C5.13625 13.7025 5.2675 13.4925 5.2675 13.3088C5.2675 13.1425 5.25875 12.5913 5.25875 12.005C3.5 12.3288 3.045 11.5763 2.905 11.1825C2.82625 10.9813 2.485 10.36 2.1875 10.1938C1.9425 10.0625 1.5925 9.73875 2.17875 9.73C2.73 9.72125 3.12375 10.2375 3.255 10.4475C3.885 11.5063 4.89125 11.2088 5.29375 11.025C5.355 10.57 5.53875 10.2638 5.74 10.0888C4.1825 9.91375 2.555 9.31 2.555 6.6325C2.555 5.87125 2.82625 5.24125 3.2725 4.75125C3.2025 4.57625 2.9575 3.85875 3.3425 2.89625C3.3425 2.89625 3.92875 2.7125 5.2675 3.61375C5.8275 3.45625 6.4225 3.3775 7.0175 3.3775C7.6125 3.3775 8.2075 3.45625 8.7675 3.61375C10.1063 2.70375 10.6925 2.89625 10.6925 2.89625C11.0775 3.85875 10.8325 4.57625 10.7625 4.75125C11.2088 5.24125 11.48 5.8625 11.48 6.6325C11.48 9.31875 9.84375 9.91375 8.28625 10.0888C8.54 10.3075 8.75875 10.7275 8.75875 11.3838C8.75875 12.32 8.75 13.0725 8.75 13.3088C8.75 13.4925 8.88125 13.7113 9.23125 13.6413C11.9963 12.7138 14 10.0888 14 7C14 3.1325 10.8675 0 7 0Z" fill="#1B1F23"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { requireUser } from "#chat-runtime/server/utils/auth";
|
|
2
|
+
export default defineEventHandler(async (event) => {
|
|
3
|
+
const session = requireUser(event);
|
|
4
|
+
if (session.user.role !== "admin") {
|
|
5
|
+
throw createError({
|
|
6
|
+
statusCode: 403,
|
|
7
|
+
statusMessage: "Admin access required"
|
|
8
|
+
});
|
|
9
|
+
}
|
|
10
|
+
const result = await runTask("send-daily-usage-report");
|
|
11
|
+
return {
|
|
12
|
+
success: true,
|
|
13
|
+
result
|
|
14
|
+
};
|
|
15
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../conversations/[id]/cancel.post.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../conversations/[id]/cancel.post.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../conversations/[id]/clear.post.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../conversations/[id]/clear.post.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../conversations/[id]/duplicate.post.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../conversations/[id]/duplicate.post.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../conversations/[id]/files.get.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../conversations/[id]/files.get.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../conversations/[id]/index.delete.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../conversations/[id]/index.delete.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../conversations/[id]/index.get.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../conversations/[id]/index.get.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../conversations/[id]/index.patch.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../conversations/[id]/index.patch.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../../../conversations/[id]/messages/[messageId]/retry.post.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../../../conversations/[id]/messages/[messageId]/retry.post.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../../conversations/[id]/messages/index.get.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../../conversations/[id]/messages/index.get.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../../conversations/[id]/messages/index.post.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../../conversations/[id]/messages/index.post.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../../conversations/[id]/usage.get.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../../conversations/[id]/usage.get.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../conversations/generate-title.post.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../conversations/generate-title.post.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../conversations/index.get.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../conversations/index.get.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../../conversations/index.post.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../../conversations/index.post.js";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { useDb } from "#chat-runtime/server/db";
|
|
2
|
+
import { resolveChatContext } from "#chat-runtime/server/utils/chat-context";
|
|
3
|
+
import { getWorkspaceSettingsUpdatedAt, resolveWorkspaceSettings } from "#chat-runtime/server/utils/chat-workspace-settings";
|
|
4
|
+
export default defineEventHandler(async (event) => {
|
|
5
|
+
const context = resolveChatContext(event);
|
|
6
|
+
const db = useDb();
|
|
7
|
+
const settings = await resolveWorkspaceSettings(event, context, db);
|
|
8
|
+
const updatedAt = getWorkspaceSettingsUpdatedAt(settings);
|
|
9
|
+
return {
|
|
10
|
+
workspaceId: context.workspaceId,
|
|
11
|
+
...settings,
|
|
12
|
+
updatedAt
|
|
13
|
+
};
|
|
14
|
+
});
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { eq, and } from "drizzle-orm";
|
|
2
|
+
import { useDb, schema } from "#chat-runtime/server/db";
|
|
3
|
+
import { resolveChatContext } from "#chat-runtime/server/utils/chat-context";
|
|
4
|
+
import { getAgentDataToken, cancelSession } from "#chat-runtime/server/utils/agent-api";
|
|
5
|
+
import { logger } from "#chat-runtime/server/utils/logger";
|
|
6
|
+
export default defineEventHandler(async (event) => {
|
|
7
|
+
const context = resolveChatContext(event);
|
|
8
|
+
const db = useDb();
|
|
9
|
+
const id = getRouterParam(event, "id");
|
|
10
|
+
if (!id) {
|
|
11
|
+
throw createError({
|
|
12
|
+
statusCode: 400,
|
|
13
|
+
statusMessage: "Conversation ID is required"
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
const [conversation] = await db.select().from(schema.conversations).where(
|
|
17
|
+
and(
|
|
18
|
+
eq(schema.conversations.id, id),
|
|
19
|
+
eq(schema.conversations.workspaceId, context.workspaceId)
|
|
20
|
+
)
|
|
21
|
+
);
|
|
22
|
+
if (!conversation) {
|
|
23
|
+
throw createError({
|
|
24
|
+
statusCode: 404,
|
|
25
|
+
statusMessage: "Conversation not found"
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
if (!conversation.threadSessionId) {
|
|
29
|
+
throw createError({
|
|
30
|
+
statusCode: 400,
|
|
31
|
+
statusMessage: "No active session to cancel"
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
const token = getAgentDataToken(event);
|
|
35
|
+
logger.info({ conversationId: id, sessionId: conversation.threadSessionId }, "Session cancellation requested");
|
|
36
|
+
const result = await cancelSession(token, conversation.threadSessionId);
|
|
37
|
+
if (!result.success) {
|
|
38
|
+
throw createError({
|
|
39
|
+
statusCode: 500,
|
|
40
|
+
statusMessage: result.error
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
await db.update(schema.messages).set({
|
|
44
|
+
status: "completed",
|
|
45
|
+
content: "_Gera\xE7\xE3o interrompida pelo usu\xE1rio_",
|
|
46
|
+
updatedAt: /* @__PURE__ */ new Date()
|
|
47
|
+
}).where(
|
|
48
|
+
and(
|
|
49
|
+
eq(schema.messages.conversationId, id),
|
|
50
|
+
eq(schema.messages.status, "pending")
|
|
51
|
+
)
|
|
52
|
+
);
|
|
53
|
+
logger.info({ conversationId: id, previousStatus: result.previousStatus }, "Session cancelled");
|
|
54
|
+
return {
|
|
55
|
+
success: true,
|
|
56
|
+
previousStatus: result.previousStatus
|
|
57
|
+
};
|
|
58
|
+
});
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { eq, and } from "drizzle-orm";
|
|
2
|
+
import { useDb, schema } from "#chat-runtime/server/db";
|
|
3
|
+
import { resolveChatContext } from "#chat-runtime/server/utils/chat-context";
|
|
4
|
+
import { getWorkspaceSettingsUpdatedAt, resolveWorkspaceSettings, serializeResolvedWorkspaceSettings } from "#chat-runtime/server/utils/chat-workspace-settings";
|
|
5
|
+
import { logger } from "#chat-runtime/server/utils/logger";
|
|
6
|
+
export default defineEventHandler(async (event) => {
|
|
7
|
+
const context = resolveChatContext(event);
|
|
8
|
+
const db = useDb();
|
|
9
|
+
const id = getRouterParam(event, "id");
|
|
10
|
+
if (!id) {
|
|
11
|
+
throw createError({
|
|
12
|
+
statusCode: 400,
|
|
13
|
+
statusMessage: "Conversation ID is required"
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
const [conversation] = await db.select().from(schema.conversations).where(
|
|
17
|
+
and(
|
|
18
|
+
eq(schema.conversations.id, id),
|
|
19
|
+
eq(schema.conversations.workspaceId, context.workspaceId)
|
|
20
|
+
)
|
|
21
|
+
).limit(1);
|
|
22
|
+
if (!conversation) {
|
|
23
|
+
throw createError({
|
|
24
|
+
statusCode: 404,
|
|
25
|
+
statusMessage: "Conversation not found"
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
const trustedSettings = await resolveWorkspaceSettings(event, context, db);
|
|
29
|
+
await db.delete(schema.messages).where(eq(schema.messages.conversationId, id));
|
|
30
|
+
const [updated] = await db.update(schema.conversations).set({
|
|
31
|
+
threadSessionId: null,
|
|
32
|
+
appliedSettingsAt: getWorkspaceSettingsUpdatedAt(trustedSettings),
|
|
33
|
+
appliedSettingsSnapshot: serializeResolvedWorkspaceSettings(trustedSettings),
|
|
34
|
+
updatedAt: /* @__PURE__ */ new Date()
|
|
35
|
+
}).where(eq(schema.conversations.id, id)).returning();
|
|
36
|
+
logger.info({ conversationId: id, workspaceId: context.workspaceId }, "Conversation cleared");
|
|
37
|
+
return updated;
|
|
38
|
+
});
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { eq, and } from "drizzle-orm";
|
|
2
|
+
import { useDb, schema } from "#chat-runtime/server/db";
|
|
3
|
+
import { resolveChatContext } from "#chat-runtime/server/utils/chat-context";
|
|
4
|
+
import { getWorkspaceSettingsUpdatedAt, resolveWorkspaceSettings, serializeResolvedWorkspaceSettings } from "#chat-runtime/server/utils/chat-workspace-settings";
|
|
5
|
+
import { logger } from "#chat-runtime/server/utils/logger";
|
|
6
|
+
export default defineEventHandler(async (event) => {
|
|
7
|
+
const context = resolveChatContext(event);
|
|
8
|
+
const db = useDb();
|
|
9
|
+
const id = getRouterParam(event, "id");
|
|
10
|
+
if (!id) {
|
|
11
|
+
throw createError({
|
|
12
|
+
statusCode: 400,
|
|
13
|
+
statusMessage: "Conversation ID is required"
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
const [original] = await db.select().from(schema.conversations).where(
|
|
17
|
+
and(
|
|
18
|
+
eq(schema.conversations.id, id),
|
|
19
|
+
eq(schema.conversations.workspaceId, context.workspaceId)
|
|
20
|
+
)
|
|
21
|
+
).limit(1);
|
|
22
|
+
if (!original) {
|
|
23
|
+
throw createError({
|
|
24
|
+
statusCode: 404,
|
|
25
|
+
statusMessage: "Conversation not found"
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
const trustedSettings = original.appliedSettingsSnapshot ? original.appliedSettingsSnapshot : await resolveWorkspaceSettings(event, context, db);
|
|
29
|
+
const [duplicated] = await db.insert(schema.conversations).values({
|
|
30
|
+
workspaceId: context.workspaceId,
|
|
31
|
+
userId: context.user.id,
|
|
32
|
+
title: `${original.title} (copy)`,
|
|
33
|
+
createdBy: context.user.email,
|
|
34
|
+
appliedSettingsAt: getWorkspaceSettingsUpdatedAt(trustedSettings),
|
|
35
|
+
appliedSettingsSnapshot: serializeResolvedWorkspaceSettings(trustedSettings)
|
|
36
|
+
}).returning();
|
|
37
|
+
if (duplicated) {
|
|
38
|
+
logger.info({ originalId: id, duplicatedId: duplicated.id, workspaceId: context.workspaceId }, "Conversation duplicated");
|
|
39
|
+
}
|
|
40
|
+
return duplicated;
|
|
41
|
+
});
|