airbyte-agent-zendesk-support 0.18.26__tar.gz → 0.18.41__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/CHANGELOG.md +75 -0
  2. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/PKG-INFO +17 -18
  3. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/README.md +7 -7
  4. airbyte_agent_zendesk_support-0.18.41/airbyte_agent_zendesk_support/__init__.py +261 -0
  5. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_strategies.py +2 -5
  6. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_template.py +1 -1
  7. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py +26 -26
  8. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/connector_model_loader.py +11 -4
  9. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/constants.py +1 -1
  10. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/hosted_executor.py +10 -11
  11. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py +163 -34
  12. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/extensions.py +43 -5
  13. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/response.py +2 -0
  14. airbyte_agent_zendesk_support-0.18.41/airbyte_agent_zendesk_support/_vendored/connector_sdk/introspection.py +262 -0
  15. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/logger.py +9 -9
  16. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/types.py +10 -10
  17. airbyte_agent_zendesk_support-0.18.41/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/config.py +179 -0
  18. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/models.py +6 -6
  19. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/session.py +41 -32
  20. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/metrics.py +3 -3
  21. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py +17 -17
  22. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/components.py +59 -58
  23. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py +22 -33
  24. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py +9 -9
  25. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py +32 -32
  26. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py +44 -34
  27. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/secrets.py +2 -2
  28. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py +9 -8
  29. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py +9 -5
  30. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py +7 -3
  31. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/connector.py +88 -3
  32. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/connector_model.py +2 -0
  33. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/types.py +1 -1
  34. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/pyproject.toml +11 -12
  35. airbyte_agent_zendesk_support-0.18.26/airbyte_agent_zendesk_support/__init__.py +0 -136
  36. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/.gitignore +0 -0
  37. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/REFERENCE.md +0 -0
  38. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/__init__.py +0 -0
  39. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/__init__.py +0 -0
  40. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
  41. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/exceptions.py +0 -0
  42. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/__init__.py +0 -0
  43. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/models.py +0 -0
  44. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/__init__.py +0 -0
  45. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
  46. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
  47. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/config.py +0 -0
  48. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/exceptions.py +0 -0
  49. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/protocols.py +0 -0
  50. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http_client.py +0 -0
  51. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/__init__.py +0 -0
  52. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/__init__.py +0 -0
  53. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/redactor.py +0 -0
  54. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/__init__.py +0 -0
  55. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/instrumentation.py +0 -0
  56. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/__init__.py +0 -0
  57. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py +0 -0
  58. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py +0 -0
  59. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/utils.py +0 -0
  60. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/_vendored/connector_sdk/validation.py +0 -0
  61. {airbyte_agent_zendesk_support-0.18.26 → airbyte_agent_zendesk_support-0.18.41}/airbyte_agent_zendesk_support/models.py +0 -0
@@ -1,5 +1,80 @@
1
1
  # Zendesk Support changelog
2
2
 
3
+ ## [0.18.41] - 2026-01-15
4
+ - Updated connector definition (YAML version 0.1.4)
5
+ - Source commit: b7138b41
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.18.40] - 2026-01-15
9
+ - Updated connector definition (YAML version 0.1.4)
10
+ - Source commit: 10173eb1
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.18.39] - 2026-01-15
14
+ - Updated connector definition (YAML version 0.1.4)
15
+ - Source commit: a23d9e7a
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.18.38] - 2026-01-14
19
+ - Updated connector definition (YAML version 0.1.4)
20
+ - Source commit: 7ef09816
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.18.37] - 2026-01-14
24
+ - Updated connector definition (YAML version 0.1.4)
25
+ - Source commit: e6285db5
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.18.36] - 2026-01-14
29
+ - Updated connector definition (YAML version 0.1.4)
30
+ - Source commit: 31de238d
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.18.35] - 2026-01-13
34
+ - Updated connector definition (YAML version 0.1.4)
35
+ - Source commit: e80a226e
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.18.34] - 2026-01-13
39
+ - Updated connector definition (YAML version 0.1.4)
40
+ - Source commit: 78b1be67
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.18.33] - 2026-01-11
44
+ - Updated connector definition (YAML version 0.1.4)
45
+ - Source commit: e519b73d
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.18.32] - 2026-01-09
49
+ - Updated connector definition (YAML version 0.1.4)
50
+ - Source commit: 3c7bfdfd
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.18.31] - 2026-01-09
54
+ - Updated connector definition (YAML version 0.1.4)
55
+ - Source commit: 3bcb33e8
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.18.30] - 2026-01-09
59
+ - Updated connector definition (YAML version 0.1.4)
60
+ - Source commit: da9b741b
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.18.29] - 2026-01-07
64
+ - Updated connector definition (YAML version 0.1.4)
65
+ - Source commit: d023e05f
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.18.28] - 2026-01-06
69
+ - Updated connector definition (YAML version 0.1.4)
70
+ - Source commit: 0580c727
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.18.27] - 2026-01-06
74
+ - Updated connector definition (YAML version 0.1.4)
75
+ - Source commit: e0e2f989
76
+ - SDK version: 0.1.0
77
+
3
78
  ## [0.18.26] - 2026-01-05
