Skip to content

Commit

Permalink
docs[patch]: Remove deprecated Airbyte loaders from listings (#23927)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 authored Jul 10, 2024
1 parent 68fee3e commit 8dac0fb
Show file tree
Hide file tree
Showing 10 changed files with 107 additions and 1 deletion.
14 changes: 14 additions & 0 deletions docs/docs/integrations/document_loaders/airbyte_cdk.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
{
"cells": [
{
"cell_type": "raw",
"id": "bd931196",
"metadata": {
"vscode": {
"languageId": "raw"
}
},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/integrations/document_loaders/airbyte_gong.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"cells": [
{
"cell_type": "raw",
"id": "344fc5a3",
"metadata": {},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/integrations/document_loaders/airbyte_hubspot.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"cells": [
{
"cell_type": "raw",
"id": "a792e839",
"metadata": {},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/integrations/document_loaders/airbyte_json.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"cells": [
{
"cell_type": "raw",
"id": "61c2629c",
"metadata": {},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/integrations/document_loaders/airbyte_salesforce.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"cells": [
{
"cell_type": "raw",
"id": "e329385c",
"metadata": {},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/integrations/document_loaders/airbyte_shopify.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"cells": [
{
"cell_type": "raw",
"id": "3169f380",
"metadata": {},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/integrations/document_loaders/airbyte_stripe.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"cells": [
{
"cell_type": "raw",
"id": "87552e5a",
"metadata": {},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/integrations/document_loaders/airbyte_typeform.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"cells": [
{
"cell_type": "raw",
"id": "9a10cdcc",
"metadata": {},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"cells": [
{
"cell_type": "raw",
"id": "41200199",
"metadata": {},
"source": [
"---\n",
"sidebar_class_name: hidden\n",
"---"
]
},
{
"cell_type": "markdown",
"id": "1f3a5ebf",
Expand Down
14 changes: 13 additions & 1 deletion docs/scripts/document_loader_feat_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@
"""

DEPRECATED = [
"AirbyteCDKLoader",
"AirbyteGongLoader",
"AirbyteHubspotLoader",
"AirbyteJSONLoader",
"AirbyteSalesforceLoader",
"AirbyteShopifyLoader",
"AirbyteStripeLoader",
"AirbyteTypeformLoader",
"AirbyteZendeskSupportLoader",
]


def get_document_loader_table() -> str:
"""Get the table of document loaders."""
Expand Down Expand Up @@ -55,7 +67,7 @@ def get_document_loader_table() -> str:
title = ["Document Loader", "Description", "Lazy loading", "Native async support"]
rows = [title, [":-"] * 2 + [":-:"] * (len(title) - 2)]
for loader, feats in sorted(doc_loaders_feat_table.items()):
if not feats:
if not feats or loader in DEPRECATED:
continue
rows += [
[loader, feats["description"]]
Expand Down

0 comments on commit 8dac0fb

Please sign in to comment.