Skip to content

Commit

Permalink
Source Recharge: change schema for discount and order (#7295)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmarxm committed Oct 25, 2021
1 parent dbfd6ca commit 5a52d20
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"sourceDefinitionId": "45d2e135-2ede-49e1-939f-3e3ec357a65e",
"name": "Recharge",
"dockerRepository": "airbyte/source-recharge",
"dockerImageTag": "0.1.2",
"dockerImageTag": "0.1.3",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/recharge"
}
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@
- sourceDefinitionId: 45d2e135-2ede-49e1-939f-3e3ec357a65e
name: Recharge
dockerRepository: airbyte/source-recharge
dockerImageTag: 0.1.2
dockerImageTag: 0.1.3
documentationUrl: https://docs.airbyte.io/integrations/sources/recharge
sourceType: api
- sourceDefinitionId: fe2b4084-3386-4d3b-9ad6-308f61a6f1e6
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-recharge/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.2
LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.name=airbyte/source-recharge
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": ["null", "integer"]
},
"applies_to": {
"type": ["null", "integer", "string"]
"type": ["null", "string"]
},
"applies_to_id": {
"type": ["null", "integer"]
Expand Down Expand Up @@ -75,7 +75,7 @@
"format": "date-time"
},
"external_discount_id": {
"type": ["null", "string", "integer"]
"type": ["null", "string"]
},
"external_discount_source": {
"type": ["null", "string"]
Expand All @@ -87,7 +87,7 @@
"type": ["null", "boolean"]
},
"prerequisite_subtotal_min": {
"type": ["null", "integer"]
"type": ["null", "number"]
},
"starts_at": {
"type": ["null", "string"],
Expand All @@ -97,14 +97,14 @@
"type": ["null", "string"]
},
"times_used": {
"type": ["null", "integer"]
"type": ["null", "number"]
},
"updated_at": {
"type": ["null", "string"],
"format": "date-time"
},
"usage_limit": {
"type": ["null", "integer"]
"type": ["null", "number"]
},
"value": {
"type": ["null", "number"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
"type": ["null", "string"]
},
"grams": {
"type": ["null", "integer"]
"type": ["null", "number"]
},
"images": {
"type": ["null", "object"]
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/recharge.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Please read [How to generate your API token](https://support.rechargepayments.co

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.3 | 2021-09-17 | [6149](https://github.com/airbytehq/airbyte/pull/6149) | Update `discount` and `order` schema |
| 0.1.2 | 2021-09-17 | [6149](https://github.com/airbytehq/airbyte/pull/6149) | Change `cursor_field` for Incremental streams |
| | | | |

0 comments on commit 5a52d20

Please sign in to comment.