Skip to content

Commit

Permalink
Fix Stripe Schema. (#3744)
Browse files Browse the repository at this point in the history
* Fingerprint should be string instead of integer.

* Invoice resource should also have a created field at the top level.

* Bump stripe version.
  • Loading branch information
davinchia authored May 30, 2021
1 parent 248c285 commit 71f8481
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 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.10",
"dockerImageTag": "0.1.11",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-stripe",
"icon": "stripe.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
- sourceDefinitionId: e094cb9a-26de-4645-8761-65c0c425d1de
name: Stripe
dockerRepository: airbyte/source-stripe
dockerImageTag: 0.1.10
dockerImageTag: 0.1.11
documentationUrl: https://hub.docker.com/r/airbyte/source-stripe
icon: stripe.svg
- sourceDefinitionId: b03a9f3e-22a5-11eb-adc1-0242ac120002
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 @@ -11,5 +11,5 @@ RUN pip install .

ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.10
LABEL io.airbyte.version=0.1.11
LABEL io.airbyte.name=airbyte/source-stripe
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"type": ["null", "string"]
},
"fingerprint": {
"type": ["null", "integer"]
"type": ["null", "string"]
},
"last4": {
"type": ["null", "string"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"date": {
"type": ["null", "integer"]
},
"created": {
"type": ["null", "integer"]
},
"next_payment_attempt": {
"type": ["null", "string"],
"format": "date-time"
Expand Down Expand Up @@ -69,7 +72,7 @@
"paid": {
"type": ["null", "boolean"]
},
"discount": {
"discounts": {
"type": ["null", "object"],
"properties": {
"end": {
Expand Down Expand Up @@ -127,7 +130,7 @@
"type": ["null", "number"]
},
"created": {
"type": ["null", "number"]
"type": ["null", "integer"]
}
}
},
Expand Down

0 comments on commit 71f8481

Please sign in to comment.