airbyte-agent-zendesk-support 0.18.21__py3-none-any.whl → 0.18.23__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.
- {airbyte_agent_zendesk_support-0.18.21.dist-info → airbyte_agent_zendesk_support-0.18.23.dist-info}/METADATA +26 -5
- {airbyte_agent_zendesk_support-0.18.21.dist-info → airbyte_agent_zendesk_support-0.18.23.dist-info}/RECORD +3 -3
- {airbyte_agent_zendesk_support-0.18.21.dist-info → airbyte_agent_zendesk_support-0.18.23.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-zendesk-support
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.23
|
|
4
4
|
Summary: Airbyte Zendesk-Support Connector for AI platforms
|
|
5
5
|
Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
|
|
6
6
|
Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
|
|
@@ -68,11 +68,16 @@ uv pip install airbyte-agent-zendesk-support
|
|
|
68
68
|
|
|
69
69
|
## Usage
|
|
70
70
|
|
|
71
|
+
This connector supports multiple authentication methods:
|
|
72
|
+
|
|
73
|
+
### OAuth 2.0
|
|
74
|
+
|
|
71
75
|
```python
|
|
72
|
-
from airbyte_agent_zendesk_support import ZendeskSupportConnector
|
|
76
|
+
from airbyte_agent_zendesk_support import ZendeskSupportConnector
|
|
77
|
+
from airbyte_agent_zendesk_support.models import ZendeskSupportOauth20AuthConfig
|
|
73
78
|
|
|
74
79
|
connector = ZendeskSupportConnector(
|
|
75
|
-
auth_config=
|
|
80
|
+
auth_config=ZendeskSupportOauth20AuthConfig(
|
|
76
81
|
access_token="...",
|
|
77
82
|
refresh_token="..."
|
|
78
83
|
)
|
|
@@ -80,6 +85,22 @@ connector = ZendeskSupportConnector(
|
|
|
80
85
|
result = await connector.tickets.list()
|
|
81
86
|
```
|
|
82
87
|
|
|
88
|
+
### API Token
|
|
89
|
+
|
|
90
|
+
```python
|
|
91
|
+
from airbyte_agent_zendesk_support import ZendeskSupportConnector
|
|
92
|
+
from airbyte_agent_zendesk_support.models import ZendeskSupportApiTokenAuthConfig
|
|
93
|
+
|
|
94
|
+
connector = ZendeskSupportConnector(
|
|
95
|
+
auth_config=ZendeskSupportApiTokenAuthConfig(
|
|
96
|
+
email="...",
|
|
97
|
+
api_token="..."
|
|
98
|
+
)
|
|
99
|
+
)
|
|
100
|
+
result = await connector.tickets.list()
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
|
|
83
104
|
## Full documentation
|
|
84
105
|
|
|
85
106
|
This connector supports the following entities and actions.
|
|
@@ -116,6 +137,6 @@ For the service's official API docs, see the [Zendesk-Support API reference](htt
|
|
|
116
137
|
|
|
117
138
|
## Version information
|
|
118
139
|
|
|
119
|
-
- **Package version:** 0.18.
|
|
140
|
+
- **Package version:** 0.18.23
|
|
120
141
|
- **Connector version:** 0.1.3
|
|
121
|
-
- **Generated with Connector SDK commit SHA:**
|
|
142
|
+
- **Generated with Connector SDK commit SHA:** 5d11bfdff3ffc5c2e0242449d53cb172403e94b6
|
|
@@ -50,6 +50,6 @@ airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py,sha2
|
|
|
50
50
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
51
51
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py,sha256=NvqjlUbkm6cbGh4ffKxYxtjdwwgzfPF4MKJ2GfgWeFg,1285
|
|
52
52
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py,sha256=KacNdbHatvPPhnNrycp5YUuD5xpkp56AFcHd-zguBgk,5247
|
|
53
|
-
airbyte_agent_zendesk_support-0.18.
|
|
54
|
-
airbyte_agent_zendesk_support-0.18.
|
|
55
|
-
airbyte_agent_zendesk_support-0.18.
|
|
53
|
+
airbyte_agent_zendesk_support-0.18.23.dist-info/METADATA,sha256=MieKLyKu8cO2FP1IfYIU6_3aEpQ1M5IPhgFZdyunNMs,6112
|
|
54
|
+
airbyte_agent_zendesk_support-0.18.23.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
55
|
+
airbyte_agent_zendesk_support-0.18.23.dist-info/RECORD,,
|
|
File without changes
|