File tree Expand file tree Collapse file tree 5 files changed +9
-3
lines changed
airbyte-config/init/src/main/resources/seed
airbyte-integrations/connectors/source-zendesk-talk
docs/integrations/sources Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 2023
2023
- name : Zendesk Talk
2024
2024
sourceDefinitionId : c8630570-086d-4a40-99ae-ea5b18673071
2025
2025
dockerRepository : airbyte/source-zendesk-talk
2026
- dockerImageTag : 0.1.5
2026
+ dockerImageTag : 0.1.6
2027
2027
documentationUrl : https://docs.airbyte.com/integrations/sources/zendesk-talk
2028
2028
icon : zendesk-talk.svg
2029
2029
sourceType : api
Original file line number Diff line number Diff line change 16559
16559
path_in_connector_config:
16560
16560
- "credentials"
16561
16561
- "client_secret"
16562
- - dockerImage: "airbyte/source-zendesk-talk:0.1.5 "
16562
+ - dockerImage: "airbyte/source-zendesk-talk:0.1.6 "
16563
16563
spec:
16564
16564
documentationUrl: "https://docs.airbyte.com/integrations/sources/zendesk-talk"
16565
16565
connectionSpecification:
Original file line number Diff line number Diff line change @@ -12,5 +12,5 @@ RUN pip install .
12
12
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
13
13
ENTRYPOINT ["python" , "/airbyte/integration_code/main.py" ]
14
14
15
- LABEL io.airbyte.version=0.1.5
15
+ LABEL io.airbyte.version=0.1.6
16
16
LABEL io.airbyte.name=airbyte/source-zendesk-talk
Original file line number Diff line number Diff line change 10
10
11
11
import pendulum as pendulum
12
12
import requests
13
+ from airbyte_cdk .sources .streams .availability_strategy import AvailabilityStrategy
13
14
from airbyte_cdk .sources .streams .http import HttpStream
14
15
15
16
@@ -33,6 +34,10 @@ def url_base(self) -> str:
33
34
"""API base url based on configured subdomain"""
34
35
return f"https://{ self ._subdomain } .zendesk.com/api/v2/channels/voice/"
35
36
37
+ @property
38
+ def availability_strategy (self ) -> Optional ["AvailabilityStrategy" ]:
39
+ return None
40
+
36
41
def backoff_time (self , response : requests .Response ) -> Optional [float ]:
37
42
"""
38
43
Override this method to dynamically determine backoff time e.g: by reading the X-Retry-After header.
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ The Zendesk connector should not run into Zendesk API limitations under normal u
76
76
77
77
| Version | Date | Pull Request | Subject |
78
78
| :--------| :-----------| :----- | :----------------------------------|
79
+ | ` 0.1.6 ` | 2023-01-27 | [ 22028] ( https://github.com/airbytehq/airbyte/pull/22028 ) | Set ` AvailabilityStrategy ` for streams explicitly to ` None ` |
79
80
| ` 0.1.5 ` | 2022-09-29 | [ 17362] ( https://github.com/airbytehq/airbyte/pull/17362 ) | always use the latest CDK version |
80
81
| ` 0.1.4 ` | 2022-08-19 | [ 15764] ( https://github.com/airbytehq/airbyte/pull/15764 ) | Support OAuth2.0 |
81
82
| ` 0.1.3 ` | 2021-11-11 | [ 7173] ( https://github.com/airbytehq/airbyte/pull/7173 ) | Fix pagination and migrate to CDK |
You can’t perform that action at this time.
0 commit comments