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 Stripe: update stream schema for payment_intents stream #18228

Merged
merged 4 commits into from
Oct 21, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-stripe/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ COPY main.py ./
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.39
LABEL io.airbyte.version=0.1.40
LABEL io.airbyte.name=airbyte/source-stripe
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,12 @@
}
}
},
"afterpay_clearpay": {},
"alipay": {},
"afterpay_clearpay": {
"type": ["null", "string"]
},
"alipay": {
"type": ["null", "string"]
},
"au_becs_debit": {
"type": ["null", "object"],
"properties": {
Expand Down Expand Up @@ -154,7 +158,9 @@
}
}
},
"bancontact": {},
"bancontact": {
"type": ["null", "string"]
},
"billing_details": {
"type": ["null", "object"],
"properties": {
Expand Down Expand Up @@ -372,12 +378,18 @@
"wallet": {
"type": ["null", "object"],
"properties": {
"amex_express_checkout": {},
"apple_pay": {},
"amex_express_checkout": {
"type": ["null", "string"]
},
"apple_pay": {
"type": ["null", "string"]
},
"dynamic_last4": {
"type": ["null", "string"]
},
"google_pay": {},
"google_pay": {
"type": ["null", "string"]
},
"masterpass": {
"type": ["null", "object"],
"properties": {
Expand Down Expand Up @@ -435,7 +447,9 @@
}
}
},
"samsung_pay": {},
"samsung_pay": {
"type": ["null", "string"]
},
"type": {
"type": ["null", "string"]
},
Expand Down
3 changes: 2 additions & 1 deletion docs/integrations/sources/stripe.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ The Stripe connector should not run into Stripe API limitations under normal usa
## Changelog

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------- |
|:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------|
| 0.1.40 | 2022-10-20 | [18228](https://github.com/airbytehq/airbyte/pull/18228) | Update the `Payment Intents` stream schema |
| 0.1.39 | 2022-09-28 | [17304](https://github.com/airbytehq/airbyte/pull/17304) | Migrate to per-stream states. |
| 0.1.38 | 2022-09-09 | [16537](https://github.com/airbytehq/airbyte/pull/16537) | Fix `redeem_by` field type for `customers` stream |
| 0.1.37 | 2022-08-16 | [15686](https://github.com/airbytehq/airbyte/pull/15686) | Fix the bug when the stream couldn't be fetched due to limited permission set, if so - it should be skipped |
Expand Down