airbyte-agent-slack 0.1.6__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.
- airbyte_agent_slack/__init__.py +47 -3
- airbyte_agent_slack/_vendored/connector_sdk/executor/local_executor.py +3 -1
- airbyte_agent_slack/_vendored/connector_sdk/http_client.py +2 -0
- airbyte_agent_slack/_vendored/connector_sdk/logging/logger.py +10 -1
- airbyte_agent_slack/_vendored/connector_sdk/logging/types.py +1 -0
- airbyte_agent_slack/_vendored/connector_sdk/validation.py +12 -6
- airbyte_agent_slack/connector.py +334 -1
- airbyte_agent_slack/connector_model.py +1769 -704
- airbyte_agent_slack/models.py +143 -21
- airbyte_agent_slack/types.py +41 -0
- {airbyte_agent_slack-0.1.6.dist-info → airbyte_agent_slack-0.1.9.dist-info}/METADATA +32 -13
- {airbyte_agent_slack-0.1.6.dist-info → airbyte_agent_slack-0.1.9.dist-info}/RECORD +13 -13
- {airbyte_agent_slack-0.1.6.dist-info → airbyte_agent_slack-0.1.9.dist-info}/WHEEL +0 -0
airbyte_agent_slack/models.py
CHANGED
|
@@ -176,27 +176,6 @@ 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 Attachment(BaseModel):
|
|
180
|
-
"""Message attachment"""
|
|
181
|
-
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
182
|
-
|
|
183
|
-
id: Union[int | None, Any] = Field(default=None)
|
|
184
|
-
fallback: Union[str | None, Any] = Field(default=None)
|
|
185
|
-
color: Union[str | None, Any] = Field(default=None)
|
|
186
|
-
pretext: Union[str | None, Any] = Field(default=None)
|
|
187
|
-
author_name: Union[str | None, Any] = Field(default=None)
|
|
188
|
-
author_link: Union[str | None, Any] = Field(default=None)
|
|
189
|
-
author_icon: Union[str | None, Any] = Field(default=None)
|
|
190
|
-
title: Union[str | None, Any] = Field(default=None)
|
|
191
|
-
title_link: Union[str | None, Any] = Field(default=None)
|
|
192
|
-
text: Union[str | None, Any] = Field(default=None)
|
|
193
|
-
fields: Union[list[dict[str, Any]] | None, Any] = Field(default=None)
|
|
194
|
-
image_url: Union[str | None, Any] = Field(default=None)
|
|
195
|
-
thumb_url: Union[str | None, Any] = Field(default=None)
|
|
196
|
-
footer: Union[str | None, Any] = Field(default=None)
|
|
197
|
-
footer_icon: Union[str | None, Any] = Field(default=None)
|
|
198
|
-
ts: Union[Any, Any] = Field(default=None)
|
|
199
|
-
|
|
200
179
|
class Reaction(BaseModel):
|
|
201
180
|
"""Message reaction"""
|
|
202
181
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -229,6 +208,27 @@ class File(BaseModel):
|
|
|
229
208
|
created: Union[int | None, Any] = Field(default=None)
|
|
230
209
|
timestamp: Union[int | None, Any] = Field(default=None)
|
|
231
210
|
|
|
211
|
+
class Attachment(BaseModel):
|
|
212
|
+
"""Message attachment"""
|
|
213
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
214
|
+
|
|
215
|
+
id: Union[int | None, Any] = Field(default=None)
|
|
216
|
+
fallback: Union[str | None, Any] = Field(default=None)
|
|
217
|
+
color: Union[str | None, Any] = Field(default=None)
|
|
218
|
+
pretext: Union[str | None, Any] = Field(default=None)
|
|
219
|
+
author_name: Union[str | None, Any] = Field(default=None)
|
|
220
|
+
author_link: Union[str | None, Any] = Field(default=None)
|
|
221
|
+
author_icon: Union[str | None, Any] = Field(default=None)
|
|
222
|
+
title: Union[str | None, Any] = Field(default=None)
|
|
223
|
+
title_link: Union[str | None, Any] = Field(default=None)
|
|
224
|
+
text: Union[str | None, Any] = Field(default=None)
|
|
225
|
+
fields: Union[list[dict[str, Any]] | None, Any] = Field(default=None)
|
|
226
|
+
image_url: Union[str | None, Any] = Field(default=None)
|
|
227
|
+
thumb_url: Union[str | None, Any] = Field(default=None)
|
|
228
|
+
footer: Union[str | None, Any] = Field(default=None)
|
|
229
|
+
footer_icon: Union[str | None, Any] = Field(default=None)
|
|
230
|
+
ts: Union[Any, 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)
|
|
@@ -319,6 +319,128 @@ class ThreadRepliesResponse(BaseModel):
|
|
|
319
319
|
has_more: Union[bool | None, Any] = Field(default=None)
|
|
320
320
|
response_metadata: Union[ResponseMetadata, Any] = Field(default=None)
|
|
321
321
|
|
|
322
|
+
class MessageCreateParams(BaseModel):
|
|
323
|
+
"""Parameters for creating a message"""
|
|
324
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
325
|
+
|
|
326
|
+
channel: Union[str, Any] = Field(default=None)
|
|
327
|
+
text: Union[str, Any] = Field(default=None)
|
|
328
|
+
thread_ts: Union[str, Any] = Field(default=None)
|
|
329
|
+
reply_broadcast: Union[bool, Any] = Field(default=None)
|
|
330
|
+
unfurl_links: Union[bool, Any] = Field(default=None)
|
|
331
|
+
unfurl_media: Union[bool, Any] = Field(default=None)
|
|
332
|
+
|
|
333
|
+
class CreatedMessage(BaseModel):
|
|
334
|
+
"""A message object returned from create/update operations"""
|
|
335
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
336
|
+
|
|
337
|
+
type: Union[str | None, Any] = Field(default=None)
|
|
338
|
+
subtype: Union[str | None, Any] = Field(default=None)
|
|
339
|
+
text: Union[str | None, Any] = Field(default=None)
|
|
340
|
+
ts: Union[str, Any] = Field(default=None)
|
|
341
|
+
user: Union[str | None, Any] = Field(default=None)
|
|
342
|
+
bot_id: Union[str | None, Any] = Field(default=None)
|
|
343
|
+
app_id: Union[str | None, Any] = Field(default=None)
|
|
344
|
+
team: Union[str | None, Any] = Field(default=None)
|
|
345
|
+
bot_profile: Union[Any, Any] = Field(default=None)
|
|
346
|
+
|
|
347
|
+
class MessageCreateResponse(BaseModel):
|
|
348
|
+
"""Response from creating a message"""
|
|
349
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
350
|
+
|
|
351
|
+
ok: Union[bool, Any] = Field(default=None)
|
|
352
|
+
channel: Union[str | None, Any] = Field(default=None)
|
|
353
|
+
ts: Union[str | None, Any] = Field(default=None)
|
|
354
|
+
message: Union[CreatedMessage, Any] = Field(default=None)
|
|
355
|
+
|
|
356
|
+
class MessageUpdateParams(BaseModel):
|
|
357
|
+
"""Parameters for updating a message"""
|
|
358
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
359
|
+
|
|
360
|
+
channel: Union[str, Any] = Field(default=None)
|
|
361
|
+
ts: Union[str, Any] = Field(default=None)
|
|
362
|
+
text: Union[str, Any] = Field(default=None)
|
|
363
|
+
|
|
364
|
+
class MessageUpdateResponse(BaseModel):
|
|
365
|
+
"""Response from updating a message"""
|
|
366
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
367
|
+
|
|
368
|
+
ok: Union[bool, Any] = Field(default=None)
|
|
369
|
+
channel: Union[str | None, Any] = Field(default=None)
|
|
370
|
+
ts: Union[str | None, Any] = Field(default=None)
|
|
371
|
+
text: Union[str | None, Any] = Field(default=None)
|
|
372
|
+
message: Union[CreatedMessage, Any] = Field(default=None)
|
|
373
|
+
|
|
374
|
+
class ChannelCreateParams(BaseModel):
|
|
375
|
+
"""Parameters for creating a channel"""
|
|
376
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
377
|
+
|
|
378
|
+
name: Union[str, Any] = Field(default=None)
|
|
379
|
+
is_private: Union[bool, Any] = Field(default=None)
|
|
380
|
+
|
|
381
|
+
class ChannelCreateResponse(BaseModel):
|
|
382
|
+
"""Response from creating a channel"""
|
|
383
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
384
|
+
|
|
385
|
+
ok: Union[bool, Any] = Field(default=None)
|
|
386
|
+
channel: Union[Channel, Any] = Field(default=None)
|
|
387
|
+
|
|
388
|
+
class ChannelRenameParams(BaseModel):
|
|
389
|
+
"""Parameters for renaming a channel"""
|
|
390
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
391
|
+
|
|
392
|
+
channel: Union[str, Any] = Field(default=None)
|
|
393
|
+
name: Union[str, Any] = Field(default=None)
|
|
394
|
+
|
|
395
|
+
class ChannelRenameResponse(BaseModel):
|
|
396
|
+
"""Response from renaming a channel"""
|
|
397
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
398
|
+
|
|
399
|
+
ok: Union[bool, Any] = Field(default=None)
|
|
400
|
+
channel: Union[Channel, Any] = Field(default=None)
|
|
401
|
+
|
|
402
|
+
class ChannelTopicParams(BaseModel):
|
|
403
|
+
"""Parameters for setting channel topic"""
|
|
404
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
405
|
+
|
|
406
|
+
channel: Union[str, Any] = Field(default=None)
|
|
407
|
+
topic: Union[str, Any] = Field(default=None)
|
|
408
|
+
|
|
409
|
+
class ChannelTopicResponse(BaseModel):
|
|
410
|
+
"""Response from setting channel topic"""
|
|
411
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
412
|
+
|
|
413
|
+
ok: Union[bool, Any] = Field(default=None)
|
|
414
|
+
channel: Union[Channel, Any] = Field(default=None)
|
|
415
|
+
|
|
416
|
+
class ChannelPurposeParams(BaseModel):
|
|
417
|
+
"""Parameters for setting channel purpose"""
|
|
418
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
419
|
+
|
|
420
|
+
channel: Union[str, Any] = Field(default=None)
|
|
421
|
+
purpose: Union[str, Any] = Field(default=None)
|
|
422
|
+
|
|
423
|
+
class ChannelPurposeResponse(BaseModel):
|
|
424
|
+
"""Response from setting channel purpose"""
|
|
425
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
426
|
+
|
|
427
|
+
ok: Union[bool, Any] = Field(default=None)
|
|
428
|
+
channel: Union[Channel, Any] = Field(default=None)
|
|
429
|
+
|
|
430
|
+
class ReactionAddParams(BaseModel):
|
|
431
|
+
"""Parameters for adding a reaction"""
|
|
432
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
433
|
+
|
|
434
|
+
channel: Union[str, Any] = Field(default=None)
|
|
435
|
+
timestamp: Union[str, Any] = Field(default=None)
|
|
436
|
+
name: Union[str, Any] = Field(default=None)
|
|
437
|
+
|
|
438
|
+
class ReactionAddResponse(BaseModel):
|
|
439
|
+
"""Response from adding a reaction"""
|
|
440
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
441
|
+
|
|
442
|
+
ok: Union[bool, Any] = Field(default=None)
|
|
443
|
+
|
|
322
444
|
# ===== METADATA TYPE DEFINITIONS (PYDANTIC) =====
|
|
323
445
|
# Meta types for operations that extract metadata (e.g., pagination info)
|
|
324
446
|
|
airbyte_agent_slack/types.py
CHANGED
|
@@ -55,3 +55,44 @@ class ThreadsListParams(TypedDict):
|
|
|
55
55
|
latest: NotRequired[str]
|
|
56
56
|
inclusive: NotRequired[bool]
|
|
57
57
|
|
|
58
|
+
class MessagesCreateParams(TypedDict):
|
|
59
|
+
"""Parameters for messages.create operation"""
|
|
60
|
+
channel: str
|
|
61
|
+
text: str
|
|
62
|
+
thread_ts: NotRequired[str]
|
|
63
|
+
reply_broadcast: NotRequired[bool]
|
|
64
|
+
unfurl_links: NotRequired[bool]
|
|
65
|
+
unfurl_media: NotRequired[bool]
|
|
66
|
+
|
|
67
|
+
class MessagesUpdateParams(TypedDict):
|
|
68
|
+
"""Parameters for messages.update operation"""
|
|
69
|
+
channel: str
|
|
70
|
+
ts: str
|
|
71
|
+
text: str
|
|
72
|
+
|
|
73
|
+
class ChannelsCreateParams(TypedDict):
|
|
74
|
+
"""Parameters for channels.create operation"""
|
|
75
|
+
name: str
|
|
76
|
+
is_private: NotRequired[bool]
|
|
77
|
+
|
|
78
|
+
class ChannelsUpdateParams(TypedDict):
|
|
79
|
+
"""Parameters for channels.update operation"""
|
|
80
|
+
channel: str
|
|
81
|
+
name: str
|
|
82
|
+
|
|
83
|
+
class ChannelTopicsCreateParams(TypedDict):
|
|
84
|
+
"""Parameters for channel_topics.create operation"""
|
|
85
|
+
channel: str
|
|
86
|
+
topic: str
|
|
87
|
+
|
|
88
|
+
class ChannelPurposesCreateParams(TypedDict):
|
|
89
|
+
"""Parameters for channel_purposes.create operation"""
|
|
90
|
+
channel: str
|
|
91
|
+
purpose: str
|
|
92
|
+
|
|
93
|
+
class ReactionsCreateParams(TypedDict):
|
|
94
|
+
"""Parameters for reactions.create operation"""
|
|
95
|
+
channel: str
|
|
96
|
+
timestamp: str
|
|
97
|
+
name: str
|
|
98
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-slack
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
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/
|
|
@@ -34,8 +34,10 @@ Description-Content-Type: text/markdown
|
|
|
34
34
|
# Slack agent connector
|
|
35
35
|
|
|
36
36
|
Slack is a business communication platform that offers messaging, file sharing, and integrations
|
|
37
|
-
with other tools. This connector provides access to users, channels, channel members, channel
|
|
38
|
-
messages, and threads for workspace analytics
|
|
37
|
+
with other tools. This connector provides read access to users, channels, channel members, channel
|
|
38
|
+
messages, and threads for workspace analytics. It also supports write operations including sending
|
|
39
|
+
and updating messages, creating and renaming channels, setting channel topics and purposes, and
|
|
40
|
+
adding reactions to messages.
|
|
39
41
|
|
|
40
42
|
|
|
41
43
|
## Example questions
|
|
@@ -52,17 +54,30 @@ The Slack connector is optimized to handle prompts like these.
|
|
|
52
54
|
- What messages were posted in channel \{channel_id\} last week?
|
|
53
55
|
- Show me the conversation history for channel \{channel_id\}
|
|
54
56
|
- List channel members for the general channel
|
|
57
|
+
- Send a message to channel \{channel_id\} saying 'Hello team!'
|
|
58
|
+
- Post a message in the general channel
|
|
59
|
+
- Update the message with timestamp \{ts\} in channel \{channel_id\}
|
|
60
|
+
- Create a new public channel called 'project-updates'
|
|
61
|
+
- Create a private channel named 'team-internal'
|
|
62
|
+
- Rename channel \{channel_id\} to 'new-channel-name'
|
|
63
|
+
- Set the topic for channel \{channel_id\} to 'Daily standup notes'
|
|
64
|
+
- Update the purpose of channel \{channel_id\}
|
|
65
|
+
- Add a thumbsup reaction to message \{ts\} in channel \{channel_id\}
|
|
66
|
+
- React with :rocket: to the latest message in channel \{channel_id\}
|
|
67
|
+
- Reply to thread \{ts\} in channel \{channel_id\} with 'Thanks for the update!'
|
|
55
68
|
|
|
56
69
|
## Unsupported questions
|
|
57
70
|
|
|
58
71
|
The Slack connector isn't currently able to handle prompts like these.
|
|
59
72
|
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
73
|
+
- Delete a message from channel \{channel_id\}
|
|
74
|
+
- Remove a reaction from a message
|
|
75
|
+
- Archive channel \{channel_id\}
|
|
76
|
+
- Invite user \{user_id\} to channel \{channel_id\}
|
|
77
|
+
- Remove user \{user_id\} from channel \{channel_id\}
|
|
78
|
+
- Delete channel \{channel_id\}
|
|
79
|
+
- Create a new user in the workspace
|
|
80
|
+
- Update user profile information
|
|
66
81
|
|
|
67
82
|
## Installation
|
|
68
83
|
|
|
@@ -112,9 +127,13 @@ This connector supports the following entities and actions.
|
|
|
112
127
|
| Entity | Actions |
|
|
113
128
|
|--------|---------|
|
|
114
129
|
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
115
|
-
| Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get) |
|
|
130
|
+
| Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get), [Create](./REFERENCE.md#channels-create), [Update](./REFERENCE.md#channels-update) |
|
|
116
131
|
| Channel Messages | [List](./REFERENCE.md#channel-messages-list) |
|
|
117
132
|
| Threads | [List](./REFERENCE.md#threads-list) |
|
|
133
|
+
| Messages | [Create](./REFERENCE.md#messages-create), [Update](./REFERENCE.md#messages-update) |
|
|
134
|
+
| Channel Topics | [Create](./REFERENCE.md#channel-topics-create) |
|
|
135
|
+
| Channel Purposes | [Create](./REFERENCE.md#channel-purposes-create) |
|
|
136
|
+
| Reactions | [Create](./REFERENCE.md#reactions-create) |
|
|
118
137
|
|
|
119
138
|
|
|
120
139
|
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
@@ -123,6 +142,6 @@ For the service's official API docs, see the [Slack API reference](https://api.s
|
|
|
123
142
|
|
|
124
143
|
## Version information
|
|
125
144
|
|
|
126
|
-
- **Package version:** 0.1.
|
|
127
|
-
- **Connector version:** 0.1.
|
|
128
|
-
- **Generated with Connector SDK commit SHA:**
|
|
145
|
+
- **Package version:** 0.1.9
|
|
146
|
+
- **Connector version:** 0.1.3
|
|
147
|
+
- **Generated with Connector SDK commit SHA:** 3e52abfa321de4c1116522ab7dbe25f7b4a60c8a
|
|
@@ -1,8 +1,8 @@
|
|
|
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=
|
|
5
|
-
airbyte_agent_slack/types.py,sha256=
|
|
1
|
+
airbyte_agent_slack/__init__.py,sha256=JaQBqd7I7QGv0pVCtOnG1mW4ba_VC8cQLny-hQIk-yE,3021
|
|
2
|
+
airbyte_agent_slack/connector.py,sha256=XxiP80BRCFOQdZGQRWKJubJ4-g09hX-4FxDoAqgMp-4,29292
|
|
3
|
+
airbyte_agent_slack/connector_model.py,sha256=FH50O0GdusmNVNlNWGL4mo6sLMWBmP2q7Eq42FNIF60,191380
|
|
4
|
+
airbyte_agent_slack/models.py,sha256=s4I8jf7mVu1ATyCybXbIVvDLLXLQ99_z6gai3dCFBtU,22473
|
|
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
|
|
8
8
|
airbyte_agent_slack/_vendored/connector_sdk/auth_strategies.py,sha256=BdjAzFRTwXCmLFqYWqZ4Dx9RsqtI7pAkw-8NynSK4sQ,39914
|
|
@@ -11,17 +11,17 @@ airbyte_agent_slack/_vendored/connector_sdk/connector_model_loader.py,sha256=b88
|
|
|
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=yucwu3OvJh5wLQa1mk-gTKjtqjKKucMw5ltmlE7mk1c,28000
|
|
15
15
|
airbyte_agent_slack/_vendored/connector_sdk/introspection.py,sha256=2CyKXZHT74-1Id97uw1RLeyOi6TV24_hoNbQ6-6y7uI,10335
|
|
16
16
|
airbyte_agent_slack/_vendored/connector_sdk/secrets.py,sha256=J9ezMu4xNnLW11xY5RCre6DHP7YMKZCqwGJfk7ufHAM,6855
|
|
17
17
|
airbyte_agent_slack/_vendored/connector_sdk/types.py,sha256=CStkOsLtmZZdXylkdCsbYORDzughxygt1-Ucma0j-qE,8287
|
|
18
18
|
airbyte_agent_slack/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
|
|
19
|
-
airbyte_agent_slack/_vendored/connector_sdk/validation.py,sha256=
|
|
19
|
+
airbyte_agent_slack/_vendored/connector_sdk/validation.py,sha256=4MPrxYmQh8TbCU0KdvvRKe35Lg1YYLEBd0u4aKySl_E,32122
|
|
20
20
|
airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
|
|
21
21
|
airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
|
|
22
22
|
airbyte_agent_slack/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
23
23
|
airbyte_agent_slack/_vendored/connector_sdk/executor/hosted_executor.py,sha256=ydHcG-biRS1ITT5ELwPShdJW-KYpvK--Fos1ipNgHho,6995
|
|
24
|
-
airbyte_agent_slack/_vendored/connector_sdk/executor/local_executor.py,sha256=
|
|
24
|
+
airbyte_agent_slack/_vendored/connector_sdk/executor/local_executor.py,sha256=oJDliuS7zU8GILJUjn7T_WNIu25sy5serJHxhnBKyB8,71411
|
|
25
25
|
airbyte_agent_slack/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
26
26
|
airbyte_agent_slack/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
27
27
|
airbyte_agent_slack/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
@@ -31,8 +31,8 @@ airbyte_agent_slack/_vendored/connector_sdk/http/response.py,sha256=Q-RyM5D0D05Z
|
|
|
31
31
|
airbyte_agent_slack/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
|
|
32
32
|
airbyte_agent_slack/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
|
|
33
33
|
airbyte_agent_slack/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
|
|
34
|
-
airbyte_agent_slack/_vendored/connector_sdk/logging/logger.py,sha256=
|
|
35
|
-
airbyte_agent_slack/_vendored/connector_sdk/logging/types.py,sha256=
|
|
34
|
+
airbyte_agent_slack/_vendored/connector_sdk/logging/logger.py,sha256=rUdKDEQe3pOODmBLEcvhgZeEZi48BvrgKXKq1xvCXu0,8387
|
|
35
|
+
airbyte_agent_slack/_vendored/connector_sdk/logging/types.py,sha256=ONb9xKNXUkrR2lojSBMF7ruof7S2r92WjrO_kEZic84,3239
|
|
36
36
|
airbyte_agent_slack/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
|
|
37
37
|
airbyte_agent_slack/_vendored/connector_sdk/observability/config.py,sha256=uWvRAPHnEusVKviQQncqcpnHKNhoZ4ZoFK6nUOSVClY,5372
|
|
38
38
|
airbyte_agent_slack/_vendored/connector_sdk/observability/models.py,sha256=IRGjlJia28_IU7BMSBb5RHWs47yAOLvE20JIIXHazLY,448
|
|
@@ -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.9.dist-info/METADATA,sha256=Pe64Aswi4x5pPiVlwJwHXQcA3QUgojF93d_Oh6XKdds,5539
|
|
56
|
+
airbyte_agent_slack-0.1.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_slack-0.1.9.dist-info/RECORD,,
|
|
File without changes
|