From 3df7d754e3b2750568c511f53ab8246d6f86791d Mon Sep 17 00:00:00 2001 From: Paul Cornell Date: Tue, 14 Jan 2025 10:15:14 -0800 Subject: [PATCH] Platform: Couchbase and PostgreSQL source connectors --- mint.json | 4 ++++ platform/api/sources/overview.mdx | 2 ++ platform/connectors.mdx | 2 ++ platform/sources/overview.mdx | 2 ++ snippets/source_connectors/postgresql_rest_change.mdx | 2 +- snippets/source_connectors/postgresql_rest_create.mdx | 2 +- 6 files changed, 12 insertions(+), 2 deletions(-) diff --git a/mint.json b/mint.json index 2c8cc972..8a1c756a 100644 --- a/mint.json +++ b/mint.json @@ -480,6 +480,7 @@ "platform/sources/overview", "platform/sources/azure-blob-storage", "platform/sources/confluence", + "platform/sources/couchbase", "platform/sources/databricks-volumes", "platform/sources/dropbox", "platform/sources/elasticsearch", @@ -488,6 +489,7 @@ "platform/sources/mongodb", "platform/sources/onedrive", "platform/sources/outlook", + "platform/sources/postgresql", "platform/sources/s3", "platform/sources/salesforce", "platform/sources/sharepoint" @@ -526,6 +528,7 @@ "platform/api/sources/overview", "platform/api/sources/azure-blob-storage", "platform/api/sources/confluence", + "platform/api/sources/couchbase", "platform/api/sources/databricks-volumes", "platform/api/sources/dropbox", "platform/api/sources/elasticsearch", @@ -534,6 +537,7 @@ "platform/api/sources/mongodb", "platform/api/sources/onedrive", "platform/api/sources/outlook", + "platform/api/sources/postgresql", "platform/api/sources/s3", "platform/api/sources/salesforce", "platform/api/sources/sharepoint" diff --git a/platform/api/sources/overview.mdx b/platform/api/sources/overview.mdx index c52b6e30..5f9d3f64 100644 --- a/platform/api/sources/overview.mdx +++ b/platform/api/sources/overview.mdx @@ -15,6 +15,7 @@ For the list of specific settings, see: - [Azure](/platform/api/sources/azure-blob-storage) (`source_type=azure`) - [Confluence](/platform/api/sources/confluence) (`source_type=confluence`) +- [Couchbase](/platform/api/sources/couchbase) (`source_type=couchbase`) - [Databricks Volumes](/platform/api/sources/databricks-volumes) (`source_type=databricks_volumes`) - [Dropbox](/platform/api/sources/dropbox) (`source_type=dropbox`) - [Elasticsearch](/platform/api/sources/elasticsearch) (`source_type=elasticsearch`) @@ -23,6 +24,7 @@ For the list of specific settings, see: - [MongoDB](/platform/api/sources/mongodb) (`source_type=mongodb`) - [OneDrive](/platform/api/sources/onedrive) (`source_type=onedrive`) - [Outlook](/platform/api/sources/outlook) (`source_type=outlook`) +- [PostgreSQL](/platform/api/sources/postgresql) (`source_type=postgres`) - [S3](/platform/api/sources/s3) (`source_type=s3`) - [Salesforce](/platform/api/sources/salesforce) (`source_type=salesforce`) - [SharePoint](/platform/api/sources/sharepoint) (`source_type=sharepoint`) diff --git a/platform/connectors.mdx b/platform/connectors.mdx index 669749df..8167c424 100644 --- a/platform/connectors.mdx +++ b/platform/connectors.mdx @@ -13,6 +13,7 @@ The Unstructured Platform supports connecting to the following source and destin - [Azure](/platform/sources/azure-blob-storage) - [Confluence](/platform/sources/confluence) +- [Couchbase](/platform/sources/couchbase) - [Databricks Volumes](/platform/sources/databricks-volumes) - [Dropbox](/platform/sources/dropbox) - [Elasticsearch](/platform/sources/elasticsearch) @@ -21,6 +22,7 @@ The Unstructured Platform supports connecting to the following source and destin - [MongoDB](/platform/sources/mongodb) - [OneDrive](/platform/sources/onedrive) - [Outlook](/platform/sources/outlook) +- [PostgreSQL](/platform/sources/postgresql) - [S3](/platform/sources/s3) - [Salesforce](/platform/sources/salesforce) - [SharePoint](/platform/sources/sharepoint) diff --git a/platform/sources/overview.mdx b/platform/sources/overview.mdx index b705718c..f84743ef 100644 --- a/platform/sources/overview.mdx +++ b/platform/sources/overview.mdx @@ -20,6 +20,7 @@ To create a source connector: - [Azure](/platform/sources/azure-blob-storage) - [Confluence](/platform/sources/confluence) + - [Couchbase](/platform/sources/couchbase) - [Databricks Volumes](/platform/sources/databricks-volumes) - [Dropbox](/platform/sources/dropbox) - [Elasticsearch](/platform/sources/elasticsearch) @@ -28,6 +29,7 @@ To create a source connector: - [MongoDB](/platform/sources/mongodb) - [OneDrive](/platform/sources/onedrive) - [Outlook](/platform/sources/outlook) + - [PostgreSQL](/platform/sources/postgresql) - [S3](/platform/sources/s3) - [Salesforce](/platform/sources/salesforce) - [SharePoint](/platform/source/sharepoint) diff --git a/snippets/source_connectors/postgresql_rest_change.mdx b/snippets/source_connectors/postgresql_rest_change.mdx index 331eaa4a..0be0cc31 100644 --- a/snippets/source_connectors/postgresql_rest_change.mdx +++ b/snippets/source_connectors/postgresql_rest_change.mdx @@ -1,6 +1,6 @@ ```bash REST (Change) curl --request 'PUT' --location \ -"$UNSTRUCTURED_API_URL/destinations" \ +"$UNSTRUCTURED_API_URL/sources/" \ --header 'accept: application/json' \ --header "unstructured-api-key: $UNSTRUCTURED_API_KEY" \ --header 'content-type: application/json' \ diff --git a/snippets/source_connectors/postgresql_rest_create.mdx b/snippets/source_connectors/postgresql_rest_create.mdx index 7562cc84..6421e2ec 100644 --- a/snippets/source_connectors/postgresql_rest_create.mdx +++ b/snippets/source_connectors/postgresql_rest_create.mdx @@ -1,6 +1,6 @@ ```bash REST (Create) curl --request 'POST' --location \ -"$UNSTRUCTURED_API_URL/destinations" \ +"$UNSTRUCTURED_API_URL/sources" \ --header 'accept: application/json' \ --header "unstructured-api-key: $UNSTRUCTURED_API_KEY" \ --header 'content-type: application/json' \