airbyte-agent-zendesk-chat 0.1.6__py3-none-any.whl → 0.1.8__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 +4 -4
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/auth_strategies.py +1 -3
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/local_executor.py +1 -3
- airbyte_agent_zendesk_chat/models.py +22 -22
- {airbyte_agent_zendesk_chat-0.1.6.dist-info → airbyte_agent_zendesk_chat-0.1.8.dist-info}/METADATA +3 -3
- {airbyte_agent_zendesk_chat-0.1.6.dist-info → airbyte_agent_zendesk_chat-0.1.8.dist-info}/RECORD +7 -7
- {airbyte_agent_zendesk_chat-0.1.6.dist-info → airbyte_agent_zendesk_chat-0.1.8.dist-info}/WHEEL +0 -0
|
@@ -14,10 +14,10 @@ from .models import (
|
|
|
14
14
|
AgentRoles,
|
|
15
15
|
AgentTimeline,
|
|
16
16
|
Ban,
|
|
17
|
-
ChatHistoryItem,
|
|
18
17
|
ChatEngagement,
|
|
19
|
-
ChatConversion,
|
|
20
18
|
WebpathItem,
|
|
19
|
+
ChatConversion,
|
|
20
|
+
ChatHistoryItem,
|
|
21
21
|
Chat,
|
|
22
22
|
Visitor,
|
|
23
23
|
ChatSession,
|
|
@@ -109,10 +109,10 @@ __all__ = [
|
|
|
109
109
|
"AgentRoles",
|
|
110
110
|
"AgentTimeline",
|
|
111
111
|
"Ban",
|
|
112
|
-
"ChatHistoryItem",
|
|
113
112
|
"ChatEngagement",
|
|
114
|
-
"ChatConversion",
|
|
115
113
|
"WebpathItem",
|
|
114
|
+
"ChatConversion",
|
|
115
|
+
"ChatHistoryItem",
|
|
116
116
|
"Chat",
|
|
117
117
|
"Visitor",
|
|
118
118
|
"ChatSession",
|
|
@@ -634,9 +634,7 @@ class OAuth2AuthStrategy(AuthStrategy):
|
|
|
634
634
|
Headers dict with additional headers added
|
|
635
635
|
"""
|
|
636
636
|
# Build template context with extracted secret values
|
|
637
|
-
template_context = {
|
|
638
|
-
key: extract_secret_value(value) for key, value in secrets.items()
|
|
639
|
-
}
|
|
637
|
+
template_context = {key: extract_secret_value(value) for key, value in secrets.items()}
|
|
640
638
|
|
|
641
639
|
for header_name, value_template in additional_headers.items():
|
|
642
640
|
# Use Jinja2 templating for variable substitution
|
|
@@ -694,9 +694,7 @@ class LocalExecutor:
|
|
|
694
694
|
"""
|
|
695
695
|
return {key: value for key, value in params.items() if key in allowed_fields and value is not None}
|
|
696
696
|
|
|
697
|
-
def _extract_header_params(
|
|
698
|
-
self, endpoint: EndpointDefinition, params: dict[str, Any], body: dict[str, Any] | None = None
|
|
699
|
-
) -> dict[str, str]:
|
|
697
|
+
def _extract_header_params(self, endpoint: EndpointDefinition, params: dict[str, Any], body: dict[str, Any] | None = None) -> dict[str, str]:
|
|
700
698
|
"""Extract header parameters from params and schema defaults.
|
|
701
699
|
|
|
702
700
|
Also adds Content-Type header when there's a request body (unless already specified
|
|
@@ -132,25 +132,6 @@ class Ban(BaseModel):
|
|
|
132
132
|
reason: Union[str | None, Any] = Field(default=None)
|
|
133
133
|
created_at: Union[str | None, Any] = Field(default=None)
|
|
134
134
|
|
|
135
|
-
class ChatHistoryItem(BaseModel):
|
|
136
|
-
"""ChatHistoryItem type definition"""
|
|
137
|
-
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
138
|
-
|
|
139
|
-
type: Union[str | None, Any] = Field(default=None)
|
|
140
|
-
timestamp: Union[str | None, Any] = Field(default=None)
|
|
141
|
-
name: Union[str | None, Any] = Field(default=None)
|
|
142
|
-
nick: Union[str | None, Any] = Field(default=None)
|
|
143
|
-
msg: Union[str | None, Any] = Field(default=None)
|
|
144
|
-
msg_id: Union[str | None, Any] = Field(default=None)
|
|
145
|
-
channel: Union[str | None, Any] = Field(default=None)
|
|
146
|
-
department_id: Union[int | None, Any] = Field(default=None)
|
|
147
|
-
department_name: Union[str | None, Any] = Field(default=None)
|
|
148
|
-
rating: Union[str | None, Any] = Field(default=None)
|
|
149
|
-
new_rating: Union[str | None, Any] = Field(default=None)
|
|
150
|
-
tags: Union[list[str] | None, Any] = Field(default=None)
|
|
151
|
-
new_tags: Union[list[str] | None, Any] = Field(default=None)
|
|
152
|
-
options: Union[str | None, Any] = Field(default=None)
|
|
153
|
-
|
|
154
135
|
class ChatEngagement(BaseModel):
|
|
155
136
|
"""ChatEngagement type definition"""
|
|
156
137
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -172,6 +153,13 @@ class ChatEngagement(BaseModel):
|
|
|
172
153
|
skills_requested: Union[list[int] | None, Any] = Field(default=None)
|
|
173
154
|
skills_fulfilled: Union[bool | None, Any] = Field(default=None)
|
|
174
155
|
|
|
156
|
+
class WebpathItem(BaseModel):
|
|
157
|
+
"""WebpathItem type definition"""
|
|
158
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
159
|
+
|
|
160
|
+
from_: Union[str | None, Any] = Field(default=None, alias="from")
|
|
161
|
+
timestamp: Union[str | None, Any] = Field(default=None)
|
|
162
|
+
|
|
175
163
|
class ChatConversion(BaseModel):
|
|
176
164
|
"""ChatConversion type definition"""
|
|
177
165
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -182,12 +170,24 @@ class ChatConversion(BaseModel):
|
|
|
182
170
|
timestamp: Union[str | None, Any] = Field(default=None)
|
|
183
171
|
attribution: Union[Any, Any] = Field(default=None)
|
|
184
172
|
|
|
185
|
-
class
|
|
186
|
-
"""
|
|
173
|
+
class ChatHistoryItem(BaseModel):
|
|
174
|
+
"""ChatHistoryItem type definition"""
|
|
187
175
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
188
176
|
|
|
189
|
-
|
|
177
|
+
type: Union[str | None, Any] = Field(default=None)
|
|
190
178
|
timestamp: Union[str | None, Any] = Field(default=None)
|
|
179
|
+
name: Union[str | None, Any] = Field(default=None)
|
|
180
|
+
nick: Union[str | None, Any] = Field(default=None)
|
|
181
|
+
msg: Union[str | None, Any] = Field(default=None)
|
|
182
|
+
msg_id: Union[str | None, Any] = Field(default=None)
|
|
183
|
+
channel: Union[str | None, Any] = Field(default=None)
|
|
184
|
+
department_id: Union[int | None, Any] = Field(default=None)
|
|
185
|
+
department_name: Union[str | None, Any] = Field(default=None)
|
|
186
|
+
rating: Union[str | None, Any] = Field(default=None)
|
|
187
|
+
new_rating: Union[str | None, Any] = Field(default=None)
|
|
188
|
+
tags: Union[list[str] | None, Any] = Field(default=None)
|
|
189
|
+
new_tags: Union[list[str] | None, Any] = Field(default=None)
|
|
190
|
+
options: Union[str | None, Any] = Field(default=None)
|
|
191
191
|
|
|
192
192
|
class Chat(BaseModel):
|
|
193
193
|
"""Chat conversation transcript"""
|
{airbyte_agent_zendesk_chat-0.1.6.dist-info → airbyte_agent_zendesk_chat-0.1.8.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-zendesk-chat
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.8
|
|
4
4
|
Summary: Airbyte Zendesk-Chat Connector for AI platforms
|
|
5
5
|
Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
|
|
6
6
|
Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
|
|
@@ -158,6 +158,6 @@ For the service's official API docs, see the [Zendesk-Chat API reference](https:
|
|
|
158
158
|
|
|
159
159
|
## Version information
|
|
160
160
|
|
|
161
|
-
- **Package version:** 0.1.
|
|
161
|
+
- **Package version:** 0.1.8
|
|
162
162
|
- **Connector version:** 0.1.3
|
|
163
|
-
- **Generated with Connector SDK commit SHA:**
|
|
163
|
+
- **Generated with Connector SDK commit SHA:** f17cdd8c92950751a75daff9c6bf74df05774ede
|
{airbyte_agent_zendesk_chat-0.1.6.dist-info → airbyte_agent_zendesk_chat-0.1.8.dist-info}/RECORD
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
airbyte_agent_zendesk_chat/__init__.py,sha256=
|
|
1
|
+
airbyte_agent_zendesk_chat/__init__.py,sha256=AshWCdXzeum--_qJbMIA7hyjs4FjkO6TcoPZoLYxRmk,4292
|
|
2
2
|
airbyte_agent_zendesk_chat/connector.py,sha256=a_xt5L6rMOcW2DjUCNvsjCCSDrHPAfxhd7pLp_znsPo,43092
|
|
3
3
|
airbyte_agent_zendesk_chat/connector_model.py,sha256=Z0Q2nmk8jl3rJH5FWkUlDbuL00ACnxQWBGN7DaPdUM4,121081
|
|
4
|
-
airbyte_agent_zendesk_chat/models.py,sha256=
|
|
4
|
+
airbyte_agent_zendesk_chat/models.py,sha256=7V8RncyV2JZnGT5gX72MfO9gyuhDJ2LFHLNDq5F84Ww,23905
|
|
5
5
|
airbyte_agent_zendesk_chat/types.py,sha256=C5laH7V__abYm0F1Jck49Az6SCJQdnXLgtahxponDgM,28925
|
|
6
6
|
airbyte_agent_zendesk_chat/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
7
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
8
|
-
airbyte_agent_zendesk_chat/_vendored/connector_sdk/auth_strategies.py,sha256=
|
|
8
|
+
airbyte_agent_zendesk_chat/_vendored/connector_sdk/auth_strategies.py,sha256=5Sb9moUp623o67Q2wMa8iZldJH08y4gQdoutoO_75Iw,42088
|
|
9
9
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/auth_template.py,sha256=nju4jqlFC_KI82ILNumNIyiUtRJcy7J94INIZ0QraI4,4454
|
|
10
10
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/connector_model_loader.py,sha256=SY_Juqw-cap156MsdgrMfe5MAuFdX0vUcSbH5LUYNK0,36295
|
|
11
11
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
|
|
@@ -21,7 +21,7 @@ airbyte_agent_zendesk_chat/_vendored/connector_sdk/cloud_utils/__init__.py,sha25
|
|
|
21
21
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
|
|
22
22
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
23
23
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/hosted_executor.py,sha256=ydHcG-biRS1ITT5ELwPShdJW-KYpvK--Fos1ipNgHho,6995
|
|
24
|
-
airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/local_executor.py,sha256=
|
|
24
|
+
airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/local_executor.py,sha256=Vg4rPk0sbgXEdYLx2n2Spgj9XrDUWykD2E2o7sWloRM,73849
|
|
25
25
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
26
26
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
27
27
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
@@ -52,6 +52,6 @@ airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/__init__.py,sha256=
|
|
|
52
52
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
53
53
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
|
|
54
54
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
|
|
55
|
-
airbyte_agent_zendesk_chat-0.1.
|
|
56
|
-
airbyte_agent_zendesk_chat-0.1.
|
|
57
|
-
airbyte_agent_zendesk_chat-0.1.
|
|
55
|
+
airbyte_agent_zendesk_chat-0.1.8.dist-info/METADATA,sha256=I-pAmXYelI7XRPApByb6sOO_bUmdGqJZel8TjaXmDLI,6362
|
|
56
|
+
airbyte_agent_zendesk_chat-0.1.8.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_zendesk_chat-0.1.8.dist-info/RECORD,,
|
{airbyte_agent_zendesk_chat-0.1.6.dist-info → airbyte_agent_zendesk_chat-0.1.8.dist-info}/WHEEL
RENAMED
|
File without changes
|