From 6491d141f131091e674bf1913f570daf4da6f42c Mon Sep 17 00:00:00 2001 From: nael Date: Fri, 13 Sep 2024 21:54:31 +0200 Subject: [PATCH] :bug: Fix enum.ts --- README.md | 16 ++++++++-------- packages/shared/src/connectors/enum.ts | 11 +++++------ 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 60f91bc15..004567e27 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,7 @@ Panora supports integration with the following objects across multiple platforms | Box | | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | | | Dropbox | | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | | | OneDrive | ✔️ | ✔️ | ✔️| ✔️ | ✔️ | | | +| Sharepoint | ✔️ | ✔️ | ✔️| ✔️ | ✔️ | | | ### Ecommerce Unified API @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/packages/shared/src/connectors/enum.ts b/packages/shared/src/connectors/enum.ts index 9aab0525a..b15cc0453 100644 --- a/packages/shared/src/connectors/enum.ts +++ b/packages/shared/src/connectors/enum.ts @@ -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' }