Skip to content

Commit 135e623

Browse files
mohamagdymarcosmarxmlazebnyi
authored
✨ [source-zendesk-support] Fix the fields data type to include the id and value (#36388)
Co-authored-by: Marcos Marx <[email protected]> Co-authored-by: Serhii Lazebnyi <[email protected]> Co-authored-by: Serhii Lazebnyi <[email protected]>
1 parent 07db1ca commit 135e623

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

airbyte-integrations/connectors/source-zendesk-support/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ data:
1111
connectorSubtype: api
1212
connectorType: source
1313
definitionId: 79c1aa37-dae3-42ae-b333-d1c105477715
14-
dockerImageTag: 2.4.1
14+
dockerImageTag: 2.5.0
1515
dockerRepository: airbyte/source-zendesk-support
1616
documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-support
1717
githubIssueLabel: source-zendesk-support

airbyte-integrations/connectors/source-zendesk-support/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
6-
version = "2.4.1"
6+
version = "2.5.0"
77
name = "source-zendesk-support"
88
description = "Source implementation for Zendesk Support."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-zendesk-support/source_zendesk_support/schemas/shared/tickets.json

+12
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,18 @@
7575
"format": "date-time"
7676
},
7777
"fields": {
78+
"items": {
79+
"properties": {
80+
"id": {
81+
"type": ["null", "integer"]
82+
},
83+
"value": {
84+
"type": ["null", "string"]
85+
}
86+
},
87+
"type": ["null", "object"],
88+
"additionalProperties": true
89+
},
7890
"type": ["null", "array"]
7991
},
8092
"custom_fields": {

docs/integrations/sources/zendesk-support.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ The Zendesk connector ideally should not run into Zendesk API limitations under
158158

159159
| Version | Date | Pull Request | Subject |
160160
|:---------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
161-
| `2.4.1` | 2024-04-20 | [37450](https://github.com/airbytehq/airbyte/pull/37450) | Fix parsing response for`Ticket Metrics` stream. |
161+
| `2.5.0` | 2024-04-25 | [36388](https://github.com/airbytehq/airbyte/pull/36388) | Fix data type of field in `Tickets` stream schema stream. |
162+
| `2.4.1` | 2024-04-20 | [37450](https://github.com/airbytehq/airbyte/pull/37450) | Fix parsing response for `Ticket Metrics` stream. |
162163
| `2.4.0` | 2024-04-09 | [36897](https://github.com/airbytehq/airbyte/pull/36897) | Fix long-running syncs for `Ticket Metrics`, `Ticket Audits` and `Satisfaction Ratings` streams. |
163164
| `2.3.0` | 2024-03-26 | [36403](https://github.com/airbytehq/airbyte/pull/36403) | Unpin CDK version, add record counts to state messages |
164165
| `2.2.8` | 2024-02-09 | [35083](https://github.com/airbytehq/airbyte/pull/35083) | Manage dependencies with Poetry. |

0 commit comments

Comments
 (0)