Skip to content

Commit 0161dd6

Browse files
Update fields in source-connectors specifications: google-search-console (#9186)
Signed-off-by: Sergey Chvalyuk <[email protected]> Co-authored-by: Sergey Chvalyuk <[email protected]>
1 parent bbd5fec commit 0161dd6

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
- name: Google Search Console
253253
sourceDefinitionId: eb4c9e00-db83-4d63-a386-39cfa91012a8
254254
dockerRepository: airbyte/source-google-search-console
255-
dockerImageTag: 0.1.10
255+
dockerImageTag: 0.1.11
256256
documentationUrl: https://docs.airbyte.io/integrations/sources/google-search-console
257257
icon: googlesearchconsole.svg
258258
sourceType: api

airbyte-integrations/connectors/source-google-search-console/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
1313
ENV SENTRY_DSN "https://[email protected]/6102835"
1414
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
1515

16-
LABEL io.airbyte.version=0.1.10
16+
LABEL io.airbyte.version=0.1.11
1717
LABEL io.airbyte.name=airbyte/source-google-search-console

airbyte-integrations/connectors/source-google-search-console/source_google_search_console/spec.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,23 @@
1212
"items": {
1313
"type": "string"
1414
},
15+
"title": "Site URLs",
1516
"description": "Website URLs property; do not include the domain-level property in the list",
1617
"examples": ["https://example1.com", "https://example2.com"],
1718
"order": 0
1819
},
1920
"start_date": {
2021
"type": "string",
21-
"description": "The date from which you'd like to replicate data in the format YYYY-MM-DD.",
22+
"title": "Start Date",
23+
"description": "UTC date in the format 2017-01-25. Any data before this date will not be replicated.",
2224
"examples": ["2021-01-01"],
2325
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
2426
"order": 1
2527
},
2628
"end_date": {
2729
"type": "string",
28-
"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",
30+
"title": "End Date",
31+
"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.",
2932
"examples": ["2021-12-12"],
3033
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
3134
"order": 2
@@ -55,25 +58,25 @@
5558
"client_id": {
5659
"title": "Client ID",
5760
"type": "string",
58-
"description": "The Client ID of your developer application",
61+
"description": "The Client ID of your Google Search Console developer application.",
5962
"airbyte_secret": true
6063
},
6164
"client_secret": {
6265
"title": "Client Secret",
6366
"type": "string",
64-
"description": "The client secret of your developer application",
67+
"description": "The Client Secret of your Google Search Console developer application.",
6568
"airbyte_secret": true
6669
},
6770
"access_token": {
6871
"title": "Access Token",
6972
"type": "string",
70-
"description": "An access token generated using the above client ID and secret",
73+
"description": "Access Token for making authenticated requests.",
7174
"airbyte_secret": true
7275
},
7376
"refresh_token": {
7477
"title": "Refresh Token",
7578
"type": "string",
76-
"description": "A refresh token generated using the above client ID and secret",
79+
"description": "The token for obtaining new access token.",
7780
"airbyte_secret": true
7881
}
7982
}

docs/integrations/sources/google-search-console.md

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ You should now be ready to use the Google Workspace Admin Reports API connector
9696

9797
| Version | Date | Pull Request | Subject |
9898
| :--- | :--- | :--- | :--- |
99+
| `0.1.11` | 2022-01-05 | [9186](https://github.com/airbytehq/airbyte/pull/9186) | Update titles and descriptions |
99100
| `0.1.10` | 2021-12-23 | [9073](https://github.com/airbytehq/airbyte/pull/9073) | Add slicing by date range |
100101
| `0.1.9` | 2021-12-22 | [9047](https://github.com/airbytehq/airbyte/pull/9047) | Add 'order' to spec.json props |
101102
| `0.1.8` | 2021-12-21 | [8248](https://github.com/airbytehq/airbyte/pull/8248) | Enable Sentry for performance and errors tracking |

0 commit comments

Comments
 (0)