airbyte-agent-slack 0.1.42__py3-none-any.whl → 0.1.44__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.
@@ -18,9 +18,9 @@ from .models import (
18
18
  ChannelPurpose,
19
19
  ChannelsListResponse,
20
20
  ChannelResponse,
21
- File,
22
- Attachment,
23
21
  Reaction,
22
+ Attachment,
23
+ File,
24
24
  Message,
25
25
  Thread,
26
26
  EditedInfo,
@@ -98,9 +98,9 @@ __all__ = [
98
98
  "ChannelPurpose",
99
99
  "ChannelsListResponse",
100
100
  "ChannelResponse",
101
- "File",
102
- "Attachment",
103
101
  "Reaction",
102
+ "Attachment",
103
+ "File",
104
104
  "Message",
105
105
  "Thread",
106
106
  "EditedInfo",
@@ -317,7 +317,7 @@ class AirbyteCloudClient:
317
317
  )
318
318
  """
319
319
  token = await self.get_bearer_token()
320
- url = f"{self.API_BASE_URL}/api/v1/connectors/sources/{connector_id}/execute"
320
+ url = f"{self.API_BASE_URL}/api/v1/integrations/connectors/{connector_id}/execute"
321
321
  headers = {"Authorization": f"Bearer {token}"}
322
322
  request_body = {
323
323
  "entity": entity,
@@ -766,7 +766,6 @@ def _generate_default_auth_config(auth_type: AuthType) -> AirbyteAuthConfig:
766
766
  )
767
767
  },
768
768
  auth_mapping={"token": "${token}"},
769
- oneOf=None,
770
769
  )
771
770
  elif auth_type == AuthType.BASIC:
772
771
  return AirbyteAuthConfig(
@@ -793,7 +792,6 @@ def _generate_default_auth_config(auth_type: AuthType) -> AirbyteAuthConfig:
793
792
  ),
794
793
  },
795
794
  auth_mapping={"username": "${username}", "password": "${password}"},
796
- oneOf=None,
797
795
  )
798
796
  elif auth_type == AuthType.API_KEY:
799
797
  return AirbyteAuthConfig(
@@ -812,7 +810,6 @@ def _generate_default_auth_config(auth_type: AuthType) -> AirbyteAuthConfig:
812
810
  )
813
811
  },
814
812
  auth_mapping={"api_key": "${api_key}"},
815
- oneOf=None,
816
813
  )
817
814
  elif auth_type == AuthType.OAUTH2:
818
815
  # OAuth2: No fields are strictly required to support both modes:
@@ -865,7 +862,6 @@ def _generate_default_auth_config(auth_type: AuthType) -> AirbyteAuthConfig:
865
862
  "client_id": "${client_id}",
866
863
  "client_secret": "${client_secret}",
867
864
  },
868
- oneOf=None,
869
865
  )
870
866
  else:
871
867
  # Unknown auth type - return minimal config
@@ -876,7 +872,6 @@ def _generate_default_auth_config(auth_type: AuthType) -> AirbyteAuthConfig:
876
872
  required=None,
877
873
  properties={},
878
874
  auth_mapping={},
879
- oneOf=None,
880
875
  )
881
876
 
882
877
 
@@ -261,19 +261,10 @@ class LocalExecutor:
261
261
  auth_mapping = None
262
262
  required_fields: list[str] | None = None
263
263
 
264
- # Check for single option (direct auth_mapping)
264
+ # Get auth_mapping from the config
265
265
  if user_config_spec.auth_mapping:
266
266
  auth_mapping = user_config_spec.auth_mapping
267
267
  required_fields = user_config_spec.required
268
- # Check for oneOf (multiple auth options)
269
- elif user_config_spec.one_of:
270
- # Find the matching option based on which required fields are present
271
- for option in user_config_spec.one_of:
272
- option_required = option.required or []
273
- if all(field in user_secrets for field in option_required):
274
- auth_mapping = option.auth_mapping
275
- required_fields = option_required
276
- break
277
268
 
278
269
  if not auth_mapping:
279
270
  # No matching auth_mapping found, use secrets as-is
@@ -31,7 +31,6 @@ from .operations import Operation, PathItem
31
31
  from .security import (
32
32
  AirbyteAuthConfig,
33
33
  AuthConfigFieldSpec,
34
- AuthConfigOption,
35
34
  OAuth2Flow,
36
35
  OAuth2Flows,
37
36
  SecurityRequirement,
@@ -55,7 +54,6 @@ __all__ = [
55
54
  "OAuth2Flow",
56
55
  "OAuth2Flows",
57
56
  "AirbyteAuthConfig",
58
- "AuthConfigOption",
59
57
  "AuthConfigFieldSpec",
60
58
  # Component models
61
59
  "Components",
@@ -182,12 +182,25 @@ class CacheEntityConfig(BaseModel):
182
182
  return self.x_airbyte_name or self.entity
183
183
 
184
184
 
185
+ class ReplicationConfigPropertyItems(BaseModel):
186
+ """
187
+ Items definition for array-type replication configuration fields.
188
+
189
+ Defines the schema for items in an array-type replication config property.
190
+ """
191
+
192
+ model_config = ConfigDict(populate_by_name=True, extra="forbid")
193
+
194
+ type: str
195
+
196
+
185
197
  class ReplicationConfigProperty(BaseModel):
186
198
  """
187
199
  Property definition for replication configuration fields.
188
200
 
189
201
  Defines a single field in the replication configuration with its type,
190
- description, and optional default value.
202
+ description, and optional default value. Supports both simple types
203
+ (string, integer, boolean) and array types.
191
204
 
192
205
  Example YAML usage:
193
206
  x-airbyte-replication-config:
@@ -197,6 +210,12 @@ class ReplicationConfigProperty(BaseModel):
197
210
  title: Start Date
198
211
  description: UTC date and time from which to replicate data
199
212
  format: date-time
213
+ account_ids:
214
+ type: array
215
+ title: Account IDs
216
+ description: List of account IDs to replicate
217
+ items:
218
+ type: string
200
219
  """
201
220
 
202
221
  model_config = ConfigDict(populate_by_name=True, extra="forbid")
@@ -205,8 +224,9 @@ class ReplicationConfigProperty(BaseModel):
205
224
  title: str | None = None
206
225
  description: str | None = None
207
226
  format: str | None = None
208
- default: str | int | float | bool | None = None
227
+ default: str | int | float | bool | list | None = None
209
228
  enum: list[str] | None = None
229
+ items: ReplicationConfigPropertyItems | None = None
210
230
 
211
231
 
212
232
  class ReplicationConfig(BaseModel):
@@ -58,45 +58,6 @@ class AuthConfigFieldSpec(BaseModel):
58
58
  default: Any | None = None
59
59
 
60
60
 
61
- class AuthConfigOption(BaseModel):
62
- """
63
- A single authentication configuration option.
64
-
65
- Defines user-facing fields and how they map to auth parameters.
66
- """
67
-
68
- model_config = ConfigDict(populate_by_name=True, extra="forbid")
69
-
70
- title: str | None = None
71
- description: str | None = None
72
- type: Literal["object"] = "object"
73
- required: List[str] = Field(default_factory=list)
74
- properties: Dict[str, AuthConfigFieldSpec] = Field(default_factory=dict)
75
- auth_mapping: Dict[str, str] = Field(
76
- default_factory=dict,
77
- description="Mapping from auth parameters (e.g., 'username', 'password', 'token') to template strings using ${field} syntax",
78
- )
79
- replication_auth_key_mapping: Dict[str, str] | None = Field(
80
- None,
81
- description="Mapping from source config paths (e.g., 'credentials.api_key') to auth config keys for direct connectors",
82
- )
83
-
84
- @model_validator(mode="after")
85
- def validate_replication_auth_key_mapping(self) -> "AuthConfigOption":
86
- """Validate that replication_auth_key_mapping target keys exist in properties."""
87
- if self.replication_auth_key_mapping and self.properties:
88
- property_names = set(self.properties.keys())
89
- for airbyte_path, our_key in self.replication_auth_key_mapping.items():
90
- if our_key not in property_names:
91
- option_context = f"oneOf option '{self.title}'" if self.title else "oneOf option"
92
- available = ", ".join(sorted(property_names)) if property_names else "(none)"
93
- raise ValueError(
94
- f"replication_auth_key_mapping in {option_context}: target key '{our_key}' "
95
- f"(mapped from '{airbyte_path}') not found in properties. Available: {available}"
96
- )
97
- return self
98
-
99
-
100
61
  class AirbyteAuthConfig(BaseModel):
101
62
  """
102
63
  Airbyte auth configuration extension (x-airbyte-auth-config).
@@ -104,12 +65,12 @@ class AirbyteAuthConfig(BaseModel):
104
65
  Defines user-facing authentication configuration and how it maps to
105
66
  the underlying OpenAPI security scheme.
106
67
 
107
- Either a single auth option or multiple options via oneOf.
68
+ For multiple authentication methods, define separate security schemes
69
+ rather than using oneOf within a single scheme.
108
70
  """
109
71
 
110
72
  model_config = ConfigDict(populate_by_name=True, extra="forbid")
111
73
 
112
- # Single option fields
113
74
  title: str | None = None
114
75
  description: str | None = None
115
76
  type: Literal["object"] | None = None
@@ -137,29 +98,23 @@ class AirbyteAuthConfig(BaseModel):
137
98
  None,
138
99
  description="Constant values to always inject at source config paths (e.g., 'credentials.auth_type': 'OAuth2.0')",
139
100
  )
140
- # Multiple options (oneOf)
141
- one_of: List[AuthConfigOption] | None = Field(None, alias="oneOf")
142
101
 
143
102
  @model_validator(mode="after")
144
103
  def validate_config_structure(self) -> "AirbyteAuthConfig":
145
- """Validate that either single option or oneOf is provided, not both."""
146
- has_single = self.type is not None or self.properties is not None or self.auth_mapping is not None
147
- has_one_of = self.one_of is not None and len(self.one_of) > 0
148
-
149
- if not has_single and not has_one_of:
150
- raise ValueError("Either single auth option (type/properties/auth_mapping) or oneOf must be provided")
104
+ """Validate that required fields are provided for auth config."""
105
+ has_config = self.type is not None or self.properties is not None or self.auth_mapping is not None
151
106
 
152
- if has_single and has_one_of:
153
- raise ValueError("Cannot have both single auth option and oneOf")
107
+ if not has_config:
108
+ raise ValueError("Auth config must have type, properties, and auth_mapping")
154
109
 
155
- if has_single:
156
- # Validate single option has required fields
110
+ if has_config:
111
+ # Validate required fields
157
112
  if self.type != "object":
158
- raise ValueError("Single auth option must have type='object'")
113
+ raise ValueError("Auth config must have type='object'")
159
114
  if not self.properties:
160
- raise ValueError("Single auth option must have properties")
115
+ raise ValueError("Auth config must have properties")
161
116
  if not self.auth_mapping:
162
- raise ValueError("Single auth option must have auth_mapping")
117
+ raise ValueError("Auth config must have auth_mapping")
163
118
 
164
119
  # Validate replication_auth_key_mapping targets exist in properties
165
120
  if self.replication_auth_key_mapping and self.properties:
@@ -191,29 +191,13 @@ class ChannelResponse(BaseModel):
191
191
  ok: Union[bool, Any] = Field(default=None)
192
192
  channel: Union[Channel, Any] = Field(default=None)
193
193
 
194
- class File(BaseModel):
195
- """File object"""
194
+ class Reaction(BaseModel):
195
+ """Message reaction"""
196
196
  model_config = ConfigDict(extra="allow", populate_by_name=True)
197
197
 
198
- id: Union[str | None, Any] = Field(default=None)
199
198
  name: Union[str | None, Any] = Field(default=None)
200
- title: Union[str | None, Any] = Field(default=None)
201
- mimetype: Union[str | None, Any] = Field(default=None)
202
- filetype: Union[str | None, Any] = Field(default=None)
203
- pretty_type: Union[str | None, Any] = Field(default=None)
204
- user: Union[str | None, Any] = Field(default=None)
205
- size: Union[int | None, Any] = Field(default=None)
206
- mode: Union[str | None, Any] = Field(default=None)
207
- is_external: Union[bool | None, Any] = Field(default=None)
208
- external_type: Union[str | None, Any] = Field(default=None)
209
- is_public: Union[bool | None, Any] = Field(default=None)
210
- public_url_shared: Union[bool | None, Any] = Field(default=None)
211
- url_private: Union[str | None, Any] = Field(default=None)
212
- url_private_download: Union[str | None, Any] = Field(default=None)
213
- permalink: Union[str | None, Any] = Field(default=None)
214
- permalink_public: Union[str | None, Any] = Field(default=None)
215
- created: Union[int | None, Any] = Field(default=None)
216
- timestamp: Union[int | None, Any] = Field(default=None)
199
+ users: Union[list[str] | None, Any] = Field(default=None)
200
+ count: Union[int | None, Any] = Field(default=None)
217
201
 
218
202
  class Attachment(BaseModel):
219
203
  """Message attachment"""
@@ -236,13 +220,29 @@ class Attachment(BaseModel):
236
220
  footer_icon: Union[str | None, Any] = Field(default=None)
237
221
  ts: Union[Any, Any] = Field(default=None)
238
222
 
239
- class Reaction(BaseModel):
240
- """Message reaction"""
223
+ class File(BaseModel):
224
+ """File object"""
241
225
  model_config = ConfigDict(extra="allow", populate_by_name=True)
242
226
 
227
+ id: Union[str | None, Any] = Field(default=None)
243
228
  name: Union[str | None, Any] = Field(default=None)
244
- users: Union[list[str] | None, Any] = Field(default=None)
245
- count: Union[int | None, Any] = Field(default=None)
229
+ title: Union[str | None, Any] = Field(default=None)
230
+ mimetype: Union[str | None, Any] = Field(default=None)
231
+ filetype: Union[str | None, Any] = Field(default=None)
232
+ pretty_type: Union[str | None, Any] = Field(default=None)
233
+ user: Union[str | None, Any] = Field(default=None)
234
+ size: Union[int | None, Any] = Field(default=None)
235
+ mode: Union[str | None, Any] = Field(default=None)
236
+ is_external: Union[bool | None, Any] = Field(default=None)
237
+ external_type: Union[str | None, Any] = Field(default=None)
238
+ is_public: Union[bool | None, Any] = Field(default=None)
239
+ public_url_shared: Union[bool | None, Any] = Field(default=None)
240
+ url_private: Union[str | None, Any] = Field(default=None)
241
+ url_private_download: Union[str | None, Any] = Field(default=None)
242
+ permalink: Union[str | None, Any] = Field(default=None)
243
+ permalink_public: Union[str | None, Any] = Field(default=None)
244
+ created: Union[int | None, Any] = Field(default=None)
245
+ timestamp: Union[int | None, Any] = Field(default=None)
246
246
 
247
247
  class Message(BaseModel):
248
248
  """Slack message object"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-slack
3
- Version: 0.1.42
3
+ Version: 0.1.44
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,7 +158,7 @@ See the official [Slack API reference](https://api.slack.com/methods).
158
158
 
159
159
  ## Version information
160
160
 
161
- - **Package version:** 0.1.42
161
+ - **Package version:** 0.1.44
162
162
  - **Connector version:** 0.1.13
163
- - **Generated with Connector SDK commit SHA:** 888d0538a17d95c6769f63dbad90e713de97c89b
163
+ - **Generated with Connector SDK commit SHA:** 5ef2158e48be294dd68d60f7d9993684d424d388
164
164
  - **Changelog:** [View changelog](https://github.com/airbytehq/airbyte-agent-connectors/blob/main/connectors/slack/CHANGELOG.md)
@@ -1,13 +1,13 @@
1
- airbyte_agent_slack/__init__.py,sha256=W_3XpP8Yxepjk9uhf22OUrHaOdF3joXWkwDLsFPnoNE,3807
1
+ airbyte_agent_slack/__init__.py,sha256=gJS52JC97BmPpgjF1WcbI4HNDioHJcnlGRVDYVpBFe8,3807
2
2
  airbyte_agent_slack/connector.py,sha256=UnCSKSXFWjXK1AibzNQvEY_z8bLyAFeYWtWgLU0TNNk,49392
3
3
  airbyte_agent_slack/connector_model.py,sha256=9KbGq02ZvlVCwFm_5mlK8Ko7NdY1aBYBZ-h6y_8PxHA,194547
4
- airbyte_agent_slack/models.py,sha256=TrZR3OdcbGObHpRWgldWL9EA6Nkg9wXd5wX9VI4RTlo,30081
4
+ airbyte_agent_slack/models.py,sha256=HyfqYopd4CTbKoNyKKegS38V3VXYaFMa2juPP2VDyLk,30081
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
8
8
  airbyte_agent_slack/_vendored/connector_sdk/auth_strategies.py,sha256=5Sb9moUp623o67Q2wMa8iZldJH08y4gQdoutoO_75Iw,42088
9
9
  airbyte_agent_slack/_vendored/connector_sdk/auth_template.py,sha256=nju4jqlFC_KI82ILNumNIyiUtRJcy7J94INIZ0QraI4,4454
10
- airbyte_agent_slack/_vendored/connector_sdk/connector_model_loader.py,sha256=1AAvSvjxM9Nuto6w7D6skN5VXGb4e6na0lMFcFmmVkI,41761
10
+ airbyte_agent_slack/_vendored/connector_sdk/connector_model_loader.py,sha256=83_wqiihOXj5bhszHvLhjENwvXnDl_-LhI-h3NeSd80,41641
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
@@ -19,10 +19,10 @@ airbyte_agent_slack/_vendored/connector_sdk/utils.py,sha256=UYwYuSLhsDD-4C0dBs7Q
19
19
  airbyte_agent_slack/_vendored/connector_sdk/validation.py,sha256=LcbmBfGkWx0Xv4pWZYpFf4JlhFjvwqGcwvliRSalN8Y,39677
20
20
  airbyte_agent_slack/_vendored/connector_sdk/validation_replication.py,sha256=v7F5YWd5m4diIF7_4m4nOkC9crg97vqRUUkt9ka9HZ4,36043
21
21
  airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
22
- airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/client.py,sha256=e0VLNCmesGGfo2uD0GiICgXsXTeTkh0GYiVgx_e4VEc,12296
22
+ airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/client.py,sha256=Y_mwgFSaeDm0paaAsdsqKz8ONk2_htMZBpdnu1sjC-A,12301
23
23
  airbyte_agent_slack/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
24
24
  airbyte_agent_slack/_vendored/connector_sdk/executor/hosted_executor.py,sha256=tv0njAdy-gdHBg4izgcxhEWYbrNiBifEYEca9AWzaL0,8693
25
- airbyte_agent_slack/_vendored/connector_sdk/executor/local_executor.py,sha256=4RK29lb5LzK9MCsg44oLgIaVcMCgy8jVFwgNJ_-qEFw,76941
25
+ airbyte_agent_slack/_vendored/connector_sdk/executor/local_executor.py,sha256=chrTenrg1BRQ2ODPUcNj_KAY14UFiPmFT_mteUhyNRE,76440
26
26
  airbyte_agent_slack/_vendored/connector_sdk/executor/models.py,sha256=mUUBnuShKXxVIfsTOhMiI2rn2a-50jJG7SFGKT_P6Jk,6281
27
27
  airbyte_agent_slack/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
28
28
  airbyte_agent_slack/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
@@ -42,17 +42,17 @@ airbyte_agent_slack/_vendored/connector_sdk/observability/session.py,sha256=WYRI
42
42
  airbyte_agent_slack/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
43
43
  airbyte_agent_slack/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
44
44
  airbyte_agent_slack/_vendored/connector_sdk/performance/metrics.py,sha256=FRff7dKt4iwt_A7pxV5n9kAGBR756PC7q8-weWygPSM,2817
45
- airbyte_agent_slack/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
45
+ airbyte_agent_slack/_vendored/connector_sdk/schema/__init__.py,sha256=Mwz8gVdVaPTxmTMRzRXjtIRNgfbqtia5A1UoOrof1fg,1592
46
46
  airbyte_agent_slack/_vendored/connector_sdk/schema/base.py,sha256=0R0aR4HjcJpu3vN0jZ4nPBEwVZ_7J9_XLQgWaQGT3Fs,8476
47
47
  airbyte_agent_slack/_vendored/connector_sdk/schema/components.py,sha256=nJIPieavwX3o3ODvdtLHPk84d_V229xmg6LDfwEHjzc,8119
48
48
  airbyte_agent_slack/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
49
- airbyte_agent_slack/_vendored/connector_sdk/schema/extensions.py,sha256=DqWCvyWKLnPxAbJirq6uITf-MBeJRVCcsEjySF4fuhQ,10558
49
+ airbyte_agent_slack/_vendored/connector_sdk/schema/extensions.py,sha256=OPqaaS8S9P_D_VGWqdEixhtgWxNtq8EXU_N5UktnXBA,11192
50
50
  airbyte_agent_slack/_vendored/connector_sdk/schema/operations.py,sha256=vU1gW5AJ41ZXE_VK4TLe3qqR4e0I0_uWTjUkskWcVdk,6296
51
- airbyte_agent_slack/_vendored/connector_sdk/schema/security.py,sha256=5UeaN63InuInS_XHNZSm5yDXrMLm5lhz298l-3GSc_4,11435
51
+ airbyte_agent_slack/_vendored/connector_sdk/schema/security.py,sha256=6BHOzH7GwDAifAlZdbLcrFpE2JQTdR5rMwitMQ2MQqI,9244
52
52
  airbyte_agent_slack/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
53
53
  airbyte_agent_slack/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
54
54
  airbyte_agent_slack/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
55
55
  airbyte_agent_slack/_vendored/connector_sdk/telemetry/tracker.py,sha256=SginFQbHqVUVYG82NnNzG34O-tAQ_wZYjGDcuo0q4Kk,5584
56
- airbyte_agent_slack-0.1.42.dist-info/METADATA,sha256=-Ef9Z4On2iHYV_-I1OBlDeRelX1vIDjpancDWJ7-xQg,6597
57
- airbyte_agent_slack-0.1.42.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
58
- airbyte_agent_slack-0.1.42.dist-info/RECORD,,
56
+ airbyte_agent_slack-0.1.44.dist-info/METADATA,sha256=Sm2vmIRJcO3ZFvVWFvwknM0ykUP6wR-Uc6x4wyINa9A,6597
57
+ airbyte_agent_slack-0.1.44.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
58
+ airbyte_agent_slack-0.1.44.dist-info/RECORD,,