airbyte-agent-zendesk-chat 0.1.8__py3-none-any.whl → 0.1.9__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.
Potentially problematic release.
This version of airbyte-agent-zendesk-chat might be problematic. Click here for more details.
- airbyte_agent_zendesk_chat/__init__.py +4 -4
- airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/base.py +31 -1
- airbyte_agent_zendesk_chat/models.py +28 -28
- {airbyte_agent_zendesk_chat-0.1.8.dist-info → airbyte_agent_zendesk_chat-0.1.9.dist-info}/METADATA +3 -3
- {airbyte_agent_zendesk_chat-0.1.8.dist-info → airbyte_agent_zendesk_chat-0.1.9.dist-info}/RECORD +6 -6
- {airbyte_agent_zendesk_chat-0.1.8.dist-info → airbyte_agent_zendesk_chat-0.1.9.dist-info}/WHEEL +0 -0
|
@@ -14,10 +14,10 @@ from .models import (
|
|
|
14
14
|
AgentRoles,
|
|
15
15
|
AgentTimeline,
|
|
16
16
|
Ban,
|
|
17
|
-
ChatEngagement,
|
|
18
|
-
WebpathItem,
|
|
19
17
|
ChatConversion,
|
|
20
18
|
ChatHistoryItem,
|
|
19
|
+
WebpathItem,
|
|
20
|
+
ChatEngagement,
|
|
21
21
|
Chat,
|
|
22
22
|
Visitor,
|
|
23
23
|
ChatSession,
|
|
@@ -109,10 +109,10 @@ __all__ = [
|
|
|
109
109
|
"AgentRoles",
|
|
110
110
|
"AgentTimeline",
|
|
111
111
|
"Ban",
|
|
112
|
-
"ChatEngagement",
|
|
113
|
-
"WebpathItem",
|
|
114
112
|
"ChatConversion",
|
|
115
113
|
"ChatHistoryItem",
|
|
114
|
+
"WebpathItem",
|
|
115
|
+
"ChatEngagement",
|
|
116
116
|
"Chat",
|
|
117
117
|
"Visitor",
|
|
118
118
|
"ChatSession",
|
|
@@ -140,6 +140,33 @@ class ServerVariable(BaseModel):
|
|
|
140
140
|
description: str | None = None
|
|
141
141
|
|
|
142
142
|
|
|
143
|
+
class EnvironmentMappingTransform(BaseModel):
|
|
144
|
+
"""
|
|
145
|
+
Structured transform for environment mapping values.
|
|
146
|
+
|
|
147
|
+
Allows transforming environment values before storing in source_config.
|
|
148
|
+
|
|
149
|
+
Example:
|
|
150
|
+
source: subdomain
|
|
151
|
+
format: "{value}.atlassian.net"
|
|
152
|
+
|
|
153
|
+
The format string uses {value} as a placeholder for the source value.
|
|
154
|
+
"""
|
|
155
|
+
|
|
156
|
+
model_config = ConfigDict(populate_by_name=True, extra="forbid")
|
|
157
|
+
|
|
158
|
+
source: str = Field(description="The environment config key to read the value from")
|
|
159
|
+
format: str | None = Field(
|
|
160
|
+
default=None,
|
|
161
|
+
description="Optional format string to transform the value. Use {value} as placeholder.",
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
# Type alias for environment mapping values: either a simple string (config key)
|
|
166
|
+
# or a structured transform with source and optional transform template
|
|
167
|
+
EnvironmentMappingValue = str | EnvironmentMappingTransform
|
|
168
|
+
|
|
169
|
+
|
|
143
170
|
class Server(BaseModel):
|
|
144
171
|
"""
|
|
145
172
|
Server URL and variable definitions.
|
|
@@ -152,7 +179,10 @@ class Server(BaseModel):
|
|
|
152
179
|
url: str
|
|
153
180
|
description: str | None = None
|
|
154
181
|
variables: Dict[str, ServerVariable] = Field(default_factory=dict)
|
|
155
|
-
x_airbyte_replication_environment_mapping: Dict[str,
|
|
182
|
+
x_airbyte_replication_environment_mapping: Dict[str, EnvironmentMappingValue] | None = Field(
|
|
183
|
+
default=None,
|
|
184
|
+
alias="x-airbyte-replication-environment-mapping",
|
|
185
|
+
)
|
|
156
186
|
x_airbyte_replication_environment_constants: Dict[str, Any] | None = Field(
|
|
157
187
|
default=None,
|
|
158
188
|
alias="x-airbyte-replication-environment-constants",
|
|
@@ -132,34 +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 ChatEngagement(BaseModel):
|
|
136
|
-
"""ChatEngagement type definition"""
|
|
137
|
-
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
138
|
-
|
|
139
|
-
id: Union[str | None, Any] = Field(default=None)
|
|
140
|
-
agent_id: Union[str | None, Any] = Field(default=None)
|
|
141
|
-
agent_name: Union[str | None, Any] = Field(default=None)
|
|
142
|
-
agent_full_name: Union[str | None, Any] = Field(default=None)
|
|
143
|
-
department_id: Union[int | None, Any] = Field(default=None)
|
|
144
|
-
timestamp: Union[str | None, Any] = Field(default=None)
|
|
145
|
-
duration: Union[float | None, Any] = Field(default=None)
|
|
146
|
-
accepted: Union[bool | None, Any] = Field(default=None)
|
|
147
|
-
assigned: Union[bool | None, Any] = Field(default=None)
|
|
148
|
-
started_by: Union[str | None, Any] = Field(default=None)
|
|
149
|
-
rating: Union[str | None, Any] = Field(default=None)
|
|
150
|
-
comment: Union[str | None, Any] = Field(default=None)
|
|
151
|
-
count: Union[Any, Any] = Field(default=None)
|
|
152
|
-
response_time: Union[Any, Any] = Field(default=None)
|
|
153
|
-
skills_requested: Union[list[int] | None, Any] = Field(default=None)
|
|
154
|
-
skills_fulfilled: Union[bool | None, Any] = Field(default=None)
|
|
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
|
-
|
|
163
135
|
class ChatConversion(BaseModel):
|
|
164
136
|
"""ChatConversion type definition"""
|
|
165
137
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -189,6 +161,34 @@ class ChatHistoryItem(BaseModel):
|
|
|
189
161
|
new_tags: Union[list[str] | None, Any] = Field(default=None)
|
|
190
162
|
options: Union[str | None, Any] = Field(default=None)
|
|
191
163
|
|
|
164
|
+
class WebpathItem(BaseModel):
|
|
165
|
+
"""WebpathItem type definition"""
|
|
166
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
167
|
+
|
|
168
|
+
from_: Union[str | None, Any] = Field(default=None, alias="from")
|
|
169
|
+
timestamp: Union[str | None, Any] = Field(default=None)
|
|
170
|
+
|
|
171
|
+
class ChatEngagement(BaseModel):
|
|
172
|
+
"""ChatEngagement type definition"""
|
|
173
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
174
|
+
|
|
175
|
+
id: Union[str | None, Any] = Field(default=None)
|
|
176
|
+
agent_id: Union[str | None, Any] = Field(default=None)
|
|
177
|
+
agent_name: Union[str | None, Any] = Field(default=None)
|
|
178
|
+
agent_full_name: Union[str | None, Any] = Field(default=None)
|
|
179
|
+
department_id: Union[int | None, Any] = Field(default=None)
|
|
180
|
+
timestamp: Union[str | None, Any] = Field(default=None)
|
|
181
|
+
duration: Union[float | None, Any] = Field(default=None)
|
|
182
|
+
accepted: Union[bool | None, Any] = Field(default=None)
|
|
183
|
+
assigned: Union[bool | None, Any] = Field(default=None)
|
|
184
|
+
started_by: Union[str | None, Any] = Field(default=None)
|
|
185
|
+
rating: Union[str | None, Any] = Field(default=None)
|
|
186
|
+
comment: Union[str | None, Any] = Field(default=None)
|
|
187
|
+
count: Union[Any, Any] = Field(default=None)
|
|
188
|
+
response_time: Union[Any, Any] = Field(default=None)
|
|
189
|
+
skills_requested: Union[list[int] | None, Any] = Field(default=None)
|
|
190
|
+
skills_fulfilled: Union[bool | None, Any] = Field(default=None)
|
|
191
|
+
|
|
192
192
|
class Chat(BaseModel):
|
|
193
193
|
"""Chat conversation transcript"""
|
|
194
194
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
{airbyte_agent_zendesk_chat-0.1.8.dist-info → airbyte_agent_zendesk_chat-0.1.9.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.9
|
|
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.9
|
|
162
162
|
- **Connector version:** 0.1.3
|
|
163
|
-
- **Generated with Connector SDK commit SHA:**
|
|
163
|
+
- **Generated with Connector SDK commit SHA:** 416466da4970ae5fd6c7f2c658a68e047e51efd9
|
{airbyte_agent_zendesk_chat-0.1.8.dist-info → airbyte_agent_zendesk_chat-0.1.9.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
airbyte_agent_zendesk_chat/__init__.py,sha256=
|
|
1
|
+
airbyte_agent_zendesk_chat/__init__.py,sha256=_Ysh9kDU1H0foZ8pBgGi64NclVgkcOUlwrNsoaIxlRs,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=o9ukKeRhqVsz4Rc1VjI6E4I6Ha-tGjZ5zLn4bpB4unA,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
|
|
@@ -42,7 +42,7 @@ airbyte_agent_zendesk_chat/_vendored/connector_sdk/performance/__init__.py,sha25
|
|
|
42
42
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
|
|
43
43
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/performance/metrics.py,sha256=FRff7dKt4iwt_A7pxV5n9kAGBR756PC7q8-weWygPSM,2817
|
|
44
44
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
|
|
45
|
-
airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/base.py,sha256=
|
|
45
|
+
airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/base.py,sha256=KX3OUSnWu_M6yq-IMTH4dI420x-VRSvKc7uery6gFUU,6303
|
|
46
46
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/components.py,sha256=x3YCM1p2n_xHi50fMeOX0mXUiPqjGlLHs3Go8jXokb0,7895
|
|
47
47
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
|
|
48
48
|
airbyte_agent_zendesk_chat/_vendored/connector_sdk/schema/extensions.py,sha256=f7VhHrcIYxaPOJHMc4g0lpy04pZTbx5nlroNzAu5B9Q,7135
|
|
@@ -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.9.dist-info/METADATA,sha256=hZfnODjRhrxiFTVA5WLqzyEda7uYTOVSQEod7Ky3k6M,6362
|
|
56
|
+
airbyte_agent_zendesk_chat-0.1.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_zendesk_chat-0.1.9.dist-info/RECORD,,
|
{airbyte_agent_zendesk_chat-0.1.8.dist-info → airbyte_agent_zendesk_chat-0.1.9.dist-info}/WHEEL
RENAMED
|
File without changes
|