-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 Source Retently: Add campaigns, feedback, outbox, templates streams (…
…#19456) * [ADD] missing streams Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] increase request limit Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] update customers schema Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] formatting, fix unit and acceptance tests Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] bump version Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [FIX] feedback additional questions answer can be string Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] docs Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] companies pagination limit Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] add all streams to configured catalog Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] update sample catalog Signed-off-by: Henri Blancke <blanckehenri@gmail.com> * [UPD] add newline Co-authored-by: Haithem SOUALA <haithem.souala@woopit.fr> * fix: modify schema files to pass SAT * Update configured_catalog.json Signed-off-by: Henri Blancke <blanckehenri@gmail.com> Co-authored-by: Haithem SOUALA <haithem.souala@woopit.fr> Co-authored-by: Sajarin <sajarindider@gmail.com>
- Loading branch information
1 parent
fcc4cde
commit 305b1eb
Showing
12 changed files
with
287 additions
and
35 deletions.
There are no files selected for viewing
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
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
31 changes: 22 additions & 9 deletions
31
airbyte-integrations/connectors/source-retently/source_retently/schemas/campaigns.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 |
---|---|---|
@@ -1,13 +1,26 @@ | ||
{ | ||
"type": "object", | ||
"properties": | ||
{ | ||
"id": { "type": "string" }, | ||
"name": { "type": "string" }, | ||
"isActive": { "type": "boolean" }, | ||
"templateId": { "type": "string" }, | ||
"metric": { "type": "string" }, | ||
"type": { "type": "string" }, | ||
"channel": { "type": "string" } | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"isActive": { | ||
"type": "boolean" | ||
}, | ||
"templateId": { | ||
"type": "string" | ||
}, | ||
"metric": { | ||
"type": "string" | ||
}, | ||
"type": { | ||
"type": "string" | ||
}, | ||
"channel": { | ||
"type": "string" | ||
} | ||
} | ||
} |
77 changes: 77 additions & 0 deletions
77
airbyte-integrations/connectors/source-retently/source_retently/schemas/outbox.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,77 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"email": { | ||
"type": "string" | ||
}, | ||
"customerId": { | ||
"type": "string" | ||
}, | ||
"firstName": { | ||
"type": "string" | ||
}, | ||
"lastName": { | ||
"type": "string" | ||
}, | ||
"companyName": { | ||
"type": "string" | ||
}, | ||
"companyId": { | ||
"type": "string" | ||
}, | ||
"sentDate": { | ||
"type": "string" | ||
}, | ||
"channel": { | ||
"type": "string" | ||
}, | ||
"campaign": { | ||
"type": "string" | ||
}, | ||
"campaignId": { | ||
"type": "string" | ||
}, | ||
"surveyTemplateId": { | ||
"type": "string" | ||
}, | ||
"subject": { | ||
"type": "string" | ||
}, | ||
"sentBy": { | ||
"type": "string" | ||
}, | ||
"status": { | ||
"type": "string" | ||
}, | ||
"detailedStatus": { | ||
"type": "object", | ||
"properties": { | ||
"isOpened": { | ||
"type": "boolean" | ||
}, | ||
"openedDate": { | ||
"type": "string" | ||
}, | ||
"isResponded": { | ||
"type": "boolean" | ||
}, | ||
"respondedDate": { | ||
"type": "string" | ||
}, | ||
"hasFeedback": { | ||
"type": "boolean" | ||
}, | ||
"isOptedOut": { | ||
"type": "boolean" | ||
}, | ||
"isBounced": { | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
"additionalRecipients": { | ||
"type": "array", | ||
"items": { "type": "object"} | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
airbyte-integrations/connectors/source-retently/source_retently/schemas/templates.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,18 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"channel": { | ||
"type": "string" | ||
}, | ||
"metric": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["id", "name", "channel", "metric"] | ||
} |
Oops, something went wrong.