Skip to content

Commit

Permalink
🐛 source-paypal-transaction: Keep transaction_id field as a string an…
Browse files Browse the repository at this point in the history
…d shorten step to 7 days (#31759)
  • Loading branch information
girarda authored Oct 25, 2023
1 parent 7e4bf43 commit 23e1db0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: d913b0f2-cc51-4e55-a44c-8ba1697b9239
dockerImageTag: 2.1.1
dockerImageTag: 2.1.2
dockerRepository: airbyte/source-paypal-transaction
documentationUrl: https://docs.airbyte.com/integrations/sources/paypal-transaction
githubIssueLabel: source-paypal-transaction
Expand All @@ -20,7 +20,6 @@ data:
name: Paypal Transaction
registries:
cloud:
dockerImageTag: 2.0.0 #https://github.com/airbytehq/oncall/issues/3347
enabled: true
oss:
enabled: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import find_packages, setup

MAIN_REQUIREMENTS = [
"airbyte-cdk~=0.1",
"airbyte-cdk>=0.51.44",
]

TEST_REQUIREMENTS = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ definitions:
- path:
- transaction_id
value: "{{ record['transaction_info']['transaction_id'] }}"
value_type: string
incremental_sync:
type: DatetimeBasedCursor
cursor_field: transaction_updated_date
Expand All @@ -102,7 +103,7 @@ definitions:
type: MinMaxDatetime
datetime: "{{ now_utc().strftime('%Y-%m-%dT%H:%M:%SZ') }}"
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
step: P15D
step: P7D
cursor_granularity: PT1S
$parameters:
path: "transactions"
Expand Down
5 changes: 3 additions & 2 deletions docs/integrations/sources/paypal-transaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ Transactions sync is performed with default `stream_slice_period` = 1 day, it me

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------|
| 2.1.1 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image |
| 2.1.0 | 2023-08-14 | [29223](https://github.com/airbytehq/airbyte/pull/29223) | Migrate Python CDK to Low Code schema |
| 2.1.2 | 2023-10-23 | [31759](https://github.com/airbytehq/airbyte/pull/31759) | Keep transaction_id as a string and fetch data in 7-day batches |
| 2.1.1 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image |
| 2.1.0 | 2023-08-14 | [29223](https://github.com/airbytehq/airbyte/pull/29223) | Migrate Python CDK to Low Code schema |
| 2.0.0 | 2023-07-05 | [27916](https://github.com/airbytehq/airbyte/pull/27916) | Update `Balances` schema |
| 1.0.0 | 2023-07-03 | [27968](https://github.com/airbytehq/airbyte/pull/27968) | mark `Client ID` and `Client Secret` as required fields |
| 0.1.13 | 2023-02-20 | [22916](https://github.com/airbytehq/airbyte/pull/22916) | Specified date formatting in specification |
Expand Down

0 comments on commit 23e1db0

Please sign in to comment.