1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Source LinkedIn Ads: update field descriptions (#29600)

Co-authored-by: Artem Inzhyyants <36314070+artem1205@users.noreply.github.com>
Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
This commit is contained in:
Christo Grabowski
2023-08-24 06:27:05 -04:00
committed by GitHub
parent f5c7c1c0b8
commit b90e8d66cf
4 changed files with 23 additions and 20 deletions

View File

@@ -33,5 +33,5 @@ COPY source_linkedin_ads ./source_linkedin_ads
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=0.6.0
LABEL io.airbyte.version=0.6.1
LABEL io.airbyte.name=airbyte/source-linkedin-ads

View File

@@ -7,7 +7,7 @@ data:
connectorType: source
definitionId: 137ece28-5434-455c-8f34-69dc3782f451
maxSecondsBetweenMessages: 21600
dockerImageTag: 0.6.0
dockerImageTag: 0.6.1
dockerRepository: airbyte/source-linkedin-ads
githubIssueLabel: source-linkedin-ads
icon: linkedin.svg

View File

@@ -23,25 +23,25 @@
"client_id": {
"type": "string",
"title": "Client ID",
"description": "The client ID of the LinkedIn Ads developer application.",
"description": "The client ID of your developer application. Refer to our <a href='https://docs.airbyte.com/integrations/sources/linkedin-ads#setup-guide'>documentation</a> for more information.",
"airbyte_secret": true
},
"client_secret": {
"type": "string",
"title": "Client secret",
"description": "The client secret the LinkedIn Ads developer application.",
"title": "Client Secret",
"description": "The client secret of your developer application. Refer to our <a href='https://docs.airbyte.com/integrations/sources/linkedin-ads#setup-guide'>documentation</a> for more information.",
"airbyte_secret": true
},
"refresh_token": {
"type": "string",
"title": "Refresh token",
"description": "The key to refresh the expired access token.",
"title": "Refresh Token",
"description": "The key to refresh the expired access token. Refer to our <a href='https://docs.airbyte.com/integrations/sources/linkedin-ads#setup-guide'>documentation</a> for more information.",
"airbyte_secret": true
}
}
},
{
"title": "Access token",
"title": "Access Token",
"type": "object",
"required": ["access_token"],
"properties": {
@@ -51,8 +51,8 @@
},
"access_token": {
"type": "string",
"title": "Access token",
"description": "The token value generated using the authentication code. See the <a href=\"https://docs.airbyte.com/integrations/sources/linkedin-ads#authentication\">docs</a> to obtain yours.",
"title": "Access Token",
"description": "The access token generated for your developer application. Refer to our <a href='https://docs.airbyte.com/integrations/sources/linkedin-ads#setup-guide'>documentation</a> for more information.",
"airbyte_secret": true
}
}
@@ -61,23 +61,25 @@
},
"start_date": {
"type": "string",
"title": "Start date",
"title": "Start Date",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
"description": "UTC date in the format 2020-09-17. Any data before this date will not be replicated.",
"pattern_descriptor": "YYYY-MM-DD",
"description": "UTC date in the format YYYY-MM-DD. Any data before this date will not be replicated.",
"examples": ["2021-05-17"],
"format": "date"
},
"account_ids": {
"title": "Account IDs",
"type": "array",
"description": "Specify the account IDs separated by a space, to pull the data from. Leave empty, if you want to pull the data from all associated accounts. See the <a href=\"https://www.linkedin.com/help/linkedin/answer/a424270/find-linkedin-ads-account-details?lang=en\">LinkedIn Ads docs</a> for more info.",
"description": "Specify the account IDs to pull data from, separated by a space. Leave this field empty if you want to pull the data from all accounts accessible by the authenticated user. See the <a href=\"https://www.linkedin.com/help/linkedin/answer/a424270/find-linkedin-ads-account-details?lang=en\">LinkedIn docs</a> to locate these IDs.",
"items": {
"type": "integer"
},
"examples": ["123456789"],
"default": []
},
"ad_analytics_reports": {
"title": "Custom Ad Analytics reports",
"title": "Custom Ad Analytics Reports",
"type": "array",
"items": {
"type": "object",
@@ -86,13 +88,13 @@
"required": ["name", "pivot_by", "time_granularity"],
"properties": {
"name": {
"title": "Name",
"description": "The name for the report",
"title": "Report Name",
"description": "The name for the custom report.",
"type": "string"
},
"pivot_by": {
"title": "Pivot By",
"description": "Select value from list to pivot by",
"title": "Pivot Category",
"description": "Choose a category to pivot your analytics report around. This selection will organize your data based on the chosen attribute, allowing you to analyze trends and performance from different perspectives.",
"type": "string",
"enum": [
"COMPANY",
@@ -119,8 +121,8 @@
]
},
"time_granularity": {
"title": "Time granularity",
"description": "Set time granularity for report: \nALL - Results grouped into a single result across the entire time range of the report.\nDAILY - Results grouped by day.\nMONTHLY - Results grouped by month.\nYEARLY - Results grouped by year.",
"title": "Time Granularity",
"description": "Choose how to group the data in your report by time. The options are:<br>- 'ALL': A single result summarizing the entire time range.<br>- 'DAILY': Group results by each day.<br>- 'MONTHLY': Group results by each month.<br>- 'YEARLY': Group results by each year.<br>Selecting a time grouping helps you analyze trends and patterns over different time periods.",
"type": "string",
"enum": ["ALL", "DAILY", "MONTHLY", "YEARLY"]
}

View File

@@ -171,6 +171,7 @@ After 5 unsuccessful attempts - the connector will stop the sync operation. In s
| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------|
| 0.6.1 | 2023-08-23 | [29600](https://github.com/airbytehq/airbyte/pull/29600) | Update field descriptions |
| 0.6.0 | 2023-08-22 | [29721](https://github.com/airbytehq/airbyte/pull/29721) | Add `Conversions` stream |
| 0.5.0 | 2023-08-14 | [29175](https://github.com/airbytehq/airbyte/pull/29175) | Add Custom report Constructor |
| 0.4.0 | 2023-08-08 | [29175](https://github.com/airbytehq/airbyte/pull/29175) | Add analytics streams |