4
79
  - Updated connector definition (YAML version 0.1.4)
5
80
  - Source commit: 3e274293
@@ -1,25 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-zendesk-support
3
- Version: 0.18.26
3
+ Version: 0.18.41
4
4
  Summary: Airbyte Zendesk-Support Connector for AI platforms
5
- Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
6
- Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
7
- Project-URL: Repository, https://github.com/airbytehq/airbyte-embedded
8
- Project-URL: Issues, https://github.com/airbytehq/airbyte-embedded/issues
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
6
+ Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-agent-connectors
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-agent-connectors/issues
9
9
  Author-email: Airbyte <contact@airbyte.io>
10
10
  License: Elastic-2.0
11
- Keywords: airbyte,api,connector,zendesk-support
11
+ Keywords: agent,ai,airbyte,api,connector,data-integration,llm,mcp,zendesk-support
12
12
  Classifier: Development Status :: 3 - Alpha
13
13
  Classifier: Intended Audience :: Developers
14
14
  Classifier: License :: Other/Proprietary License
15
+ Classifier: Operating System :: OS Independent
15
16
  Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.9
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
17
  Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
21
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
- Requires-Python: >=3.9
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.13
23
22
  Requires-Dist: httpx>=0.24.0
24
23
  Requires-Dist: jinja2>=3.0.0
25
24
  Requires-Dist: jsonpath-ng>=1.6.1
@@ -47,10 +46,10 @@ The Zendesk-Support connector is optimized to handle prompts like these.
47
46
 
48
47
  - Show me the tickets assigned to me last week
49
48
  - What are the top 5 support issues our organization has faced this month?
50
- - List all unresolved tickets for {customer}
49
+ - List all unresolved tickets for \{customer\}
51
50
  - Analyze the satisfaction ratings for our support team in the last 30 days
52
51
  - Compare ticket resolution times across different support groups
53
- - Show me the details of recent tickets tagged with {tag}
52
+ - Show me the details of recent tickets tagged with \{tag\}
54
53
  - Identify the most common ticket fields used in our support workflow
55
54
  - Summarize the performance of our SLA policies this quarter
56
55
 
@@ -58,11 +57,11 @@ The Zendesk-Support connector is optimized to handle prompts like these.
58
57
 
59
58
  The Zendesk-Support connector isn't currently able to handle prompts like these.
60
59
 
61
- - Create a new support ticket for {customer}
60
+ - Create a new support ticket for \{customer\}
62
61
  - Update the priority of this ticket
63
- - Assign this ticket to {team_member}
62
+ - Assign this ticket to \{team_member\}
64
63
  - Delete these old support tickets
65
- - Send an automatic response to {customer}
64
+ - Send an automatic response to \{customer\}
66
65
 
67
66
  ## Installation
68
67
 
@@ -141,6 +140,6 @@ For the service's official API docs, see the [Zendesk-Support API reference](htt
141
140
 
142
141
  ## Version information
143
142
 
144
- - **Package version:** 0.18.26
143
+ - **Package version:** 0.18.41
145
144
  - **Connector version:** 0.1.4
146
- - **Generated with Connector SDK commit SHA:** 3e2742932eecef344732bfedb7036ca6299c8f80
145
+ - **Generated with Connector SDK commit SHA:** b7138b411130e18a6ece05c58de092aa28ca0474
@@ -13,10 +13,10 @@ The Zendesk-Support connector is optimized to handle prompts like these.
13
13
 
14
14
  - Show me the tickets assigned to me last week
15
15
  - What are the top 5 support issues our organization has faced this month?
