airbyte-agent-zendesk-chat 0.1.1__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_chat/__init__.py +193 -0
- airbyte_agent_zendesk_chat/_vendored/__init__.py +1 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/auth_strategies.py +1120 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/connector_model_loader.py +965 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/local_executor.py +1724 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/extensions.py +693 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/response.py +104 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/http_client.py +693 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/introspection.py +262 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/logging/logger.py +273 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/logging/types.py +93 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/observability/config.py +179 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/observability/session.py +103 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/base.py +164 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/components.py +239 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/connector.py +120 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/extensions.py +230 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/security.py +223 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/events.py +59 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/tracker.py +155 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/types.py +245 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/validation.py +828 -0
- airbyte_agent_zendesk_chat/connector.py +1465 -0
- airbyte_agent_zendesk_chat/connector_model.py +2424 -0
- airbyte_agent_zendesk_chat/models.py +582 -0
- airbyte_agent_zendesk_chat/types.py +984 -0
- airbyte_agent_zendesk_chat-0.1.1.dist-info/METADATA +130 -0
- airbyte_agent_zendesk_chat-0.1.1.dist-info/RECORD +57 -0
- airbyte_agent_zendesk_chat-0.1.1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Blessed Zendesk-Chat connector for Airbyte SDK.
|
|
3
|
+
|
|
4
|
+
Auto-generated from OpenAPI specification.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from .connector import ZendeskChatConnector
|
|
8
|
+
from .models import (
|
|
9
|
+
ZendeskChatAuthConfig,
|
|
10
|
+
Account,
|
|
11
|
+
Billing,
|
|
12
|
+
Plan,
|
|
13
|
+
Agent,
|
|
14
|
+
AgentRoles,
|
|
15
|
+
AgentTimeline,
|
|
16
|
+
Ban,
|
|
17
|
+
ChatHistoryItem,
|
|
18
|
+
ChatConversion,
|
|
19
|
+
WebpathItem,
|
|
20
|
+
ChatEngagement,
|
|
21
|
+
Chat,
|
|
22
|
+
Visitor,
|
|
23
|
+
ChatSession,
|
|
24
|
+
ConversionAttribution,
|
|
25
|
+
MessageCount,
|
|
26
|
+
ResponseTime,
|
|
27
|
+
Department,
|
|
28
|
+
DepartmentSettings,
|
|
29
|
+
Goal,
|
|
30
|
+
Role,
|
|
31
|
+
RoutingSettings,
|
|
32
|
+
Shortcut,
|
|
33
|
+
Skill,
|
|
34
|
+
Trigger,
|
|
35
|
+
AgentTimelineListResultMeta,
|
|
36
|
+
ChatsListResultMeta,
|
|
37
|
+
ZendeskChatExecuteResult,
|
|
38
|
+
ZendeskChatExecuteResultWithMeta,
|
|
39
|
+
AgentsListResult,
|
|
40
|
+
AgentTimelineListResult,
|
|
41
|
+
BansListResult,
|
|
42
|
+
ChatsListResult,
|
|
43
|
+
DepartmentsListResult,
|
|
44
|
+
GoalsListResult,
|
|
45
|
+
RolesListResult,
|
|
46
|
+
ShortcutsListResult,
|
|
47
|
+
SkillsListResult,
|
|
48
|
+
TriggersListResult,
|
|
49
|
+
AirbyteSearchHit,
|
|
50
|
+
AirbyteSearchResult,
|
|
51
|
+
AgentsSearchData,
|
|
52
|
+
AgentsSearchResult,
|
|
53
|
+
ChatsSearchData,
|
|
54
|
+
ChatsSearchResult,
|
|
55
|
+
DepartmentsSearchData,
|
|
56
|
+
DepartmentsSearchResult,
|
|
57
|
+
ShortcutsSearchData,
|
|
58
|
+
ShortcutsSearchResult,
|
|
59
|
+
TriggersSearchData,
|
|
60
|
+
TriggersSearchResult
|
|
61
|
+
)
|
|
62
|
+
from .types import (
|
|
63
|
+
AccountsGetParams,
|
|
64
|
+
AgentsListParams,
|
|
65
|
+
AgentsGetParams,
|
|
66
|
+
AgentTimelineListParams,
|
|
67
|
+
BansListParams,
|
|
68
|
+
BansGetParams,
|
|
69
|
+
ChatsListParams,
|
|
70
|
+
ChatsGetParams,
|
|
71
|
+
DepartmentsListParams,
|
|
72
|
+
DepartmentsGetParams,
|
|
73
|
+
GoalsListParams,
|
|
74
|
+
GoalsGetParams,
|
|
75
|
+
RolesListParams,
|
|
76
|
+
RolesGetParams,
|
|
77
|
+
RoutingSettingsGetParams,
|
|
78
|
+
ShortcutsListParams,
|
|
79
|
+
ShortcutsGetParams,
|
|
80
|
+
SkillsListParams,
|
|
81
|
+
SkillsGetParams,
|
|
82
|
+
TriggersListParams,
|
|
83
|
+
AirbyteSearchParams,
|
|
84
|
+
AirbyteSortOrder,
|
|
85
|
+
AgentsSearchFilter,
|
|
86
|
+
AgentsSearchQuery,
|
|
87
|
+
AgentsCondition,
|
|
88
|
+
ChatsSearchFilter,
|
|
89
|
+
ChatsSearchQuery,
|
|
90
|
+
ChatsCondition,
|
|
91
|
+
DepartmentsSearchFilter,
|
|
92
|
+
DepartmentsSearchQuery,
|
|
93
|
+
DepartmentsCondition,
|
|
94
|
+
ShortcutsSearchFilter,
|
|
95
|
+
ShortcutsSearchQuery,
|
|
96
|
+
ShortcutsCondition,
|
|
97
|
+
TriggersSearchFilter,
|
|
98
|
+
TriggersSearchQuery,
|
|
99
|
+
TriggersCondition
|
|
100
|
+
)
|
|
101
|
+
|
|
102
|
+
__all__ = [
|
|
103
|
+
"ZendeskChatConnector",
|
|
104
|
+
"ZendeskChatAuthConfig",
|
|
105
|
+
"Account",
|
|
106
|
+
"Billing",
|
|
107
|
+
"Plan",
|
|
108
|
+
"Agent",
|
|
109
|
+
"AgentRoles",
|
|
110
|
+
"AgentTimeline",
|
|
111
|
+
"Ban",
|
|
112
|
+
"ChatHistoryItem",
|
|
113
|
+
"ChatConversion",
|
|
114
|
+
"WebpathItem",
|
|
115
|
+
"ChatEngagement",
|
|
116
|
+
"Chat",
|
|
117
|
+
"Visitor",
|
|
118
|
+
"ChatSession",
|
|
119
|
+
"ConversionAttribution",
|
|
120
|
+
"MessageCount",
|
|
121
|
+
"ResponseTime",
|
|
122
|
+
"Department",
|
|
123
|
+
"DepartmentSettings",
|
|
124
|
+
"Goal",
|
|
125
|
+
"Role",
|
|
126
|
+
"RoutingSettings",
|
|
127
|
+
"Shortcut",
|
|
128
|
+
"Skill",
|
|
129
|
+
"Trigger",
|
|
130
|
+
"AgentTimelineListResultMeta",
|
|
131
|
+
"ChatsListResultMeta",
|
|
132
|
+
"ZendeskChatExecuteResult",
|
|
133
|
+
"ZendeskChatExecuteResultWithMeta",
|
|
134
|
+
"AgentsListResult",
|
|
135
|
+
"AgentTimelineListResult",
|
|
136
|
+
"BansListResult",
|
|
137
|
+
"ChatsListResult",
|
|
138
|
+
"DepartmentsListResult",
|
|
139
|
+
"GoalsListResult",
|
|
140
|
+
"RolesListResult",
|
|
141
|
+
"ShortcutsListResult",
|
|
142
|
+
"SkillsListResult",
|
|
143
|
+
"TriggersListResult",
|
|
144
|
+
"AirbyteSearchHit",
|
|
145
|
+
"AirbyteSearchResult",
|
|
146
|
+
"AgentsSearchData",
|
|
147
|
+
"AgentsSearchResult",
|
|
148
|
+
"ChatsSearchData",
|
|
149
|
+
"ChatsSearchResult",
|
|
150
|
+
"DepartmentsSearchData",
|
|
151
|
+
"DepartmentsSearchResult",
|
|
152
|
+
"ShortcutsSearchData",
|
|
153
|
+
"ShortcutsSearchResult",
|
|
154
|
+
"TriggersSearchData",
|
|
155
|
+
"TriggersSearchResult",
|
|
156
|
+
"AccountsGetParams",
|
|
157
|
+
"AgentsListParams",
|
|
158
|
+
"AgentsGetParams",
|
|
159
|
+
"AgentTimelineListParams",
|
|
160
|
+
"BansListParams",
|
|
161
|
+
"BansGetParams",
|
|
162
|
+
"ChatsListParams",
|
|
163
|
+
"ChatsGetParams",
|
|
164
|
+
"DepartmentsListParams",
|
|
165
|
+
"DepartmentsGetParams",
|
|
166
|
+
"GoalsListParams",
|
|
167
|
+
"GoalsGetParams",
|
|
168
|
+
"RolesListParams",
|
|
169
|
+
"RolesGetParams",
|
|
170
|
+
"RoutingSettingsGetParams",
|
|
171
|
+
"ShortcutsListParams",
|
|
172
|
+
"ShortcutsGetParams",
|
|
173
|
+
"SkillsListParams",
|
|
174
|
+
"SkillsGetParams",
|
|
175
|
+
"TriggersListParams",
|
|
176
|
+
"AirbyteSearchParams",
|
|
177
|
+
"AirbyteSortOrder",
|
|
178
|
+
"AgentsSearchFilter",
|
|
179
|
+
"AgentsSearchQuery",
|
|
180
|
+
"AgentsCondition",
|
|
181
|
+
"ChatsSearchFilter",
|
|
182
|
+
"ChatsSearchQuery",
|
|
183
|
+
"ChatsCondition",
|
|
184
|
+
"DepartmentsSearchFilter",
|
|
185
|
+
"DepartmentsSearchQuery",
|
|
186
|
+
"DepartmentsCondition",
|
|
187
|
+
"ShortcutsSearchFilter",
|
|
188
|
+
"ShortcutsSearchQuery",
|
|
189
|
+
"ShortcutsCondition",
|
|
190
|
+
"TriggersSearchFilter",
|
|
191
|
+
"TriggersSearchQuery",
|
|
192
|
+
"TriggersCondition",
|
|
193
|
+
]
|
|
@@ -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
|
+
]
|