Skip to content

Commit

Permalink
🐛 Source Typeform: Fix pagination stop condition (#34484)
Browse files Browse the repository at this point in the history
  • Loading branch information
artem1205 committed Jan 24, 2024
1 parent d289534 commit c3e4a7c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: e7eff203-90bf-43e5-a240-19ea3056c474
dockerImageTag: 1.2.3
dockerImageTag: 1.2.4
dockerRepository: airbyte/source-typeform
documentationUrl: https://docs.airbyte.com/integrations/sources/typeform
githubIssueLabel: source-typeform
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ definitions:
pagination_strategy:
type: CursorPagination
cursor_value: "{{ last_records[-1]['token'] }}"
stop_condition: "{{ not response['total_items'] }}"
stop_condition: "{{ not last_records }}"
page_size: 1000
partition_router:
$ref: "#/definitions/form_id_partition_router"
Expand Down
3 changes: 2 additions & 1 deletion docs/integrations/sources/typeform.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ API rate limits \(2 requests per second\): [https://developer.typeform.com/get-s

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------|
| 1.2.3 | 2024-01-11 | [34145](https://github.com/airbytehq/airbyte/pull/34145) | prepare for airbyte-lib |
| 1.2.4 | 2024-01-24 | [34484](https://github.com/airbytehq/airbyte/pull/34484) | Fix pagination stop condition |
| 1.2.3 | 2024-01-11 | [34145](https://github.com/airbytehq/airbyte/pull/34145) | prepare for airbyte-lib |
| 1.2.2 | 2023-12-12 | [33345](https://github.com/airbytehq/airbyte/pull/33345) | Fix single use refresh token authentication |
| 1.2.1 | 2023-12-04 | [32775](https://github.com/airbytehq/airbyte/pull/32775) | Add 499 status code handling |
| 1.2.0 | 2023-11-29 | [32745](https://github.com/airbytehq/airbyte/pull/32745) | Add `response_type` field to `responses` schema |
Expand Down

0 comments on commit c3e4a7c

Please sign in to comment.