16
- - List all unresolved tickets for {customer}
16
+ - List all unresolved tickets for \{customer\}
17
17
  - Analyze the satisfaction ratings for our support team in the last 30 days
18
18
  - Compare ticket resolution times across different support groups
19
- - Show me the details of recent tickets tagged with {tag}
19
+ - Show me the details of recent tickets tagged with \{tag\}
20
20
  - Identify the most common ticket fields used in our support workflow
21
21
  - Summarize the performance of our SLA policies this quarter
22
22
 
@@ -24,11 +24,11 @@ The Zendesk-Support connector is optimized to handle prompts like these.
24
24
 
25
25
  The Zendesk-Support connector isn't currently able to handle prompts like these.
26
26
 
27
- - Create a new support ticket for {customer}
27
+ - Create a new support ticket for \{customer\}
28
28
  - Update the priority of this ticket
29
- - Assign this ticket to {team_member}
29
+ - Assign this ticket to \{team_member\}
30
30
  - Delete these old support tickets
31
- - Send an automatic response to {customer}
31
+ - Send an automatic response to \{customer\}
32
32
 
33
33
  ## Installation
34
34
 
@@ -107,6 +107,6 @@ For the service's official API docs, see the [Zendesk-Support API reference](htt
107
107
 
108
108
  ## Version information
109
109
 
110
- - **Package version:** 0.18.26
110
+ - **Package version:** 0.18.41
111
111
  - **Connector version:** 0.1.4
