Skip to content

Commit

Permalink
Source Stripe: fix stream schemas (#21858)
Browse files Browse the repository at this point in the history
* Source Stripe: fix  field name for subscription stream

* Source Stripe: bump version

* Source Stripe: update changelog

* #1364 Source Stripe: fix stream schemas

* #1364 source Stripe: bump major version

* auto-bump connector version

---------

Co-authored-by: Denys Davydov <[email protected]>
Co-authored-by: Octavia Squidington III <[email protected]>
  • Loading branch information
3 people authored Jan 27, 2023
1 parent b9e3c8a commit 01b0565
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@
- name: Stripe
sourceDefinitionId: e094cb9a-26de-4645-8761-65c0c425d1de
dockerRepository: airbyte/source-stripe
dockerImageTag: 0.1.40
dockerImageTag: 1.0.0
documentationUrl: https://docs.airbyte.com/integrations/sources/stripe
icon: stripe.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14410,7 +14410,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-stripe:0.1.40"
- dockerImage: "airbyte/source-stripe:1.0.0"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/stripe"
connectionSpecification:
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.40
LABEL io.airbyte.version=1.0.0
LABEL io.airbyte.name=airbyte/source-stripe
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,35 @@
},
"status": {
"type": ["null", "string"]
},
"status_transitions": {
"type": "object",
"properties": {
"finalized_at": {
"type": [
"null",
"integer"
]
},
"marked_uncollectible_at": {
"type": [
"null",
"integer"
]
},
"paid_at": {
"type": [
"null",
"integer"
]
},
"voided_at": {
"type": [
"null",
"integer"
]
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"livemode": {
"type": ["null", "boolean"]
},
"start": {
"start_date": {
"type": ["null", "integer"]
},
"items": {
Expand Down Expand Up @@ -115,7 +115,7 @@
"customer": {
"type": ["null", "string"]
},
"start_date": {
"start": {
"type": ["null", "integer"]
},
"object": {
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/stripe.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ The Stripe connector should not run into Stripe API limitations under normal usa

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------|
| 1.0.0 | 2023-01-25 | [21858](https://github.com/airbytehq/airbyte/pull/21858) | Update the `Subscriptions` and `Invoices` stream schemas |
| 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 |
Expand Down

0 comments on commit 01b0565

Please sign in to comment.