Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fields in source-connectors specifications: google-search-console #9186

Merged
merged 7 commits into from
Jan 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENV SENTRY_DSN "https://[email protected]/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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
}
}
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/google-search-console.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down