airbyte-agent-zendesk-support 0.18.40__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/__init__.py +261 -0
- airbyte_agent_zendesk_support/_vendored/__init__.py +1 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_strategies.py +1120 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/connector_model_loader.py +964 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py +1573 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/extensions.py +693 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http/response.py +104 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http_client.py +686 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/introspection.py +262 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/config.py +179 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/session.py +103 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py +161 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/components.py +239 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py +120 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py +109 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py +223 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py +59 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py +155 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py +245 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/validation.py +822 -0
- airbyte_agent_zendesk_support/connector.py +2276 -0
- airbyte_agent_zendesk_support/connector_model.py +3948 -0
- airbyte_agent_zendesk_support/models.py +790 -0
- airbyte_agent_zendesk_support/types.py +216 -0
- airbyte_agent_zendesk_support-0.18.40.dist-info/METADATA +145 -0
- airbyte_agent_zendesk_support-0.18.40.dist-info/RECORD +57 -0
- airbyte_agent_zendesk_support-0.18.40.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type definitions for zendesk-support connector.
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
|
|
6
|
+
# Use typing_extensions.TypedDict for Pydantic compatibility
|
|
7
|
+
try:
|
|
8
|
+
from typing_extensions import TypedDict, NotRequired
|
|
9
|
+
except ImportError:
|
|
10
|
+
from typing import TypedDict, NotRequired # type: ignore[attr-defined]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# ===== NESTED PARAM TYPE DEFINITIONS =====
|
|
15
|
+
# Nested parameter schemas discovered during parameter extraction
|
|
16
|
+
|
|
17
|
+
# ===== OPERATION PARAMS TYPE DEFINITIONS =====
|
|
18
|
+
|
|
19
|
+
class TicketsListParams(TypedDict):
|
|
20
|
+
"""Parameters for tickets.list operation"""
|
|
21
|
+
page: NotRequired[int]
|
|
22
|
+
external_id: NotRequired[str]
|
|
23
|
+
sort: NotRequired[str]
|
|
24
|
+
|
|
25
|
+
class TicketsGetParams(TypedDict):
|
|
26
|
+
"""Parameters for tickets.get operation"""
|
|
27
|
+
ticket_id: str
|
|
28
|
+
|
|
29
|
+
class UsersListParams(TypedDict):
|
|
30
|
+
"""Parameters for users.list operation"""
|
|
31
|
+
page: NotRequired[int]
|
|
32
|
+
role: NotRequired[str]
|
|
33
|
+
external_id: NotRequired[str]
|
|
34
|
+
|
|
35
|
+
class UsersGetParams(TypedDict):
|
|
36
|
+
"""Parameters for users.get operation"""
|
|
37
|
+
user_id: str
|
|
38
|
+
|
|
39
|
+
class OrganizationsListParams(TypedDict):
|
|
40
|
+
"""Parameters for organizations.list operation"""
|
|
41
|
+
page: NotRequired[int]
|
|
42
|
+
|
|
43
|
+
class OrganizationsGetParams(TypedDict):
|
|
44
|
+
"""Parameters for organizations.get operation"""
|
|
45
|
+
organization_id: str
|
|
46
|
+
|
|
47
|
+
class GroupsListParams(TypedDict):
|
|
48
|
+
"""Parameters for groups.list operation"""
|
|
49
|
+
page: NotRequired[int]
|
|
50
|
+
exclude_deleted: NotRequired[bool]
|
|
51
|
+
|
|
52
|
+
class GroupsGetParams(TypedDict):
|
|
53
|
+
"""Parameters for groups.get operation"""
|
|
54
|
+
group_id: str
|
|
55
|
+
|
|
56
|
+
class TicketCommentsListParams(TypedDict):
|
|
57
|
+
"""Parameters for ticket_comments.list operation"""
|
|
58
|
+
ticket_id: str
|
|
59
|
+
page: NotRequired[int]
|
|
60
|
+
include_inline_images: NotRequired[bool]
|
|
61
|
+
sort: NotRequired[str]
|
|
62
|
+
|
|
63
|
+
class AttachmentsGetParams(TypedDict):
|
|
64
|
+
"""Parameters for attachments.get operation"""
|
|
65
|
+
attachment_id: str
|
|
66
|
+
|
|
67
|
+
class AttachmentsDownloadParams(TypedDict):
|
|
68
|
+
"""Parameters for attachments.download operation"""
|
|
69
|
+
attachment_id: str
|
|
70
|
+
range_header: NotRequired[str]
|
|
71
|
+
|
|
72
|
+
class TicketAuditsListParams(TypedDict):
|
|
73
|
+
"""Parameters for ticket_audits.list operation"""
|
|
74
|
+
page: NotRequired[int]
|
|
75
|
+
|
|
76
|
+
class TicketAuditsListParams(TypedDict):
|
|
77
|
+
"""Parameters for ticket_audits.list operation"""
|
|
78
|
+
ticket_id: str
|
|
79
|
+
page: NotRequired[int]
|
|
80
|
+
|
|
81
|
+
class TicketMetricsListParams(TypedDict):
|
|
82
|
+
"""Parameters for ticket_metrics.list operation"""
|
|
83
|
+
page: NotRequired[int]
|
|
84
|
+
|
|
85
|
+
class TicketFieldsListParams(TypedDict):
|
|
86
|
+
"""Parameters for ticket_fields.list operation"""
|
|
87
|
+
page: NotRequired[int]
|
|
88
|
+
locale: NotRequired[str]
|
|
89
|
+
|
|
90
|
+
class TicketFieldsGetParams(TypedDict):
|
|
91
|
+
"""Parameters for ticket_fields.get operation"""
|
|
92
|
+
ticket_field_id: str
|
|
93
|
+
|
|
94
|
+
class BrandsListParams(TypedDict):
|
|
95
|
+
"""Parameters for brands.list operation"""
|
|
96
|
+
page: NotRequired[int]
|
|
97
|
+
|
|
98
|
+
class BrandsGetParams(TypedDict):
|
|
99
|
+
"""Parameters for brands.get operation"""
|
|
100
|
+
brand_id: str
|
|
101
|
+
|
|
102
|
+
class ViewsListParams(TypedDict):
|
|
103
|
+
"""Parameters for views.list operation"""
|
|
104
|
+
page: NotRequired[int]
|
|
105
|
+
access: NotRequired[str]
|
|
106
|
+
active: NotRequired[bool]
|
|
107
|
+
group_id: NotRequired[int]
|
|
108
|
+
sort_by: NotRequired[str]
|
|
109
|
+
sort_order: NotRequired[str]
|
|
110
|
+
|
|
111
|
+
class ViewsGetParams(TypedDict):
|
|
112
|
+
"""Parameters for views.get operation"""
|
|
113
|
+
view_id: str
|
|
114
|
+
|
|
115
|
+
class MacrosListParams(TypedDict):
|
|
116
|
+
"""Parameters for macros.list operation"""
|
|
117
|
+
page: NotRequired[int]
|
|
118
|
+
access: NotRequired[str]
|
|
119
|
+
active: NotRequired[bool]
|
|
120
|
+
category: NotRequired[int]
|
|
121
|
+
group_id: NotRequired[int]
|
|
122
|
+
only_viewable: NotRequired[bool]
|
|
123
|
+
sort_by: NotRequired[str]
|
|
124
|
+
sort_order: NotRequired[str]
|
|
125
|
+
|
|
126
|
+
class MacrosGetParams(TypedDict):
|
|
127
|
+
"""Parameters for macros.get operation"""
|
|
128
|
+
macro_id: str
|
|
129
|
+
|
|
130
|
+
class TriggersListParams(TypedDict):
|
|
131
|
+
"""Parameters for triggers.list operation"""
|
|
132
|
+
page: NotRequired[int]
|
|
133
|
+
active: NotRequired[bool]
|
|
134
|
+
category_id: NotRequired[str]
|
|
135
|
+
sort: NotRequired[str]
|
|
136
|
+
|
|
137
|
+
class TriggersGetParams(TypedDict):
|
|
138
|
+
"""Parameters for triggers.get operation"""
|
|
139
|
+
trigger_id: str
|
|
140
|
+
|
|
141
|
+
class AutomationsListParams(TypedDict):
|
|
142
|
+
"""Parameters for automations.list operation"""
|
|
143
|
+
page: NotRequired[int]
|
|
144
|
+
active: NotRequired[bool]
|
|
145
|
+
sort: NotRequired[str]
|
|
146
|
+
|
|
147
|
+
class AutomationsGetParams(TypedDict):
|
|
148
|
+
"""Parameters for automations.get operation"""
|
|
149
|
+
automation_id: str
|
|
150
|
+
|
|
151
|
+
class TagsListParams(TypedDict):
|
|
152
|
+
"""Parameters for tags.list operation"""
|
|
153
|
+
page: NotRequired[int]
|
|
154
|
+
|
|
155
|
+
class SatisfactionRatingsListParams(TypedDict):
|
|
156
|
+
"""Parameters for satisfaction_ratings.list operation"""
|
|
157
|
+
page: NotRequired[int]
|
|
158
|
+
score: NotRequired[str]
|
|
159
|
+
start_time: NotRequired[int]
|
|
160
|
+
end_time: NotRequired[int]
|
|
161
|
+
|
|
162
|
+
class SatisfactionRatingsGetParams(TypedDict):
|
|
163
|
+
"""Parameters for satisfaction_ratings.get operation"""
|
|
164
|
+
satisfaction_rating_id: str
|
|
165
|
+
|
|
166
|
+
class GroupMembershipsListParams(TypedDict):
|
|
167
|
+
"""Parameters for group_memberships.list operation"""
|
|
168
|
+
page: NotRequired[int]
|
|
169
|
+
|
|
170
|
+
class OrganizationMembershipsListParams(TypedDict):
|
|
171
|
+
"""Parameters for organization_memberships.list operation"""
|
|
172
|
+
page: NotRequired[int]
|
|
173
|
+
|
|
174
|
+
class SlaPoliciesListParams(TypedDict):
|
|
175
|
+
"""Parameters for sla_policies.list operation"""
|
|
176
|
+
page: NotRequired[int]
|
|
177
|
+
|
|
178
|
+
class SlaPoliciesGetParams(TypedDict):
|
|
179
|
+
"""Parameters for sla_policies.get operation"""
|
|
180
|
+
sla_policy_id: str
|
|
181
|
+
|
|
182
|
+
class TicketFormsListParams(TypedDict):
|
|
183
|
+
"""Parameters for ticket_forms.list operation"""
|
|
184
|
+
page: NotRequired[int]
|
|
185
|
+
active: NotRequired[bool]
|
|
186
|
+
end_user_visible: NotRequired[bool]
|
|
187
|
+
|
|
188
|
+
class TicketFormsGetParams(TypedDict):
|
|
189
|
+
"""Parameters for ticket_forms.get operation"""
|
|
190
|
+
ticket_form_id: str
|
|
191
|
+
|
|
192
|
+
class ArticlesListParams(TypedDict):
|
|
193
|
+
"""Parameters for articles.list operation"""
|
|
194
|
+
page: NotRequired[int]
|
|
195
|
+
sort_by: NotRequired[str]
|
|
196
|
+
sort_order: NotRequired[str]
|
|
197
|
+
|
|
198
|
+
class ArticlesGetParams(TypedDict):
|
|
199
|
+
"""Parameters for articles.get operation"""
|
|
200
|
+
id: str
|
|
201
|
+
|
|
202
|
+
class ArticleAttachmentsListParams(TypedDict):
|
|
203
|
+
"""Parameters for article_attachments.list operation"""
|
|
204
|
+
article_id: str
|
|
205
|
+
page: NotRequired[int]
|
|
206
|
+
|
|
207
|
+
class ArticleAttachmentsGetParams(TypedDict):
|
|
208
|
+
"""Parameters for article_attachments.get operation"""
|
|
209
|
+
article_id: str
|
|
210
|
+
attachment_id: str
|
|
211
|
+
|
|
212
|
+
class ArticleAttachmentsDownloadParams(TypedDict):
|
|
213
|
+
"""Parameters for article_attachments.download operation"""
|
|
214
|
+
article_id: str
|
|
215
|
+
attachment_id: str
|
|
216
|
+
range_header: NotRequired[str]
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: airbyte-agent-zendesk-support
|
|
3
|
+
Version: 0.18.40
|
|
4
|
+
Summary: Airbyte Zendesk-Support Connector for AI platforms
|
|
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
|
+
Author-email: Airbyte <contact@airbyte.io>
|
|
10
|
+
License: Elastic-2.0
|
|
11
|
+
Keywords: agent,ai,airbyte,api,connector,data-integration,llm,mcp,zendesk-support
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: Other/Proprietary License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Requires-Python: >=3.13
|
|
22
|
+
Requires-Dist: httpx>=0.24.0
|
|
23
|
+
Requires-Dist: jinja2>=3.0.0
|
|
24
|
+
Requires-Dist: jsonpath-ng>=1.6.1
|
|
25
|
+
Requires-Dist: jsonref>=1.1.0
|
|
26
|
+
Requires-Dist: opentelemetry-api>=1.37.0
|
|
27
|
+
Requires-Dist: opentelemetry-sdk>=1.37.0
|
|
28
|
+
Requires-Dist: pydantic>=2.0.0
|
|
29
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
30
|
+
Requires-Dist: pyyaml>=6.0
|
|
31
|
+
Requires-Dist: segment-analytics-python>=2.2.0
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
34
|
+
# Zendesk-Support agent connector
|
|
35
|
+
|
|
36
|
+
Zendesk Support is a customer service platform that helps businesses manage support
|
|
37
|
+
tickets, customer interactions, and help center content. This connector provides
|
|
38
|
+
access to tickets, users, organizations, groups, comments, attachments, automations,
|
|
39
|
+
triggers, macros, views, satisfaction ratings, SLA policies, and help center articles
|
|
40
|
+
for customer support analytics and service performance insights.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
## Example questions
|
|
44
|
+
|
|
45
|
+
The Zendesk-Support connector is optimized to handle prompts like these.
|
|
46
|
+
|
|
47
|
+
- Show me the tickets assigned to me last week
|
|
48
|
+
- What are the top 5 support issues our organization has faced this month?
|
|
49
|
+
- List all unresolved tickets for \{customer\}
|
|
50
|
+
- Analyze the satisfaction ratings for our support team in the last 30 days
|
|
51
|
+
- Compare ticket resolution times across different support groups
|
|
52
|
+
- Show me the details of recent tickets tagged with \{tag\}
|
|
53
|
+
- Identify the most common ticket fields used in our support workflow
|
|
54
|
+
- Summarize the performance of our SLA policies this quarter
|
|
55
|
+
|
|
56
|
+
## Unsupported questions
|
|
57
|
+
|
|
58
|
+
The Zendesk-Support connector isn't currently able to handle prompts like these.
|
|
59
|
+
|
|
60
|
+
- Create a new support ticket for \{customer\}
|
|
61
|
+
- Update the priority of this ticket
|
|
62
|
+
- Assign this ticket to \{team_member\}
|
|
63
|
+
- Delete these old support tickets
|
|
64
|
+
- Send an automatic response to \{customer\}
|
|
65
|
+
|
|
66
|
+
## Installation
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
uv pip install airbyte-agent-zendesk-support
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Usage
|
|
73
|
+
|
|
74
|
+
This connector supports multiple authentication methods:
|
|
75
|
+
|
|
76
|
+
### OAuth 2.0
|
|
77
|
+
|
|
78
|
+
```python
|
|
79
|
+
from airbyte_agent_zendesk_support import ZendeskSupportConnector
|
|
80
|
+
from airbyte_agent_zendesk_support.models import ZendeskSupportOauth20AuthConfig
|
|
81
|
+
|
|
82
|
+
connector = ZendeskSupportConnector(
|
|
83
|
+
auth_config=ZendeskSupportOauth20AuthConfig(
|
|
84
|
+
access_token="...",
|
|
85
|
+
refresh_token="..."
|
|
86
|
+
)
|
|
87
|
+
)
|
|
88
|
+
result = await connector.tickets.list()
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### API Token
|
|
92
|
+
|
|
93
|
+
```python
|
|
94
|
+
from airbyte_agent_zendesk_support import ZendeskSupportConnector
|
|
95
|
+
from airbyte_agent_zendesk_support.models import ZendeskSupportApiTokenAuthConfig
|
|
96
|
+
|
|
97
|
+
connector = ZendeskSupportConnector(
|
|
98
|
+
auth_config=ZendeskSupportApiTokenAuthConfig(
|
|
99
|
+
email="...",
|
|
100
|
+
api_token="..."
|
|
101
|
+
)
|
|
102
|
+
)
|
|
103
|
+
result = await connector.tickets.list()
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
## Full documentation
|
|
108
|
+
|
|
109
|
+
This connector supports the following entities and actions.
|
|
110
|
+
|
|
111
|
+
| Entity | Actions |
|
|
112
|
+
|--------|---------|
|
|
113
|
+
| Tickets | [List](./REFERENCE.md#tickets-list), [Get](./REFERENCE.md#tickets-get) |
|
|
114
|
+
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
115
|
+
| Organizations | [List](./REFERENCE.md#organizations-list), [Get](./REFERENCE.md#organizations-get) |
|
|
116
|
+
| Groups | [List](./REFERENCE.md#groups-list), [Get](./REFERENCE.md#groups-get) |
|
|
117
|
+
| Ticket Comments | [List](./REFERENCE.md#ticket-comments-list) |
|
|
118
|
+
| Attachments | [Get](./REFERENCE.md#attachments-get), [Download](./REFERENCE.md#attachments-download) |
|
|
119
|
+
| Ticket Audits | [List](./REFERENCE.md#ticket-audits-list), [List](./REFERENCE.md#ticket-audits-list) |
|
|
120
|
+
| Ticket Metrics | [List](./REFERENCE.md#ticket-metrics-list) |
|
|
121
|
+
| Ticket Fields | [List](./REFERENCE.md#ticket-fields-list), [Get](./REFERENCE.md#ticket-fields-get) |
|
|
122
|
+
| Brands | [List](./REFERENCE.md#brands-list), [Get](./REFERENCE.md#brands-get) |
|
|
123
|
+
| Views | [List](./REFERENCE.md#views-list), [Get](./REFERENCE.md#views-get) |
|
|
124
|
+
| Macros | [List](./REFERENCE.md#macros-list), [Get](./REFERENCE.md#macros-get) |
|
|
125
|
+
| Triggers | [List](./REFERENCE.md#triggers-list), [Get](./REFERENCE.md#triggers-get) |
|
|
126
|
+
| Automations | [List](./REFERENCE.md#automations-list), [Get](./REFERENCE.md#automations-get) |
|
|
127
|
+
| Tags | [List](./REFERENCE.md#tags-list) |
|
|
128
|
+
| Satisfaction Ratings | [List](./REFERENCE.md#satisfaction-ratings-list), [Get](./REFERENCE.md#satisfaction-ratings-get) |
|
|
129
|
+
| Group Memberships | [List](./REFERENCE.md#group-memberships-list) |
|
|
130
|
+
| Organization Memberships | [List](./REFERENCE.md#organization-memberships-list) |
|
|
131
|
+
| Sla Policies | [List](./REFERENCE.md#sla-policies-list), [Get](./REFERENCE.md#sla-policies-get) |
|
|
132
|
+
| Ticket Forms | [List](./REFERENCE.md#ticket-forms-list), [Get](./REFERENCE.md#ticket-forms-get) |
|
|
133
|
+
| Articles | [List](./REFERENCE.md#articles-list), [Get](./REFERENCE.md#articles-get) |
|
|
134
|
+
| Article Attachments | [List](./REFERENCE.md#article-attachments-list), [Get](./REFERENCE.md#article-attachments-get), [Download](./REFERENCE.md#article-attachments-download) |
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
138
|
+
|
|
139
|
+
For the service's official API docs, see the [Zendesk-Support API reference](https://developer.zendesk.com/api-reference/ticketing/introduction/).
|
|
140
|
+
|
|
141
|
+
## Version information
|
|
142
|
+
|
|
143
|
+
- **Package version:** 0.18.40
|
|
144
|
+
- **Connector version:** 0.1.4
|
|
145
|
+
- **Generated with Connector SDK commit SHA:** 10173eb17aec4347d9ef4f993e10cd63d63fa847
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
airbyte_agent_zendesk_support/__init__.py,sha256=I7b1fSLxELWkPztFHvLDIXYsMM9pgy84tC5MIx01_E0,6725
|
|
2
|
+
airbyte_agent_zendesk_support/connector.py,sha256=bW99aXhfnVwjoTPXr0tJ2kjr6Prl_5AqMRlC4cgn2Dg,67056
|
|
3
|
+
airbyte_agent_zendesk_support/connector_model.py,sha256=M1phs0lN_6nxKgEF4enlA2znIMIDOMPkQiHY6BYszeE,241309
|
|
4
|
+
airbyte_agent_zendesk_support/models.py,sha256=31bsOmf4nBdf8EXN3JpYzXW8mx6gv1xaZjeuEBgSzws,36399
|
|
5
|
+
airbyte_agent_zendesk_support/types.py,sha256=vaWdcxDIJ8_nH7sv9PBsdWOKuTPVkskLur7fQF5Ln94,6320
|
|
6
|
+
airbyte_agent_zendesk_support/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
8
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_strategies.py,sha256=BdjAzFRTwXCmLFqYWqZ4Dx9RsqtI7pAkw-8NynSK4sQ,39914
|
|
9
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_template.py,sha256=nju4jqlFC_KI82ILNumNIyiUtRJcy7J94INIZ0QraI4,4454
|
|
10
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/connector_model_loader.py,sha256=Cx9wPhKwWfzkc8i63IevL0EsN3iWUl_OA-_jA9EKNcE,34877
|
|
11
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
|
|
12
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
|
|
13
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/extensions.py,sha256=XWRRoJOOrwUHSKbuQt5DU7CCu8ePzhd_HuP7c_uD77w,21376
|
|
14
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
|
|
15
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/introspection.py,sha256=2CyKXZHT74-1Id97uw1RLeyOi6TV24_hoNbQ6-6y7uI,10335
|
|
16
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/secrets.py,sha256=J9ezMu4xNnLW11xY5RCre6DHP7YMKZCqwGJfk7ufHAM,6855
|
|
17
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py,sha256=CStkOsLtmZZdXylkdCsbYORDzughxygt1-Ucma0j-qE,8287
|
|
18
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
|
|
19
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
|
|
20
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
|
|
21
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
|
|
22
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
23
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/hosted_executor.py,sha256=ydHcG-biRS1ITT5ELwPShdJW-KYpvK--Fos1ipNgHho,6995
|
|
24
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py,sha256=bfvdObgQ6NsriDMf85Ykxx1TPvjr7tuURl_K12md1YA,65258
|
|
25
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
26
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
27
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
28
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
|
|
29
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
|
|
30
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/response.py,sha256=Q-RyM5D0D05ZhmZVJk4hVpmoS8YtyXNOTM5hqBt7rWI,3475
|
|
31
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
|
|
32
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
|
|
33
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
|
|
34
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/logger.py,sha256=GKm03UgDMNlvGuuH_c07jNcZmUccC3DISG269Ehj1Uo,8084
|
|
35
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/types.py,sha256=z0UiSdXP_r71mtwWkJydo0InsNpYOMyI7SVutzd2PEo,3172
|
|
36
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
|
|
37
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/config.py,sha256=uWvRAPHnEusVKviQQncqcpnHKNhoZ4ZoFK6nUOSVClY,5372
|
|
38
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/models.py,sha256=IRGjlJia28_IU7BMSBb5RHWs47yAOLvE20JIIXHazLY,448
|
|
39
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
|
|
40
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/session.py,sha256=WYRIB3bVz9HhpElkUO9CILCRIrWs9p2MR2hmf8uJm3E,3086
|
|
41
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
|
|
42
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
|
|
43
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/metrics.py,sha256=FRff7dKt4iwt_A7pxV5n9kAGBR756PC7q8-weWygPSM,2817
|
|
44
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
|
|
45
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py,sha256=swe27f6sWuuGmG54VAW9K8P5USuhmncpIqAliFcB-OU,4741
|
|
46
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/components.py,sha256=x3YCM1p2n_xHi50fMeOX0mXUiPqjGlLHs3Go8jXokb0,7895
|
|
47
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
|
|
48
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py,sha256=0SKtv1WaW2sHaSZF-gi5dI3p0heGbegphjU2PAyIe-M,3277
|
|
49
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py,sha256=RpzGtAI4yvAtMHAfMUMcUwgHv_qJojnKlNb75_agUF8,5729
|
|
50
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py,sha256=zQ9RRuF3LBgLQi_4cItmjXbG_5WKlmCNM3nCil30H90,8470
|
|
51
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
|
|
52
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
53
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
|
|
54
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
|
|
55
|
+
airbyte_agent_zendesk_support-0.18.40.dist-info/METADATA,sha256=WSgf3xiboyG2eojzCo4xsAsQucTfk1kO-hjnQunLfKo,6246
|
|
56
|
+
airbyte_agent_zendesk_support-0.18.40.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_zendesk_support-0.18.40.dist-info/RECORD,,
|