File tree Expand file tree Collapse file tree 5 files changed +10
-4
lines changed
airbyte-config/init/src/main/resources/seed
airbyte-integrations/connectors/source-zendesk-chat
docs/integrations/sources Expand file tree Collapse file tree 5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1991
1991
- name : Zendesk Chat
1992
1992
sourceDefinitionId : 40d24d0f-b8f9-4fe0-9e6c-b06c0f3f45e4
1993
1993
dockerRepository : airbyte/source-zendesk-chat
1994
- dockerImageTag : 0.1.11
1994
+ dockerImageTag : 0.1.12
1995
1995
documentationUrl : https://docs.airbyte.com/integrations/sources/zendesk-chat
1996
1996
icon : zendesk-chat.svg
1997
1997
sourceType : api
Original file line number Diff line number Diff line change 16157
16157
supportsNormalization: false
16158
16158
supportsDBT: false
16159
16159
supported_destination_sync_modes: []
16160
- - dockerImage: "airbyte/source-zendesk-chat:0.1.11 "
16160
+ - dockerImage: "airbyte/source-zendesk-chat:0.1.12 "
16161
16161
spec:
16162
16162
documentationUrl: "https://docs.airbyte.com/integrations/sources/zendesk-chat"
16163
16163
connectionSpecification:
Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ RUN pip install .
16
16
17
17
ENTRYPOINT ["python" , "/airbyte/integration_code/main_dev.py" ]
18
18
19
- LABEL io.airbyte.version=0.1.11
19
+ LABEL io.airbyte.version=0.1.12
20
20
LABEL io.airbyte.name=airbyte/source-zendesk-chat
Original file line number Diff line number Diff line change 9
9
10
10
import pendulum
11
11
import requests
12
+ from airbyte_cdk .sources .streams .availability_strategy import AvailabilityStrategy
12
13
from airbyte_cdk .sources .streams .http import HttpStream
13
14
14
15
@@ -20,6 +21,10 @@ class Stream(HttpStream, ABC):
20
21
21
22
limit = 100
22
23
24
+ @property
25
+ def availability_strategy (self ) -> Optional ["AvailabilityStrategy" ]:
26
+ return None
27
+
23
28
def request_kwargs (
24
29
self ,
25
30
stream_state : Mapping [str , Any ],
Original file line number Diff line number Diff line change @@ -77,7 +77,8 @@ The connector is restricted by Zendesk's [requests limitation](https://developer
77
77
## Changelog
78
78
79
79
| Version | Date | Pull Request | Subject |
80
- | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------- |
80
+ | :--------| :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------- |
81
+ | 0.1.12 | 2023-01-27 | [ 22026] ( https://github.com/airbytehq/airbyte/pull/22026 ) | Set ` AvailabilityStrategy ` for streams explicitly to ` None ` |
81
82
| 0.1.11 | 2022-10-18 | [ 17745] ( https://github.com/airbytehq/airbyte/pull/17745 ) | Add Engagements Stream and fix infity looping |
82
83
| 0.1.10 | 2022-09-28 | [ 17326] ( https://github.com/airbytehq/airbyte/pull/17326 ) | Migrate to per-stream states. |
83
84
| 0.1.9 | 2022-08-23 | [ 15879] ( https://github.com/airbytehq/airbyte/pull/15879 ) | Corrected specification and stream schemas to support backward capability |
You can’t perform that action at this time.
0 commit comments