airbyte-agent-zendesk-chat 0.1.4__py3-none-any.whl → 0.1.6__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.

Potentially problematic release.


This version of airbyte-agent-zendesk-chat might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-zendesk-chat
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Summary: Airbyte Zendesk-Chat 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/
@@ -87,17 +87,48 @@ uv pip install airbyte-agent-zendesk-chat
87
87
 
88
88
  ## Usage
89
89
 
90
+ Connectors can run in open source or hosted mode.
91
+
92
+ ### Open source
93
+
94
+ In open source mode, you provide API credentials directly to the connector.
95
+
90
96
  ```python
91
- from airbyte_agent_zendesk_chat import ZendeskChatConnector, ZendeskChatAuthConfig
97
+ from airbyte_agent_zendesk-chat import ZendeskChatConnector
98
+ from airbyte_agent_zendesk_chat.models import ZendeskChatAuthConfig
92
99
 
93
100
  connector = ZendeskChatConnector(
94
- auth_config=ZendeskChatAuthConfig(
95
- access_token="..."
96
- )
101
+ auth_config=ZendeskChatAuthConfig(
102
+ access_token="<Your Zendesk Chat OAuth 2.0 access token>"
103
+ )
97
104
  )
98
- result = await connector.accounts.get()
105
+
106
+ @agent.tool_plain # assumes you're using Pydantic AI
107
+ @ZendeskChatConnector.describe
108
+ async def zendesk-chat_execute(entity: str, action: str, params: dict | None = None):
109
+ return await connector.execute(entity, action, params or {})
99
110
  ```
100
111
 
112
+ ### Hosted
113
+
114
+ In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead.
115
+
116
+ 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/quickstarts/tutorial-hosted).
117
+
118
+ ```python
119
+ from airbyte_agent_zendesk-chat import ZendeskChatConnector
120
+
121
+ connector = ZendeskChatConnector(
122
+ external_user_id="<your-scoped-token>",
123
+ airbyte_client_id="<your-client-id>",
124
+ airbyte_client_secret="<your-client-secret>"
125
+ )
126
+
127
+ @agent.tool_plain # assumes you're using Pydantic AI
128
+ @ZendeskChatConnector.describe
129
+ async def zendesk-chat_execute(entity: str, action: str, params: dict | None = None):
130
+ return await connector.execute(entity, action, params or {})
131
+ ```
101
132
 
102
133
  ## Full documentation
103
134
 
@@ -119,12 +150,14 @@ This connector supports the following entities and actions.
119
150
  | Triggers | [List](./REFERENCE.md#triggers-list) |
120
151
 
121
152
 
153
+ For all authentication options, see the connector's [authentication documentation](AUTH.md).
154
+
122
155
  For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
123
156
 
124
157
  For the service's official API docs, see the [Zendesk-Chat API reference](https://developer.zendesk.com/api-reference/live-chat/chat-api/introduction/).
125
158
 
126
159
  ## Version information
127
160
 
128
- - **Package version:** 0.1.4
161
+ - **Package version:** 0.1.6
129
162
  - **Connector version:** 0.1.3
130
- - **Generated with Connector SDK commit SHA:** c713ec4833c2b52dc89926ec68caa343423884cd
163
+ - **Generated with Connector SDK commit SHA:** b27328e2162813ea6315b9f890a6784b0fb9caba
@@ -52,6 +52,6 @@ airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/__init__.py,sha256=
52
52
  airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
53
53
  airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
54
54
  airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
55
- airbyte_agent_zendesk_chat-0.1.4.dist-info/METADATA,sha256=lmfeZpEmZXYO427bwkkHhayQJNEuomqF6p74O10WJ-E,4942
56
- airbyte_agent_zendesk_chat-0.1.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
- airbyte_agent_zendesk_chat-0.1.4.dist-info/RECORD,,
55
+ airbyte_agent_zendesk_chat-0.1.6.dist-info/METADATA,sha256=eDaOxu0NEx_fapxs7rNlDyoO8yD-3e4dpjxmby43CL4,6362
56
+ airbyte_agent_zendesk_chat-0.1.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
+ airbyte_agent_zendesk_chat-0.1.6.dist-info/RECORD,,