airbyte-agent-slack 0.1.15__tar.gz → 0.1.20__tar.gz

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.
Files changed (61) hide show
  1. airbyte_agent_slack-0.1.20/AUTH.md +120 -0
  2. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/CHANGELOG.md +25 -0
  3. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/PKG-INFO +9 -5
  4. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/README.md +8 -4
  5. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/REFERENCE.md +113 -77
  6. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/__init__.py +2 -2
  7. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/auth_strategies.py +1 -3
  8. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/executor/local_executor.py +1 -3
  9. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/schema/base.py +34 -2
  10. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/schema/extensions.py +71 -0
  11. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/connector.py +2 -2
  12. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/connector_model.py +6 -6
  13. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/models.py +9 -9
  14. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/pyproject.toml +1 -1
  15. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/.gitignore +0 -0
  16. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/__init__.py +0 -0
  17. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/__init__.py +0 -0
  18. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/auth_template.py +0 -0
  19. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
  20. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/client.py +0 -0
  21. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/connector_model_loader.py +0 -0
  22. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/constants.py +0 -0
  23. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/exceptions.py +0 -0
  24. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/executor/__init__.py +0 -0
  25. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/executor/hosted_executor.py +0 -0
  26. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/executor/models.py +0 -0
  27. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/extensions.py +0 -0
  28. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/http/__init__.py +0 -0
  29. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
  30. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
  31. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/http/config.py +0 -0
  32. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/http/exceptions.py +0 -0
  33. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/http/protocols.py +0 -0
  34. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/http/response.py +0 -0
  35. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/http_client.py +0 -0
  36. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/introspection.py +0 -0
  37. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/logging/__init__.py +0 -0
  38. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/logging/logger.py +0 -0
  39. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/logging/types.py +0 -0
  40. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/observability/__init__.py +0 -0
  41. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/observability/config.py +0 -0
  42. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/observability/models.py +0 -0
  43. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/observability/redactor.py +0 -0
  44. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/observability/session.py +0 -0
  45. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/performance/__init__.py +0 -0
  46. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/performance/instrumentation.py +0 -0
  47. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/performance/metrics.py +0 -0
  48. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/schema/__init__.py +0 -0
  49. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/schema/components.py +0 -0
  50. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/schema/connector.py +0 -0
  51. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/schema/operations.py +0 -0
  52. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/schema/security.py +0 -0
  53. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/secrets.py +0 -0
  54. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/__init__.py +0 -0
  55. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/config.py +0 -0
  56. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/events.py +0 -0
  57. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/tracker.py +0 -0
  58. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/types.py +0 -0
  59. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/utils.py +0 -0
  60. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/_vendored/connector_sdk/validation.py +0 -0
  61. {airbyte_agent_slack-0.1.15 → airbyte_agent_slack-0.1.20}/airbyte_agent_slack/types.py +0 -0
