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,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
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Vendored connector-sdk runtime."""
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Airbyte SDK - Async-first type-safe connector execution framework.
|
|
3
|
+
|
|
4
|
+
Provides:
|
|
5
|
+
- Async executor for all connectors
|
|
6
|
+
- Custom connector support
|
|
7
|
+
- Performance monitoring and instrumentation
|
|
8
|
+
- Connection pooling and concurrent execution
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
from __future__ import annotations
|
|
12
|
+
|
|
13
|
+
from .auth_strategies import AuthStrategy
|
|
14
|
+
from .connector_model_loader import load_connector_model
|
|
15
|
+
from .constants import SDK_VERSION
|
|
16
|
+
from .exceptions import (
|
|
17
|
+
AuthenticationError,
|
|
18
|
+
HTTPClientError,
|
|
19
|
+
NetworkError,
|
|
20
|
+
RateLimitError,
|
|
21
|
+
TimeoutError,
|
|
22
|
+
)
|
|
23
|
+
from .executor import (
|
|
24
|
+
ActionNotSupportedError,
|
|
25
|
+
EntityNotFoundError,
|
|
26
|
+
ExecutionConfig,
|
|
27
|
+
ExecutionResult,
|
|
28
|
+
ExecutorError,
|
|
29
|
+
ExecutorProtocol,
|
|
30
|
+
HostedExecutor,
|
|
31
|
+
InvalidParameterError,
|
|
32
|
+
LocalExecutor,
|
|
33
|
+
MissingParameterError,
|
|
34
|
+
)
|
|
35
|
+
from .http_client import HTTPClient
|
|
36
|
+
from .logging import LogSession, NullLogger, RequestLog, RequestLogger
|
|
37
|
+
from .performance import PerformanceMonitor, instrument
|
|
38
|
+
from .types import Action, AuthType, ConnectorModel, EntityDefinition
|
|
39
|
+
from .utils import save_download
|
|
40
|
+
|
|
41
|
+
__version__ = SDK_VERSION
|
|
42
|
+
|
|
43
|
+
__all__ = [
|
|
44
|
+
# All Executors
|
|
45
|
+
"LocalExecutor",
|
|
46
|
+
"HostedExecutor",
|
|
47
|
+
"ExecutorProtocol",
|
|
48
|
+
"HTTPClient",
|
|
49
|
+
# Execution Config and Result Types
|
|
50
|
+
"ExecutionConfig",
|
|
51
|
+
"ExecutionResult",
|
|
52
|
+
# Types
|
|
53
|
+
"ConnectorModel",
|
|
54
|
+
"Action",
|
|
55
|
+
"AuthType",
|
|
56
|
+
"EntityDefinition",
|
|
57
|
+
"load_connector_model",
|
|
58
|
+
# Authentication
|
|
59
|
+
"AuthStrategy",
|
|
60
|
+
# Executor Exceptions
|
|
61
|
+
"ExecutorError",
|
|
62
|
+
"EntityNotFoundError",
|
|
63
|
+
"ActionNotSupportedError",
|
|
64
|
+
"MissingParameterError",
|
|
65
|
+
"InvalidParameterError",
|
|
66
|
+
# HTTP Exceptions
|
|
67
|
+
"HTTPClientError",
|
|
68
|
+
"AuthenticationError",
|
|
69
|
+
"RateLimitError",
|
|
70
|
+
"NetworkError",
|
|
71
|
+
"TimeoutError",
|
|
72
|
+
# Logging
|
|
73
|
+
"RequestLogger",
|
|
74
|
+
"NullLogger",
|
|
75
|
+
"RequestLog",
|
|
76
|
+
"LogSession",
|
|
77
|
+
# Performance monitoring
|
|
78
|
+
"PerformanceMonitor",
|
|
79
|
+
"instrument",
|
|
80
|
+
# Utilities
|
|
81
|
+
"save_download",
|
|
82
|
+
]
|