airbyte-agent-zendesk-support 0.18.39__py3-none-any.whl → 0.18.41__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 +126 -1
- airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py +69 -9
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py +22 -33
- {airbyte_agent_zendesk_support-0.18.39.dist-info → airbyte_agent_zendesk_support-0.18.41.dist-info}/METADATA +11 -8
- {airbyte_agent_zendesk_support-0.18.39.dist-info → airbyte_agent_zendesk_support-0.18.41.dist-info}/RECORD +6 -6
- {airbyte_agent_zendesk_support-0.18.39.dist-info → airbyte_agent_zendesk_support-0.18.41.dist-info}/WHEEL +0 -0
|
@@ -133,4 +133,129 @@ from .types import (
|
|
|
133
133
|
ArticleAttachmentsDownloadParams
|
|
134
134
|
)
|
|
135
135
|
|
|
136
|
-
__all__ = [
|
|
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
|
+
]
|
|
@@ -1098,35 +1098,93 @@ class LocalExecutor:
|
|
|
1098
1098
|
|
|
1099
1099
|
return interpolate_value(variables)
|
|
1100
1100
|
|
|
1101
|
+
def _wrap_primitives(self, data: Any) -> dict[str, Any] | list[dict[str, Any]] | None:
|
|
1102
|
+
"""Wrap primitive values in dict format for consistent response structure.
|
|
1103
|
+
|
|
1104
|
+
Transforms primitive API responses into dict format so downstream code
|
|
1105
|
+
can always expect dict-based data structures.
|
|
1106
|
+
|
|
1107
|
+
Args:
|
|
1108
|
+
data: Response data (could be primitive, list, dict, or None)
|
|
1109
|
+
|
|
1110
|
+
Returns:
|
|
1111
|
+
- If data is a primitive (str, int, float, bool): {"value": data}
|
|
1112
|
+
- If data is a list: wraps all non-dict elements as {"value": item}
|
|
1113
|
+
- If data is already a dict or list of dicts: unchanged
|
|
1114
|
+
- If data is None: None
|
|
1115
|
+
|
|
1116
|
+
Examples:
|
|
1117
|
+
>>> executor._wrap_primitives(42)
|
|
1118
|
+
{"value": 42}
|
|
1119
|
+
>>> executor._wrap_primitives([1, 2, 3])
|
|
1120
|
+
[{"value": 1}, {"value": 2}, {"value": 3}]
|
|
1121
|
+
>>> executor._wrap_primitives([1, {"id": 2}, 3])
|
|
1122
|
+
[{"value": 1}, {"id": 2}, {"value": 3}]
|
|
1123
|
+
>>> executor._wrap_primitives([[1, 2], 3])
|
|
1124
|
+
[{"value": [1, 2]}, {"value": 3}]
|
|
1125
|
+
>>> executor._wrap_primitives({"id": 1})
|
|
1126
|
+
{"id": 1} # unchanged
|
|
1127
|
+
"""
|
|
1128
|
+
if data is None:
|
|
1129
|
+
return None
|
|
1130
|
+
|
|
1131
|
+
# Handle primitive scalars
|
|
1132
|
+
if isinstance(data, (bool, str, int, float)):
|
|
1133
|
+
return {"value": data}
|
|
1134
|
+
|
|
1135
|
+
# Handle lists - wrap non-dict elements
|
|
1136
|
+
if isinstance(data, list):
|
|
1137
|
+
if not data:
|
|
1138
|
+
return [] # Empty list unchanged
|
|
1139
|
+
|
|
1140
|
+
wrapped = []
|
|
1141
|
+
for item in data:
|
|
1142
|
+
if isinstance(item, dict):
|
|
1143
|
+
wrapped.append(item)
|
|
1144
|
+
else:
|
|
1145
|
+
wrapped.append({"value": item})
|
|
1146
|
+
return wrapped
|
|
1147
|
+
|
|
1148
|
+
# Dict - return unchanged
|
|
1149
|
+
if isinstance(data, dict):
|
|
1150
|
+
return data
|
|
1151
|
+
|
|
1152
|
+
# Unknown type - wrap for safety
|
|
1153
|
+
return {"value": data}
|
|
1154
|
+
|
|
1101
1155
|
def _extract_records(
|
|
1102
1156
|
self,
|
|
1103
|
-
response_data:
|
|
1157
|
+
response_data: Any,
|
|
1104
1158
|
endpoint: EndpointDefinition,
|
|
1105
|
-
) -> dict[str, Any] | list[Any] | None:
|
|
1159
|
+
) -> dict[str, Any] | list[dict[str, Any]] | None:
|
|
1106
1160
|
"""Extract records from response using record extractor.
|
|
1107
1161
|
|
|
1108
1162
|
Type inference based on action:
|
|
1109
1163
|
- list, search: Returns array ([] if not found)
|
|
1110
1164
|
- get, create, update, delete: Returns single record (None if not found)
|
|
1111
1165
|
|
|
1166
|
+
Automatically wraps primitive values (int, str, float, bool) in {"value": primitive}
|
|
1167
|
+
format to ensure consistent dict-based responses for downstream code.
|
|
1168
|
+
|
|
1112
1169
|
Args:
|
|
1113
|
-
response_data: Full API response
|
|
1170
|
+
response_data: Full API response (can be dict, list, primitive, or None)
|
|
1114
1171
|
endpoint: Endpoint with optional record extractor and action
|
|
1115
1172
|
|
|
1116
1173
|
Returns:
|
|
1117
1174
|
- Extracted data if extractor configured and path found
|
|
1118
1175
|
- [] or None if path not found (based on action)
|
|
1119
1176
|
- Original response if no extractor configured or on error
|
|
1177
|
+
- Primitives are wrapped as {"value": primitive}
|
|
1120
1178
|
"""
|
|
1121
1179
|
# Check if endpoint has record extractor
|
|
1122
1180
|
extractor = endpoint.record_extractor
|
|
1123
1181
|
if not extractor:
|
|
1124
|
-
return response_data
|
|
1182
|
+
return self._wrap_primitives(response_data)
|
|
1125
1183
|
|
|
1126
1184
|
# Determine if this action returns array or single record
|
|
1127
1185
|
action = endpoint.action
|
|
1128
1186
|
if not action:
|
|
1129
|
-
return response_data
|
|
1187
|
+
return self._wrap_primitives(response_data)
|
|
1130
1188
|
|
|
1131
1189
|
is_array_action = action in (Action.LIST, Action.API_SEARCH)
|
|
1132
1190
|
|
|
@@ -1139,17 +1197,19 @@ class LocalExecutor:
|
|
|
1139
1197
|
# Path not found - return empty based on action
|
|
1140
1198
|
return [] if is_array_action else None
|
|
1141
1199
|
|
|
1142
|
-
# Return extracted data
|
|
1200
|
+
# Return extracted data with primitive wrapping
|
|
1143
1201
|
if is_array_action:
|
|
1144
1202
|
# For array actions, return the array (or list of matches)
|
|
1145
|
-
|
|
1203
|
+
result = matches[0] if len(matches) == 1 else matches
|
|
1146
1204
|
else:
|
|
1147
1205
|
# For single record actions, return first match
|
|
1148
|
-
|
|
1206
|
+
result = matches[0]
|
|
1207
|
+
|
|
1208
|
+
return self._wrap_primitives(result)
|
|
1149
1209
|
|
|
1150
1210
|
except Exception as e:
|
|
1151
1211
|
logging.warning(f"Failed to apply record extractor '{extractor}': {e}. Returning original response.")
|
|
1152
|
-
return response_data
|
|
1212
|
+
return self._wrap_primitives(response_data)
|
|
1153
1213
|
|
|
1154
1214
|
def _extract_metadata(
|
|
1155
1215
|
self,
|
|
@@ -7,6 +7,7 @@ References:
|
|
|
7
7
|
|
|
8
8
|
from __future__ import annotations
|
|
9
9
|
|
|
10
|
+
from collections.abc import Iterator
|
|
10
11
|
from typing import Any
|
|
11
12
|
|
|
12
13
|
from pydantic import BaseModel, ConfigDict, Field, field_validator
|
|
@@ -15,7 +16,7 @@ from ..constants import OPENAPI_VERSION_PREFIX
|
|
|
15
16
|
|
|
16
17
|
from .base import Info, Server
|
|
17
18
|
from .components import Components
|
|
18
|
-
from .operations import PathItem
|
|
19
|
+
from .operations import Operation, PathItem
|
|
19
20
|
from .security import SecurityRequirement
|
|
20
21
|
|
|
21
22
|
|
|
@@ -33,6 +34,10 @@ class Tag(BaseModel):
|
|
|
33
34
|
external_docs: dict[str, Any] | None = Field(None, alias="externalDocs")
|
|
34
35
|
|
|
35
36
|
|
|
37
|
+
# HTTP methods supported by OpenAPI operations
|
|
38
|
+
HTTP_METHODS = frozenset({"get", "post", "put", "patch", "delete", "options", "head", "trace"})
|
|
39
|
+
|
|
40
|
+
|
|
36
41
|
class ExternalDocs(BaseModel):
|
|
37
42
|
"""
|
|
38
43
|
External documentation reference.
|
|
@@ -79,7 +84,7 @@ class OpenAPIConnector(BaseModel):
|
|
|
79
84
|
raise ValueError(f"OpenAPI version must be {OPENAPI_VERSION_PREFIX}x, got: {v}")
|
|
80
85
|
return v
|
|
81
86
|
|
|
82
|
-
def get_entity_operations(self, entity_name: str) -> list[tuple[str, str,
|
|
87
|
+
def get_entity_operations(self, entity_name: str) -> list[tuple[str, str, Operation]]:
|
|
83
88
|
"""
|
|
84
89
|
Get all operations for a specific entity.
|
|
85
90
|
|
|
@@ -89,22 +94,7 @@ class OpenAPIConnector(BaseModel):
|
|
|
89
94
|
Returns:
|
|
90
95
|
List of tuples: (path, method, operation)
|
|
91
96
|
"""
|
|
92
|
-
|
|
93
|
-
for path, path_item in self.paths.items():
|
|
94
|
-
for method in [
|
|
95
|
-
"get",
|
|
96
|
-
"post",
|
|
97
|
-
"put",
|
|
98
|
-
"patch",
|
|
99
|
-
"delete",
|
|
100
|
-
"options",
|
|
101
|
-
"head",
|
|
102
|
-
"trace",
|
|
103
|
-
]:
|
|
104
|
-
operation = getattr(path_item, method, None)
|
|
105
|
-
if operation and operation.x_airbyte_entity == entity_name:
|
|
106
|
-
results.append((path, method, operation))
|
|
107
|
-
return results
|
|
97
|
+
return [(path, method, op) for path, method, op in self._iter_operations() if op.x_airbyte_entity == entity_name]
|
|
108
98
|
|
|
109
99
|
def list_entities(self) -> list[str]:
|
|
110
100
|
"""
|
|
@@ -113,19 +103,18 @@ class OpenAPIConnector(BaseModel):
|
|
|
113
103
|
Returns:
|
|
114
104
|
Sorted list of unique entity names
|
|
115
105
|
"""
|
|
116
|
-
entities =
|
|
117
|
-
for path_item in self.paths.values():
|
|
118
|
-
for method in [
|
|
119
|
-
"get",
|
|
120
|
-
"post",
|
|
121
|
-
"put",
|
|
122
|
-
"patch",
|
|
123
|
-
"delete",
|
|
124
|
-
"options",
|
|
125
|
-
"head",
|
|
126
|
-
"trace",
|
|
127
|
-
]:
|
|
128
|
-
operation = getattr(path_item, method, None)
|
|
129
|
-
if operation and operation.x_airbyte_entity:
|
|
130
|
-
entities.add(operation.x_airbyte_entity)
|
|
106
|
+
entities = {op.x_airbyte_entity for _, _, op in self._iter_operations() if op.x_airbyte_entity}
|
|
131
107
|
return sorted(entities)
|
|
108
|
+
|
|
109
|
+
def _iter_operations(self) -> Iterator[tuple[str, str, Operation]]:
|
|
110
|
+
"""
|
|
111
|
+
Iterate over all operations in the spec.
|
|
112
|
+
|
|
113
|
+
Yields:
|
|
114
|
+
Tuples of (path, method, operation) for each defined operation
|
|
115
|
+
"""
|
|
116
|
+
for path, path_item in self.paths.items():
|
|
117
|
+
for method in HTTP_METHODS:
|
|
118
|
+
operation = getattr(path_item, method, None)
|
|
119
|
+
if operation:
|
|
120
|
+
yield path, method, operation
|
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-zendesk-support
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.41
|
|
4
4
|
Summary: Airbyte Zendesk-Support Connector for AI platforms
|
|
5
|
-
Project-URL: Homepage, https://github.com/airbytehq/airbyte-
|
|
6
|
-
Project-URL: Documentation, https://
|
|
7
|
-
Project-URL: Repository, https://github.com/airbytehq/airbyte-
|
|
8
|
-
Project-URL: Issues, https://github.com/airbytehq/airbyte-
|
|
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
9
|
Author-email: Airbyte <contact@airbyte.io>
|
|
10
10
|
License: Elastic-2.0
|
|
11
|
-
Keywords: airbyte,api,connector,zendesk-support
|
|
11
|
+
Keywords: agent,ai,airbyte,api,connector,data-integration,llm,mcp,zendesk-support
|
|
12
12
|
Classifier: Development Status :: 3 - Alpha
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: License :: Other/Proprietary License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
15
16
|
Classifier: Programming Language :: Python :: 3
|
|
16
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
17
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Typing :: Typed
|
|
18
21
|
Requires-Python: >=3.13
|
|
19
22
|
Requires-Dist: httpx>=0.24.0
|
|
20
23
|
Requires-Dist: jinja2>=3.0.0
|
|
@@ -137,6 +140,6 @@ For the service's official API docs, see the [Zendesk-Support API reference](htt
|
|
|
137
140
|
|
|
138
141
|
## Version information
|
|
139
142
|
|
|
140
|
-
- **Package version:** 0.18.
|
|
143
|
+
- **Package version:** 0.18.41
|
|
141
144
|
- **Connector version:** 0.1.4
|
|
142
|
-
- **Generated with Connector SDK commit SHA:**
|
|
145
|
+
- **Generated with Connector SDK commit SHA:** b7138b411130e18a6ece05c58de092aa28ca0474
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
airbyte_agent_zendesk_support/__init__.py,sha256=
|
|
1
|
+
airbyte_agent_zendesk_support/__init__.py,sha256=I7b1fSLxELWkPztFHvLDIXYsMM9pgy84tC5MIx01_E0,6725
|
|
2
2
|
airbyte_agent_zendesk_support/connector.py,sha256=bW99aXhfnVwjoTPXr0tJ2kjr6Prl_5AqMRlC4cgn2Dg,67056
|
|
3
3
|
airbyte_agent_zendesk_support/connector_model.py,sha256=M1phs0lN_6nxKgEF4enlA2znIMIDOMPkQiHY6BYszeE,241309
|
|
4
4
|
airbyte_agent_zendesk_support/models.py,sha256=31bsOmf4nBdf8EXN3JpYzXW8mx6gv1xaZjeuEBgSzws,36399
|
|
@@ -21,7 +21,7 @@ airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/__init__.py,sh
|
|
|
21
21
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
|
|
22
22
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
23
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=
|
|
24
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py,sha256=CMuknflYNY6_f83xrxvqewfI52MLYdPin3Rvz6HS3wU,67610
|
|
25
25
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
26
26
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
27
27
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
@@ -44,7 +44,7 @@ airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/metrics.py,sha
|
|
|
44
44
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
|
|
45
45
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py,sha256=swe27f6sWuuGmG54VAW9K8P5USuhmncpIqAliFcB-OU,4741
|
|
46
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=
|
|
47
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
|
|
48
48
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py,sha256=0SKtv1WaW2sHaSZF-gi5dI3p0heGbegphjU2PAyIe-M,3277
|
|
49
49
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py,sha256=RpzGtAI4yvAtMHAfMUMcUwgHv_qJojnKlNb75_agUF8,5729
|
|
50
50
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py,sha256=zQ9RRuF3LBgLQi_4cItmjXbG_5WKlmCNM3nCil30H90,8470
|
|
@@ -52,6 +52,6 @@ airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py,sha2
|
|
|
52
52
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
53
53
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
|
|
54
54
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
|
|
55
|
-
airbyte_agent_zendesk_support-0.18.
|
|
56
|
-
airbyte_agent_zendesk_support-0.18.
|
|
57
|
-
airbyte_agent_zendesk_support-0.18.
|
|
55
|
+
airbyte_agent_zendesk_support-0.18.41.dist-info/METADATA,sha256=AjmwSa0xdn4ZbpfvQQ_puKdUe7fb711g9-rS7Rm2SCw,6246
|
|
56
|
+
airbyte_agent_zendesk_support-0.18.41.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_zendesk_support-0.18.41.dist-info/RECORD,,
|
|
File without changes
|