@@ -0,0 +1,120 @@
1
+ # Slack authentication and configuration
2
+
3
+ This page documents the authentication and configuration options for the Slack agent connector.
4
+
5
+ ## Authentication
6
+
7
+ ### Open source execution
8
+
9
+ In open source mode, you provide API credentials directly to the connector.
10
+
11
+ #### OAuth
12
+
13
+ | Field Name | Type | Required | Description |
14
+ |------------|------|----------|-------------|
15
+ | `client_id` | `str` | Yes | Your Slack App's Client ID |
16
+ | `client_secret` | `str` | Yes | Your Slack App's Client Secret |
17
+ | `access_token` | `str` | Yes | OAuth access token (bot token from oauth.v2.access response) |
18
+
19
+ ```python
20
+ from airbyte_agent_slack import SlackConnector
21
+ from airbyte_agent_slack.models import SlackOauth20AuthenticationAuthConfig
22
+
23
+ connector = SlackConnector(
24
+ auth_config=SlackOauth20AuthenticationAuthConfig(
25
+ client_id="<Your Slack App's Client ID>",
26
+ client_secret="<Your Slack App's Client Secret>",
27
+ access_token="<OAuth access token (bot token from oauth.v2.access response)>"
28
+ )
29
+ )
30
+ ```
31
+
32
+ #### Token
33
+
34
+ | Field Name | Type | Required | Description |
35
+ |------------|------|----------|-------------|
36
+ | `api_token` | `str` | Yes | Your Slack Bot Token (xoxb-) or User Token (xoxp-) |
37
+
38
+ ```python
39
+ from airbyte_agent_slack import SlackConnector
40
+ from airbyte_agent_slack.models import SlackTokenAuthenticationAuthConfig
41
+
42
+ connector = SlackConnector(
43
+ auth_config=SlackTokenAuthenticationAuthConfig(
44
+ api_token="<Your Slack Bot Token (xoxb-) or User Token (xoxp-)>"
45
+ )
46
+ )
47
+ ```
48
+
49
+ ### Hosted execution
50
+
51
+ In hosted mode, you first create a connector via the Airbyte API (providing your OAuth or Token credentials), then execute operations using either the Python SDK or API. If you need a step-by-step guide, see the [hosted execution tutorial](https://docs.airbyte.com/ai-agents/quickstarts/tutorial-hosted).
52
+
53
+ #### OAuth
54
+
55
+ Create a connector with OAuth credentials:
56
+
57
+ ```bash
58
+ curl -X POST 'https://api.airbyte.ai/v1/integrations/connectors' \
59
+ -H 'Authorization: Bearer <SCOPED_TOKEN>' \
60
+ -H 'Content-Type: application/json' \
61
+ -d '{
62
+ "external_user_id": "<EXTERNAL_USER_ID>",
63
+ "connector_type": "Slack",
64
+ "name": "My Slack Connector",
65
+ "credentials": {
66
+ "client_id": "<Your Slack App's Client ID>",
67
+ "client_secret": "<Your Slack App's Client Secret>",
68
+ "access_token": "<OAuth access token (bot token from oauth.v2.access response)>"
69
+ }
70
+ }'
71
+ ```
72
+
73
+ #### Token
74
+
75
+ Create a connector with Token credentials:
76
+
77
+ ```bash
78
+ curl -X POST 'https://api.airbyte.ai/v1/integrations/connectors' \
79
+ -H 'Authorization: Bearer <SCOPED_TOKEN>' \
80
+ -H 'Content-Type: application/json' \
81
+ -d '{
82
+ "external_user_id": "<EXTERNAL_USER_ID>",
83
+ "connector_type": "Slack",
84
+ "credentials": {
85
+ "api_token": "<Your Slack Bot Token (xoxb-) or User Token (xoxp-)>"
86
+ }
87
+ }'
88
+ ```
89
+
90
+ #### Execution
91
+
92
+ After creating the connector, execute operations using either the Python SDK or API.
93
+
94
+ **Python SDK**
95
+
96
+ ```python
97
+ from airbyte_agent_slack import SlackConnector
98
+
99
+ connector = SlackConnector(
100
+ external_user_id="<your-scoped-token>",
101
+ airbyte_client_id="<your-client-id>",
102
+ airbyte_client_secret="<your-client-secret>"
103
+ )
104
+
105
+ @agent.tool_plain # assumes you're using Pydantic AI
106
+ @SlackConnector.describe
107
+ async def slack_execute(entity: str, action: str, params: dict | None = None):
108
+ return await connector.execute(entity, action, params or {})
109
+ ```
110
+
111
+ **API**
112
+
113
+ ```bash
114
+ curl -X POST 'https://api.airbyte.ai/api/v1/connectors/sources/<connector_id>/execute' \
115
+ -H 'Authorization: Bearer <SCOPED_TOKEN>' \
116
+ -H 'Content-Type: application/json' \
117
+ -d '{"entity": "<entity>", "action": "<action>", "params": {}}'
118
+ ```
119
+
120
+
@@ -1,5 +1,30 @@
1
1
  # Slack changelog
2
2
 
3
+ ## [0.1.20] - 2026-01-23
4
+ - Updated connector definition (YAML version 0.1.7)
5
+ - Source commit: 049f6ad5
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.1.19] - 2026-01-23
9
+ - Updated connector definition (YAML version 0.1.6)
10
+ - Source commit: a035ad48
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.1.18] - 2026-01-23
14
+ - Updated connector definition (YAML version 0.1.5)
15
+ - Source commit: 416466da
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.1.17] - 2026-01-23
19
+ - Updated connector definition (YAML version 0.1.5)
20
+ - Source commit: f17cdd8c
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.1.16] - 2026-01-22
24
+ - Updated connector definition (YAML version 0.1.5)
25
+ - Source commit: 49e6dfe9
26
+ - SDK version: 0.1.0
27
+
3
28
  ## [0.1.15] - 2026-01-22
