mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-20 23:21:06 +02:00
- Add TrelloConnector class with API integration for boards, cards, and comments - Implement Trello indexing task for background document processing - Add TRELLO_CONNECTOR enum to DocumentType and SearchSourceConnectorType - Create /trello/boards/ API endpoint for board fetching - Add TrelloCredentialsRequest Pydantic model for API validation - Implement Trello search functionality in ConnectorService - Add comprehensive test suite with 80+ test cases covering: * Unit tests for TrelloConnector class with error handling * Integration tests for API endpoints and database operations * Frontend component tests for configuration and creation pages * End-to-end workflow testing - Add test configuration with shared fixtures and mock data - Create test runner script and comprehensive documentation - Fix missing TRELLO_CONNECTOR in SearchSourceConnectorType enum - Add frontend TrelloBoard interface and connector page - Implement complete connector creation flow with board selection - Add robust error handling for API failures, timeouts, and malformed data - Include security considerations for credential handling and input validation
17 lines
638 B
TypeScript
17 lines
638 B
TypeScript
export enum EnumConnectorName {
|
|
SERPER_API = "SERPER_API",
|
|
TAVILY_API = "TAVILY_API",
|
|
LINKUP_API = "LINKUP_API",
|
|
SLACK_CONNECTOR = "SLACK_CONNECTOR",
|
|
NOTION_CONNECTOR = "NOTION_CONNECTOR",
|
|
GITHUB_CONNECTOR = "GITHUB_CONNECTOR",
|
|
LINEAR_CONNECTOR = "LINEAR_CONNECTOR",
|
|
JIRA_CONNECTOR = "JIRA_CONNECTOR",
|
|
DISCORD_CONNECTOR = "DISCORD_CONNECTOR",
|
|
CONFLUENCE_CONNECTOR = "CONFLUENCE_CONNECTOR",
|
|
CLICKUP_CONNECTOR = "CLICKUP_CONNECTOR",
|
|
GOOGLE_CALENDAR_CONNECTOR = "GOOGLE_CALENDAR_CONNECTOR",
|
|
GOOGLE_GMAIL_CONNECTOR = "GOOGLE_GMAIL_CONNECTOR",
|
|
AIRTABLE_CONNECTOR = "AIRTABLE_CONNECTOR",
|
|
TRELLO_CONNECTOR = "TRELLO_CONNECTOR",
|
|
}
|