Skip to content

Commit

Permalink
Source Stripe: update stream schema for payment_intents stream (#18228
Browse files Browse the repository at this point in the history
)

* #709 source stripe: upd stream schema for payment_intents stream

* #709 source stripe: upd changelog

* auto-bump connector version

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
  • Loading branch information
davydov-d and octavia-squidington-iii authored Oct 21, 2022
1 parent 7fcadf4 commit 067e36d
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@
- name: Stripe
sourceDefinitionId: e094cb9a-26de-4645-8761-65c0c425d1de
dockerRepository: airbyte/source-stripe
dockerImageTag: 0.1.39
dockerImageTag: 0.1.40
documentationUrl: https://docs.airbyte.com/integrations/sources/stripe
icon: stripe.svg
sourceType: api
Expand Down
6 changes: 3 additions & 3 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11029,7 +11029,7 @@
type: "string"
path_in_connector_config:
- "client_secret"
- dockerImage: "airbyte/source-stripe:0.1.39"
- dockerImage: "airbyte/source-stripe:0.1.40"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/stripe"
connectionSpecification:
Expand Down Expand Up @@ -11086,9 +11086,9 @@
- 180
- 360
description: "The time increment used by the connector when requesting data\
\ from the Stripe API. The bigger the value is, the less requests will\
\ from the Stripe API. The bigger the value is, the less requests will\
\ be made and faster the sync will be. On the other hand, the more seldom\
\ the state is persisted."
\ the state is persisted."
order: 4
supportsNormalization: false
supportsDBT: false
Expand Down
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

0 comments on commit 067e36d

Please sign in to comment.