Skip to content

Commit

Permalink
🐛 Source Intercom: fix conversation_parts stream schema (#14554)
Browse files Browse the repository at this point in the history
  • Loading branch information
bazarnov authored Jul 11, 2022
1 parent 900c212 commit c13e358
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@
- name: Intercom
sourceDefinitionId: d8313939-3782-41b0-be29-b3ca20d8dd3a
dockerRepository: airbyte/source-intercom
dockerImageTag: 0.1.21
dockerImageTag: 0.1.22
documentationUrl: https://docs.airbyte.io/integrations/sources/intercom
icon: intercom.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3915,7 +3915,7 @@
oauthFlowInitParameters: []
oauthFlowOutputParameters:
- - "access_token"
- dockerImage: "airbyte/source-intercom:0.1.21"
- dockerImage: "airbyte/source-intercom:0.1.22"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/intercom"
connectionSpecification:
Expand Down
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

0 comments on commit c13e358

Please sign in to comment.