Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Source Intercom: fix conversation_parts stream schema #14554

Merged
merged 8 commits into from
Jul 11, 2022
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-intercom/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ COPY source_intercom ./source_intercom
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.21
LABEL io.airbyte.version=0.1.22
LABEL io.airbyte.name=airbyte/source-intercom
Original file line number Diff line number Diff line change
Expand Up @@ -3,63 +3,55 @@
"additionalProperties": false,
"properties": {
"assigned_to": {
"anyOf": [
"oneOf": [
{
"type": ["null", "object"],
"items": {
"type": "object",
"additionalProperties": false,
"type": "object",
"properties": {
"type": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "string"]
}
}
}
},
{
"type": "string"
},
{
"type": "null"
}
]
},
"attachments": {
"anyOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"content_type": {
"type": ["null", "string"]
},
"filesize": {
"type": ["null", "integer"]
},
"height": {
"type": ["null", "integer"]
},
"width": {
"type": ["null", "integer"]
}
}
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"type": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"content_type": {
"type": ["null", "string"]
},
"filesize": {
"type": ["null", "integer"]
},
"height": {
"type": ["null", "integer"]
},
"width": {
"type": ["null", "integer"]
}
},
{
"type": "null"
}
]
}
},
"author": {
"type": ["null", "object"],
Expand Down
1 change: 1 addition & 0 deletions docs/02-integrations/01-sources/intercom.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ The Intercom connector should not run into Intercom API limitations under normal

| Version | Date | Pull Request | Subject |
|:--------| :--- | :--- | :--- |
| 0.1.22 | 2022-07-09 | [14554](https://github.com/airbytehq/airbyte/pull/14554) | Fixed `conversation_parts` stream schema definition
| 0.1.21 | 2022-07-05 | [14403](https://github.com/airbytehq/airbyte/pull/14403) | Refactored `Conversations`, `Conversation Parts`, `Company Segments` to increase performance
| 0.1.20 | 2022-06-24 | [14099](https://github.com/airbytehq/airbyte/pull/14099) | Extended `Contacts` stream schema with `sms_consent`,`unsubscribe_from_sms` properties
| 0.1.19 | 2022-05-25 | [13204](https://github.com/airbytehq/airbyte/pull/13204) | Fixed `conversation_parts` stream schema definition |
Expand Down