File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
airbyte-integrations/connectors/source-klaviyo
docs/integrations/sources Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 8
8
definitionId : 95e8cffd-b8c4-4039-968e-d32fb4a69bde
9
9
connectorBuildOptions :
10
10
baseImage : docker.io/airbyte/python-connector-base:1.1.0@sha256:bd98f6505c6764b1b5f99d3aedc23dfc9e9af631a62533f60eb32b1d3dbab20c
11
- dockerImageTag : 2.1.2
11
+ dockerImageTag : 2.1.3
12
12
dockerRepository : airbyte/source-klaviyo
13
13
githubIssueLabel : source-klaviyo
14
14
icon : klaviyo.svg
Original file line number Diff line number Diff line change 12
12
from airbyte_cdk .sources .streams .availability_strategy import AvailabilityStrategy
13
13
from airbyte_cdk .sources .streams .core import StreamData
14
14
from airbyte_cdk .sources .streams .http import HttpStream
15
+ from airbyte_cdk .sources .utils .transform import TransformConfig , TypeTransformer
15
16
16
17
from .availability_strategy import KlaviyoAvailabilityStrategy
17
18
from .exceptions import KlaviyoBackoffError
@@ -242,6 +243,8 @@ def read_records(
242
243
class Profiles (IncrementalKlaviyoStream ):
243
244
"""Docs: https://developers.klaviyo.com/en/v2023-02-22/reference/get_profiles"""
244
245
246
+ transformer : TypeTransformer = TypeTransformer (TransformConfig .DefaultSchemaNormalization )
247
+
245
248
cursor_field = "updated"
246
249
api_revision = "2023-02-22"
247
250
page_size = 100
Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ The Klaviyo connector should not run into Klaviyo API limitations under normal u
63
63
64
64
| Version | Date | Pull Request | Subject |
65
65
| :------- | :--------- | :--------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------- |
66
- | 2.1.2 | 2024-02-09 | [ 35088] ( https://github.com/airbytehq/airbyte/pull/35088 ) | Manage dependencies with Poetry. |
66
+ | ` 2.1.3 ` | 2024-02-15 | [ 35336] ( https://github.com/airbytehq/airbyte/pull/35336 ) | Added type transformer for the ` profiles ` stream. |
67
+ | ` 2.1.2 ` | 2024-02-09 | [ 35088] ( https://github.com/airbytehq/airbyte/pull/35088 ) | Manage dependencies with Poetry. |
67
68
| ` 2.1.1 ` | 2024-02-07 | [ 34998] ( https://github.com/airbytehq/airbyte/pull/34998 ) | Add missing fields to stream schemas |
68
69
| ` 2.1.0 ` | 2023-12-07 | [ 33237] ( https://github.com/airbytehq/airbyte/pull/33237 ) | Continue syncing streams even when one of the stream fails |
69
70
| ` 2.0.2 ` | 2023-12-05 | [ 33099] ( https://github.com/airbytehq/airbyte/pull/33099 ) | Fix filtering for archived records stream |
You can’t perform that action at this time.
0 commit comments