@base44/superagent-native 0.0.1
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 +132 -0
- package/lib/commonjs/AgentSettingsPanel.js +1067 -0
- package/lib/commonjs/AgentSettingsPanel.js.map +1 -0
- package/lib/commonjs/AgentSphereIcon.js +243 -0
- package/lib/commonjs/AgentSphereIcon.js.map +1 -0
- package/lib/commonjs/AttachmentPickerStatusModal.js +96 -0
- package/lib/commonjs/AttachmentPickerStatusModal.js.map +1 -0
- package/lib/commonjs/AttachmentPreviewStrip.js +49 -0
- package/lib/commonjs/AttachmentPreviewStrip.js.map +1 -0
- package/lib/commonjs/ChannelsPanel.js +733 -0
- package/lib/commonjs/ChannelsPanel.js.map +1 -0
- package/lib/commonjs/ConversationChat.js +219 -0
- package/lib/commonjs/ConversationChat.js.map +1 -0
- package/lib/commonjs/ConversationComposer.js +323 -0
- package/lib/commonjs/ConversationComposer.js.map +1 -0
- package/lib/commonjs/ConversationMessageList.js +105 -0
- package/lib/commonjs/ConversationMessageList.js.map +1 -0
- package/lib/commonjs/ConversationScreen.js +241 -0
- package/lib/commonjs/ConversationScreen.js.map +1 -0
- package/lib/commonjs/EditorDrawer.js +1127 -0
- package/lib/commonjs/EditorDrawer.js.map +1 -0
- package/lib/commonjs/EditorTabPanel.js +28 -0
- package/lib/commonjs/EditorTabPanel.js.map +1 -0
- package/lib/commonjs/FilesPanel.js +533 -0
- package/lib/commonjs/FilesPanel.js.map +1 -0
- package/lib/commonjs/MarkdownText.js +313 -0
- package/lib/commonjs/MarkdownText.js.map +1 -0
- package/lib/commonjs/MessageActionBar.js +90 -0
- package/lib/commonjs/MessageActionBar.js.map +1 -0
- package/lib/commonjs/RenameAgentModal.js +99 -0
- package/lib/commonjs/RenameAgentModal.js.map +1 -0
- package/lib/commonjs/ShareAgentModal.js +349 -0
- package/lib/commonjs/ShareAgentModal.js.map +1 -0
- package/lib/commonjs/ShareAgentModal.styles.js +236 -0
- package/lib/commonjs/ShareAgentModal.styles.js.map +1 -0
- package/lib/commonjs/SuperagentHomeScreen.js +316 -0
- package/lib/commonjs/SuperagentHomeScreen.js.map +1 -0
- package/lib/commonjs/ToolApprovalCard.js +542 -0
- package/lib/commonjs/ToolApprovalCard.js.map +1 -0
- package/lib/commonjs/ToolCallSummary.js +632 -0
- package/lib/commonjs/ToolCallSummary.js.map +1 -0
- package/lib/commonjs/agentSphereStyles.js +38 -0
- package/lib/commonjs/agentSphereStyles.js.map +1 -0
- package/lib/commonjs/apiClient.js +158 -0
- package/lib/commonjs/apiClient.js.map +1 -0
- package/lib/commonjs/attachmentFileHelpers.js +104 -0
- package/lib/commonjs/attachmentFileHelpers.js.map +1 -0
- package/lib/commonjs/attachmentUpload.js +87 -0
- package/lib/commonjs/attachmentUpload.js.map +1 -0
- package/lib/commonjs/composerStyles.js +248 -0
- package/lib/commonjs/composerStyles.js.map +1 -0
- package/lib/commonjs/connectorBrandIcons.js +82 -0
- package/lib/commonjs/connectorBrandIcons.js.map +1 -0
- package/lib/commonjs/connectorCatalog.js +377 -0
- package/lib/commonjs/connectorCatalog.js.map +1 -0
- package/lib/commonjs/constants.js +15 -0
- package/lib/commonjs/constants.js.map +1 -0
- package/lib/commonjs/conversationParts.js +273 -0
- package/lib/commonjs/conversationParts.js.map +1 -0
- package/lib/commonjs/conversationRuntime.js +144 -0
- package/lib/commonjs/conversationRuntime.js.map +1 -0
- package/lib/commonjs/conversationStyles.js +758 -0
- package/lib/commonjs/conversationStyles.js.map +1 -0
- package/lib/commonjs/editorShellStyles.js +1032 -0
- package/lib/commonjs/editorShellStyles.js.map +1 -0
- package/lib/commonjs/editorTabs.js +42 -0
- package/lib/commonjs/editorTabs.js.map +1 -0
- package/lib/commonjs/fileTreeUtils.js +133 -0
- package/lib/commonjs/fileTreeUtils.js.map +1 -0
- package/lib/commonjs/index.js +110 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/markdownStyles.js +157 -0
- package/lib/commonjs/markdownStyles.js.map +1 -0
- package/lib/commonjs/mediaUtils.js +61 -0
- package/lib/commonjs/mediaUtils.js.map +1 -0
- package/lib/commonjs/messageActionStyles.js +45 -0
- package/lib/commonjs/messageActionStyles.js.map +1 -0
- package/lib/commonjs/messageUtils.js +55 -0
- package/lib/commonjs/messageUtils.js.map +1 -0
- package/lib/commonjs/nativeActionSheet.js +21 -0
- package/lib/commonjs/nativeActionSheet.js.map +1 -0
- package/lib/commonjs/nativeActionSheet.web.js +10 -0
- package/lib/commonjs/nativeActionSheet.web.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/paperTheme.js +59 -0
- package/lib/commonjs/paperTheme.js.map +1 -0
- package/lib/commonjs/realtimeClient.js +99 -0
- package/lib/commonjs/realtimeClient.js.map +1 -0
- package/lib/commonjs/renameAgentModalStyles.js +83 -0
- package/lib/commonjs/renameAgentModalStyles.js.map +1 -0
- package/lib/commonjs/screenParts.js +220 -0
- package/lib/commonjs/screenParts.js.map +1 -0
- package/lib/commonjs/styles.js +343 -0
- package/lib/commonjs/styles.js.map +1 -0
- package/lib/commonjs/superagentApiClient.js +613 -0
- package/lib/commonjs/superagentApiClient.js.map +1 -0
- package/lib/commonjs/types.js +6 -0
- package/lib/commonjs/types.js.map +1 -0
- package/lib/commonjs/useSuperagentAttachmentPicker.js +80 -0
- package/lib/commonjs/useSuperagentAttachmentPicker.js.map +1 -0
- package/lib/commonjs/useSuperagentConversation.js +216 -0
- package/lib/commonjs/useSuperagentConversation.js.map +1 -0
- package/lib/commonjs/useSuperagentRuntime.js +1207 -0
- package/lib/commonjs/useSuperagentRuntime.js.map +1 -0
- package/lib/module/AgentSettingsPanel.js +1062 -0
- package/lib/module/AgentSettingsPanel.js.map +1 -0
- package/lib/module/AgentSphereIcon.js +237 -0
- package/lib/module/AgentSphereIcon.js.map +1 -0
- package/lib/module/AttachmentPickerStatusModal.js +91 -0
- package/lib/module/AttachmentPickerStatusModal.js.map +1 -0
- package/lib/module/AttachmentPreviewStrip.js +44 -0
- package/lib/module/AttachmentPreviewStrip.js.map +1 -0
- package/lib/module/ChannelsPanel.js +728 -0
- package/lib/module/ChannelsPanel.js.map +1 -0
- package/lib/module/ConversationChat.js +214 -0
- package/lib/module/ConversationChat.js.map +1 -0
- package/lib/module/ConversationComposer.js +318 -0
- package/lib/module/ConversationComposer.js.map +1 -0
- package/lib/module/ConversationMessageList.js +100 -0
- package/lib/module/ConversationMessageList.js.map +1 -0
- package/lib/module/ConversationScreen.js +236 -0
- package/lib/module/ConversationScreen.js.map +1 -0
- package/lib/module/EditorDrawer.js +1122 -0
- package/lib/module/EditorDrawer.js.map +1 -0
- package/lib/module/EditorTabPanel.js +23 -0
- package/lib/module/EditorTabPanel.js.map +1 -0
- package/lib/module/FilesPanel.js +528 -0
- package/lib/module/FilesPanel.js.map +1 -0
- package/lib/module/MarkdownText.js +308 -0
- package/lib/module/MarkdownText.js.map +1 -0
- package/lib/module/MessageActionBar.js +85 -0
- package/lib/module/MessageActionBar.js.map +1 -0
- package/lib/module/RenameAgentModal.js +94 -0
- package/lib/module/RenameAgentModal.js.map +1 -0
- package/lib/module/ShareAgentModal.js +344 -0
- package/lib/module/ShareAgentModal.js.map +1 -0
- package/lib/module/ShareAgentModal.styles.js +232 -0
- package/lib/module/ShareAgentModal.styles.js.map +1 -0
- package/lib/module/SuperagentHomeScreen.js +311 -0
- package/lib/module/SuperagentHomeScreen.js.map +1 -0
- package/lib/module/ToolApprovalCard.js +537 -0
- package/lib/module/ToolApprovalCard.js.map +1 -0
- package/lib/module/ToolCallSummary.js +627 -0
- package/lib/module/ToolCallSummary.js.map +1 -0
- package/lib/module/agentSphereStyles.js +34 -0
- package/lib/module/agentSphereStyles.js.map +1 -0
- package/lib/module/apiClient.js +154 -0
- package/lib/module/apiClient.js.map +1 -0
- package/lib/module/attachmentFileHelpers.js +97 -0
- package/lib/module/attachmentFileHelpers.js.map +1 -0
- package/lib/module/attachmentUpload.js +82 -0
- package/lib/module/attachmentUpload.js.map +1 -0
- package/lib/module/composerStyles.js +244 -0
- package/lib/module/composerStyles.js.map +1 -0
- package/lib/module/connectorBrandIcons.js +76 -0
- package/lib/module/connectorBrandIcons.js.map +1 -0
- package/lib/module/connectorCatalog.js +373 -0
- package/lib/module/connectorCatalog.js.map +1 -0
- package/lib/module/constants.js +10 -0
- package/lib/module/constants.js.map +1 -0
- package/lib/module/conversationParts.js +266 -0
- package/lib/module/conversationParts.js.map +1 -0
- package/lib/module/conversationRuntime.js +129 -0
- package/lib/module/conversationRuntime.js.map +1 -0
- package/lib/module/conversationStyles.js +754 -0
- package/lib/module/conversationStyles.js.map +1 -0
- package/lib/module/editorShellStyles.js +1028 -0
- package/lib/module/editorShellStyles.js.map +1 -0
- package/lib/module/editorTabs.js +37 -0
- package/lib/module/editorTabs.js.map +1 -0
- package/lib/module/fileTreeUtils.js +120 -0
- package/lib/module/fileTreeUtils.js.map +1 -0
- package/lib/module/index.js +17 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/markdownStyles.js +153 -0
- package/lib/module/markdownStyles.js.map +1 -0
- package/lib/module/mediaUtils.js +53 -0
- package/lib/module/mediaUtils.js.map +1 -0
- package/lib/module/messageActionStyles.js +41 -0
- package/lib/module/messageActionStyles.js.map +1 -0
- package/lib/module/messageUtils.js +46 -0
- package/lib/module/messageUtils.js.map +1 -0
- package/lib/module/nativeActionSheet.js +17 -0
- package/lib/module/nativeActionSheet.js.map +1 -0
- package/lib/module/nativeActionSheet.web.js +6 -0
- package/lib/module/nativeActionSheet.web.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/paperTheme.js +55 -0
- package/lib/module/paperTheme.js.map +1 -0
- package/lib/module/realtimeClient.js +95 -0
- package/lib/module/realtimeClient.js.map +1 -0
- package/lib/module/renameAgentModalStyles.js +79 -0
- package/lib/module/renameAgentModalStyles.js.map +1 -0
- package/lib/module/screenParts.js +210 -0
- package/lib/module/screenParts.js.map +1 -0
- package/lib/module/styles.js +339 -0
- package/lib/module/styles.js.map +1 -0
- package/lib/module/superagentApiClient.js +609 -0
- package/lib/module/superagentApiClient.js.map +1 -0
- package/lib/module/types.js +4 -0
- package/lib/module/types.js.map +1 -0
- package/lib/module/useSuperagentAttachmentPicker.js +75 -0
- package/lib/module/useSuperagentAttachmentPicker.js.map +1 -0
- package/lib/module/useSuperagentConversation.js +212 -0
- package/lib/module/useSuperagentConversation.js.map +1 -0
- package/lib/module/useSuperagentRuntime.js +1203 -0
- package/lib/module/useSuperagentRuntime.js.map +1 -0
- package/lib/typescript/commonjs/AgentSettingsPanel.d.ts +19 -0
- package/lib/typescript/commonjs/AgentSettingsPanel.d.ts.map +1 -0
- package/lib/typescript/commonjs/AgentSphereIcon.d.ts +15 -0
- package/lib/typescript/commonjs/AgentSphereIcon.d.ts.map +1 -0
- package/lib/typescript/commonjs/AttachmentPickerStatusModal.d.ts +8 -0
- package/lib/typescript/commonjs/AttachmentPickerStatusModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/AttachmentPreviewStrip.d.ts +7 -0
- package/lib/typescript/commonjs/AttachmentPreviewStrip.d.ts.map +1 -0
- package/lib/typescript/commonjs/ChannelsPanel.d.ts +21 -0
- package/lib/typescript/commonjs/ChannelsPanel.d.ts.map +1 -0
- package/lib/typescript/commonjs/ConversationChat.d.ts +22 -0
- package/lib/typescript/commonjs/ConversationChat.d.ts.map +1 -0
- package/lib/typescript/commonjs/ConversationComposer.d.ts +24 -0
- package/lib/typescript/commonjs/ConversationComposer.d.ts.map +1 -0
- package/lib/typescript/commonjs/ConversationMessageList.d.ts +17 -0
- package/lib/typescript/commonjs/ConversationMessageList.d.ts.map +1 -0
- package/lib/typescript/commonjs/ConversationScreen.d.ts +80 -0
- package/lib/typescript/commonjs/ConversationScreen.d.ts.map +1 -0
- package/lib/typescript/commonjs/EditorDrawer.d.ts +67 -0
- package/lib/typescript/commonjs/EditorDrawer.d.ts.map +1 -0
- package/lib/typescript/commonjs/EditorTabPanel.d.ts +6 -0
- package/lib/typescript/commonjs/EditorTabPanel.d.ts.map +1 -0
- package/lib/typescript/commonjs/FilesPanel.d.ts +14 -0
- package/lib/typescript/commonjs/FilesPanel.d.ts.map +1 -0
- package/lib/typescript/commonjs/MarkdownText.d.ts +10 -0
- package/lib/typescript/commonjs/MarkdownText.d.ts.map +1 -0
- package/lib/typescript/commonjs/MessageActionBar.d.ts +8 -0
- package/lib/typescript/commonjs/MessageActionBar.d.ts.map +1 -0
- package/lib/typescript/commonjs/RenameAgentModal.d.ts +10 -0
- package/lib/typescript/commonjs/RenameAgentModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/ShareAgentModal.d.ts +15 -0
- package/lib/typescript/commonjs/ShareAgentModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/ShareAgentModal.styles.d.ts +229 -0
- package/lib/typescript/commonjs/ShareAgentModal.styles.d.ts.map +1 -0
- package/lib/typescript/commonjs/SuperagentHomeScreen.d.ts +4 -0
- package/lib/typescript/commonjs/SuperagentHomeScreen.d.ts.map +1 -0
- package/lib/typescript/commonjs/ToolApprovalCard.d.ts +13 -0
- package/lib/typescript/commonjs/ToolApprovalCard.d.ts.map +1 -0
- package/lib/typescript/commonjs/ToolCallSummary.d.ts +16 -0
- package/lib/typescript/commonjs/ToolCallSummary.d.ts.map +1 -0
- package/lib/typescript/commonjs/agentSphereStyles.d.ts +31 -0
- package/lib/typescript/commonjs/agentSphereStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/apiClient.d.ts +4 -0
- package/lib/typescript/commonjs/apiClient.d.ts.map +1 -0
- package/lib/typescript/commonjs/attachmentFileHelpers.d.ts +6 -0
- package/lib/typescript/commonjs/attachmentFileHelpers.d.ts.map +1 -0
- package/lib/typescript/commonjs/attachmentUpload.d.ts +12 -0
- package/lib/typescript/commonjs/attachmentUpload.d.ts.map +1 -0
- package/lib/typescript/commonjs/composerStyles.d.ts +241 -0
- package/lib/typescript/commonjs/composerStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/connectorBrandIcons.d.ts +7 -0
- package/lib/typescript/commonjs/connectorBrandIcons.d.ts.map +1 -0
- package/lib/typescript/commonjs/connectorCatalog.d.ts +3 -0
- package/lib/typescript/commonjs/connectorCatalog.d.ts.map +1 -0
- package/lib/typescript/commonjs/constants.d.ts +4 -0
- package/lib/typescript/commonjs/constants.d.ts.map +1 -0
- package/lib/typescript/commonjs/conversationParts.d.ts +29 -0
- package/lib/typescript/commonjs/conversationParts.d.ts.map +1 -0
- package/lib/typescript/commonjs/conversationRuntime.d.ts +67 -0
- package/lib/typescript/commonjs/conversationRuntime.d.ts.map +1 -0
- package/lib/typescript/commonjs/conversationStyles.d.ts +742 -0
- package/lib/typescript/commonjs/conversationStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/editorShellStyles.d.ts +1025 -0
- package/lib/typescript/commonjs/editorShellStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/editorTabs.d.ts +11 -0
- package/lib/typescript/commonjs/editorTabs.d.ts.map +1 -0
- package/lib/typescript/commonjs/fileTreeUtils.d.ts +17 -0
- package/lib/typescript/commonjs/fileTreeUtils.d.ts.map +1 -0
- package/lib/typescript/commonjs/index.d.ts +20 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/markdownStyles.d.ts +150 -0
- package/lib/typescript/commonjs/markdownStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/mediaUtils.d.ts +9 -0
- package/lib/typescript/commonjs/mediaUtils.d.ts.map +1 -0
- package/lib/typescript/commonjs/messageActionStyles.d.ts +38 -0
- package/lib/typescript/commonjs/messageActionStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/messageUtils.d.ts +8 -0
- package/lib/typescript/commonjs/messageUtils.d.ts.map +1 -0
- package/lib/typescript/commonjs/nativeActionSheet.d.ts +6 -0
- package/lib/typescript/commonjs/nativeActionSheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/nativeActionSheet.web.d.ts +3 -0
- package/lib/typescript/commonjs/nativeActionSheet.web.d.ts.map +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/paperTheme.d.ts +3 -0
- package/lib/typescript/commonjs/paperTheme.d.ts.map +1 -0
- package/lib/typescript/commonjs/realtimeClient.d.ts +16 -0
- package/lib/typescript/commonjs/realtimeClient.d.ts.map +1 -0
- package/lib/typescript/commonjs/renameAgentModalStyles.d.ts +76 -0
- package/lib/typescript/commonjs/renameAgentModalStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/screenParts.d.ts +31 -0
- package/lib/typescript/commonjs/screenParts.d.ts.map +1 -0
- package/lib/typescript/commonjs/styles.d.ts +336 -0
- package/lib/typescript/commonjs/styles.d.ts.map +1 -0
- package/lib/typescript/commonjs/superagentApiClient.d.ts +66 -0
- package/lib/typescript/commonjs/superagentApiClient.d.ts.map +1 -0
- package/lib/typescript/commonjs/types.d.ts +437 -0
- package/lib/typescript/commonjs/types.d.ts.map +1 -0
- package/lib/typescript/commonjs/useSuperagentAttachmentPicker.d.ts +30 -0
- package/lib/typescript/commonjs/useSuperagentAttachmentPicker.d.ts.map +1 -0
- package/lib/typescript/commonjs/useSuperagentConversation.d.ts +36 -0
- package/lib/typescript/commonjs/useSuperagentConversation.d.ts.map +1 -0
- package/lib/typescript/commonjs/useSuperagentRuntime.d.ts +163 -0
- package/lib/typescript/commonjs/useSuperagentRuntime.d.ts.map +1 -0
- package/lib/typescript/module/AgentSettingsPanel.d.ts +19 -0
- package/lib/typescript/module/AgentSettingsPanel.d.ts.map +1 -0
- package/lib/typescript/module/AgentSphereIcon.d.ts +15 -0
- package/lib/typescript/module/AgentSphereIcon.d.ts.map +1 -0
- package/lib/typescript/module/AttachmentPickerStatusModal.d.ts +8 -0
- package/lib/typescript/module/AttachmentPickerStatusModal.d.ts.map +1 -0
- package/lib/typescript/module/AttachmentPreviewStrip.d.ts +7 -0
- package/lib/typescript/module/AttachmentPreviewStrip.d.ts.map +1 -0
- package/lib/typescript/module/ChannelsPanel.d.ts +21 -0
- package/lib/typescript/module/ChannelsPanel.d.ts.map +1 -0
- package/lib/typescript/module/ConversationChat.d.ts +22 -0
- package/lib/typescript/module/ConversationChat.d.ts.map +1 -0
- package/lib/typescript/module/ConversationComposer.d.ts +24 -0
- package/lib/typescript/module/ConversationComposer.d.ts.map +1 -0
- package/lib/typescript/module/ConversationMessageList.d.ts +17 -0
- package/lib/typescript/module/ConversationMessageList.d.ts.map +1 -0
- package/lib/typescript/module/ConversationScreen.d.ts +80 -0
- package/lib/typescript/module/ConversationScreen.d.ts.map +1 -0
- package/lib/typescript/module/EditorDrawer.d.ts +67 -0
- package/lib/typescript/module/EditorDrawer.d.ts.map +1 -0
- package/lib/typescript/module/EditorTabPanel.d.ts +6 -0
- package/lib/typescript/module/EditorTabPanel.d.ts.map +1 -0
- package/lib/typescript/module/FilesPanel.d.ts +14 -0
- package/lib/typescript/module/FilesPanel.d.ts.map +1 -0
- package/lib/typescript/module/MarkdownText.d.ts +10 -0
- package/lib/typescript/module/MarkdownText.d.ts.map +1 -0
- package/lib/typescript/module/MessageActionBar.d.ts +8 -0
- package/lib/typescript/module/MessageActionBar.d.ts.map +1 -0
- package/lib/typescript/module/RenameAgentModal.d.ts +10 -0
- package/lib/typescript/module/RenameAgentModal.d.ts.map +1 -0
- package/lib/typescript/module/ShareAgentModal.d.ts +15 -0
- package/lib/typescript/module/ShareAgentModal.d.ts.map +1 -0
- package/lib/typescript/module/ShareAgentModal.styles.d.ts +229 -0
- package/lib/typescript/module/ShareAgentModal.styles.d.ts.map +1 -0
- package/lib/typescript/module/SuperagentHomeScreen.d.ts +4 -0
- package/lib/typescript/module/SuperagentHomeScreen.d.ts.map +1 -0
- package/lib/typescript/module/ToolApprovalCard.d.ts +13 -0
- package/lib/typescript/module/ToolApprovalCard.d.ts.map +1 -0
- package/lib/typescript/module/ToolCallSummary.d.ts +16 -0
- package/lib/typescript/module/ToolCallSummary.d.ts.map +1 -0
- package/lib/typescript/module/agentSphereStyles.d.ts +31 -0
- package/lib/typescript/module/agentSphereStyles.d.ts.map +1 -0
- package/lib/typescript/module/apiClient.d.ts +4 -0
- package/lib/typescript/module/apiClient.d.ts.map +1 -0
- package/lib/typescript/module/attachmentFileHelpers.d.ts +6 -0
- package/lib/typescript/module/attachmentFileHelpers.d.ts.map +1 -0
- package/lib/typescript/module/attachmentUpload.d.ts +12 -0
- package/lib/typescript/module/attachmentUpload.d.ts.map +1 -0
- package/lib/typescript/module/composerStyles.d.ts +241 -0
- package/lib/typescript/module/composerStyles.d.ts.map +1 -0
- package/lib/typescript/module/connectorBrandIcons.d.ts +7 -0
- package/lib/typescript/module/connectorBrandIcons.d.ts.map +1 -0
- package/lib/typescript/module/connectorCatalog.d.ts +3 -0
- package/lib/typescript/module/connectorCatalog.d.ts.map +1 -0
- package/lib/typescript/module/constants.d.ts +4 -0
- package/lib/typescript/module/constants.d.ts.map +1 -0
- package/lib/typescript/module/conversationParts.d.ts +29 -0
- package/lib/typescript/module/conversationParts.d.ts.map +1 -0
- package/lib/typescript/module/conversationRuntime.d.ts +67 -0
- package/lib/typescript/module/conversationRuntime.d.ts.map +1 -0
- package/lib/typescript/module/conversationStyles.d.ts +742 -0
- package/lib/typescript/module/conversationStyles.d.ts.map +1 -0
- package/lib/typescript/module/editorShellStyles.d.ts +1025 -0
- package/lib/typescript/module/editorShellStyles.d.ts.map +1 -0
- package/lib/typescript/module/editorTabs.d.ts +11 -0
- package/lib/typescript/module/editorTabs.d.ts.map +1 -0
- package/lib/typescript/module/fileTreeUtils.d.ts +17 -0
- package/lib/typescript/module/fileTreeUtils.d.ts.map +1 -0
- package/lib/typescript/module/index.d.ts +20 -0
- package/lib/typescript/module/index.d.ts.map +1 -0
- package/lib/typescript/module/markdownStyles.d.ts +150 -0
- package/lib/typescript/module/markdownStyles.d.ts.map +1 -0
- package/lib/typescript/module/mediaUtils.d.ts +9 -0
- package/lib/typescript/module/mediaUtils.d.ts.map +1 -0
- package/lib/typescript/module/messageActionStyles.d.ts +38 -0
- package/lib/typescript/module/messageActionStyles.d.ts.map +1 -0
- package/lib/typescript/module/messageUtils.d.ts +8 -0
- package/lib/typescript/module/messageUtils.d.ts.map +1 -0
- package/lib/typescript/module/nativeActionSheet.d.ts +6 -0
- package/lib/typescript/module/nativeActionSheet.d.ts.map +1 -0
- package/lib/typescript/module/nativeActionSheet.web.d.ts +3 -0
- package/lib/typescript/module/nativeActionSheet.web.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/paperTheme.d.ts +3 -0
- package/lib/typescript/module/paperTheme.d.ts.map +1 -0
- package/lib/typescript/module/realtimeClient.d.ts +16 -0
- package/lib/typescript/module/realtimeClient.d.ts.map +1 -0
- package/lib/typescript/module/renameAgentModalStyles.d.ts +76 -0
- package/lib/typescript/module/renameAgentModalStyles.d.ts.map +1 -0
- package/lib/typescript/module/screenParts.d.ts +31 -0
- package/lib/typescript/module/screenParts.d.ts.map +1 -0
- package/lib/typescript/module/styles.d.ts +336 -0
- package/lib/typescript/module/styles.d.ts.map +1 -0
- package/lib/typescript/module/superagentApiClient.d.ts +66 -0
- package/lib/typescript/module/superagentApiClient.d.ts.map +1 -0
- package/lib/typescript/module/types.d.ts +437 -0
- package/lib/typescript/module/types.d.ts.map +1 -0
- package/lib/typescript/module/useSuperagentAttachmentPicker.d.ts +30 -0
- package/lib/typescript/module/useSuperagentAttachmentPicker.d.ts.map +1 -0
- package/lib/typescript/module/useSuperagentConversation.d.ts +36 -0
- package/lib/typescript/module/useSuperagentConversation.d.ts.map +1 -0
- package/lib/typescript/module/useSuperagentRuntime.d.ts +163 -0
- package/lib/typescript/module/useSuperagentRuntime.d.ts.map +1 -0
- package/package.json +87 -0
- package/src/AgentSettingsPanel.tsx +1122 -0
- package/src/AgentSphereIcon.tsx +170 -0
- package/src/AttachmentPickerStatusModal.tsx +80 -0
- package/src/AttachmentPreviewStrip.tsx +38 -0
- package/src/ChannelsPanel.tsx +705 -0
- package/src/ConversationChat.tsx +245 -0
- package/src/ConversationComposer.tsx +368 -0
- package/src/ConversationMessageList.tsx +140 -0
- package/src/ConversationScreen.tsx +320 -0
- package/src/EditorDrawer.tsx +1297 -0
- package/src/EditorTabPanel.tsx +19 -0
- package/src/FilesPanel.tsx +577 -0
- package/src/MarkdownText.tsx +317 -0
- package/src/MessageActionBar.tsx +126 -0
- package/src/RenameAgentModal.tsx +107 -0
- package/src/ShareAgentModal.styles.ts +95 -0
- package/src/ShareAgentModal.tsx +320 -0
- package/src/SuperagentHomeScreen.tsx +318 -0
- package/src/ToolApprovalCard.tsx +592 -0
- package/src/ToolCallSummary.tsx +599 -0
- package/src/agentSphereStyles.ts +25 -0
- package/src/apiClient.ts +189 -0
- package/src/attachmentFileHelpers.ts +109 -0
- package/src/attachmentUpload.ts +112 -0
- package/src/composerStyles.ts +167 -0
- package/src/connectorBrandIcons.tsx +69 -0
- package/src/connectorCatalog.ts +414 -0
- package/src/constants.ts +9 -0
- package/src/conversationParts.tsx +307 -0
- package/src/conversationRuntime.ts +171 -0
- package/src/conversationStyles.ts +412 -0
- package/src/editorShellStyles.ts +1023 -0
- package/src/editorTabs.ts +26 -0
- package/src/fileTreeUtils.ts +165 -0
- package/src/index.ts +110 -0
- package/src/markdownStyles.ts +64 -0
- package/src/mediaUtils.ts +75 -0
- package/src/messageActionStyles.ts +26 -0
- package/src/messageUtils.ts +58 -0
- package/src/nativeActionSheet.ts +25 -0
- package/src/nativeActionSheet.web.ts +5 -0
- package/src/paperTheme.ts +52 -0
- package/src/realtimeClient.ts +149 -0
- package/src/renameAgentModalStyles.ts +77 -0
- package/src/screenParts.tsx +185 -0
- package/src/styles.ts +190 -0
- package/src/superagentApiClient.ts +895 -0
- package/src/types.ts +514 -0
- package/src/useSuperagentAttachmentPicker.tsx +117 -0
- package/src/useSuperagentConversation.ts +242 -0
- package/src/useSuperagentRuntime.ts +1371 -0
|
@@ -0,0 +1,414 @@
|
|
|
1
|
+
import type { SuperagentConnector } from './types';
|
|
2
|
+
|
|
3
|
+
function simpleIcon(slug: string, color: string) {
|
|
4
|
+
return `https://cdn.simpleicons.org/${slug}/${color.replace('#', '')}`;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export const SUPERAGENT_CONNECTOR_CATALOG: SuperagentConnector[] = [
|
|
8
|
+
{
|
|
9
|
+
id: 'salesforce',
|
|
10
|
+
name: 'Salesforce',
|
|
11
|
+
subtitle: 'Automate and sync CRM records.',
|
|
12
|
+
category: 'CRM',
|
|
13
|
+
exampleScopes: ['api', 'chatter_api'],
|
|
14
|
+
iconUrl: simpleIcon('salesforce', '#00A1E0'),
|
|
15
|
+
iconFallbackLabel: 'SF',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
id: 'slack',
|
|
19
|
+
name: 'Slack User',
|
|
20
|
+
subtitle: 'Send messages and manage Slack as a user.',
|
|
21
|
+
category: 'Communication',
|
|
22
|
+
exampleScopes: ['channels:read', 'chat:write'],
|
|
23
|
+
iconUrl: simpleIcon('slack', '#4A154B'),
|
|
24
|
+
iconFallbackLabel: 'SL',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
id: 'slackbot',
|
|
28
|
+
name: 'Slack Bot',
|
|
29
|
+
subtitle: 'Post as a branded bot in your Slack workspace.',
|
|
30
|
+
category: 'Communication',
|
|
31
|
+
exampleScopes: ['chat:write', 'chat:write.public', 'chat:write.customize'],
|
|
32
|
+
iconUrl: simpleIcon('slack', '#4A154B'),
|
|
33
|
+
iconFallbackLabel: 'SL',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
id: 'notion',
|
|
37
|
+
name: 'Notion',
|
|
38
|
+
subtitle: 'Organize and sync knowledge or project data.',
|
|
39
|
+
category: 'Productivity',
|
|
40
|
+
exampleScopes: [],
|
|
41
|
+
iconUrl: simpleIcon('notion', '#000000'),
|
|
42
|
+
iconFallbackLabel: 'NO',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
id: 'googlecalendar',
|
|
46
|
+
name: 'Google Calendar',
|
|
47
|
+
subtitle: 'Manage your schedule and calendar events.',
|
|
48
|
+
category: 'Productivity',
|
|
49
|
+
exampleScopes: ['https://www.googleapis.com/auth/calendar.readonly', 'https://www.googleapis.com/auth/calendar.events'],
|
|
50
|
+
supportsReadOnly: true,
|
|
51
|
+
accessModes: {
|
|
52
|
+
readOnly: ['https://www.googleapis.com/auth/calendar.readonly'],
|
|
53
|
+
fullAccess: ['https://www.googleapis.com/auth/calendar.readonly', 'https://www.googleapis.com/auth/calendar.events'],
|
|
54
|
+
},
|
|
55
|
+
iconUrl: simpleIcon('googlecalendar', '#4285F4'),
|
|
56
|
+
iconFallbackLabel: 'GC',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
id: 'googledrive',
|
|
60
|
+
name: 'Google Drive',
|
|
61
|
+
subtitle: 'Export and back up app-generated files.',
|
|
62
|
+
category: 'Productivity',
|
|
63
|
+
exampleScopes: ['https://www.googleapis.com/auth/drive.file', 'https://www.googleapis.com/auth/drive.readonly'],
|
|
64
|
+
iconUrl: simpleIcon('googledrive', '#4285F4'),
|
|
65
|
+
iconFallbackLabel: 'GD',
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
id: 'gmail',
|
|
69
|
+
name: 'Gmail',
|
|
70
|
+
subtitle: 'Automate email sending and inbox management.',
|
|
71
|
+
category: 'Communication',
|
|
72
|
+
exampleScopes: ['https://www.googleapis.com/auth/gmail.readonly', 'https://www.googleapis.com/auth/gmail.send'],
|
|
73
|
+
supportsReadOnly: true,
|
|
74
|
+
accessModes: {
|
|
75
|
+
readOnly: ['https://www.googleapis.com/auth/gmail.readonly'],
|
|
76
|
+
fullAccess: ['https://www.googleapis.com/auth/gmail.readonly', 'https://www.googleapis.com/auth/gmail.send'],
|
|
77
|
+
},
|
|
78
|
+
iconUrl: simpleIcon('gmail', '#EA4335'),
|
|
79
|
+
iconFallbackLabel: 'GM',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
id: 'googlesheets',
|
|
83
|
+
name: 'Google Sheets',
|
|
84
|
+
subtitle: 'Sync and manage spreadsheet data.',
|
|
85
|
+
category: 'Productivity',
|
|
86
|
+
exampleScopes: ['https://www.googleapis.com/auth/spreadsheets', 'https://www.googleapis.com/auth/spreadsheets.readonly'],
|
|
87
|
+
supportsReadOnly: true,
|
|
88
|
+
accessModes: {
|
|
89
|
+
readOnly: ['https://www.googleapis.com/auth/spreadsheets.readonly'],
|
|
90
|
+
fullAccess: ['https://www.googleapis.com/auth/spreadsheets'],
|
|
91
|
+
},
|
|
92
|
+
iconUrl: simpleIcon('googlesheets', '#34A853'),
|
|
93
|
+
iconFallbackLabel: 'GS',
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
id: 'googleslides',
|
|
97
|
+
name: 'Google Slides',
|
|
98
|
+
subtitle: 'Generate and manage presentations.',
|
|
99
|
+
category: 'Productivity',
|
|
100
|
+
exampleScopes: ['https://www.googleapis.com/auth/presentations', 'https://www.googleapis.com/auth/presentations.readonly'],
|
|
101
|
+
supportsReadOnly: true,
|
|
102
|
+
accessModes: {
|
|
103
|
+
readOnly: ['https://www.googleapis.com/auth/presentations.readonly'],
|
|
104
|
+
fullAccess: ['https://www.googleapis.com/auth/presentations'],
|
|
105
|
+
},
|
|
106
|
+
iconUrl: simpleIcon('googleslides', '#F9AB00'),
|
|
107
|
+
iconFallbackLabel: 'GS',
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
id: 'googledocs',
|
|
111
|
+
name: 'Google Docs',
|
|
112
|
+
subtitle: 'Manage and automate document creation.',
|
|
113
|
+
category: 'Productivity',
|
|
114
|
+
exampleScopes: ['https://www.googleapis.com/auth/documents', 'https://www.googleapis.com/auth/documents.readonly'],
|
|
115
|
+
supportsReadOnly: true,
|
|
116
|
+
accessModes: {
|
|
117
|
+
readOnly: ['https://www.googleapis.com/auth/documents.readonly'],
|
|
118
|
+
fullAccess: ['https://www.googleapis.com/auth/documents'],
|
|
119
|
+
},
|
|
120
|
+
iconUrl: simpleIcon('googledocs', '#4285F4'),
|
|
121
|
+
iconFallbackLabel: 'GD',
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
id: 'googlebigquery',
|
|
125
|
+
name: 'Google BigQuery',
|
|
126
|
+
subtitle: 'Query and sync analytics data.',
|
|
127
|
+
category: 'Data & Analytics',
|
|
128
|
+
iconUrl: simpleIcon('googlebigquery', '#669DF6'),
|
|
129
|
+
iconFallbackLabel: 'BQ',
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
id: 'googletasks',
|
|
133
|
+
name: 'Google Tasks',
|
|
134
|
+
subtitle: 'Manage to-do lists and tasks.',
|
|
135
|
+
category: 'Productivity',
|
|
136
|
+
exampleScopes: ['https://www.googleapis.com/auth/tasks'],
|
|
137
|
+
supportsReadOnly: true,
|
|
138
|
+
accessModes: {
|
|
139
|
+
readOnly: ['https://www.googleapis.com/auth/tasks.readonly'],
|
|
140
|
+
fullAccess: ['https://www.googleapis.com/auth/tasks'],
|
|
141
|
+
},
|
|
142
|
+
iconUrl: simpleIcon('googletasks', '#2684FC'),
|
|
143
|
+
iconFallbackLabel: 'GT',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
id: 'googlemeet',
|
|
147
|
+
name: 'Google Meet',
|
|
148
|
+
subtitle: 'Video conferences and meetings.',
|
|
149
|
+
category: 'Communication',
|
|
150
|
+
iconUrl: simpleIcon('googlemeet', '#00897B'),
|
|
151
|
+
iconFallbackLabel: 'GM',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
id: 'hubspot',
|
|
155
|
+
name: 'HubSpot',
|
|
156
|
+
subtitle: 'Sync CRM data and automate marketing.',
|
|
157
|
+
category: 'CRM',
|
|
158
|
+
exampleScopes: ['cms.domains.read', 'cms.domains.write'],
|
|
159
|
+
iconUrl: simpleIcon('hubspot', '#FF7A59'),
|
|
160
|
+
iconFallbackLabel: 'HS',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
id: 'linkedin',
|
|
164
|
+
name: 'LinkedIn',
|
|
165
|
+
subtitle: 'Share updates and access professional profiles.',
|
|
166
|
+
category: 'Social',
|
|
167
|
+
exampleScopes: ['profile', 'w_member_social'],
|
|
168
|
+
iconUrl: simpleIcon('linkedin', '#0A66C2'),
|
|
169
|
+
iconFallbackLabel: 'IN',
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
id: 'tiktok',
|
|
173
|
+
name: 'TikTok',
|
|
174
|
+
subtitle: 'Track your profile stats and browse your videos.',
|
|
175
|
+
category: 'Social Media',
|
|
176
|
+
exampleScopes: ['user.info.basic', 'video.list'],
|
|
177
|
+
iconUrl: simpleIcon('tiktok', '#000000'),
|
|
178
|
+
iconFallbackLabel: 'TT',
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
id: 'discord',
|
|
182
|
+
name: 'Discord',
|
|
183
|
+
subtitle: 'Notify channels and integrate with your Discord community.',
|
|
184
|
+
category: 'Communication',
|
|
185
|
+
exampleScopes: ['identify', 'guilds', 'messages.read'],
|
|
186
|
+
iconUrl: simpleIcon('discord', '#5865F2'),
|
|
187
|
+
iconFallbackLabel: 'DI',
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
id: 'wix',
|
|
191
|
+
name: 'Wix',
|
|
192
|
+
subtitle: 'Access Wix site data and business tools.',
|
|
193
|
+
category: 'Website & E-commerce',
|
|
194
|
+
exampleScopes: ['offline_access'],
|
|
195
|
+
iconUrl: simpleIcon('wix', '#0C6EFC'),
|
|
196
|
+
iconFallbackLabel: 'WX',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
id: 'github',
|
|
200
|
+
name: 'GitHub',
|
|
201
|
+
subtitle: 'Manage repos, issues, and pull requests.',
|
|
202
|
+
category: 'Development',
|
|
203
|
+
exampleScopes: ['read:user', 'read:org'],
|
|
204
|
+
supportsReadOnly: true,
|
|
205
|
+
accessModes: {
|
|
206
|
+
readOnly: ['read:user', 'read:org'],
|
|
207
|
+
fullAccess: ['read:user', 'read:org', 'repo'],
|
|
208
|
+
},
|
|
209
|
+
iconUrl: simpleIcon('github', '#181717'),
|
|
210
|
+
iconFallbackLabel: 'GH',
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
id: 'gitlab',
|
|
214
|
+
name: 'GitLab',
|
|
215
|
+
subtitle: 'Manage projects, MRs, and CI/CD pipelines.',
|
|
216
|
+
category: 'Development',
|
|
217
|
+
exampleScopes: ['read_user', 'api'],
|
|
218
|
+
iconUrl: simpleIcon('gitlab', '#FC6D26'),
|
|
219
|
+
iconFallbackLabel: 'GL',
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
id: 'bamboohr',
|
|
223
|
+
name: 'BambooHR',
|
|
224
|
+
subtitle: 'Employee directory and HR management.',
|
|
225
|
+
category: 'HR',
|
|
226
|
+
exampleScopes: ['openid', 'employee'],
|
|
227
|
+
requiresConnectionConfig: true,
|
|
228
|
+
iconUrl: simpleIcon('bamboohr', '#75C044'),
|
|
229
|
+
iconFallbackLabel: 'BH',
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
id: 'wrike',
|
|
233
|
+
name: 'Wrike',
|
|
234
|
+
subtitle: 'Project planning and team coordination.',
|
|
235
|
+
category: 'Project Management',
|
|
236
|
+
iconUrl: simpleIcon('wrike', '#08CF65'),
|
|
237
|
+
iconFallbackLabel: 'WR',
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
id: 'box',
|
|
241
|
+
name: 'Box',
|
|
242
|
+
subtitle: 'Secure cloud content management.',
|
|
243
|
+
category: 'Productivity',
|
|
244
|
+
iconUrl: simpleIcon('box', '#0061D5'),
|
|
245
|
+
iconFallbackLabel: 'BX',
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
id: 'clickup',
|
|
249
|
+
name: 'ClickUp',
|
|
250
|
+
subtitle: 'Organize projects and track team work.',
|
|
251
|
+
category: 'Project Management',
|
|
252
|
+
iconUrl: simpleIcon('clickup', '#7B68EE'),
|
|
253
|
+
iconFallbackLabel: 'CU',
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
id: 'google_analytics',
|
|
257
|
+
name: 'Google Analytics',
|
|
258
|
+
subtitle: 'Track website traffic and user insights.',
|
|
259
|
+
category: 'Data & Analytics',
|
|
260
|
+
iconUrl: simpleIcon('googleanalytics', '#E37400'),
|
|
261
|
+
iconFallbackLabel: 'GA',
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
id: 'outlook',
|
|
265
|
+
name: 'Outlook',
|
|
266
|
+
subtitle: 'Email and calendar.',
|
|
267
|
+
category: 'Communication',
|
|
268
|
+
exampleScopes: ['Mail.ReadWrite', 'Calendars.ReadWrite', 'Mail.Send'],
|
|
269
|
+
supportsReadOnly: true,
|
|
270
|
+
accessModes: {
|
|
271
|
+
readOnly: ['Mail.Read', 'Calendars.Read'],
|
|
272
|
+
fullAccess: ['Mail.ReadWrite', 'Calendars.ReadWrite', 'Mail.Send'],
|
|
273
|
+
},
|
|
274
|
+
iconUrl: simpleIcon('microsoftoutlook', '#0078D4'),
|
|
275
|
+
iconFallbackLabel: 'OU',
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
id: 'linear',
|
|
279
|
+
name: 'Linear',
|
|
280
|
+
subtitle: 'Issue tracking and project management.',
|
|
281
|
+
category: 'Project Management',
|
|
282
|
+
exampleScopes: ['read', 'write'],
|
|
283
|
+
supportsReadOnly: true,
|
|
284
|
+
accessModes: {
|
|
285
|
+
readOnly: ['read'],
|
|
286
|
+
fullAccess: ['read', 'write'],
|
|
287
|
+
},
|
|
288
|
+
iconUrl: simpleIcon('linear', '#5E6AD2'),
|
|
289
|
+
iconFallbackLabel: 'LI',
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
id: 'dropbox',
|
|
293
|
+
name: 'Dropbox',
|
|
294
|
+
subtitle: 'Store and sync files in the cloud.',
|
|
295
|
+
category: 'Productivity',
|
|
296
|
+
exampleScopes: ['files.metadata.read', 'files.content.read', 'files.content.write'],
|
|
297
|
+
supportsReadOnly: true,
|
|
298
|
+
accessModes: {
|
|
299
|
+
readOnly: ['files.metadata.read', 'files.content.read'],
|
|
300
|
+
fullAccess: ['files.metadata.read', 'files.content.read', 'files.content.write'],
|
|
301
|
+
},
|
|
302
|
+
iconUrl: simpleIcon('dropbox', '#0061FF'),
|
|
303
|
+
iconFallbackLabel: 'DB',
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
id: 'google_search_console',
|
|
307
|
+
name: 'Google Search Console',
|
|
308
|
+
subtitle: 'SEO and search analytics.',
|
|
309
|
+
category: 'Data & Analytics',
|
|
310
|
+
iconUrl: simpleIcon('googlesearchconsole', '#458CF5'),
|
|
311
|
+
iconFallbackLabel: 'SC',
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
id: 'google_classroom',
|
|
315
|
+
name: 'Google Classroom',
|
|
316
|
+
subtitle: 'Education and course management.',
|
|
317
|
+
category: 'Productivity',
|
|
318
|
+
iconUrl: simpleIcon('googleclassroom', '#0F9D58'),
|
|
319
|
+
iconFallbackLabel: 'GC',
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
id: 'airtable',
|
|
323
|
+
name: 'Airtable',
|
|
324
|
+
subtitle: 'Flexible databases and spreadsheets.',
|
|
325
|
+
category: 'Productivity',
|
|
326
|
+
exampleScopes: ['data.records:read', 'data.records:write', 'schema.bases:read'],
|
|
327
|
+
supportsReadOnly: true,
|
|
328
|
+
accessModes: {
|
|
329
|
+
readOnly: ['data.records:read', 'schema.bases:read'],
|
|
330
|
+
fullAccess: ['data.records:read', 'data.records:write', 'schema.bases:read'],
|
|
331
|
+
},
|
|
332
|
+
iconUrl: simpleIcon('airtable', '#18BFFF'),
|
|
333
|
+
iconFallbackLabel: 'AT',
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
id: 'splitwise',
|
|
337
|
+
name: 'Splitwise',
|
|
338
|
+
subtitle: 'Expense splitting and group bills.',
|
|
339
|
+
category: 'Finance',
|
|
340
|
+
iconUrl: simpleIcon('splitwise', '#1CC29F'),
|
|
341
|
+
iconFallbackLabel: 'SW',
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
id: 'microsoft_teams',
|
|
345
|
+
name: 'Microsoft Teams',
|
|
346
|
+
subtitle: 'Team chat, channels, and meetings.',
|
|
347
|
+
category: 'Communication',
|
|
348
|
+
iconUrl: simpleIcon('microsoftteams', '#6264A7'),
|
|
349
|
+
iconFallbackLabel: 'MT',
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
id: 'share_point',
|
|
353
|
+
name: 'Microsoft SharePoint',
|
|
354
|
+
subtitle: 'Document management and collaboration.',
|
|
355
|
+
category: 'Documents',
|
|
356
|
+
requiresConnectionConfig: true,
|
|
357
|
+
iconUrl: simpleIcon('microsoftsharepoint', '#0078D4'),
|
|
358
|
+
iconFallbackLabel: 'SP',
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
id: 'one_drive',
|
|
362
|
+
name: 'Microsoft OneDrive',
|
|
363
|
+
subtitle: 'Cloud file storage.',
|
|
364
|
+
category: 'Productivity',
|
|
365
|
+
exampleScopes: ['Files.ReadWrite.All'],
|
|
366
|
+
supportsReadOnly: true,
|
|
367
|
+
accessModes: {
|
|
368
|
+
readOnly: ['Files.Read.All'],
|
|
369
|
+
fullAccess: ['Files.ReadWrite.All'],
|
|
370
|
+
},
|
|
371
|
+
iconUrl: simpleIcon('microsoftonedrive', '#0078D4'),
|
|
372
|
+
iconFallbackLabel: 'OD',
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
id: 'typeform',
|
|
376
|
+
name: 'Typeform',
|
|
377
|
+
subtitle: 'Forms, surveys, and data collection.',
|
|
378
|
+
category: 'Forms & Surveys',
|
|
379
|
+
iconUrl: simpleIcon('typeform', '#262627'),
|
|
380
|
+
iconFallbackLabel: 'TF',
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
id: 'hugging_face',
|
|
384
|
+
name: 'Hugging Face',
|
|
385
|
+
subtitle: 'AI inference and model repos.',
|
|
386
|
+
category: 'AI & ML',
|
|
387
|
+
iconUrl: simpleIcon('huggingface', '#FFD21E'),
|
|
388
|
+
iconFallbackLabel: 'HF',
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
id: 'calendly',
|
|
392
|
+
name: 'Calendly',
|
|
393
|
+
subtitle: 'Automated appointment scheduling.',
|
|
394
|
+
category: 'Scheduling',
|
|
395
|
+
iconUrl: simpleIcon('calendly', '#006BFF'),
|
|
396
|
+
iconFallbackLabel: 'CA',
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
id: 'contentful',
|
|
400
|
+
name: 'Contentful',
|
|
401
|
+
subtitle: 'Headless CMS and content management.',
|
|
402
|
+
category: 'Developer Tools',
|
|
403
|
+
iconUrl: simpleIcon('contentful', '#2478CC'),
|
|
404
|
+
iconFallbackLabel: 'CF',
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
id: 'supabase',
|
|
408
|
+
name: 'Supabase',
|
|
409
|
+
subtitle: 'Query, store, and manage data via Postgres and APIs.',
|
|
410
|
+
category: 'Developer Tools',
|
|
411
|
+
iconUrl: simpleIcon('supabase', '#3FCF8E'),
|
|
412
|
+
iconFallbackLabel: 'SB',
|
|
413
|
+
},
|
|
414
|
+
];
|