File tree Expand file tree Collapse file tree 5 files changed +4
-8
lines changed
airbyte-config/init/src/main/resources/seed
airbyte-integrations/connectors/source-linkedin-ads
docs/integrations/sources Expand file tree Collapse file tree 5 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 947
947
- name : LinkedIn Ads
948
948
sourceDefinitionId : 137ece28-5434-455c-8f34-69dc3782f451
949
949
dockerRepository : airbyte/source-linkedin-ads
950
- dockerImageTag : 0.1.13
950
+ dockerImageTag : 0.1.14
951
951
documentationUrl : https://docs.airbyte.com/integrations/sources/linkedin-ads
952
952
icon : linkedin.svg
953
953
sourceType : api
Original file line number Diff line number Diff line change 7626
7626
path_in_connector_config:
7627
7627
- "credentials"
7628
7628
- "client_secret"
7629
- - dockerImage: "airbyte/source-linkedin-ads:0.1.13 "
7629
+ - dockerImage: "airbyte/source-linkedin-ads:0.1.14 "
7630
7630
spec:
7631
7631
documentationUrl: "https://docs.airbyte.com/integrations/sources/linkedin-ads"
7632
7632
connectionSpecification:
Original file line number Diff line number Diff line change @@ -33,5 +33,5 @@ COPY source_linkedin_ads ./source_linkedin_ads
33
33
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
34
34
ENTRYPOINT ["python" , "/airbyte/integration_code/main.py" ]
35
35
36
- LABEL io.airbyte.version=0.1.13
36
+ LABEL io.airbyte.version=0.1.14
37
37
LABEL io.airbyte.name=airbyte/source-linkedin-ads
Original file line number Diff line number Diff line change 14
14
from airbyte_cdk .models import SyncMode
15
15
from airbyte_cdk .sources import AbstractSource
16
16
from airbyte_cdk .sources .streams import Stream
17
- from airbyte_cdk .sources .streams .availability_strategy import AvailabilityStrategy
18
17
from airbyte_cdk .sources .streams .http import HttpStream
19
18
from airbyte_cdk .sources .streams .http .auth import Oauth2Authenticator , TokenAuthenticator
20
19
from airbyte_cdk .sources .streams .http .exceptions import DefaultBackoffException
@@ -43,10 +42,6 @@ def accounts(self):
43
42
"""Property to return the list of the user Account Ids from input"""
44
43
return "," .join (map (str , self .config .get ("account_ids" )))
45
44
46
- @property
47
- def availability_strategy (self ) -> Optional ["AvailabilityStrategy" ]:
48
- return None
49
-
50
45
def path (self , ** kwargs ) -> str :
51
46
"""Returns the API endpoint path for stream, from `endpoint` class attribute."""
52
47
return self .endpoint
Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ After 5 unsuccessful attempts - the connector will stop the sync operation. In s
183
183
184
184
| Version | Date | Pull Request | Subject |
185
185
| :--------| :-----------| :---------------------------------------------------------| :-------------------------------------------------------------------------------------------------------------- |
186
+ | 0.1.14 | 2023-02-03 | [ 22361] ( https://github.com/airbytehq/airbyte/pull/22361 ) | Turn on default HttpAvailabilityStrategy |
186
187
| 0.1.13 | 2023-01-27 | [ 22013] ( https://github.com/airbytehq/airbyte/pull/22013 ) | for adDirectSponsoredContents stream skip accounts which are part of organization |
187
188
| 0.1.12 | 2022-10-18 | [ 18111] ( https://github.com/airbytehq/airbyte/pull/18111 ) | for adDirectSponsoredContents stream skip accounts which are part of organization |
188
189
| 0.1.11 | 2022-10-07 | [ 17724] ( https://github.com/airbytehq/airbyte/pull/17724 ) | Retry 429/5xx errors when refreshing access token |
You can’t perform that action at this time.
0 commit comments