Skip to content

Commit

Permalink
🐛 Source Iterable: Fixed normalization issue (#6242)
Browse files Browse the repository at this point in the history
fix schema to be able to use normalization
  • Loading branch information
yaroslav-dudar authored Sep 24, 2021
1 parent fe3026d commit ff479de
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"sourceDefinitionId": "2e875208-0c0b-4ee4-9e92-1cb3156ea799",
"name": "Iterable",
"dockerRepository": "airbyte/source-iterable",
"dockerImageTag": "0.1.6",
"dockerImageTag": "0.1.7",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/iterable"
}
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@
- sourceDefinitionId: 2e875208-0c0b-4ee4-9e92-1cb3156ea799
name: Iterable
dockerRepository: airbyte/source-iterable
dockerImageTag: 0.1.6
dockerImageTag: 0.1.7
documentationUrl: https://docs.airbyte.io/integrations/sources/iterable
sourceType: api
- sourceDefinitionId: 6371b14b-bc68-4236-bfbd-468e8df8e968
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-iterable/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.6
LABEL io.airbyte.version=0.1.7
LABEL io.airbyte.name=airbyte/source-iterable
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,16 @@
"type": ["null", "integer"]
},
"createdAt": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"updatedAt": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"startAt": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"endedAt": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"type": ["null", "string"]
},
"createdAt": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"listType": {
"type": ["null", "string"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"type": ["null", "integer"]
},
"lastModified": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"value": {
"type": ["null", "object"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@
"type": ["null", "number"]
},
"createdAt": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"updatedAt": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
Expand Down
5 changes: 5 additions & 0 deletions docs/integrations/sources/iterable.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,8 @@ The Iterable connector should not run into Iterable API limitations under normal

Please read [How to find your API key](https://support.iterable.com/hc/en-us/articles/360043464871-API-Keys-#creating-api-keys).

## CHANGELOG

| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| `0.1.7` | 2021-09-20 | [](https://github.com/airbytehq/airbyte/pull/) | Updated schema for: campaigns, lists, templates, metadata |

0 comments on commit ff479de

Please sign in to comment.