Skip to content

Commit

Permalink
Fix intercom (#16540)
Browse files Browse the repository at this point in the history
* Fix intercom

* PR comments

* test

* Restore bmusko version

* Bump version and update changelog

* auto-bump connector version [ci skip]

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
  • Loading branch information
benmoriceau and octavia-squidington-iii committed Sep 12, 2022
1 parent 133b414 commit a0b4044
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@
- name: Intercom
sourceDefinitionId: d8313939-3782-41b0-be29-b3ca20d8dd3a
dockerRepository: airbyte/source-intercom
dockerImageTag: 0.1.25
dockerImageTag: 0.1.26
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 @@ -4565,7 +4565,7 @@
oauthFlowInitParameters: []
oauthFlowOutputParameters:
- - "access_token"
- dockerImage: "airbyte/source-intercom:0.1.25"
- dockerImage: "airbyte/source-intercom:0.1.26"
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.25
LABEL io.airbyte.version=0.1.26
LABEL io.airbyte.name=airbyte/source-intercom
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,17 @@
"type": "array",
"items": {
"type": ["null", "object"],
"anyOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"id": {
"type": "integer"
}
}
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"id": {
"type": "integer"
}
]
}
}
}
}
Expand All @@ -75,19 +70,14 @@
"type": "array",
"items": {
"type": ["null", "object"],
"anyOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string"
},
"id": {
"type": "string"
}
}
"properties": {
"type": {
"type": "string"
},
"id": {
"type": "string"
}
]
}
}
}
}
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/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.26 | 2022-08-18 | [16540](https://github.com/airbytehq/airbyte/pull/16540) | Fix JSON schema |
| 0.1.25 | 2022-08-18 | [15681](https://github.com/airbytehq/airbyte/pull/15681) | Update Intercom API to v 2.5 |
| 0.1.24 | 2022-07-21 | [14924](https://github.com/airbytehq/airbyte/pull/14924) | Remove `additionalProperties` field from schemas |
| 0.1.23 | 2022-07-19 | [14830](https://github.com/airbytehq/airbyte/pull/14830) | Added `checkpoint_interval` for Incremental streams |
Expand Down

0 comments on commit a0b4044

Please sign in to comment.