Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Source: Typeform - Update schema for Responses stream #13935

Merged
merged 4 commits into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@
- name: Typeform
sourceDefinitionId: e7eff203-90bf-43e5-a240-19ea3056c474
dockerRepository: airbyte/source-typeform
dockerImageTag: 0.1.6
dockerImageTag: 0.1.7
documentationUrl: https://docs.airbyte.io/integrations/sources/typeform
icon: typeform.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9284,7 +9284,7 @@
supportsDBT: false
supported_destination_sync_modes:
- "append"
- dockerImage: "airbyte/source-typeform:0.1.6"
- dockerImage: "airbyte/source-typeform:0.1.7"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/typeform"
connectionSpecification:
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-typeform/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-typeform
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,45 @@
}
}
}
},
"number": {
"type": ["null", "number"]
},
"date": {
"type": ["null", "string"],
"format": "date-time"
},
"email": {
"type": ["null", "string"]
},
"phone_number": {
"type": ["null", "string"]
},
"boolean": {
"type": ["null", "boolean"]
},
"file_url": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"payment": {
"type": ["null", "object"],
"properties": {
"amount": {
"type": ["null", "string"]
},
"last4": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"success": {
"type": ["null", "boolean"]
}
}
}
}
}
Expand Down
24 changes: 15 additions & 9 deletions docs/integrations/sources/typeform.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ This Source is capable of syncing the following Streams:

* [Forms](https://developer.typeform.com/create/reference/retrieve-form/) \(Full Refresh\)
* [Responses](https://developer.typeform.com/responses/reference/retrieve-responses/) \(Incremental\)
* [Webhooks](https://developer.typeform.com/webhooks/reference/retrieve-webhooks/) \(Full Refresh\)
* [Workspaces](https://developer.typeform.com/create/reference/retrieve-workspaces/) \(Full Refresh\)
* [Images](https://developer.typeform.com/create/reference/retrieve-images-collection/) \(Full Refresh\)
* [Themes](https://developer.typeform.com/create/reference/retrieve-themes/) \(Full Refresh\)

#### Data type mapping

Expand All @@ -35,8 +39,9 @@ This Source is capable of syncing the following Streams:

### Requirements

* token - The Typeform API key token
* token - The Typeform API key token.
* start\_date - Date to start fetching Responses stream data from.
* form_ids (Optional) - List of Form Ids to sync. If not passed - sync all account`s forms.

### Setup guide

Expand All @@ -63,12 +68,13 @@ API rate limits \(2 requests per second\): [https://developer.typeform.com/get-s

## Changelog

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.6 | 2022-05-23 | [12280](https://github.com/airbytehq/airbyte/pull/12280) | Full Stream Coverage |
| 0.1.4 | 2021-12-08 | [8425](https://github.com/airbytehq/airbyte/pull/8425) | Update title, description fields in spec |
| 0.1.3 | 2021-12-07 | [8466](https://github.com/airbytehq/airbyte/pull/8466) | Change Check Connection Function Logic |
| 0.1.2 | 2021-10-11 | [6571](https://github.com/airbytehq/airbyte/pull/6571) | Support pulling data from a select set of forms |
| 0.1.1 | 2021-09-06 | [5799](https://github.com/airbytehq/airbyte/pull/5799) | Add missed choices field to responses schema |
| 0.1.0 | 2021-07-10 | [4541](https://github.com/airbytehq/airbyte/pull/4541) | Initial release for Typeform API supporting Forms and Responses streams |
| Version | Date | Pull Request | Subject |
|:--------|:-----------|:----------------------------------------------------------|:------------------------------------------------------------------------|
| 0.1.7 | 2022-06-20 | [13935](https://github.com/airbytehq/airbyte/pull/13935) | Update Responses stream schema |
| 0.1.6 | 2022-05-23 | [12280](https://github.com/airbytehq/airbyte/pull/12280) | Full Stream Coverage |
| 0.1.4 | 2021-12-08 | [8425](https://github.com/airbytehq/airbyte/pull/8425) | Update title, description fields in spec |
| 0.1.3 | 2021-12-07 | [8466](https://github.com/airbytehq/airbyte/pull/8466) | Change Check Connection Function Logic |
| 0.1.2 | 2021-10-11 | [6571](https://github.com/airbytehq/airbyte/pull/6571) | Support pulling data from a select set of forms |
| 0.1.1 | 2021-09-06 | [5799](https://github.com/airbytehq/airbyte/pull/5799) | Add missed choices field to responses schema |
| 0.1.0 | 2021-07-10 | [4541](https://github.com/airbytehq/airbyte/pull/4541) | Initial release for Typeform API supporting Forms and Responses streams |