Skip to content

Commit

Permalink
🐛 Source Zendesk Support: add %Y-%m-%dT%H:%M:%S%z to cursor_datetime_…
Browse files Browse the repository at this point in the history
…formats (#37723)
  • Loading branch information
darynaishchenko authored Apr 30, 2024
1 parent 96c0154 commit c98bcb7
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 94 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 79c1aa37-dae3-42ae-b333-d1c105477715
dockerImageTag: 2.6.0
dockerImageTag: 2.6.1
dockerRepository: airbyte/source-zendesk-support
documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-support
githubIssueLabel: source-zendesk-support
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "2.6.0"
version = "2.6.1"
name = "source-zendesk-support"
description = "Source implementation for Zendesk Support."
authors = [ "Airbyte <[email protected]>",]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ definitions:
type: DatetimeBasedCursor
cursor_datetime_formats:
- "%Y-%m-%dT%H:%M:%SZ"
- "%Y-%m-%dT%H:%M:%S%z"
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
cursor_field: "{{ parameters.get('cursor_field', 'updated_at') }}"
start_datetime:
Expand All @@ -95,6 +96,7 @@ definitions:
cursor_datetime_formats:
- "%s"
- "%Y-%m-%dT%H:%M:%SZ"
- "%Y-%m-%dT%H:%M:%S%z"
datetime_format: "%s"
cursor_field: "{{ parameters.get('cursor_field', 'updated_at') }}"
start_datetime:
Expand Down Expand Up @@ -200,6 +202,7 @@ definitions:
type: CustomIncrementalSync
cursor_datetime_formats:
- "%Y-%m-%dT%H:%M:%SZ"
- "%Y-%m-%dT%H:%M:%S%z"
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
cursor_field: "{{ parameters.get('cursor_field', 'updated_at') }}"
start_datetime:
Expand Down
Loading

0 comments on commit c98bcb7

Please sign in to comment.