airbyte-agent-mailchimp 0.1.4__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_mailchimp/__init__.py +217 -0
- airbyte_agent_mailchimp/_vendored/__init__.py +1 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/auth_strategies.py +1120 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/connector_model_loader.py +965 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/executor/local_executor.py +1641 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/extensions.py +693 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/http/response.py +104 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/http_client.py +686 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/introspection.py +262 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/observability/config.py +179 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/observability/session.py +103 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/schema/base.py +164 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/schema/components.py +239 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/schema/connector.py +120 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/schema/extensions.py +230 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/schema/security.py +223 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/events.py +59 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/tracker.py +155 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/types.py +245 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_mailchimp/_vendored/connector_sdk/validation.py +822 -0
- airbyte_agent_mailchimp/connector.py +1378 -0
- airbyte_agent_mailchimp/connector_model.py +4749 -0
- airbyte_agent_mailchimp/models.py +956 -0
- airbyte_agent_mailchimp/types.py +164 -0
- airbyte_agent_mailchimp-0.1.4.dist-info/METADATA +119 -0
- airbyte_agent_mailchimp-0.1.4.dist-info/RECORD +57 -0
- airbyte_agent_mailchimp-0.1.4.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type definitions for mailchimp connector.
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
|
|
6
|
+
# Use typing_extensions.TypedDict for Pydantic compatibility
|
|
7
|
+
try:
|
|
8
|
+
from typing_extensions import TypedDict, NotRequired
|
|
9
|
+
except ImportError:
|
|
10
|
+
from typing import TypedDict, NotRequired # type: ignore[attr-defined]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# ===== NESTED PARAM TYPE DEFINITIONS =====
|
|
15
|
+
# Nested parameter schemas discovered during parameter extraction
|
|
16
|
+
|
|
17
|
+
# ===== OPERATION PARAMS TYPE DEFINITIONS =====
|
|
18
|
+
|
|
19
|
+
class CampaignsListParams(TypedDict):
|
|
20
|
+
"""Parameters for campaigns.list operation"""
|
|
21
|
+
count: NotRequired[int]
|
|
22
|
+
offset: NotRequired[int]
|
|
23
|
+
type: NotRequired[str]
|
|
24
|
+
status: NotRequired[str]
|
|
25
|
+
before_send_time: NotRequired[str]
|
|
26
|
+
since_send_time: NotRequired[str]
|
|
27
|
+
before_create_time: NotRequired[str]
|
|
28
|
+
since_create_time: NotRequired[str]
|
|
29
|
+
list_id: NotRequired[str]
|
|
30
|
+
folder_id: NotRequired[str]
|
|
31
|
+
sort_field: NotRequired[str]
|
|
32
|
+
sort_dir: NotRequired[str]
|
|
33
|
+
|
|
34
|
+
class CampaignsGetParams(TypedDict):
|
|
35
|
+
"""Parameters for campaigns.get operation"""
|
|
36
|
+
campaign_id: str
|
|
37
|
+
|
|
38
|
+
class ListsListParams(TypedDict):
|
|
39
|
+
"""Parameters for lists.list operation"""
|
|
40
|
+
count: NotRequired[int]
|
|
41
|
+
offset: NotRequired[int]
|
|
42
|
+
before_date_created: NotRequired[str]
|
|
43
|
+
since_date_created: NotRequired[str]
|
|
44
|
+
before_campaign_last_sent: NotRequired[str]
|
|
45
|
+
since_campaign_last_sent: NotRequired[str]
|
|
46
|
+
email: NotRequired[str]
|
|
47
|
+
sort_field: NotRequired[str]
|
|
48
|
+
sort_dir: NotRequired[str]
|
|
49
|
+
|
|
50
|
+
class ListsGetParams(TypedDict):
|
|
51
|
+
"""Parameters for lists.get operation"""
|
|
52
|
+
list_id: str
|
|
53
|
+
|
|
54
|
+
class ListMembersListParams(TypedDict):
|
|
55
|
+
"""Parameters for list_members.list operation"""
|
|
56
|
+
list_id: str
|
|
57
|
+
count: NotRequired[int]
|
|
58
|
+
offset: NotRequired[int]
|
|
59
|
+
email_type: NotRequired[str]
|
|
60
|
+
status: NotRequired[str]
|
|
61
|
+
since_timestamp_opt: NotRequired[str]
|
|
62
|
+
before_timestamp_opt: NotRequired[str]
|
|
63
|
+
since_last_changed: NotRequired[str]
|
|
64
|
+
before_last_changed: NotRequired[str]
|
|
65
|
+
unique_email_id: NotRequired[str]
|
|
66
|
+
vip_only: NotRequired[bool]
|
|
67
|
+
interest_category_id: NotRequired[str]
|
|
68
|
+
interest_ids: NotRequired[str]
|
|
69
|
+
interest_match: NotRequired[str]
|
|
70
|
+
sort_field: NotRequired[str]
|
|
71
|
+
sort_dir: NotRequired[str]
|
|
72
|
+
|
|
73
|
+
class ListMembersGetParams(TypedDict):
|
|
74
|
+
"""Parameters for list_members.get operation"""
|
|
75
|
+
list_id: str
|
|
76
|
+
subscriber_hash: str
|
|
77
|
+
|
|
78
|
+
class ReportsListParams(TypedDict):
|
|
79
|
+
"""Parameters for reports.list operation"""
|
|
80
|
+
count: NotRequired[int]
|
|
81
|
+
offset: NotRequired[int]
|
|
82
|
+
type: NotRequired[str]
|
|
83
|
+
before_send_time: NotRequired[str]
|
|
84
|
+
since_send_time: NotRequired[str]
|
|
85
|
+
|
|
86
|
+
class ReportsGetParams(TypedDict):
|
|
87
|
+
"""Parameters for reports.get operation"""
|
|
88
|
+
campaign_id: str
|
|
89
|
+
|
|
90
|
+
class EmailActivityListParams(TypedDict):
|
|
91
|
+
"""Parameters for email_activity.list operation"""
|
|
92
|
+
campaign_id: str
|
|
93
|
+
count: NotRequired[int]
|
|
94
|
+
offset: NotRequired[int]
|
|
95
|
+
since: NotRequired[str]
|
|
96
|
+
|
|
97
|
+
class AutomationsListParams(TypedDict):
|
|
98
|
+
"""Parameters for automations.list operation"""
|
|
99
|
+
count: NotRequired[int]
|
|
100
|
+
offset: NotRequired[int]
|
|
101
|
+
before_create_time: NotRequired[str]
|
|
102
|
+
since_create_time: NotRequired[str]
|
|
103
|
+
before_start_time: NotRequired[str]
|
|
104
|
+
since_start_time: NotRequired[str]
|
|
105
|
+
status: NotRequired[str]
|
|
106
|
+
|
|
107
|
+
class TagsListParams(TypedDict):
|
|
108
|
+
"""Parameters for tags.list operation"""
|
|
109
|
+
list_id: str
|
|
110
|
+
name: NotRequired[str]
|
|
111
|
+
|
|
112
|
+
class InterestCategoriesListParams(TypedDict):
|
|
113
|
+
"""Parameters for interest_categories.list operation"""
|
|
114
|
+
list_id: str
|
|
115
|
+
count: NotRequired[int]
|
|
116
|
+
offset: NotRequired[int]
|
|
117
|
+
|
|
118
|
+
class InterestCategoriesGetParams(TypedDict):
|
|
119
|
+
"""Parameters for interest_categories.get operation"""
|
|
120
|
+
list_id: str
|
|
121
|
+
interest_category_id: str
|
|
122
|
+
|
|
123
|
+
class InterestsListParams(TypedDict):
|
|
124
|
+
"""Parameters for interests.list operation"""
|
|
125
|
+
list_id: str
|
|
126
|
+
interest_category_id: str
|
|
127
|
+
count: NotRequired[int]
|
|
128
|
+
offset: NotRequired[int]
|
|
129
|
+
|
|
130
|
+
class InterestsGetParams(TypedDict):
|
|
131
|
+
"""Parameters for interests.get operation"""
|
|
132
|
+
list_id: str
|
|
133
|
+
interest_category_id: str
|
|
134
|
+
interest_id: str
|
|
135
|
+
|
|
136
|
+
class SegmentsListParams(TypedDict):
|
|
137
|
+
"""Parameters for segments.list operation"""
|
|
138
|
+
list_id: str
|
|
139
|
+
count: NotRequired[int]
|
|
140
|
+
offset: NotRequired[int]
|
|
141
|
+
type: NotRequired[str]
|
|
142
|
+
since_created_at: NotRequired[str]
|
|
143
|
+
before_created_at: NotRequired[str]
|
|
144
|
+
since_updated_at: NotRequired[str]
|
|
145
|
+
before_updated_at: NotRequired[str]
|
|
146
|
+
|
|
147
|
+
class SegmentsGetParams(TypedDict):
|
|
148
|
+
"""Parameters for segments.get operation"""
|
|
149
|
+
list_id: str
|
|
150
|
+
segment_id: str
|
|
151
|
+
|
|
152
|
+
class SegmentMembersListParams(TypedDict):
|
|
153
|
+
"""Parameters for segment_members.list operation"""
|
|
154
|
+
list_id: str
|
|
155
|
+
segment_id: str
|
|
156
|
+
count: NotRequired[int]
|
|
157
|
+
offset: NotRequired[int]
|
|
158
|
+
|
|
159
|
+
class UnsubscribesListParams(TypedDict):
|
|
160
|
+
"""Parameters for unsubscribes.list operation"""
|
|
161
|
+
campaign_id: str
|
|
162
|
+
count: NotRequired[int]
|
|
163
|
+
offset: NotRequired[int]
|
|
164
|
+
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: airbyte-agent-mailchimp
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: Airbyte Mailchimp Connector for AI platforms
|
|
5
|
+
Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
|
|
6
|
+
Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
|
|
7
|
+
Project-URL: Repository, https://github.com/airbytehq/airbyte-agent-connectors
|
|
8
|
+
Project-URL: Issues, https://github.com/airbytehq/airbyte-agent-connectors/issues
|
|
9
|
+
Author-email: Airbyte <contact@airbyte.io>
|
|
10
|
+
License: Elastic-2.0
|
|
11
|
+
Keywords: agent,ai,airbyte,api,connector,data-integration,llm,mailchimp,mcp
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: Other/Proprietary License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Requires-Python: >=3.13
|
|
22
|
+
Requires-Dist: httpx>=0.24.0
|
|
23
|
+
Requires-Dist: jinja2>=3.0.0
|
|
24
|
+
Requires-Dist: jsonpath-ng>=1.6.1
|
|
25
|
+
Requires-Dist: jsonref>=1.1.0
|
|
26
|
+
Requires-Dist: opentelemetry-api>=1.37.0
|
|
27
|
+
Requires-Dist: opentelemetry-sdk>=1.37.0
|
|
28
|
+
Requires-Dist: pydantic>=2.0.0
|
|
29
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
30
|
+
Requires-Dist: pyyaml>=6.0
|
|
31
|
+
Requires-Dist: segment-analytics-python>=2.2.0
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
34
|
+
# Mailchimp agent connector
|
|
35
|
+
|
|
36
|
+
Mailchimp is an email marketing platform that enables businesses to create, send, and analyze
|
|
37
|
+
email campaigns, manage subscriber lists, and automate marketing workflows. This connector
|
|
38
|
+
provides read access to campaigns, lists, reports, email activity, automations, and more
|
|
39
|
+
for marketing analytics and audience management.
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## Example questions
|
|
43
|
+
|
|
44
|
+
The Mailchimp connector is optimized to handle prompts like these.
|
|
45
|
+
|
|
46
|
+
- Show me all my email campaigns from the last month
|
|
47
|
+
- List all subscribers in my main mailing list
|
|
48
|
+
- What are the open rates for my recent campaigns?
|
|
49
|
+
- Show me the performance report for campaign \{campaign_id\}
|
|
50
|
+
- List all automation workflows in my account
|
|
51
|
+
- Who unsubscribed from list \{list_id\} this week?
|
|
52
|
+
- Show me all segments for my primary audience
|
|
53
|
+
- What tags are applied to my subscribers?
|
|
54
|
+
- List all interest categories for list \{list_id\}
|
|
55
|
+
- Show me email activity for campaign \{campaign_id\}
|
|
56
|
+
- How many subscribers do I have in each list?
|
|
57
|
+
- What are my top performing campaigns by click rate?
|
|
58
|
+
|
|
59
|
+
## Unsupported questions
|
|
60
|
+
|
|
61
|
+
The Mailchimp connector isn't currently able to handle prompts like these.
|
|
62
|
+
|
|
63
|
+
- Create a new email campaign
|
|
64
|
+
- Add a subscriber to my list
|
|
65
|
+
- Delete a campaign
|
|
66
|
+
- Update subscriber information
|
|
67
|
+
- Send a campaign now
|
|
68
|
+
- Create a new automation workflow
|
|
69
|
+
|
|
70
|
+
## Installation
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
uv pip install airbyte-agent-mailchimp
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Usage
|
|
77
|
+
|
|
78
|
+
```python
|
|
79
|
+
from airbyte_agent_mailchimp import MailchimpConnector, MailchimpAuthConfig
|
|
80
|
+
|
|
81
|
+
connector = MailchimpConnector(
|
|
82
|
+
auth_config=MailchimpAuthConfig(
|
|
83
|
+
api_key="...",
|
|
84
|
+
data_center="..."
|
|
85
|
+
)
|
|
86
|
+
)
|
|
87
|
+
result = await connector.campaigns.list()
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
## Full documentation
|
|
92
|
+
|
|
93
|
+
This connector supports the following entities and actions.
|
|
94
|
+
|
|
95
|
+
| Entity | Actions |
|
|
96
|
+
|--------|---------|
|
|
97
|
+
| Campaigns | [List](./REFERENCE.md#campaigns-list), [Get](./REFERENCE.md#campaigns-get) |
|
|
98
|
+
| Lists | [List](./REFERENCE.md#lists-list), [Get](./REFERENCE.md#lists-get) |
|
|
99
|
+
| List Members | [List](./REFERENCE.md#list-members-list), [Get](./REFERENCE.md#list-members-get) |
|
|
100
|
+
| Reports | [List](./REFERENCE.md#reports-list), [Get](./REFERENCE.md#reports-get) |
|
|
101
|
+
| Email Activity | [List](./REFERENCE.md#email-activity-list) |
|
|
102
|
+
| Automations | [List](./REFERENCE.md#automations-list) |
|
|
103
|
+
| Tags | [List](./REFERENCE.md#tags-list) |
|
|
104
|
+
| Interest Categories | [List](./REFERENCE.md#interest-categories-list), [Get](./REFERENCE.md#interest-categories-get) |
|
|
105
|
+
| Interests | [List](./REFERENCE.md#interests-list), [Get](./REFERENCE.md#interests-get) |
|
|
106
|
+
| Segments | [List](./REFERENCE.md#segments-list), [Get](./REFERENCE.md#segments-get) |
|
|
107
|
+
| Segment Members | [List](./REFERENCE.md#segment-members-list) |
|
|
108
|
+
| Unsubscribes | [List](./REFERENCE.md#unsubscribes-list) |
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
112
|
+
|
|
113
|
+
For the service's official API docs, see the [Mailchimp API reference](https://mailchimp.com/developer/marketing/api/).
|
|
114
|
+
|
|
115
|
+
## Version information
|
|
116
|
+
|
|
117
|
+
- **Package version:** 0.1.4
|
|
118
|
+
- **Connector version:** 1.0.1
|
|
119
|
+
- **Generated with Connector SDK commit SHA:** ca5acdda8030d8292c059c82f498a95b2227c106
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
airbyte_agent_mailchimp/__init__.py,sha256=dvjp5b2a54YTMalVb-VddYhP9M1NPWit5JTEl4mcEhA,5275
|
|
2
|
+
airbyte_agent_mailchimp/connector.py,sha256=gUki4sLvMzmHCCLIhbMZx-DJH7xO6jXM5yipWZaFQyM,45867
|
|
3
|
+
airbyte_agent_mailchimp/connector_model.py,sha256=LTOadOFSXgfDn7kqZrFlOymAzhOpDq2V7tKopmHFPPQ,281492
|
|
4
|
+
airbyte_agent_mailchimp/models.py,sha256=nQPeQwromlL3mHFR1rmiVBZCo4Pu1PRbHObUjNq8Y4A,56168
|
|
5
|
+
airbyte_agent_mailchimp/types.py,sha256=9OeRLHJdQY3F4Y5gS5tn6lcF-Vfx45CIheTUH3hAZbA,4881
|
|
6
|
+
airbyte_agent_mailchimp/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
8
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/auth_strategies.py,sha256=BdjAzFRTwXCmLFqYWqZ4Dx9RsqtI7pAkw-8NynSK4sQ,39914
|
|
9
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/auth_template.py,sha256=nju4jqlFC_KI82ILNumNIyiUtRJcy7J94INIZ0QraI4,4454
|
|
10
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/connector_model_loader.py,sha256=b88aoMynHxtG2dhzclkWrLiJbefTiKMzReyj3lOiwJI,34940
|
|
11
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
|
|
12
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
|
|
13
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/extensions.py,sha256=XWRRoJOOrwUHSKbuQt5DU7CCu8ePzhd_HuP7c_uD77w,21376
|
|
14
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
|
|
15
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/introspection.py,sha256=2CyKXZHT74-1Id97uw1RLeyOi6TV24_hoNbQ6-6y7uI,10335
|
|
16
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/secrets.py,sha256=J9ezMu4xNnLW11xY5RCre6DHP7YMKZCqwGJfk7ufHAM,6855
|
|
17
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/types.py,sha256=CStkOsLtmZZdXylkdCsbYORDzughxygt1-Ucma0j-qE,8287
|
|
18
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
|
|
19
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
|
|
20
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
|
|
21
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
|
|
22
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
23
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/executor/hosted_executor.py,sha256=ydHcG-biRS1ITT5ELwPShdJW-KYpvK--Fos1ipNgHho,6995
|
|
24
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/executor/local_executor.py,sha256=qbvarouUD61Dqg6v3hiWnK9scf3At3CvtZzcYcUcT0M,68024
|
|
25
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
26
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
27
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
28
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
|
|
29
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
|
|
30
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/http/response.py,sha256=Q-RyM5D0D05ZhmZVJk4hVpmoS8YtyXNOTM5hqBt7rWI,3475
|
|
31
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
|
|
32
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
|
|
33
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
|
|
34
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/logging/logger.py,sha256=GKm03UgDMNlvGuuH_c07jNcZmUccC3DISG269Ehj1Uo,8084
|
|
35
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/logging/types.py,sha256=z0UiSdXP_r71mtwWkJydo0InsNpYOMyI7SVutzd2PEo,3172
|
|
36
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
|
|
37
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/observability/config.py,sha256=uWvRAPHnEusVKviQQncqcpnHKNhoZ4ZoFK6nUOSVClY,5372
|
|
38
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/observability/models.py,sha256=IRGjlJia28_IU7BMSBb5RHWs47yAOLvE20JIIXHazLY,448
|
|
39
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
|
|
40
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/observability/session.py,sha256=WYRIB3bVz9HhpElkUO9CILCRIrWs9p2MR2hmf8uJm3E,3086
|
|
41
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
|
|
42
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
|
|
43
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/performance/metrics.py,sha256=FRff7dKt4iwt_A7pxV5n9kAGBR756PC7q8-weWygPSM,2817
|
|
44
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
|
|
45
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/schema/base.py,sha256=4RYTkCWgyS5Z75z9TKj9vXySfO00HJ03QDtbdVYeHYM,5086
|
|
46
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/schema/components.py,sha256=x3YCM1p2n_xHi50fMeOX0mXUiPqjGlLHs3Go8jXokb0,7895
|
|
47
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
|
|
48
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/schema/extensions.py,sha256=f7VhHrcIYxaPOJHMc4g0lpy04pZTbx5nlroNzAu5B9Q,7135
|
|
49
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/schema/operations.py,sha256=RpzGtAI4yvAtMHAfMUMcUwgHv_qJojnKlNb75_agUF8,5729
|
|
50
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/schema/security.py,sha256=zQ9RRuF3LBgLQi_4cItmjXbG_5WKlmCNM3nCil30H90,8470
|
|
51
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
|
|
52
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
53
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
|
|
54
|
+
airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
|
|
55
|
+
airbyte_agent_mailchimp-0.1.4.dist-info/METADATA,sha256=k1kTt58LCy0cND36IU2aB-6DIulKE-kqxjvcVU6dn1M,4592
|
|
56
|
+
airbyte_agent_mailchimp-0.1.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_mailchimp-0.1.4.dist-info/RECORD,,
|