airbyte-agent-klaviyo 0.1.0__py3-none-any.whl → 0.1.1__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_klaviyo/__init__.py +14 -14
- airbyte_agent_klaviyo/models.py +42 -42
- {airbyte_agent_klaviyo-0.1.0.dist-info → airbyte_agent_klaviyo-0.1.1.dist-info}/METADATA +4 -3
- {airbyte_agent_klaviyo-0.1.0.dist-info → airbyte_agent_klaviyo-0.1.1.dist-info}/RECORD +5 -5
- {airbyte_agent_klaviyo-0.1.0.dist-info → airbyte_agent_klaviyo-0.1.1.dist-info}/WHEEL +0 -0
|
@@ -23,29 +23,29 @@ from .models import (
|
|
|
23
23
|
Campaign,
|
|
24
24
|
CampaignsListLinks,
|
|
25
25
|
CampaignsList,
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
EventLinks,
|
|
27
|
+
EventAttributes,
|
|
28
28
|
EventRelationshipsMetricData,
|
|
29
29
|
EventRelationshipsMetric,
|
|
30
|
+
EventRelationshipsProfileData,
|
|
31
|
+
EventRelationshipsProfile,
|
|
30
32
|
EventRelationships,
|
|
31
|
-
EventLinks,
|
|
32
|
-
EventAttributes,
|
|
33
33
|
Event,
|
|
34
34
|
EventsListLinks,
|
|
35
35
|
EventsList,
|
|
36
|
-
MetricLinks,
|
|
37
36
|
MetricAttributesIntegration,
|
|
38
37
|
MetricAttributes,
|
|
38
|
+
MetricLinks,
|
|
39
39
|
Metric,
|
|
40
40
|
MetricsListLinks,
|
|
41
41
|
MetricsList,
|
|
42
|
-
FlowLinks,
|
|
43
42
|
FlowAttributes,
|
|
43
|
+
FlowLinks,
|
|
44
44
|
Flow,
|
|
45
45
|
FlowsListLinks,
|
|
46
46
|
FlowsList,
|
|
47
|
-
TemplateLinks,
|
|
48
47
|
TemplateAttributes,
|
|
48
|
+
TemplateLinks,
|
|
49
49
|
Template,
|
|
50
50
|
TemplatesListLinks,
|
|
51
51
|
TemplatesList,
|
|
@@ -134,29 +134,29 @@ __all__ = [
|
|
|
134
134
|
"Campaign",
|
|
135
135
|
"CampaignsListLinks",
|
|
136
136
|
"CampaignsList",
|
|
137
|
-
"
|
|
138
|
-
"
|
|
137
|
+
"EventLinks",
|
|
138
|
+
"EventAttributes",
|
|
139
139
|
"EventRelationshipsMetricData",
|
|
140
140
|
"EventRelationshipsMetric",
|
|
141
|
+
"EventRelationshipsProfileData",
|
|
142
|
+
"EventRelationshipsProfile",
|
|
141
143
|
"EventRelationships",
|
|
142
|
-
"EventLinks",
|
|
143
|
-
"EventAttributes",
|
|
144
144
|
"Event",
|
|
145
145
|
"EventsListLinks",
|
|
146
146
|
"EventsList",
|
|
147
|
-
"MetricLinks",
|
|
148
147
|
"MetricAttributesIntegration",
|
|
149
148
|
"MetricAttributes",
|
|
149
|
+
"MetricLinks",
|
|
150
150
|
"Metric",
|
|
151
151
|
"MetricsListLinks",
|
|
152
152
|
"MetricsList",
|
|
153
|
-
"FlowLinks",
|
|
154
153
|
"FlowAttributes",
|
|
154
|
+
"FlowLinks",
|
|
155
155
|
"Flow",
|
|
156
156
|
"FlowsListLinks",
|
|
157
157
|
"FlowsList",
|
|
158
|
-
"TemplateLinks",
|
|
159
158
|
"TemplateAttributes",
|
|
159
|
+
"TemplateLinks",
|
|
160
160
|
"Template",
|
|
161
161
|
"TemplatesListLinks",
|
|
162
162
|
"TemplatesList",
|
airbyte_agent_klaviyo/models.py
CHANGED
|
@@ -195,18 +195,24 @@ class CampaignsList(BaseModel):
|
|
|
195
195
|
data: Union[list[Campaign], Any] = Field(default=None)
|
|
196
196
|
links: Union[CampaignsListLinks | None, Any] = Field(default=None)
|
|
197
197
|
|
|
198
|
-
class
|
|
199
|
-
"""
|
|
198
|
+
class EventLinks(BaseModel):
|
|
199
|
+
"""Related links"""
|
|
200
200
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
201
201
|
|
|
202
|
-
|
|
203
|
-
id: Union[str | None, Any] = Field(default=None)
|
|
202
|
+
self: Union[str | None, Any] = Field(default=None)
|
|
204
203
|
|
|
205
|
-
class
|
|
206
|
-
"""
|
|
204
|
+
class EventAttributes(BaseModel):
|
|
205
|
+
"""Event attributes"""
|
|
207
206
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
208
207
|
|
|
209
|
-
|
|
208
|
+
timestamp: Union[Any, Any] = Field(default=None, description="Event timestamp (can be ISO string or Unix timestamp)")
|
|
209
|
+
"""Event timestamp (can be ISO string or Unix timestamp)"""
|
|
210
|
+
datetime: Union[str | None, Any] = Field(default=None, description="Event datetime")
|
|
211
|
+
"""Event datetime"""
|
|
212
|
+
uuid: Union[str | None, Any] = Field(default=None, description="Event UUID")
|
|
213
|
+
"""Event UUID"""
|
|
214
|
+
event_properties: Union[dict[str, Any] | None, Any] = Field(default=None, description="Custom event properties")
|
|
215
|
+
"""Custom event properties"""
|
|
210
216
|
|
|
211
217
|
class EventRelationshipsMetricData(BaseModel):
|
|
212
218
|
"""Nested schema for EventRelationshipsMetric.data"""
|
|
@@ -221,31 +227,25 @@ class EventRelationshipsMetric(BaseModel):
|
|
|
221
227
|
|
|
222
228
|
data: Union[EventRelationshipsMetricData | None, Any] = Field(default=None)
|
|
223
229
|
|
|
224
|
-
class
|
|
225
|
-
"""
|
|
230
|
+
class EventRelationshipsProfileData(BaseModel):
|
|
231
|
+
"""Nested schema for EventRelationshipsProfile.data"""
|
|
226
232
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
227
233
|
|
|
228
|
-
|
|
229
|
-
|
|
234
|
+
type: Union[str | None, Any] = Field(default=None)
|
|
235
|
+
id: Union[str | None, Any] = Field(default=None)
|
|
230
236
|
|
|
231
|
-
class
|
|
232
|
-
"""
|
|
237
|
+
class EventRelationshipsProfile(BaseModel):
|
|
238
|
+
"""Nested schema for EventRelationships.profile"""
|
|
233
239
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
234
240
|
|
|
235
|
-
|
|
241
|
+
data: Union[EventRelationshipsProfileData | None, Any] = Field(default=None)
|
|
236
242
|
|
|
237
|
-
class
|
|
238
|
-
"""
|
|
243
|
+
class EventRelationships(BaseModel):
|
|
244
|
+
"""Related resources"""
|
|
239
245
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
240
246
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
datetime: Union[str | None, Any] = Field(default=None, description="Event datetime")
|
|
244
|
-
"""Event datetime"""
|
|
245
|
-
uuid: Union[str | None, Any] = Field(default=None, description="Event UUID")
|
|
246
|
-
"""Event UUID"""
|
|
247
|
-
event_properties: Union[dict[str, Any] | None, Any] = Field(default=None, description="Custom event properties")
|
|
248
|
-
"""Custom event properties"""
|
|
247
|
+
profile: Union[EventRelationshipsProfile | None, Any] = Field(default=None)
|
|
248
|
+
metric: Union[EventRelationshipsMetric | None, Any] = Field(default=None)
|
|
249
249
|
|
|
250
250
|
class Event(BaseModel):
|
|
251
251
|
"""A Klaviyo event representing an action taken by a profile"""
|
|
@@ -272,12 +272,6 @@ class EventsList(BaseModel):
|
|
|
272
272
|
data: Union[list[Event], Any] = Field(default=None)
|
|
273
273
|
links: Union[EventsListLinks | None, Any] = Field(default=None)
|
|
274
274
|
|
|
275
|
-
class MetricLinks(BaseModel):
|
|
276
|
-
"""Related links"""
|
|
277
|
-
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
278
|
-
|
|
279
|
-
self: Union[str | None, Any] = Field(default=None)
|
|
280
|
-
|
|
281
275
|
class MetricAttributesIntegration(BaseModel):
|
|
282
276
|
"""Integration information"""
|
|
283
277
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -299,6 +293,12 @@ class MetricAttributes(BaseModel):
|
|
|
299
293
|
integration: Union[MetricAttributesIntegration | None, Any] = Field(default=None, description="Integration information")
|
|
300
294
|
"""Integration information"""
|
|
301
295
|
|
|
296
|
+
class MetricLinks(BaseModel):
|
|
297
|
+
"""Related links"""
|
|
298
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
299
|
+
|
|
300
|
+
self: Union[str | None, Any] = Field(default=None)
|
|
301
|
+
|
|
302
302
|
class Metric(BaseModel):
|
|
303
303
|
"""A Klaviyo metric (event type)"""
|
|
304
304
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -323,12 +323,6 @@ class MetricsList(BaseModel):
|
|
|
323
323
|
data: Union[list[Metric], Any] = Field(default=None)
|
|
324
324
|
links: Union[MetricsListLinks | None, Any] = Field(default=None)
|
|
325
325
|
|
|
326
|
-
class FlowLinks(BaseModel):
|
|
327
|
-
"""Related links"""
|
|
328
|
-
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
329
|
-
|
|
330
|
-
self: Union[str | None, Any] = Field(default=None)
|
|
331
|
-
|
|
332
326
|
class FlowAttributes(BaseModel):
|
|
333
327
|
"""Flow attributes"""
|
|
334
328
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -346,6 +340,12 @@ class FlowAttributes(BaseModel):
|
|
|
346
340
|
trigger_type: Union[str | None, Any] = Field(default=None, description="Type of trigger for the flow")
|
|
347
341
|
"""Type of trigger for the flow"""
|
|
348
342
|
|
|
343
|
+
class FlowLinks(BaseModel):
|
|
344
|
+
"""Related links"""
|
|
345
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
346
|
+
|
|
347
|
+
self: Union[str | None, Any] = Field(default=None)
|
|
348
|
+
|
|
349
349
|
class Flow(BaseModel):
|
|
350
350
|
"""A Klaviyo flow (automated sequence)"""
|
|
351
351
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -370,12 +370,6 @@ class FlowsList(BaseModel):
|
|
|
370
370
|
data: Union[list[Flow], Any] = Field(default=None)
|
|
371
371
|
links: Union[FlowsListLinks | None, Any] = Field(default=None)
|
|
372
372
|
|
|
373
|
-
class TemplateLinks(BaseModel):
|
|
374
|
-
"""Related links"""
|
|
375
|
-
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
376
|
-
|
|
377
|
-
self: Union[str | None, Any] = Field(default=None)
|
|
378
|
-
|
|
379
373
|
class TemplateAttributes(BaseModel):
|
|
380
374
|
"""Template attributes"""
|
|
381
375
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -393,6 +387,12 @@ class TemplateAttributes(BaseModel):
|
|
|
393
387
|
updated: Union[str | None, Any] = Field(default=None, description="Last update timestamp")
|
|
394
388
|
"""Last update timestamp"""
|
|
395
389
|
|
|
390
|
+
class TemplateLinks(BaseModel):
|
|
391
|
+
"""Related links"""
|
|
392
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
393
|
+
|
|
394
|
+
self: Union[str | None, Any] = Field(default=None)
|
|
395
|
+
|
|
396
396
|
class Template(BaseModel):
|
|
397
397
|
"""A Klaviyo email template"""
|
|
398
398
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-klaviyo
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Airbyte Klaviyo 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/
|
|
@@ -146,6 +146,7 @@ See the official [Klaviyo API reference](https://developers.klaviyo.com/en/refer
|
|
|
146
146
|
|
|
147
147
|
## Version information
|
|
148
148
|
|
|
149
|
-
- **Package version:** 0.1.
|
|
149
|
+
- **Package version:** 0.1.1
|
|
150
150
|
- **Connector version:** 1.0.0
|
|
151
|
-
- **Generated with Connector SDK commit SHA:**
|
|
151
|
+
- **Generated with Connector SDK commit SHA:** e4eb233f8dd57ad9bc825064625222a988db2cc6
|
|
152
|
+
- **Changelog:** [View changelog](https://github.com/airbytehq/airbyte-agent-connectors/blob/main/connectors/klaviyo/CHANGELOG.md)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
airbyte_agent_klaviyo/__init__.py,sha256=
|
|
1
|
+
airbyte_agent_klaviyo/__init__.py,sha256=_ReYN5tt0Ny8XpNMBgN2Z_Oy4_qs-8EldVbCUU5IMNM,5183
|
|
2
2
|
airbyte_agent_klaviyo/connector.py,sha256=s76Mx4tIQbbu_iS9TQVlk19OhYoEejvuAwjAC8TzDek,45379
|
|
3
3
|
airbyte_agent_klaviyo/connector_model.py,sha256=-CI6kFqFVeaoUuxnGa3cxLTsAJyv-Iz6jIyzSCFKWUs,115589
|
|
4
|
-
airbyte_agent_klaviyo/models.py,sha256=
|
|
4
|
+
airbyte_agent_klaviyo/models.py,sha256=UjkwbAYspz3elX7hmsZ8GB4t31V-Vb1frc1GmpqodsU,24800
|
|
5
5
|
airbyte_agent_klaviyo/types.py,sha256=3tmMm_Tr3BGpSsFwkzY59B62WVo16pLjFKn2l1xwids,35253
|
|
6
6
|
airbyte_agent_klaviyo/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
7
|
airbyte_agent_klaviyo/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
@@ -52,6 +52,6 @@ airbyte_agent_klaviyo/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgk
|
|
|
52
52
|
airbyte_agent_klaviyo/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
53
53
|
airbyte_agent_klaviyo/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
|
|
54
54
|
airbyte_agent_klaviyo/_vendored/connector_sdk/telemetry/tracker.py,sha256=SginFQbHqVUVYG82NnNzG34O-tAQ_wZYjGDcuo0q4Kk,5584
|
|
55
|
-
airbyte_agent_klaviyo-0.1.
|
|
56
|
-
airbyte_agent_klaviyo-0.1.
|
|
57
|
-
airbyte_agent_klaviyo-0.1.
|
|
55
|
+
airbyte_agent_klaviyo-0.1.1.dist-info/METADATA,sha256=tqFDh8yOX9jAWk4BDShaJnUAfsV4ojdr8u4TNOmUkVo,5616
|
|
56
|
+
airbyte_agent_klaviyo-0.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_klaviyo-0.1.1.dist-info/RECORD,,
|
|
File without changes
|