4
29
  - Updated connector definition (YAML version 0.1.5)
5
30
  - Source commit: b27328e2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-slack
3
- Version: 0.1.15
3
+ Version: 0.1.20
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/
@@ -99,7 +99,7 @@ from airbyte_agent_slack.models import SlackTokenAuthenticationAuthConfig
99
99
 
100
100
  connector = SlackConnector(
101
101
  auth_config=SlackTokenAuthenticationAuthConfig(
102
- access_token="<Your Slack Bot Token (xoxb-) or User Token (xoxp-)>"
102
+ api_token="<Your Slack Bot Token (xoxb-) or User Token (xoxp-)>"
103
103
  )
104
104
  )
105
105
 
@@ -130,6 +130,10 @@ async def slack_execute(entity: str, action: str, params: dict | None = None):
130
130
  return await connector.execute(entity, action, params or {})
131
131
  ```
132
132
 
133
+ ## Replication Configuration
134
+
135
+ This connector supports replication configuration for MULTI mode sources. See the [full reference documentation](./REFERENCE.md#replication-configuration) for details on available options like `start_date`.
136
+
133
137
  ## Full documentation
134
138
 
135
139
  This connector supports the following entities and actions.
@@ -154,6 +158,6 @@ For the service's official API docs, see the [Slack API reference](https://api.s
154
158
 
155
159
  ## Version information
156
160
 
157
- - **Package version:** 0.1.15
158
- - **Connector version:** 0.1.5
159
- - **Generated with Connector SDK commit SHA:** b27328e2162813ea6315b9f890a6784b0fb9caba
161
+ - **Package version:** 0.1.20
162
+ - **Connector version:** 0.1.7
163
+ - **Generated with Connector SDK commit SHA:** 049f6ad546186bde8303b77e0e1001a831a58654
@@ -66,7 +66,7 @@ from airbyte_agent_slack.models import SlackTokenAuthenticationAuthConfig
66
66
 
67
67
  connector = SlackConnector(
68
68
  auth_config=SlackTokenAuthenticationAuthConfig(
69
- access_token="<Your Slack Bot Token (xoxb-) or User Token (xoxp-)>"
69
+ api_token="<Your Slack Bot Token (xoxb-) or User Token (xoxp-)>"
70
70
  )
71
71
  )
72
72
 
@@ -97,6 +97,10 @@ async def slack_execute(entity: str, action: str, params: dict | None = None):
97
97
  return await connector.execute(entity, action, params or {})
98
98
  ```
99
99
 
100
+ ## Replication Configuration
101
+
102
+ This connector supports replication configuration for MULTI mode sources. See the [full reference documentation](./REFERENCE.md#replication-configuration) for details on available options like `start_date`.
103
+
100
104
  ## Full documentation
101
105
 
102
106
  This connector supports the following entities and actions.
@@ -121,6 +125,6 @@ For the service's official API docs, see the [Slack API reference](https://api.s
121
125
 
122
126
  ## Version information
123
127
 
124
- - **Package version:** 0.1.15
125
- - **Connector version:** 0.1.5
126
- - **Generated with Connector SDK commit SHA:** b27328e2162813ea6315b9f890a6784b0fb9caba
128
+ - **Package version:** 0.1.20
129
+ - **Connector version:** 0.1.7
130
+ - **Generated with Connector SDK commit SHA:** 049f6ad546186bde8303b77e0e1001a831a58654