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-analytics-v4 #9165

Merged
merged 10 commits into from
Jan 19, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "eff3616a-f9c3-11eb-9a03-0242ac130003",
"name": "Google Analytics v4",
"dockerRepository": "airbyte/source-google-analytics-v4",
"dockerImageTag": "0.1.13",
"dockerImageTag": "0.1.15",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/google-analytics-v4",
"icon": "google-analytics.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
- name: Google Analytics
sourceDefinitionId: eff3616a-f9c3-11eb-9a03-0242ac130003
dockerRepository: airbyte/source-google-analytics-v4
dockerImageTag: 0.1.14
dockerImageTag: 0.1.15
documentationUrl: https://docs.airbyte.io/integrations/sources/google-analytics-v4
icon: google-analytics.svg
sourceType: api
Expand Down
17 changes: 9 additions & 8 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2283,7 +2283,7 @@
oauthFlowOutputParameters:
- - "access_token"
- - "refresh_token"
- dockerImage: "airbyte/source-google-analytics-v4:0.1.14"
- dockerImage: "airbyte/source-google-analytics-v4:0.1.15"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/google-analytics-v4"
connectionSpecification:
Expand All @@ -2306,7 +2306,8 @@
order: 1
type: "string"
title: "Start Date"
description: "A date in the format YYYY-MM-DD."
description: "The date in the format YYYY-MM-DD. Any data before this date\
\ will not be replicated."
examples:
- "2020-06-01"
custom_reports:
Expand Down Expand Up @@ -2338,24 +2339,23 @@
client_id:
title: "Client ID"
type: "string"
description: "The Client ID of your developer application"
description: "The Client ID of your Google Analytics 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 Analytics developer\
\ application."
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 a new access token."
airbyte_secret: true
access_token:
title: "Access Token"
type: "string"
description: "A access token generated using the above client ID,\
\ secret and refresh_token"
description: "Access Token for making authenticated requests."
airbyte_secret: true
- type: "object"
title: "Service Account Key Authentication"
Expand All @@ -2370,6 +2370,7 @@
default: "Service"
order: 0
credentials_json:
title: "JSON credentials"
type: "string"
description: "The JSON key of the service account to use for authorization"
examples:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.14
LABEL io.airbyte.version=0.1.15
LABEL io.airbyte.name=airbyte/source-google-analytics-v4
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"order": 1,
"type": "string",
"title": "Start Date",
"description": "A date in the format YYYY-MM-DD.",
"description": "The date in the format YYYY-MM-DD. Any data before this date will not be replicated.",
"examples": ["2020-06-01"]
},
"custom_reports": {
Expand Down Expand Up @@ -46,25 +46,25 @@
"client_id": {
"title": "Client ID",
"type": "string",
"description": "The Client ID of your developer application",
"description": "The Client ID of your Google Analytics 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 Analytics developer application.",
"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 a new access token.",
"airbyte_secret": true
},
"access_token": {
"title": "Access Token",
"type": "string",
"description": "A access token generated using the above client ID, secret and refresh_token",
"description": "Access Token for making authenticated requests.",
"airbyte_secret": true
}
}
Expand All @@ -82,6 +82,7 @@
"order": 0
},
"credentials_json": {
"title": "JSON credentials",
"type": "string",
"description": "The JSON key of the service account to use for authorization",
"examples": [
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/google-analytics-v4.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ The Google Analytics connector should not run into Google Analytics API limitati

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.15 | 2021-12-28 | [9165](https://github.com/airbytehq/airbyte/pull/9165) | Update titles and descriptions |
| 0.1.14 | 2021-12-09 | [8656](https://github.com/airbytehq/airbyte/pull/8656) | Fix date-format in schemas |
| 0.1.13 | 2021-12-09 | [8676](https://github.com/airbytehq/airbyte/pull/8676) | Fix `window_in_days` validation issue |
| 0.1.12 | 2021-12-03 | [8175](https://github.com/airbytehq/airbyte/pull/8175) | Fix validation of unknown metric(s) or dimension(s) error |
Expand Down