From cdd4fd8e1f225fe80ff52a158d14cbc3ca2a9965 Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Sun, 5 Mar 2023 08:10:51 +0000 Subject: [PATCH 01/13] bump 0.1.2 Signed-off-by: Sergey Chvalyuk --- airbyte-integrations/connectors/source-twitter/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-twitter/Dockerfile b/airbyte-integrations/connectors/source-twitter/Dockerfile index 20b6f57aebc234..7d6f41a1b2660f 100644 --- a/airbyte-integrations/connectors/source-twitter/Dockerfile +++ b/airbyte-integrations/connectors/source-twitter/Dockerfile @@ -34,5 +34,5 @@ COPY source_twitter ./source_twitter ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.1 +LABEL io.airbyte.version=0.1.2 LABEL io.airbyte.name=airbyte/source-twitter From 8707de56004870dd12804017fed5dfc7707c96b6 Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Sun, 5 Mar 2023 08:35:21 +0000 Subject: [PATCH 02/13] api_key -> api_token Signed-off-by: Sergey Chvalyuk --- .../source-twitter/source_twitter/manifest.yaml | 2 +- .../connectors/source-twitter/source_twitter/spec.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-twitter/source_twitter/manifest.yaml b/airbyte-integrations/connectors/source-twitter/source_twitter/manifest.yaml index 37088f784473a9..3d72eb2e6b4623 100644 --- a/airbyte-integrations/connectors/source-twitter/source_twitter/manifest.yaml +++ b/airbyte-integrations/connectors/source-twitter/source_twitter/manifest.yaml @@ -10,7 +10,7 @@ definitions: authenticator: type: "BearerAuthenticator" header: "apikey" - api_token: "{{ config['api_key'] }}" + api_token: "{{ config.api_token }}" request_parameters: query: "{{ config['query'] }}" tweet.fields: "author_id,conversation_id,created_at,in_reply_to_user_id,lang" diff --git a/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml b/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml index 011fff97a70e01..124f16ed268392 100644 --- a/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml +++ b/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml @@ -4,14 +4,14 @@ connectionSpecification: title: Twitter Spec type: object required: - - api_key + - api_token - query additionalProperties: true properties: - api_key: + api_token: type: string - title: API Key Token - description: API Key + title: Access Token + description: App only Bearer Token. See the docs for more information on how to obtain this token. airbyte_secret: true order: 0 query: From 8a43914a07b63199887f67911b8882c61e20700f Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Sun, 5 Mar 2023 11:20:45 +0000 Subject: [PATCH 03/13] improve title for `query` Signed-off-by: Sergey Chvalyuk --- .../connectors/source-twitter/source_twitter/spec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml b/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml index 124f16ed268392..9fd40ac8caffe6 100644 --- a/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml +++ b/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml @@ -16,7 +16,7 @@ connectionSpecification: order: 0 query: type: string - title: Twitter Search Query + title: Search Query description: Query for matching Tweets. You can learn how to build this query by reading build a query guide . order: 1 start_date: From 60629d751bb93524a867f21a18ca7d32300b0fed Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Sun, 5 Mar 2023 11:48:27 +0000 Subject: [PATCH 04/13] releaseStage: alpha -> beta Signed-off-by: Sergey Chvalyuk --- .../init/src/main/resources/seed/source_definitions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index dd34ae5a24290e..c98cba9ce30013 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -2008,7 +2008,7 @@ documentationUrl: https://docs.airbyte.com/integrations/sources/twitter icon: twitter.svg sourceType: api - releaseStage: alpha + releaseStage: beta allowedHosts: hosts: - api.twitter.com From 5232fa4cb06aced2789e35f5781fe32ab35006bd Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Sun, 5 Mar 2023 12:04:14 +0000 Subject: [PATCH 05/13] twitter.md updated Signed-off-by: Sergey Chvalyuk --- docs/integrations/sources/twitter.md | 54 ++++++++++++++-------------- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/docs/integrations/sources/twitter.md b/docs/integrations/sources/twitter.md index 1a89e0e58c8ef1..84f33d3297d1a7 100644 --- a/docs/integrations/sources/twitter.md +++ b/docs/integrations/sources/twitter.md @@ -1,41 +1,43 @@ -# Twitter API -API Documentation link [here](https://developer.twitter.com/en/docs/twitter-api) -## Overview +# Twitter -The Twitter API source supports full refresh syncs +This page contains the setup guide and reference information for the Twitter source connector. -### Output schema +## Prerequisites -Below output stream is available from this source: +To set up the Twitter source connector, you'll need the [App only Bearer Token](https://developer.twitter.com/en/docs/authentication/oauth-2-0/bearer-tokens). -[recent_search_tweets](https://developer.twitter.com/en/docs/twitter-api/tweets/search/api-reference/get-tweets-search-recent). +## Set up the Twitter connector in Airbyte +1. [Log into your Airbyte Cloud](https://cloud.airbyte.io/workspaces) account or navigate to the Airbyte Open Source dashboard. +2. Click **Sources** and then click **+ New source**. +3. On the Set up the source page, select **Twitter** from the Source type dropdown. +4. Enter the name for the Twitter connector. +5. For **Access Token**, enter the [App only Bearer Token](https://developer.twitter.com/en/docs/authentication/oauth-2-0/bearer-tokens). +6. For **Search Query**, enter the query for matching Tweets. You can learn how to build this query by reading [build a query guide](https://developer.twitter.com/en/docs/twitter-api/tweets/search/integrate/build-a-query). +7. For **Start Date**, enter the date in YYYY-MM-DDTHH:mm:ssZ format. The start date for retrieving tweets cannot be more than 7 days in the past. +8. For **End Date**, enter the date in YYYY-MM-DDTHH:mm:ssZ format. The end date for retrieving tweets must be a minimum of 10 seconds prior to the request time. +9. Click **Set up source**. -### Features +## Supported sync modes -| Feature | Supported? | -|:------------------|:-----------| -| Full Refresh Sync | Yes | -| Incremental Sync | No | +The Twitter source connector supports the following [sync modes](https://docs.airbyte.com/cloud/core-concepts#connection-sync-modes): -### Performance considerations +* [Full Refresh - Overwrite](https://docs.airbyte.com/understanding-airbyte/glossary#full-refresh-sync) +* [Full Refresh - Append](https://docs.airbyte.com/understanding-airbyte/connections/full-refresh-append) +* [Incremental - Append](https://docs.airbyte.com/understanding-airbyte/connections/incremental-append) -Rate limiting is mentioned in the API [docuemntation](https://developer.twitter.com/en/docs/twitter-api/rate-limits) - -## Getting started +## Supported Streams -### Requirements +* [Tweets](https://developer.twitter.com/en/docs/twitter-api/tweets/search/api-reference/get-tweets-search-recent) -* Twitter API Key. +## Performance considerations -### Connect using `API Key`: - -1. Generate an API Key as described [here](https://developer.twitter.com/en/docs/authentication/oauth-2-0/bearer-tokens). -2. Use the generated `API Key` in the Airbyte connection. +Rate limiting is mentioned in the API [docuemntation](https://developer.twitter.com/en/docs/twitter-api/rate-limits) ## Changelog -| Version | Date | Pull Request | Subject | -|:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------| -| 0.1.1 | 2023-03-03 | [23661](https://github.com/airbytehq/airbyte/pull/23661) | Incremental added for the "tweets" stream | -| 0.1.0 | 2022-11-01 | [18883](https://github.com/airbytehq/airbyte/pull/18858) | 🎉 New Source: Twitter | +| Version | Date | Pull Request | Subject | +|:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------| +| 0.1.2 | 2023-03-05 | [23749](https://github.com/airbytehq/airbyte/pull/23749) | Spec and docs are improved for beta certification | +| 0.1.1 | 2023-03-03 | [23661](https://github.com/airbytehq/airbyte/pull/23661) | Incremental added for the "tweets" stream | +| 0.1.0 | 2022-11-01 | [18883](https://github.com/airbytehq/airbyte/pull/18858) | 🎉 New Source: Twitter | From f8e2f9dde59470548f5901719f79d98f9db82387 Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Sun, 5 Mar 2023 12:06:08 +0000 Subject: [PATCH 06/13] airbyte.io -> airbyte.com Signed-off-by: Sergey Chvalyuk --- docs/integrations/sources/twitter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/sources/twitter.md b/docs/integrations/sources/twitter.md index 84f33d3297d1a7..d4c18d8a5cc021 100644 --- a/docs/integrations/sources/twitter.md +++ b/docs/integrations/sources/twitter.md @@ -8,7 +8,7 @@ To set up the Twitter source connector, you'll need the [App only Bearer Token]( ## Set up the Twitter connector in Airbyte -1. [Log into your Airbyte Cloud](https://cloud.airbyte.io/workspaces) account or navigate to the Airbyte Open Source dashboard. +1. [Log into your Airbyte Cloud](https://cloud.airbyte.com/workspaces) account or navigate to the Airbyte Open Source dashboard. 2. Click **Sources** and then click **+ New source**. 3. On the Set up the source page, select **Twitter** from the Source type dropdown. 4. Enter the name for the Twitter connector. From 5f521a895863a1db05bfe49949d8e5026e24552d Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Sun, 5 Mar 2023 12:07:55 +0000 Subject: [PATCH 07/13] quote format Signed-off-by: Sergey Chvalyuk --- docs/integrations/sources/twitter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integrations/sources/twitter.md b/docs/integrations/sources/twitter.md index d4c18d8a5cc021..bac26fee9d7498 100644 --- a/docs/integrations/sources/twitter.md +++ b/docs/integrations/sources/twitter.md @@ -14,8 +14,8 @@ To set up the Twitter source connector, you'll need the [App only Bearer Token]( 4. Enter the name for the Twitter connector. 5. For **Access Token**, enter the [App only Bearer Token](https://developer.twitter.com/en/docs/authentication/oauth-2-0/bearer-tokens). 6. For **Search Query**, enter the query for matching Tweets. You can learn how to build this query by reading [build a query guide](https://developer.twitter.com/en/docs/twitter-api/tweets/search/integrate/build-a-query). -7. For **Start Date**, enter the date in YYYY-MM-DDTHH:mm:ssZ format. The start date for retrieving tweets cannot be more than 7 days in the past. -8. For **End Date**, enter the date in YYYY-MM-DDTHH:mm:ssZ format. The end date for retrieving tweets must be a minimum of 10 seconds prior to the request time. +7. For **Start Date**, enter the date in `YYYY-MM-DDTHH:mm:ssZ` format. The start date for retrieving tweets cannot be more than 7 days in the past. +8. For **End Date**, enter the date in `YYYY-MM-DDTHH:mm:ssZ` format. The end date for retrieving tweets must be a minimum of 10 seconds prior to the request time. 9. Click **Set up source**. ## Supported sync modes From 6d036d6fede817b82c3b1b44ca7e361fe328726b Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Sun, 5 Mar 2023 12:09:52 +0000 Subject: [PATCH 08/13] Optional added Signed-off-by: Sergey Chvalyuk --- docs/integrations/sources/twitter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integrations/sources/twitter.md b/docs/integrations/sources/twitter.md index bac26fee9d7498..81ff772d169901 100644 --- a/docs/integrations/sources/twitter.md +++ b/docs/integrations/sources/twitter.md @@ -14,8 +14,8 @@ To set up the Twitter source connector, you'll need the [App only Bearer Token]( 4. Enter the name for the Twitter connector. 5. For **Access Token**, enter the [App only Bearer Token](https://developer.twitter.com/en/docs/authentication/oauth-2-0/bearer-tokens). 6. For **Search Query**, enter the query for matching Tweets. You can learn how to build this query by reading [build a query guide](https://developer.twitter.com/en/docs/twitter-api/tweets/search/integrate/build-a-query). -7. For **Start Date**, enter the date in `YYYY-MM-DDTHH:mm:ssZ` format. The start date for retrieving tweets cannot be more than 7 days in the past. -8. For **End Date**, enter the date in `YYYY-MM-DDTHH:mm:ssZ` format. The end date for retrieving tweets must be a minimum of 10 seconds prior to the request time. +7. For **Start Date (Optional)**, enter the date in `YYYY-MM-DDTHH:mm:ssZ` format. The start date for retrieving tweets cannot be more than 7 days in the past. +8. For **End Date (Optional)**, enter the date in `YYYY-MM-DDTHH:mm:ssZ` format. The end date for retrieving tweets must be a minimum of 10 seconds prior to the request time. 9. Click **Set up source**. ## Supported sync modes From be1bc5661ed68f22f3b87af4bb0defcf44c9e4b6 Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Mon, 6 Mar 2023 08:08:19 +0000 Subject: [PATCH 09/13] bump 0.2.0 Signed-off-by: Sergey Chvalyuk --- airbyte-integrations/connectors/source-twitter/Dockerfile | 2 +- docs/integrations/sources/twitter.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-twitter/Dockerfile b/airbyte-integrations/connectors/source-twitter/Dockerfile index 7d6f41a1b2660f..0100cdf37115c6 100644 --- a/airbyte-integrations/connectors/source-twitter/Dockerfile +++ b/airbyte-integrations/connectors/source-twitter/Dockerfile @@ -34,5 +34,5 @@ COPY source_twitter ./source_twitter ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.2 +LABEL io.airbyte.version=0.2.0 LABEL io.airbyte.name=airbyte/source-twitter diff --git a/docs/integrations/sources/twitter.md b/docs/integrations/sources/twitter.md index 81ff772d169901..28c6d0da93ea74 100644 --- a/docs/integrations/sources/twitter.md +++ b/docs/integrations/sources/twitter.md @@ -38,6 +38,6 @@ Rate limiting is mentioned in the API [docuemntation](https://developer.twitter. | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------| -| 0.1.2 | 2023-03-05 | [23749](https://github.com/airbytehq/airbyte/pull/23749) | Spec and docs are improved for beta certification | +| 0.2.0 | 2023-03-05 | [23749](https://github.com/airbytehq/airbyte/pull/23749) | Spec and docs are improved for beta certification | | 0.1.1 | 2023-03-03 | [23661](https://github.com/airbytehq/airbyte/pull/23661) | Incremental added for the "tweets" stream | | 0.1.0 | 2022-11-01 | [18883](https://github.com/airbytehq/airbyte/pull/18858) | 🎉 New Source: Twitter | From 8f116b1290d3ab5712135420c2d9146145543c8f Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Mon, 6 Mar 2023 08:14:24 +0000 Subject: [PATCH 10/13] backward_compatibility_tests_config added Signed-off-by: Sergey Chvalyuk --- .../connectors/source-twitter/acceptance-test-config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airbyte-integrations/connectors/source-twitter/acceptance-test-config.yml b/airbyte-integrations/connectors/source-twitter/acceptance-test-config.yml index 554dff2042aca7..28f4102f46ea47 100644 --- a/airbyte-integrations/connectors/source-twitter/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-twitter/acceptance-test-config.yml @@ -6,6 +6,8 @@ acceptance_tests: spec: tests: - spec_path: "source_twitter/spec.yaml" + backward_compatibility_tests_config: + disable_for_version: "0.1.1" connection: tests: - config_path: "secrets/config.json" From bc8b200914e4502df4f10dc92ae3ffebc32d0b22 Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Mon, 6 Mar 2023 09:38:43 +0000 Subject: [PATCH 11/13] api_token -> api_key Signed-off-by: Sergey Chvalyuk --- airbyte-integrations/connectors/source-twitter/Dockerfile | 2 +- .../connectors/source-twitter/acceptance-test-config.yml | 2 -- .../connectors/source-twitter/source_twitter/manifest.yaml | 2 +- .../connectors/source-twitter/source_twitter/spec.yaml | 4 ++-- docs/integrations/sources/twitter.md | 2 +- 5 files changed, 5 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-twitter/Dockerfile b/airbyte-integrations/connectors/source-twitter/Dockerfile index 0100cdf37115c6..7d6f41a1b2660f 100644 --- a/airbyte-integrations/connectors/source-twitter/Dockerfile +++ b/airbyte-integrations/connectors/source-twitter/Dockerfile @@ -34,5 +34,5 @@ COPY source_twitter ./source_twitter ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.2.0 +LABEL io.airbyte.version=0.1.2 LABEL io.airbyte.name=airbyte/source-twitter diff --git a/airbyte-integrations/connectors/source-twitter/acceptance-test-config.yml b/airbyte-integrations/connectors/source-twitter/acceptance-test-config.yml index 28f4102f46ea47..554dff2042aca7 100644 --- a/airbyte-integrations/connectors/source-twitter/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-twitter/acceptance-test-config.yml @@ -6,8 +6,6 @@ acceptance_tests: spec: tests: - spec_path: "source_twitter/spec.yaml" - backward_compatibility_tests_config: - disable_for_version: "0.1.1" connection: tests: - config_path: "secrets/config.json" diff --git a/airbyte-integrations/connectors/source-twitter/source_twitter/manifest.yaml b/airbyte-integrations/connectors/source-twitter/source_twitter/manifest.yaml index 3d72eb2e6b4623..01feb6f08c2bad 100644 --- a/airbyte-integrations/connectors/source-twitter/source_twitter/manifest.yaml +++ b/airbyte-integrations/connectors/source-twitter/source_twitter/manifest.yaml @@ -10,7 +10,7 @@ definitions: authenticator: type: "BearerAuthenticator" header: "apikey" - api_token: "{{ config.api_token }}" + api_token: "{{ config.api_key }}" request_parameters: query: "{{ config['query'] }}" tweet.fields: "author_id,conversation_id,created_at,in_reply_to_user_id,lang" diff --git a/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml b/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml index 9fd40ac8caffe6..9f291b778b9b4c 100644 --- a/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml +++ b/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml @@ -4,11 +4,11 @@ connectionSpecification: title: Twitter Spec type: object required: - - api_token + - api_key - query additionalProperties: true properties: - api_token: + api_key: type: string title: Access Token description: App only Bearer Token. See the docs for more information on how to obtain this token. diff --git a/docs/integrations/sources/twitter.md b/docs/integrations/sources/twitter.md index 28c6d0da93ea74..074c3587ebbcb8 100644 --- a/docs/integrations/sources/twitter.md +++ b/docs/integrations/sources/twitter.md @@ -38,6 +38,6 @@ Rate limiting is mentioned in the API [docuemntation](https://developer.twitter. | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------| -| 0.2.0 | 2023-03-05 | [23749](https://github.com/airbytehq/airbyte/pull/23749) | Spec and docs are improved for beta certification | +| 0.1.2 | 2023-03-06 | [23749](https://github.com/airbytehq/airbyte/pull/23749) | Spec and docs are improved for beta certification | | 0.1.1 | 2023-03-03 | [23661](https://github.com/airbytehq/airbyte/pull/23661) | Incremental added for the "tweets" stream | | 0.1.0 | 2022-11-01 | [18883](https://github.com/airbytehq/airbyte/pull/18858) | 🎉 New Source: Twitter | From 709a463b3bd482058b0365caef3092a10c827067 Mon Sep 17 00:00:00 2001 From: Sergey Chvalyuk Date: Mon, 6 Mar 2023 14:17:13 +0000 Subject: [PATCH 12/13] format: date-time added Signed-off-by: Sergey Chvalyuk --- .../init/src/main/resources/seed/source_definitions.yaml | 2 +- .../connectors/source-twitter/source_twitter/spec.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index c98cba9ce30013..dd34ae5a24290e 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -2008,7 +2008,7 @@ documentationUrl: https://docs.airbyte.com/integrations/sources/twitter icon: twitter.svg sourceType: api - releaseStage: beta + releaseStage: alpha allowedHosts: hosts: - api.twitter.com diff --git a/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml b/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml index 9f291b778b9b4c..ff249a986e5f94 100644 --- a/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml +++ b/airbyte-integrations/connectors/source-twitter/source_twitter/spec.yaml @@ -23,9 +23,11 @@ connectionSpecification: type: string title: Start Date description: "The start date for retrieving tweets cannot be more than 7 days in the past." + format: date-time order: 2 end_date: type: string title: End Date description: "The end date for retrieving tweets must be a minimum of 10 seconds prior to the request time." + format: date-time order: 3 From a01973dc38b9c4d6fc3bcbc76b838ca4f7b1dee3 Mon Sep 17 00:00:00 2001 From: Octavia Squidington III Date: Tue, 7 Mar 2023 15:39:25 +0000 Subject: [PATCH 13/13] auto-bump connector version --- .../src/main/resources/seed/source_definitions.yaml | 2 +- .../init/src/main/resources/seed/source_specs.yaml | 11 +++++++---- connectors.md | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index 7966db937ecc91..61598eacee08e8 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -2004,7 +2004,7 @@ - name: Twitter sourceDefinitionId: d7fd4f40-5e5a-4b8b-918f-a73077f8c131 dockerRepository: airbyte/source-twitter - dockerImageTag: 0.1.1 + dockerImageTag: 0.1.2 documentationUrl: https://docs.airbyte.com/integrations/sources/twitter icon: twitter.svg sourceType: api diff --git a/airbyte-config/init/src/main/resources/seed/source_specs.yaml b/airbyte-config/init/src/main/resources/seed/source_specs.yaml index 0e5fcd986d4f22..42e77e5e27dbbf 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -15704,7 +15704,7 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-twitter:0.1.1" +- dockerImage: "airbyte/source-twitter:0.1.2" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/twitter" connectionSpecification: @@ -15718,13 +15718,14 @@ properties: api_key: type: "string" - title: "API Key Token" - description: "API Key" + title: "Access Token" + description: "App only Bearer Token. See the docs for more information on how to obtain this token." airbyte_secret: true order: 0 query: type: "string" - title: "Twitter Search Query" + title: "Search Query" description: "Query for matching Tweets. You can learn how to build this\ \ query by reading build a query guide ." @@ -15734,12 +15735,14 @@ title: "Start Date" description: "The start date for retrieving tweets cannot be more than 7\ \ days in the past." + format: "date-time" order: 2 end_date: type: "string" title: "End Date" description: "The end date for retrieving tweets must be a minimum of 10\ \ seconds prior to the request time." + format: "date-time" order: 3 supportsNormalization: false supportsDBT: false diff --git a/connectors.md b/connectors.md index 5aa155f1df7d38..1ea179a5dd8456 100644 --- a/connectors.md +++ b/connectors.md @@ -239,7 +239,7 @@ | **Trello** | Trello icon | Source | airbyte/source-trello:0.1.6 | alpha | [link](https://docs.airbyte.com/integrations/sources/trello) | [code](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-trello) | `8da67652-004c-11ec-9a03-0242ac130003` | | **Twilio** | Twilio icon | Source | airbyte/source-twilio:0.1.16 | generally_available | [link](https://docs.airbyte.com/integrations/sources/twilio) | [code](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-twilio) | `b9dc6155-672e-42ea-b10d-9f1f1fb95ab1` | | **Twilio Taskrouter** | Twilio Taskrouter icon | Source | airbyte/source-twilio-taskrouter:0.1.0 | alpha | [link](https://docs.airbyte.com/integrations/sources/twilio-taskrouter) | [code](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-twilio-taskrouter) | `2446953b-b794-429b-a9b3-c821ba992a48` | -| **Twitter** | Twitter icon | Source | airbyte/source-twitter:0.1.1 | alpha | [link](https://docs.airbyte.com/integrations/sources/twitter) | [code](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-twitter) | `d7fd4f40-5e5a-4b8b-918f-a73077f8c131` | +| **Twitter** | Twitter icon | Source | airbyte/source-twitter:0.1.2 | alpha | [link](https://docs.airbyte.com/integrations/sources/twitter) | [code](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-twitter) | `d7fd4f40-5e5a-4b8b-918f-a73077f8c131` | | **Tyntec SMS** | Tyntec SMS icon | Source | airbyte/source-tyntec-sms:0.1.0 | alpha | [link](https://docs.airbyte.com/integrations/sources/tyntec-sms) | [code](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-tyntec-sms) | `3c0c3cd1-b3e0-464a-9090-d3ceb5f92346` | | **Typeform** | Typeform icon | Source | airbyte/source-typeform:0.1.11 | beta | [link](https://docs.airbyte.com/integrations/sources/typeform) | [code](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-typeform) | `e7eff203-90bf-43e5-a240-19ea3056c474` | | **US Census** | US Census icon | Source | airbyte/source-us-census:0.1.2 | alpha | [link](https://docs.airbyte.com/integrations/sources/us-census) | [code](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-us-census) | `c4cfaeda-c757-489a-8aba-859fb08b6970` |