airbyte-agent-slack 0.1.26__py3-none-any.whl → 0.1.28__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_slack/__init__.py +2 -2
- airbyte_agent_slack/_vendored/connector_sdk/http_client.py +1 -1
- airbyte_agent_slack/models.py +8 -8
- {airbyte_agent_slack-0.1.26.dist-info → airbyte_agent_slack-0.1.28.dist-info}/METADATA +3 -3
- {airbyte_agent_slack-0.1.26.dist-info → airbyte_agent_slack-0.1.28.dist-info}/RECORD +6 -6
- {airbyte_agent_slack-0.1.26.dist-info → airbyte_agent_slack-0.1.28.dist-info}/WHEEL +0 -0
airbyte_agent_slack/__init__.py
CHANGED
|
@@ -18,8 +18,8 @@ from .models import (
|
|
|
18
18
|
ChannelsListResponse,
|
|
19
19
|
ChannelResponse,
|
|
20
20
|
File,
|
|
21
|
-
Reaction,
|
|
22
21
|
Attachment,
|
|
22
|
+
Reaction,
|
|
23
23
|
Message,
|
|
24
24
|
Thread,
|
|
25
25
|
EditedInfo,
|
|
@@ -96,8 +96,8 @@ __all__ = [
|
|
|
96
96
|
"ChannelsListResponse",
|
|
97
97
|
"ChannelResponse",
|
|
98
98
|
"File",
|
|
99
|
-
"Reaction",
|
|
100
99
|
"Attachment",
|
|
100
|
+
"Reaction",
|
|
101
101
|
"Message",
|
|
102
102
|
"Thread",
|
|
103
103
|
"EditedInfo",
|
|
@@ -490,7 +490,7 @@ class HTTPClient:
|
|
|
490
490
|
|
|
491
491
|
if not response_text.strip():
|
|
492
492
|
response_data = {}
|
|
493
|
-
elif "application/json" in content_type or not content_type:
|
|
493
|
+
elif "application/json" in content_type or "+json" in content_type or not content_type:
|
|
494
494
|
response_data = await response.json()
|
|
495
495
|
else:
|
|
496
496
|
error_msg = f"Expected JSON response for {method.upper()} {url}, got content-type: {content_type}"
|
airbyte_agent_slack/models.py
CHANGED
|
@@ -200,14 +200,6 @@ class File(BaseModel):
|
|
|
200
200
|
created: Union[int | None, Any] = Field(default=None)
|
|
201
201
|
timestamp: Union[int | None, Any] = Field(default=None)
|
|
202
202
|
|
|
203
|
-
class Reaction(BaseModel):
|
|
204
|
-
"""Message reaction"""
|
|
205
|
-
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
206
|
-
|
|
207
|
-
name: Union[str | None, Any] = Field(default=None)
|
|
208
|
-
users: Union[list[str] | None, Any] = Field(default=None)
|
|
209
|
-
count: Union[int | None, Any] = Field(default=None)
|
|
210
|
-
|
|
211
203
|
class Attachment(BaseModel):
|
|
212
204
|
"""Message attachment"""
|
|
213
205
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -229,6 +221,14 @@ class Attachment(BaseModel):
|
|
|
229
221
|
footer_icon: Union[str | None, Any] = Field(default=None)
|
|
230
222
|
ts: Union[Any, Any] = Field(default=None)
|
|
231
223
|
|
|
224
|
+
class Reaction(BaseModel):
|
|
225
|
+
"""Message reaction"""
|
|
226
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
227
|
+
|
|
228
|
+
name: Union[str | None, Any] = Field(default=None)
|
|
229
|
+
users: Union[list[str] | None, Any] = Field(default=None)
|
|
230
|
+
count: Union[int | None, Any] = Field(default=None)
|
|
231
|
+
|
|
232
232
|
class Message(BaseModel):
|
|
233
233
|
"""Slack message object"""
|
|
234
234
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-slack
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.28
|
|
4
4
|
Summary: Airbyte Slack 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 [Slack API reference](https://api.s
|
|
|
158
158
|
|
|
159
159
|
## Version information
|
|
160
160
|
|
|
161
|
-
- **Package version:** 0.1.
|
|
161
|
+
- **Package version:** 0.1.28
|
|
162
162
|
- **Connector version:** 0.1.9
|
|
163
|
-
- **Generated with Connector SDK commit SHA:**
|
|
163
|
+
- **Generated with Connector SDK commit SHA:** 0f5e1914fa0d7d52de7bc0018afab712184a0847
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
airbyte_agent_slack/__init__.py,sha256=
|
|
1
|
+
airbyte_agent_slack/__init__.py,sha256=g_SG_RaX0b6jEVXCil2B2UT6EeB-itG9LOsQiFYBQvA,3703
|
|
2
2
|
airbyte_agent_slack/connector.py,sha256=Nuu08yExhwrIGhaCkbhCMif_Ju54y0THpo2uYdHZz8g,39588
|
|
3
3
|
airbyte_agent_slack/connector_model.py,sha256=phfQfehtCYp5pKM-kGQLIUc6YPZGiRc9Ul3DpMR0Q9s,194499
|
|
4
|
-
airbyte_agent_slack/models.py,sha256=
|
|
4
|
+
airbyte_agent_slack/models.py,sha256=rOTzgc7zy96MQIVlxH3flMeoiDgBFQr-Oqw4BfQgHuE,28916
|
|
5
5
|
airbyte_agent_slack/types.py,sha256=QDLOYuH23w4H_5fxVjTcBBz6BMYm2PWbuM1K_EOcD4o,32154
|
|
6
6
|
airbyte_agent_slack/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
7
|
airbyte_agent_slack/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
@@ -11,7 +11,7 @@ airbyte_agent_slack/_vendored/connector_sdk/connector_model_loader.py,sha256=AW9
|
|
|
11
11
|
airbyte_agent_slack/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
|
|
12
12
|
airbyte_agent_slack/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
|
|
13
13
|
airbyte_agent_slack/_vendored/connector_sdk/extensions.py,sha256=XWRRoJOOrwUHSKbuQt5DU7CCu8ePzhd_HuP7c_uD77w,21376
|
|
14
|
-
airbyte_agent_slack/_vendored/connector_sdk/http_client.py,sha256=
|
|
14
|
+
airbyte_agent_slack/_vendored/connector_sdk/http_client.py,sha256=09Fclbq4wrg38EM2Yh2kHiykQVXqdAGby024elcEz8E,28027
|
|
15
15
|
airbyte_agent_slack/_vendored/connector_sdk/introspection.py,sha256=kRVI4TDQDLdcCnTBUML8ycAtdqAQufVh-027sMkb4i8,19165
|
|
16
16
|
airbyte_agent_slack/_vendored/connector_sdk/secrets.py,sha256=J9ezMu4xNnLW11xY5RCre6DHP7YMKZCqwGJfk7ufHAM,6855
|
|
17
17
|
airbyte_agent_slack/_vendored/connector_sdk/types.py,sha256=in8gHsn5nsScujOfHZmkOgNmqmJKiPyNNjg59m5fGWc,8807
|
|
@@ -52,6 +52,6 @@ airbyte_agent_slack/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU
|
|
|
52
52
|
airbyte_agent_slack/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
53
53
|
airbyte_agent_slack/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
|
|
54
54
|
airbyte_agent_slack/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
|
|
55
|
-
airbyte_agent_slack-0.1.
|
|
56
|
-
airbyte_agent_slack-0.1.
|
|
57
|
-
airbyte_agent_slack-0.1.
|
|
55
|
+
airbyte_agent_slack-0.1.28.dist-info/METADATA,sha256=kfbsHSqcDW04Ms_0FEJ8pqsChZr_-D72Y59JTcW68wA,6680
|
|
56
|
+
airbyte_agent_slack-0.1.28.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_slack-0.1.28.dist-info/RECORD,,
|
|
File without changes
|