1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Fix intercom (#16540)

* 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>
This commit is contained in:
Benoit Moriceau
2022-09-12 09:19:54 -07:00
committed by GitHub
parent 133b4146ec
commit a0b4044bef
5 changed files with 21 additions and 30 deletions

View File

@@ -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

View File

@@ -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:

View File

@@ -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

View File

@@ -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"
}
]
}
}
}
}
@@ -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"
}
]
}
}
}
}

View File

@@ -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 |