Skip to content

Commit a0b4044

Browse files
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 <[email protected]>
1 parent 133b414 commit a0b4044

File tree

5 files changed

+21
-30
lines changed

5 files changed

+21
-30
lines changed

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@
473473
- name: Intercom
474474
sourceDefinitionId: d8313939-3782-41b0-be29-b3ca20d8dd3a
475475
dockerRepository: airbyte/source-intercom
476-
dockerImageTag: 0.1.25
476+
dockerImageTag: 0.1.26
477477
documentationUrl: https://docs.airbyte.io/integrations/sources/intercom
478478
icon: intercom.svg
479479
sourceType: api

airbyte-config/init/src/main/resources/seed/source_specs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4565,7 +4565,7 @@
45654565
oauthFlowInitParameters: []
45664566
oauthFlowOutputParameters:
45674567
- - "access_token"
4568-
- dockerImage: "airbyte/source-intercom:0.1.25"
4568+
- dockerImage: "airbyte/source-intercom:0.1.26"
45694569
spec:
45704570
documentationUrl: "https://docs.airbyte.io/integrations/sources/intercom"
45714571
connectionSpecification:

airbyte-integrations/connectors/source-intercom/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ COPY source_intercom ./source_intercom
3535
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
3636
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
3737

38-
LABEL io.airbyte.version=0.1.25
38+
LABEL io.airbyte.version=0.1.26
3939
LABEL io.airbyte.name=airbyte/source-intercom

airbyte-integrations/connectors/source-intercom/source_intercom/schemas/companies.json

Lines changed: 17 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,17 @@
4545
"type": "array",
4646
"items": {
4747
"type": ["null", "object"],
48-
"anyOf": [
49-
{
50-
"type": "object",
51-
"properties": {
52-
"type": {
53-
"type": "string"
54-
},
55-
"name": {
56-
"type": "string"
57-
},
58-
"id": {
59-
"type": "integer"
60-
}
61-
}
48+
"properties": {
49+
"type": {
50+
"type": "string"
51+
},
52+
"name": {
53+
"type": "string"
54+
},
55+
"id": {
56+
"type": "integer"
6257
}
63-
]
58+
}
6459
}
6560
}
6661
}
@@ -75,19 +70,14 @@
7570
"type": "array",
7671
"items": {
7772
"type": ["null", "object"],
78-
"anyOf": [
79-
{
80-
"type": "object",
81-
"properties": {
82-
"type": {
83-
"type": "string"
84-
},
85-
"id": {
86-
"type": "string"
87-
}
88-
}
73+
"properties": {
74+
"type": {
75+
"type": "string"
76+
},
77+
"id": {
78+
"type": "string"
8979
}
90-
]
80+
}
9181
}
9282
}
9383
}

docs/integrations/sources/intercom.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ The Intercom connector should not run into Intercom API limitations under normal
4949

5050
| Version | Date | Pull Request | Subject |
5151
|:--------|:-----------| :--- | :--- |
52+
| 0.1.26 | 2022-08-18 | [16540](https://github.com/airbytehq/airbyte/pull/16540) | Fix JSON schema |
5253
| 0.1.25 | 2022-08-18 | [15681](https://github.com/airbytehq/airbyte/pull/15681) | Update Intercom API to v 2.5 |
5354
| 0.1.24 | 2022-07-21 | [14924](https://github.com/airbytehq/airbyte/pull/14924) | Remove `additionalProperties` field from schemas |
5455
| 0.1.23 | 2022-07-19 | [14830](https://github.com/airbytehq/airbyte/pull/14830) | Added `checkpoint_interval` for Incremental streams |

0 commit comments

Comments
 (0)