Skip to content

Commit

Permalink
🎉 Source Stripe: Fix "date", "arrival_date" fields: type: number (#9148)
Browse files Browse the repository at this point in the history
* Fix "date", "arrival_date" fields: type: number

Signed-off-by: Sergey Chvalyuk <[email protected]>
  • Loading branch information
grubberr authored Dec 31, 2021
1 parent e3b727b commit 373b440
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "e094cb9a-26de-4645-8761-65c0c425d1de",
"name": "Stripe",
"dockerRepository": "airbyte/source-stripe",
"dockerImageTag": "0.1.26",
"dockerImageTag": "0.1.27",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/stripe",
"icon": "stripe.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@
- name: Stripe
sourceDefinitionId: e094cb9a-26de-4645-8761-65c0c425d1de
dockerRepository: airbyte/source-stripe
dockerImageTag: 0.1.26
dockerImageTag: 0.1.27
documentationUrl: https://docs.airbyte.io/integrations/sources/stripe
icon: stripe.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7021,7 +7021,7 @@
type: "string"
path_in_connector_config:
- "client_secret"
- dockerImage: "airbyte/source-stripe:0.1.26"
- dockerImage: "airbyte/source-stripe:0.1.27"
spec:
documentationUrl: "https://docs.airbyte.io/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 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.26
LABEL io.airbyte.version=0.1.27
LABEL io.airbyte.name=airbyte/source-stripe
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@
"type": ["null", "object"]
},
"date": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"method": {
"type": ["null", "string"]
Expand Down Expand Up @@ -117,7 +116,7 @@
"type": ["null", "string"]
},
"arrival_date": {
"type": ["null", "number"]
"type": ["null", "integer"]
},
"description": {
"type": ["null", "string"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@
"type": ["null", "string"]
},
"date": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"livemode": {
"type": ["null", "boolean"]
Expand Down Expand Up @@ -83,8 +82,7 @@
"type": ["null", "string"]
},
"arrival_date": {
"type": ["null", "string"],
"format": "date-time"
"type": ["null", "integer"]
},
"description": {
"type": ["null", "string"]
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 @@ -74,6 +74,7 @@ If you would like to test Airbyte using test data on Stripe, `sk_test_` and `rk_

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.27 | 2021-12-28 | [9148](https://github.com/airbytehq/airbyte/pull/9148) | Fix `date`, `arrival\_date` fields |
| 0.1.26 | 2021-12-21 | [8992](https://github.com/airbytehq/airbyte/pull/8992) | Fix type `events.request` in schema |
| 0.1.25 | 2021-11-25 | [8250](https://github.com/airbytehq/airbyte/pull/8250) | Rearrange setup fields |
| 0.1.24 | 2021-11-08 | [7729](https://github.com/airbytehq/airbyte/pull/7729) | Include tax data in `checkout_sessions_line_items` stream |
Expand Down

0 comments on commit 373b440

Please sign in to comment.