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.
Source Twilio: add conversations stream (airbytehq#24320)
* add conversations stream * add conversations schema * add docs * fix connector version * fix tests and add conversation to streams * fix schema and abnormal state * remove incremental from conversations * fix source * fix doc and remove date_field * add eof * add path for conversations * auto-bump connector version --------- Co-authored-by: Haithem Souala <haithem.souala@woopit.fr> Co-authored-by: Augustin <augustin@airbyte.io> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
- Loading branch information
1 parent
100cc60
commit ca4ca68
Showing
12 changed files
with
77 additions
and
5 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
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
47 changes: 47 additions & 0 deletions
47
airbyte-integrations/connectors/source-twilio/source_twilio/schemas/conversations.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,47 @@ | ||
{ | ||
"properties": { | ||
"sid": { | ||
"type": ["null", "string"] | ||
}, | ||
"account_sid": { | ||
"type": ["null", "string"] | ||
}, | ||
"chat_service_sid": { | ||
"type": ["null", "string"] | ||
}, | ||
"messaging_service_sid": { | ||
"type": ["null", "string"] | ||
}, | ||
"friendly_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"unique_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"attributes": { | ||
"type": ["null", "string"] | ||
}, | ||
"date_created": { | ||
"format": "date-time", | ||
"type": ["null", "string"] | ||
}, | ||
"date_updated": { | ||
"format": "date-time", | ||
"type": ["null", "string"] | ||
}, | ||
"state": { | ||
"type": ["null", "string"] | ||
}, | ||
"timers": { | ||
"type": ["null", "object"] | ||
}, | ||
"bindings": { | ||
"type": ["null", "object"] | ||
}, | ||
"url": { | ||
"type": ["null", "string"] | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": true | ||
} |
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
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