112
- - **Generated with Connector SDK commit SHA:** 3e2742932eecef344732bfedb7036ca6299c8f80
112
+ - **Generated with Connector SDK commit SHA:** b7138b411130e18a6ece05c58de092aa28ca0474
@@ -0,0 +1,261 @@
1
+ """
2
+ Blessed Zendesk-Support connector for Airbyte SDK.
3
+
4
+ Auto-generated from OpenAPI specification.
5
+ """
6
+
7
+ from .connector import ZendeskSupportConnector
8
+ from .models import (
9
+ ZendeskSupportAuthConfig,
10
+ Ticket,
11
+ User,
12
+ Organization,
13
+ Group,
14
+ TicketComment,
15
+ Attachment,
16
+ TicketAudit,
17
+ TicketMetric,
18
+ TicketField,
19
+ Brand,
20
+ View,
21
+ Macro,
22
+ Trigger,
23
+ Automation,
24
+ Tag,
25
+ SatisfactionRating,
26
+ GroupMembership,
27
+ OrganizationMembership,
28
+ SLAPolicy,
29
+ TicketForm,
30
+ Article,
31
+ ArticleAttachment,
32
+ TicketsListResultMeta,
33
+ UsersListResultMeta,
34
+ OrganizationsListResultMeta,
35
+ GroupsListResultMeta,
36
+ TicketCommentsListResultMeta,
37
+ TicketAuditsListResultMeta,
38
+ TicketMetricsListResultMeta,
39
+ TicketFieldsListResultMeta,
40
+ BrandsListResultMeta,
41
+ ViewsListResultMeta,
42
+ MacrosListResultMeta,
43
+ TriggersListResultMeta,
44
+ AutomationsListResultMeta,
45
+ TagsListResultMeta,
46
+ SatisfactionRatingsListResultMeta,
47
+ GroupMembershipsListResultMeta,
48
+ OrganizationMembershipsListResultMeta,
49
+ SlaPoliciesListResultMeta,
50
+ TicketFormsListResultMeta,
51
+ ArticlesListResultMeta,
52
+ ArticleAttachmentsListResultMeta,
53
+ ZendeskSupportExecuteResult,
54
+ ZendeskSupportExecuteResultWithMeta,
55
+ TicketsListResult,
56
+ TicketsGetResult,
57
+ UsersListResult,
58
+ UsersGetResult,
59
+ OrganizationsListResult,
60
+ OrganizationsGetResult,
61
+ GroupsListResult,
62
+ GroupsGetResult,
63
+ TicketCommentsListResult,
64
+ AttachmentsGetResult,
65
+ TicketAuditsListResult,
66
+ TicketMetricsListResult,
67
+ TicketFieldsListResult,
68
+ TicketFieldsGetResult,
69
+ BrandsListResult,
70
+ BrandsGetResult,
71
+ ViewsListResult,
72
+ ViewsGetResult,
73
+ MacrosListResult,
74
+ MacrosGetResult,
75
+ TriggersListResult,
76
+ TriggersGetResult,
77
+ AutomationsListResult,
78
+ AutomationsGetResult,
79
+ TagsListResult,
80
+ SatisfactionRatingsListResult,
81
+ SatisfactionRatingsGetResult,
82
+ GroupMembershipsListResult,
83
+ OrganizationMembershipsListResult,
84
+ SlaPoliciesListResult,
85
+ SlaPoliciesGetResult,
86
+ TicketFormsListResult,
87
+ TicketFormsGetResult,
88
+ ArticlesListResult,
89
+ ArticlesGetResult,
90
+ ArticleAttachmentsListResult,
91
+ ArticleAttachmentsGetResult
92
+ )
93
+ from .types import (
94
+ TicketsListParams,
95
+ TicketsGetParams,
96
+ UsersListParams,
97
+ UsersGetParams,
98
+ OrganizationsListParams,
99
+ OrganizationsGetParams,
100
+ GroupsListParams,
101
+ GroupsGetParams,
102
+ TicketCommentsListParams,
103
+ AttachmentsGetParams,
104
+ AttachmentsDownloadParams,
105
+ TicketAuditsListParams,
106
+ TicketAuditsListParams,
107
+ TicketMetricsListParams,
108
+ TicketFieldsListParams,
109
+ TicketFieldsGetParams,
110
+ BrandsListParams,
111
+ BrandsGetParams,
112
+ ViewsListParams,
113
+ ViewsGetParams,
114
+ MacrosListParams,
115
+ MacrosGetParams,
116
+ TriggersListParams,
117
+ TriggersGetParams,
118
+ AutomationsListParams,
119
+ AutomationsGetParams,
120
+ TagsListParams,
121
+ SatisfactionRatingsListParams,
122
+ SatisfactionRatingsGetParams,
123
+ GroupMembershipsListParams,
124
+ OrganizationMembershipsListParams,
125
+ SlaPoliciesListParams,
126
+ SlaPoliciesGetParams,
127
+ TicketFormsListParams,
128
+ TicketFormsGetParams,
129
+ ArticlesListParams,
130
+ ArticlesGetParams,
131
+ ArticleAttachmentsListParams,
132
+ ArticleAttachmentsGetParams,
133
+ ArticleAttachmentsDownloadParams
134
+ )
135
+
136
+ __all__ = [
137
+ "ZendeskSupportConnector",
138
+ "ZendeskSupportAuthConfig",
139
+ "Ticket",
140
+ "User",
141
+ "Organization",
142
+ "Group",
143
+ "TicketComment",
144
+ "Attachment",
145
+ "TicketAudit",
146
+ "TicketMetric",
147
+ "TicketField",
148
+ "Brand",
149
+ "View",
150
+ "Macro",
151
+ "Trigger",
152
+ "Automation",
153
+ "Tag",
154
+ "SatisfactionRating",
155
+ "GroupMembership",
156
+ "OrganizationMembership",
157
+ "SLAPolicy",
158
+ "TicketForm",
159
+ "Article",
160
+ "ArticleAttachment",
161
+ "TicketsListResultMeta",
162
+ "UsersListResultMeta",
163
+ "OrganizationsListResultMeta",
164
+ "GroupsListResultMeta",
165
+ "TicketCommentsListResultMeta",
166
+ "TicketAuditsListResultMeta",
167
+ "TicketMetricsListResultMeta",
168
+ "TicketFieldsListResultMeta",
169
+ "BrandsListResultMeta",
170
+ "ViewsListResultMeta",
171
+ "MacrosListResultMeta",
172
+ "TriggersListResultMeta",
173
+ "AutomationsListResultMeta",
174
+ "TagsListResultMeta",
175
+ "SatisfactionRatingsListResultMeta",
176
+ "GroupMembershipsListResultMeta",
177
+ "OrganizationMembershipsListResultMeta",
178
+ "SlaPoliciesListResultMeta",
179
+ "TicketFormsListResultMeta",
180
+ "ArticlesListResultMeta",
181
+ "ArticleAttachmentsListResultMeta",
182
+ "ZendeskSupportExecuteResult",
183
+ "ZendeskSupportExecuteResultWithMeta",
184
+ "TicketsListResult",
185
+ "TicketsGetResult",
186
+ "UsersListResult",
187
+ "UsersGetResult",
188
+ "OrganizationsListResult",
189
+ "OrganizationsGetResult",
190
+ "GroupsListResult",
191
+ "GroupsGetResult",
192
+ "TicketCommentsListResult",
193
+ "AttachmentsGetResult",
194
+ "TicketAuditsListResult",
195
+ "TicketMetricsListResult",
196
+ "TicketFieldsListResult",
197
+ "TicketFieldsGetResult",
198
+ "BrandsListResult",
199
+ "BrandsGetResult",
200
+ "ViewsListResult",
201
+ "ViewsGetResult",
202
+ "MacrosListResult",
203
+ "MacrosGetResult",
204
+ "TriggersListResult",
205
+ "TriggersGetResult",
206
+ "AutomationsListResult",
207
+ "AutomationsGetResult",
208
+ "TagsListResult",
209
+ "SatisfactionRatingsListResult",
210
+ "SatisfactionRatingsGetResult",
211
+ "GroupMembershipsListResult",
212
+ "OrganizationMembershipsListResult",
213
+ "SlaPoliciesListResult",
214
+ "SlaPoliciesGetResult",
215
+ "TicketFormsListResult",
216
+ "TicketFormsGetResult",
217
+ "ArticlesListResult",
218
+ "ArticlesGetResult",
219
+ "ArticleAttachmentsListResult",
220
+ "ArticleAttachmentsGetResult",
221
+ "TicketsListParams",
222
+ "TicketsGetParams",
223
+ "UsersListParams",
224
+ "UsersGetParams",
225
+ "OrganizationsListParams",
226
+ "OrganizationsGetParams",
227
+ "GroupsListParams",
228
+ "GroupsGetParams",
229
+ "TicketCommentsListParams",
230
+ "AttachmentsGetParams",
231
+ "AttachmentsDownloadParams",
232
+ "TicketAuditsListParams",
233
+ "TicketAuditsListParams",
234
+ "TicketMetricsListParams",
235
+ "TicketFieldsListParams",
236
+ "TicketFieldsGetParams",
237
+ "BrandsListParams",
238
+ "BrandsGetParams",
239
+ "ViewsListParams",
240
+ "ViewsGetParams",
241
+ "MacrosListParams",
242
+ "MacrosGetParams",
243
+ "TriggersListParams",
244
+ "TriggersGetParams",
245
+ "AutomationsListParams",
246
+ "AutomationsGetParams",
247
+ "TagsListParams",
248
+ "SatisfactionRatingsListParams",
249
+ "SatisfactionRatingsGetParams",
250
+ "GroupMembershipsListParams",
251
+ "OrganizationMembershipsListParams",
252
+ "SlaPoliciesListParams",
253
+ "SlaPoliciesGetParams",
254
+ "TicketFormsListParams",
255
+ "TicketFormsGetParams",
256
+ "ArticlesListParams",
257
+ "ArticlesGetParams",
258
+ "ArticleAttachmentsListParams",
259
+ "ArticleAttachmentsGetParams",
260
+ "ArticleAttachmentsDownloadParams",
261
+ ]
@@ -610,9 +610,7 @@ class OAuth2AuthStrategy(AuthStrategy):
610
610
  has_refresh_token = bool(secrets.get("refresh_token"))
