From 0161dd673caeac56a0cb28c3f6df7d81e5cb3228 Mon Sep 17 00:00:00 2001 From: ycherniaiev <94798230+ycherniaiev@users.noreply.github.com> Date: Wed, 5 Jan 2022 17:49:42 +0200 Subject: [PATCH] Update fields in source-connectors specifications: google-search-console (#9186) Signed-off-by: Sergey Chvalyuk Co-authored-by: Sergey Chvalyuk --- .../main/resources/seed/source_definitions.yaml | 2 +- .../source-google-search-console/Dockerfile | 2 +- .../source_google_search_console/spec.json | 15 +++++++++------ .../integrations/sources/google-search-console.md | 1 + 4 files changed, 12 insertions(+), 8 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 2cd80d54091dd..1d360c7fca4de 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -252,7 +252,7 @@ - name: Google Search Console sourceDefinitionId: eb4c9e00-db83-4d63-a386-39cfa91012a8 dockerRepository: airbyte/source-google-search-console - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 documentationUrl: https://docs.airbyte.io/integrations/sources/google-search-console icon: googlesearchconsole.svg sourceType: api diff --git a/airbyte-integrations/connectors/source-google-search-console/Dockerfile b/airbyte-integrations/connectors/source-google-search-console/Dockerfile index c14914f5360ea..ac0985737b872 100755 --- a/airbyte-integrations/connectors/source-google-search-console/Dockerfile +++ b/airbyte-integrations/connectors/source-google-search-console/Dockerfile @@ -13,5 +13,5 @@ ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENV SENTRY_DSN "https://d4b03de0c4574c78999b8d58e55243dc@o1009025.ingest.sentry.io/6102835" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=0.1.10 +LABEL io.airbyte.version=0.1.11 LABEL io.airbyte.name=airbyte/source-google-search-console diff --git a/airbyte-integrations/connectors/source-google-search-console/source_google_search_console/spec.json b/airbyte-integrations/connectors/source-google-search-console/source_google_search_console/spec.json index 26e659b8a80f3..6951a331f66ff 100755 --- a/airbyte-integrations/connectors/source-google-search-console/source_google_search_console/spec.json +++ b/airbyte-integrations/connectors/source-google-search-console/source_google_search_console/spec.json @@ -12,20 +12,23 @@ "items": { "type": "string" }, + "title": "Site URLs", "description": "Website URLs property; do not include the domain-level property in the list", "examples": ["https://example1.com", "https://example2.com"], "order": 0 }, "start_date": { "type": "string", - "description": "The date from which you'd like to replicate data in the format YYYY-MM-DD.", + "title": "Start Date", + "description": "UTC date in the format 2017-01-25. Any data before this date will not be replicated.", "examples": ["2021-01-01"], "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$", "order": 1 }, "end_date": { "type": "string", - "description": "The date from which you'd like to replicate data in the format YYYY-MM-DD. Must be greater or equal start_date field", + "title": "End Date", + "description": "UTC date in the format 2017-01-25. Any data after this date will not be replicated. Must be greater or equal to the Start Date field.", "examples": ["2021-12-12"], "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$", "order": 2 @@ -55,25 +58,25 @@ "client_id": { "title": "Client ID", "type": "string", - "description": "The Client ID of your developer application", + "description": "The Client ID of your Google Search Console developer application.", "airbyte_secret": true }, "client_secret": { "title": "Client Secret", "type": "string", - "description": "The client secret of your developer application", + "description": "The Client Secret of your Google Search Console developer application.", "airbyte_secret": true }, "access_token": { "title": "Access Token", "type": "string", - "description": "An access token generated using the above client ID and secret", + "description": "Access Token for making authenticated requests.", "airbyte_secret": true }, "refresh_token": { "title": "Refresh Token", "type": "string", - "description": "A refresh token generated using the above client ID and secret", + "description": "The token for obtaining new access token.", "airbyte_secret": true } } diff --git a/docs/integrations/sources/google-search-console.md b/docs/integrations/sources/google-search-console.md index adc26eced7e52..6a0eb2da4c490 100644 --- a/docs/integrations/sources/google-search-console.md +++ b/docs/integrations/sources/google-search-console.md @@ -96,6 +96,7 @@ You should now be ready to use the Google Workspace Admin Reports API connector | Version | Date | Pull Request | Subject | | :--- | :--- | :--- | :--- | +| `0.1.11` | 2022-01-05 | [9186](https://github.com/airbytehq/airbyte/pull/9186) | Update titles and descriptions | | `0.1.10` | 2021-12-23 | [9073](https://github.com/airbytehq/airbyte/pull/9073) | Add slicing by date range | | `0.1.9` | 2021-12-22 | [9047](https://github.com/airbytehq/airbyte/pull/9047) | Add 'order' to spec.json props | | `0.1.8` | 2021-12-21 | [8248](https://github.com/airbytehq/airbyte/pull/8248) | Enable Sentry for performance and errors tracking |