forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…airbytehq#35637) Signed-off-by: Artem Inzhyyants <[email protected]>
- Loading branch information
Showing
9 changed files
with
215 additions
and
181 deletions.
There are no files selected for viewing
32 changes: 16 additions & 16 deletions
32
airbyte-integrations/connectors/source-klaviyo/integration_tests/expected_records.jsonl
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
version = "2.1.3" | ||
version = "2.2.0" | ||
name = "source-klaviyo" | ||
description = "Source implementation for Klaviyo." | ||
authors = [ "Airbyte <[email protected]>",] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
108 changes: 108 additions & 0 deletions
108
...e-integrations/connectors/source-klaviyo/source_klaviyo/schemas/shared/subscriptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{ | ||
"type": ["null", "object"], | ||
"properties": { | ||
"email": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"marketing": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"can_receive_email_marketing": { | ||
"type": "boolean" | ||
}, | ||
"consent": { | ||
"type": "string" | ||
}, | ||
"timestamp": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"last_updated": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"method": { | ||
"type": ["null", "string"] | ||
}, | ||
"method_detail": { | ||
"type": ["null", "string"] | ||
}, | ||
"custom_method_detail": { | ||
"type": ["null", "string"] | ||
}, | ||
"double_optin": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"suppressions": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"reason": { | ||
"type": "string" | ||
}, | ||
"timestamp": { | ||
"type": "string", | ||
"format": "date-time" | ||
} | ||
} | ||
} | ||
}, | ||
"list_suppressions": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"list_id": { | ||
"type": "string" | ||
}, | ||
"reason": { | ||
"type": "string" | ||
}, | ||
"timestamp": { | ||
"type": "string", | ||
"format": "date-time" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"sms": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"marketing": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"can_receive_sms_marketing": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"consent": { | ||
"type": ["null", "string"] | ||
}, | ||
"consent_timestamp": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"method": { | ||
"type": ["null", "string"] | ||
}, | ||
"method_detail": { | ||
"type": ["null", "string"] | ||
}, | ||
"last_updated": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"timestamp": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.