Skip to content

Commit

Permalink
Source Zendesk Support: integration tests for empty streams (#34840)
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-yermilov-gl authored Feb 6, 2024
1 parent b2f6a93 commit 20bc4b4
Show file tree
Hide file tree
Showing 51 changed files with 1,668 additions and 23 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -204,18 +204,6 @@
"sync_mode": "incremental",
"destination_sync_mode": "append"
},
{
"stream": {
"name": "posts",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["updated_at"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "append"
},
{
"stream": {
"name": "organization_memberships",
Expand Down
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.2.6
dockerImageTag: 2.2.7
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 @@ -60,6 +60,18 @@
},
"confition": {
"type": ["null", "string"]
},
"metadata": {
"type": ["null", "object"],
"properties": {
"collection_key": {
"type": ["null", "string"]
},
"item_key": {
"type": ["null", "string"]
}
},
"additionalProperties": true
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,56 @@
"chat_access": {
"type": ["null", "boolean"]
},
"manage_automations": {
"type": ["null", "boolean"]
},
"manage_group_memberships": {
"type": ["null", "boolean"]
},
"manage_groups": {
"type": ["null", "boolean"]
},
"manage_macro_content_suggestions": {
"type": ["null", "boolean"]
},
"manage_organizations": {
"type": ["null", "boolean"]
},
"manage_skills": {
"type": ["null", "boolean"]
},
"manage_suspended_tickets": {
"type": ["null", "boolean"]
},
"manage_triggers": {
"type": ["null", "boolean"]
},
"manage_slas": {
"type": ["null", "boolean"]
},
"read_macro_content_suggestions": {
"type": ["null", "boolean"]
},
"ticket_redaction": {
"type": ["null", "boolean"]
},
"view_filter_tickets": {
"type": ["null", "boolean"]
},
"view_reduced_count": {
"type": ["null", "boolean"]
},
"manage_roles": {
"type": ["null", "string"]
},
"custom_objects": {
"type": ["null", "object"],
"properties": {},
"additionalProperties": true
},
"manage_deletion_schedules": {
"type": ["null", "string"]
},
"end_user_list_access": {
"type": ["null", "string"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,18 @@
"url": {
"type": ["null", "string"]
},
"malware_scan_result": {
"type": ["null", "string"]
},
"inline": {
"type": ["null", "boolean"]
},
"deleted": {
"type": ["null", "boolean"]
},
"malware_access_override": {
"type": ["null", "boolean"]
},
"height": {
"type": ["null", "integer"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@
"ticket_form_id": {
"type": ["null", "integer"]
},
"deleted_ticket_form_id": {
"type": ["null", "integer"]
},
"satisfaction_rating": {
"type": ["null", "object", "string"],
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"subject": {
"type": ["null", "string"]
},
"channel": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
"subject": {
"type": ["null", "string"]
},
"channel": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
Expand Down Expand Up @@ -66,6 +69,9 @@
"to": {
"type": ["null", "object"],
"properties": {
"brand_id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
Expand Down
Loading

0 comments on commit 20bc4b4

Please sign in to comment.