airbyte-agent-slack 0.1.11__py3-none-any.whl → 0.1.13__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/connector.py +1 -1
- airbyte_agent_slack/connector_model.py +6 -2
- airbyte_agent_slack/models.py +8 -8
- {airbyte_agent_slack-0.1.11.dist-info → airbyte_agent_slack-0.1.13.dist-info}/METADATA +4 -4
- {airbyte_agent_slack-0.1.11.dist-info → airbyte_agent_slack-0.1.13.dist-info}/RECORD +7 -7
- {airbyte_agent_slack-0.1.11.dist-info → airbyte_agent_slack-0.1.13.dist-info}/WHEEL +0 -0
airbyte_agent_slack/__init__.py
CHANGED
|
@@ -17,8 +17,8 @@ from .models import (
|
|
|
17
17
|
ChannelPurpose,
|
|
18
18
|
ChannelsListResponse,
|
|
19
19
|
ChannelResponse,
|
|
20
|
-
File,
|
|
21
20
|
Reaction,
|
|
21
|
+
File,
|
|
22
22
|
Attachment,
|
|
23
23
|
Message,
|
|
24
24
|
Thread,
|
|
@@ -81,8 +81,8 @@ __all__ = [
|
|
|
81
81
|
"ChannelPurpose",
|
|
82
82
|
"ChannelsListResponse",
|
|
83
83
|
"ChannelResponse",
|
|
84
|
-
"File",
|
|
85
84
|
"Reaction",
|
|
85
|
+
"File",
|
|
86
86
|
"Attachment",
|
|
87
87
|
"Message",
|
|
88
88
|
"Thread",
|
airbyte_agent_slack/connector.py
CHANGED
|
@@ -61,7 +61,7 @@ class SlackConnector:
|
|
|
61
61
|
"""
|
|
62
62
|
|
|
63
63
|
connector_name = "slack"
|
|
64
|
-
connector_version = "0.1.
|
|
64
|
+
connector_version = "0.1.5"
|
|
65
65
|
vendored_sdk_version = "0.1.0" # Version of vendored connector-sdk
|
|
66
66
|
|
|
67
67
|
# Map of (entity, action) -> needs_envelope for envelope wrapping decision
|
|
@@ -27,7 +27,7 @@ from uuid import (
|
|
|
27
27
|
SlackConnectorModel: ConnectorModel = ConnectorModel(
|
|
28
28
|
id=UUID('c2281cee-86f9-4a86-bb48-d23286b4c7bd'),
|
|
29
29
|
name='slack',
|
|
30
|
-
version='0.1.
|
|
30
|
+
version='0.1.5',
|
|
31
31
|
base_url='https://slack.com/api',
|
|
32
32
|
auth=AuthConfig(
|
|
33
33
|
options=[
|
|
@@ -84,7 +84,11 @@ SlackConnectorModel: ConnectorModel = ConnectorModel(
|
|
|
84
84
|
'client_secret': '${client_secret}',
|
|
85
85
|
'access_token': '${access_token}',
|
|
86
86
|
},
|
|
87
|
-
replication_auth_key_mapping={
|
|
87
|
+
replication_auth_key_mapping={
|
|
88
|
+
'credentials.client_id': 'client_id',
|
|
89
|
+
'credentials.client_secret': 'client_secret',
|
|
90
|
+
'credentials.access_token': 'access_token',
|
|
91
|
+
},
|
|
88
92
|
replication_auth_key_constants={'credentials.option_title': 'Default OAuth2.0 authorization'},
|
|
89
93
|
),
|
|
90
94
|
),
|
airbyte_agent_slack/models.py
CHANGED
|
@@ -176,6 +176,14 @@ class ChannelResponse(BaseModel):
|
|
|
176
176
|
ok: Union[bool, Any] = Field(default=None)
|
|
177
177
|
channel: Union[Channel, Any] = Field(default=None)
|
|
178
178
|
|
|
179
|
+
class Reaction(BaseModel):
|
|
180
|
+
"""Message reaction"""
|
|
181
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
182
|
+
|
|
183
|
+
name: Union[str | None, Any] = Field(default=None)
|
|
184
|
+
users: Union[list[str] | None, Any] = Field(default=None)
|
|
185
|
+
count: Union[int | None, Any] = Field(default=None)
|
|
186
|
+
|
|
179
187
|
class File(BaseModel):
|
|
180
188
|
"""File object"""
|
|
181
189
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -200,14 +208,6 @@ class File(BaseModel):
|
|
|
200
208
|
created: Union[int | None, Any] = Field(default=None)
|
|
201
209
|
timestamp: Union[int | None, Any] = Field(default=None)
|
|
202
210
|
|
|
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
211
|
class Attachment(BaseModel):
|
|
212
212
|
"""Message attachment"""
|
|
213
213
|
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.13
|
|
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/
|
|
@@ -142,6 +142,6 @@ For the service's official API docs, see the [Slack API reference](https://api.s
|
|
|
142
142
|
|
|
143
143
|
## Version information
|
|
144
144
|
|
|
145
|
-
- **Package version:** 0.1.
|
|
146
|
-
- **Connector version:** 0.1.
|
|
147
|
-
- **Generated with Connector SDK commit SHA:**
|
|
145
|
+
- **Package version:** 0.1.13
|
|
146
|
+
- **Connector version:** 0.1.5
|
|
147
|
+
- **Generated with Connector SDK commit SHA:** c713ec4833c2b52dc89926ec68caa343423884cd
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
airbyte_agent_slack/__init__.py,sha256=
|
|
2
|
-
airbyte_agent_slack/connector.py,sha256=
|
|
3
|
-
airbyte_agent_slack/connector_model.py,sha256=
|
|
4
|
-
airbyte_agent_slack/models.py,sha256=
|
|
1
|
+
airbyte_agent_slack/__init__.py,sha256=JaQBqd7I7QGv0pVCtOnG1mW4ba_VC8cQLny-hQIk-yE,3021
|
|
2
|
+
airbyte_agent_slack/connector.py,sha256=C-runzVQOFsrOAM0mEV8pGL4fJfk8vY6TqYPvKq1bNU,29292
|
|
3
|
+
airbyte_agent_slack/connector_model.py,sha256=e-lj4OySCyhaGYpor6YGQbgLNItRurZVg4HhmE2_R5s,191740
|
|
4
|
+
airbyte_agent_slack/models.py,sha256=s4I8jf7mVu1ATyCybXbIVvDLLXLQ99_z6gai3dCFBtU,22473
|
|
5
5
|
airbyte_agent_slack/types.py,sha256=PzLbXxZt3-K9Kux3U_Bn6tW9sTQho_UVoMU_Hqzo5d4,2628
|
|
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
|
|
@@ -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.13.dist-info/METADATA,sha256=0VkLBtlU3wrxyce89sC1VO9V8EykoWYciK0PEi1LGfw,5541
|
|
56
|
+
airbyte_agent_slack-0.1.13.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_slack-0.1.13.dist-info/RECORD,,
|
|
File without changes
|