611
611
 
612
612
  if not has_access_token and not has_refresh_token:
613
- raise AuthenticationError(
614
- "Missing OAuth2 credentials. Provide either 'access_token' " "or 'refresh_token' (for refresh-token-only mode)."
615
- )
613
+ raise AuthenticationError("Missing OAuth2 credentials. Provide either 'access_token' or 'refresh_token' (for refresh-token-only mode).")
616
614
 
617
615
  def can_refresh(self, secrets: OAuth2RefreshSecrets) -> bool:
618
616
  """Check if token refresh is possible.
@@ -1106,8 +1104,7 @@ class AuthStrategyFactory:
1106
1104
  strategy = cls._strategies.get(auth_type)
1107
1105
  if strategy is None:
1108
1106
  raise AuthenticationError(
1109
- f"Authentication type '{auth_type.value}' is not implemented. "
1110
- f"Supported types: {', '.join(s.value for s in cls._strategies.keys())}"
1107
+ f"Authentication type '{auth_type.value}' is not implemented. Supported types: {', '.join(s.value for s in cls._strategies.keys())}"
1111
1108
  )
1112
1109
  return strategy
1113
1110
 
@@ -17,7 +17,7 @@ class MissingVariableError(ValueError):
17
17
  def __init__(self, var_name: str, available_fields: list):
18
18
  self.var_name = var_name
19
19
  self.available_fields = available_fields
20
- super().__init__(f"Template variable '${{{var_name}}}' not found in config. " f"Available fields: {available_fields}")
20
+ super().__init__(f"Template variable '${{{var_name}}}' not found in config. Available fields: {available_fields}")
21
21
 
22
22
 
23
23
  def apply_template(template: str, values: Dict[str, str]) -> str:
@@ -13,7 +13,7 @@ class AirbyteCloudClient:
13
13
 
14
14
  Handles authentication, token caching, and API calls to:
15
15
  - Get bearer tokens for authentication
16
- - Look up connector instances for users
16
+ - Look up connectors for users
17
17
  - Execute connectors via the cloud API
18
18
 
19
19
  Example:
@@ -22,15 +22,15 @@ class AirbyteCloudClient:
22
22
  client_secret="your-client-secret"
23
23
  )
24
24
 
25
- # Get a connector instance
26
- instance_id = await client.get_connector_instance_id(
25
+ # Get a connector ID
26
+ connector_id = await client.get_connector_id(
27
27
  external_user_id="user-123",
28
- connector_definition_id="stripe-def-456"
28
+ connector_definition_id="550e8400-e29b-41d4-a716-446655440000"
29
29
  )
30
30
 
31
31
  # Execute the connector
32
32
  result = await client.execute_connector(
33
- instance_id=instance_id,
33
+ connector_id=connector_id,
34
34
  entity="customers",
35
35
  action="list",
36
36
  params={"limit": 10}
@@ -105,37 +105,37 @@ class AirbyteCloudClient:
105
105
 
106
106
  return access_token
107
107
 
108
- async def get_connector_instance_id(
108
+ async def get_connector_id(
109
109
  self,
110
110
  external_user_id: str,
111
111
  connector_definition_id: str,
112
112
  ) -> str:
113
- """Get connector instance ID for a user.
113
+ """Get connector ID for a user.
114
114
 
115
- Looks up the connector instance that belongs to the specified user
116
- and connector definition. Validates that exactly one instance exists.
115
+ Looks up the connector that belongs to the specified user
116
+ and connector definition. Validates that exactly one connector exists.
117
117
 
118
118
  Args:
119
119
  external_user_id: User identifier in the Airbyte system
120
120
  connector_definition_id: UUID of the connector definition
121
121
 
122
122
  Returns:
123
- Connector instance ID (UUID string)
123
+ Connector ID (UUID string)
124
124
 
125
125
  Raises:
126
- ValueError: If 0 or more than 1 instance is found
126
+ ValueError: If 0 or more than 1 connector is found
127
127
  httpx.HTTPStatusError: If API returns 4xx/5xx status code
128
128
  httpx.RequestError: If network request fails
129
129
 
130
130
  Example:
131
- instance_id = await client.get_connector_instance_id(
131
+ connector_id = await client.get_connector_id(
132
132
  external_user_id="user-123",
133
133
  connector_definition_id="550e8400-e29b-41d4-a716-446655440000"
134
134
  )
135
135
  """
