Skip to content

Commit

Permalink
🐛 Fix enum.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Sep 13, 2024
1 parent cd1b728 commit 6491d14
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ Panora supports integration with the following objects across multiple platforms
| Box | | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | |
| Dropbox | | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | |
| OneDrive | ✔️ | ✔️ | ✔️| ✔️ | ✔️ | | |
| Sharepoint | ✔️ | ✔️ | ✔️| ✔️ | ✔️ | | |

### Ecommerce Unified API

Expand All @@ -117,8 +118,8 @@ Your favourite software is missing? [Ask the community to build a connector!](ht

## 🧠 Retrieval Engine for RAG

- [ ] Access and manage data from any source, including documents, chunk & vectors
- [ ] Semantic, keyword and hybrid search against a vector database
- [x] Access and manage data from any source, including documents, chunk & vectors
- [x] Semantic, keyword and hybrid search against a vector database

## 🪄 Integrations Coming Soon

Expand All @@ -129,7 +130,7 @@ Your favourite software is missing? [Ask the community to build a connector!](ht
- [x] Redtail CRM
- [x] Wealthbox
- [x] Leadsquared
- [ ] Salesforce
- [x] Salesforce
- [ ] Affinity CRM
- [ ] Odoo
- [ ] Intelliflow
Expand All @@ -145,7 +146,6 @@ Your favourite software is missing? [Ask the community to build a connector!](ht
- [ ] Service Now
- [ ] Wrike
- [ ] Dixa
- [ ] Service Now
- [ ] Asana
- [ ] Aha
- [ ] Clickup
Expand All @@ -158,10 +158,10 @@ Your favourite software is missing? [Ask the community to build a connector!](ht

#### File Storage

- [ ] Google Drive
- [ ] Dropbox
- [ ] Sharepoint
- [ ] One Drive
- [x] Google Drive
- [x] Dropbox
- [x] Sharepoint
- [x] One Drive

#### Productivity

Expand Down
11 changes: 5 additions & 6 deletions packages/shared/src/connectors/enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ export enum TicketingConnectors {
}

export enum FilestorageConnectors {
BOX = 'box',
DROPBOX = 'dropbox',
ONEDRIVE = 'onedrive'
SHAREPOINT = 'sharepoint',
ONEDRIVE = 'onedrive',
GOOGLEDRIVE = 'googledrive'
BOX = 'box',
DROPBOX = 'dropbox',
ONEDRIVE = 'onedrive',
SHAREPOINT = 'sharepoint',
GOOGLEDRIVE = 'googledrive'
}

0 comments on commit 6491d14

Please sign in to comment.