airbyte-agent-zendesk-support 0.18.54__py3-none-any.whl → 0.18.55__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-zendesk-support
3
- Version: 0.18.54
3
+ Version: 0.18.55
4
4
  Summary: Airbyte Zendesk-Support Connector for AI platforms
5
5
  Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
6
6
  Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
@@ -71,38 +71,49 @@ uv pip install airbyte-agent-zendesk-support
71
71
 
72
72
  ## Usage
73
73
 
74
- This connector supports multiple authentication methods:
74
+ Connectors can run in open source or hosted mode.
75
75
 
76
- ### OAuth 2.0
76
+ ### Open source
77
+
78
+ In open source mode, you provide API credentials directly to the connector.
77
79
 
78
80
  ```python
79
- from airbyte_agent_zendesk_support import ZendeskSupportConnector
80
- from airbyte_agent_zendesk_support.models import ZendeskSupportOauth20AuthConfig
81
+ from airbyte_agent_zendesk-support import ZendeskSupportConnector
82
+ from airbyte_agent_zendesk_support.models import ZendeskSupportApiTokenAuthConfig
81
83
 
82
84
  connector = ZendeskSupportConnector(
83
- auth_config=ZendeskSupportOauth20AuthConfig(
84
- access_token="...",
85
- refresh_token="..."
86
- )
85
+ auth_config=ZendeskSupportApiTokenAuthConfig(
86
+ email="<Your Zendesk account email address>",
87
+ api_token="<Your Zendesk API token from Admin Center>"
88
+ )
87
89
  )
88
- result = await connector.tickets.list()
90
+
91
+ @agent.tool_plain # assumes you're using Pydantic AI
92
+ @ZendeskSupportConnector.describe
93
+ async def zendesk-support_execute(entity: str, action: str, params: dict | None = None):
94
+ return await connector.execute(entity, action, params or {})
89
95
  ```
90
96
 
91
- ### API Token
97
+ ### Hosted
98
+
99
+ In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead.
100
+
101
+ This example assumes you've already authenticated your connector with Airbyte. See [Authentication](AUTH.md) to learn more about authenticating. If you need a step-by-step guide, see the [hosted execution tutorial](https://docs.airbyte.com/ai-agents/hosted-execution).
92
102
 
93
103
  ```python
94
- from airbyte_agent_zendesk_support import ZendeskSupportConnector
95
- from airbyte_agent_zendesk_support.models import ZendeskSupportApiTokenAuthConfig
104
+ from airbyte_agent_zendesk-support import ZendeskSupportConnector
96
105
 
97
106
  connector = ZendeskSupportConnector(
98
- auth_config=ZendeskSupportApiTokenAuthConfig(
99
- email="...",
100
- api_token="..."
101
- )
107
+ external_user_id="<your-scoped-token>",
108
+ airbyte_client_id="<your-client-id>",
109
+ airbyte_client_secret="<your-client-secret>"
102
110
  )
103
- result = await connector.tickets.list()
104
- ```
105
111
 
112
+ @agent.tool_plain # assumes you're using Pydantic AI
113
+ @ZendeskSupportConnector.describe
114
+ async def zendesk-support_execute(entity: str, action: str, params: dict | None = None):
115
+ return await connector.execute(entity, action, params or {})
116
+ ```
106
117
 
107
118
  ## Full documentation
108
119
 
@@ -134,12 +145,14 @@ This connector supports the following entities and actions.
134
145
  | Article Attachments | [List](./REFERENCE.md#article-attachments-list), [Get](./REFERENCE.md#article-attachments-get), [Download](./REFERENCE.md#article-attachments-download) |
135
146
 
136
147
 
148
+ For all authentication options, see the connector's [authentication documentation](AUTH.md).
149
+
137
150
  For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
138
151
 
139
152
  For the service's official API docs, see the [Zendesk-Support API reference](https://developer.zendesk.com/api-reference/ticketing/introduction/).
140
153
 
141
154
  ## Version information
142
155
 
143
- - **Package version:** 0.18.54
156
+ - **Package version:** 0.18.55
144
157
  - **Connector version:** 0.1.7
145
- - **Generated with Connector SDK commit SHA:** c713ec4833c2b52dc89926ec68caa343423884cd
158
+ - **Generated with Connector SDK commit SHA:** 1da193dd2b3d4b2e2147ba74bd9a4062a62c4186
@@ -52,6 +52,6 @@ airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py,sha2
52
52
  airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
53
53
  airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
54
54
  airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
55
- airbyte_agent_zendesk_support-0.18.54.dist-info/METADATA,sha256=vVkufuftQO4vIU3_vLKstali_JtkKTIHxXYJTbBGUW4,6246
56
- airbyte_agent_zendesk_support-0.18.54.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
- airbyte_agent_zendesk_support-0.18.54.dist-info/RECORD,,
55
+ airbyte_agent_zendesk_support-0.18.55.dist-info/METADATA,sha256=AWV15DMSbl5MBpcOBPJFIbPYLWgg9e0TVqf6e2egvj4,7239
56
+ airbyte_agent_zendesk_support-0.18.55.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
+ airbyte_agent_zendesk_support-0.18.55.dist-info/RECORD,,