136
136
 
137
137
  token = await self.get_bearer_token()
138
- url = f"{self.API_BASE_URL}/api/v1/connectors/instances_for_user"
138
+ url = f"{self.API_BASE_URL}/api/v1/connectors/connectors_for_user"
139
139
  params = {
140
140
  "external_user_id": external_user_id,
141
141
  "definition_id": connector_definition_id,
@@ -146,24 +146,24 @@ class AirbyteCloudClient:
146
146
  response.raise_for_status()
147
147
 
148
148
  data = response.json()
149
- instances = data["instances"]
149
+ connectors = data["connectors"]
150
150
 
151
- if len(instances) == 0:
152
- raise ValueError(f"No connector instance found for user '{external_user_id}' " f"and connector '{connector_definition_id}'")
151
+ if len(connectors) == 0:
152
+ raise ValueError(f"No connector found for user '{external_user_id}' and connector definition '{connector_definition_id}'")
153
153
 
154
- if len(instances) > 1:
154
+ if len(connectors) > 1:
155
155
  raise ValueError(
156
- f"Multiple connector instances found for user '{external_user_id}' "
157
- f"and connector '{connector_definition_id}'. Expected exactly 1, "
158
- f"found {len(instances)}"
156
+ f"Multiple connectors found for user '{external_user_id}' "
157
+ f"and connector definition '{connector_definition_id}'. Expected exactly 1, "
158
+ f"found {len(connectors)}"
159
159
  )
160
160
 
161
- instance_id = instances[0]["id"]
162
- return instance_id
161
+ connector_id = connectors[0]["id"]
162
+ return connector_id
163
163
 
164
164
  async def execute_connector(
165
165
  self,
166
- instance_id: str,
166
+ connector_id: str,
167
167
  entity: str,
168
168
  action: str,
169
169
  params: dict[str, Any] | None,
@@ -171,7 +171,7 @@ class AirbyteCloudClient:
171
171
  """Execute a connector operation.
172
172
 
173
173
  Args:
174
- instance_id: Connector instance UUID
174
+ connector_id: Connector UUID (source ID)
175
175
  entity: Entity name (e.g., "customers", "invoices")
176
176
  action: Operation action (e.g., "list", "get", "create")
177
177
  params: Optional parameters for the operation
@@ -185,14 +185,14 @@ class AirbyteCloudClient:
185
185
 
186
186
  Example:
187
187
  result = await client.execute_connector(
188
- instance_id="inst-123",
188
+ connector_id="550e8400-e29b-41d4-a716-446655440000",
189
189
  entity="customers",
190
190
  action="list",
191
191
  params={"limit": 10}
192
192
  )
193
193
  """
194
194
  token = await self.get_bearer_token()
195
- url = f"{self.API_BASE_URL}/api/v1/connectors/instances/{instance_id}/execute"
195
+ url = f"{self.API_BASE_URL}/api/v1/connectors/sources/{connector_id}/execute"
196
196
  headers = {"Authorization": f"Bearer {token}"}
197
197
  request_body = {
198
198
  "entity": entity,
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ import logging
5
6
  import re
6
7
  from pathlib import Path
7
8
  from typing import Any
@@ -393,16 +394,24 @@ def convert_openapi_to_connector_model(spec: OpenAPIConnector) -> ConnectorModel
393
394
  for entity_name, endpoints_dict in entities_map.items():
394
395
  actions = list(endpoints_dict.keys())
395
396
 
396
- # Get schema from components if available
397
+ # Get schema and stream_name from components if available
397
398
  schema = None
399
+ entity_stream_name = None
398
400
  if spec.components:
399
401
  # Look for a schema matching the entity name
400
402
  for schema_name, schema_def in spec.components.schemas.items():
401
403
  if schema_def.x_airbyte_entity_name == entity_name or schema_name.lower() == entity_name.lower():
402
404
  schema = schema_def.model_dump(by_alias=True)
405
+ entity_stream_name = schema_def.x_airbyte_stream_name
403
406
  break
404
407
 
405
- entity = EntityDefinition(name=entity_name, actions=actions, endpoints=endpoints_dict, schema=schema)
408
+ entity = EntityDefinition(
409
+ name=entity_name,
410
+ stream_name=entity_stream_name,
411
+ actions=actions,
412
+ endpoints=endpoints_dict,
413
+ schema=schema,
414
+ )
406
415
  entities.append(entity)
407
416
 
408
417
  # Extract retry config from x-airbyte-retry-config extension
@@ -760,8 +769,6 @@ def _parse_auth_from_openapi(spec: OpenAPIConnector) -> AuthConfig:
760
769
  options.append(auth_option)
761
770
  except Exception as e:
762
771
  # Log warning but continue - skip invalid schemes
763
- import logging
764
-
765
772
  logger = logging.getLogger(__name__)
766
773
  logger.warning(f"Skipping invalid security scheme '{scheme_name}': {e}")
767
774
  continue
@@ -74,5 +74,5 @@ except PackageNotFoundError:
74
74
  SDK_VERSION = "0.0.0-dev"
75
75
  """Current version of the Airbyte SDK."""
76
76
 
77
- MINIMUM_PYTHON_VERSION = "3.9"
77
+ MINIMUM_PYTHON_VERSION = "3.13"
78
78
  """Minimum Python version required to run the SDK."""