Skip to content

Commit

Permalink
Update fields in source-connectors specifications: recharge (airbyteh…
Browse files Browse the repository at this point in the history
…q#9808)

Signed-off-by: Sergey Chvalyuk <[email protected]>
  • Loading branch information
grubberr authored Feb 3, 2022
1 parent a73ed08 commit f0546ed
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "45d2e135-2ede-49e1-939f-3e3ec357a65e",
"name": "Recharge",
"dockerRepository": "airbyte/source-recharge",
"dockerImageTag": "0.1.4",
"dockerImageTag": "0.1.5",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/recharge",
"icon": "recharge.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@
- name: Recharge
sourceDefinitionId: 45d2e135-2ede-49e1-939f-3e3ec357a65e
dockerRepository: airbyte/source-recharge
dockerImageTag: 0.1.4
dockerImageTag: 0.1.5
documentationUrl: https://docs.airbyte.io/integrations/sources/recharge
icon: recharge.svg
sourceType: api
Expand Down
13 changes: 8 additions & 5 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6310,9 +6310,9 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-recharge:0.1.4"
- dockerImage: "airbyte/source-recharge:0.1.5"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/recharge"
documentationUrl: "https://docs.airbyte.com/integrations/sources/recharge"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Recharge Spec"
Expand All @@ -6324,16 +6324,19 @@
properties:
start_date:
type: "string"
title: "Start Date"
description: "The date from which you'd like to replicate data for Recharge\
\ API, in the format YYYY-MM-DDT00:00:00Z."
\ API, in the format YYYY-MM-DDT00:00:00Z. Any data before this date will\
\ not be replicated."
examples:
- "2021-05-14T00:00:00Z"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
access_token:
type: "string"
title: "Access Token"
description: "The value of the Access Token generated. See the <a href=\"\
https://docs.airbyte.io/integrations/sources/recharge\">docs</a> for more\
\ information"
https://docs.airbyte.com/integrations/sources/recharge\">docs</a> for\
\ more information."
airbyte_secret: true
supportsNormalization: false
supportsDBT: false
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.4
LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.name=airbyte/source-recharge
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"documentationUrl": "https://docs.airbyte.io/integrations/sources/recharge",
"documentationUrl": "https://docs.airbyte.com/integrations/sources/recharge",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Recharge Spec",
Expand All @@ -9,13 +9,15 @@
"properties": {
"start_date": {
"type": "string",
"description": "The date from which you'd like to replicate data for Recharge API, in the format YYYY-MM-DDT00:00:00Z.",
"title": "Start Date",
"description": "The date from which you'd like to replicate data for Recharge API, in the format YYYY-MM-DDT00:00:00Z. Any data before this date will not be replicated.",
"examples": ["2021-05-14T00:00:00Z"],
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
},
"access_token": {
"type": "string",
"description": "The value of the Access Token generated. See the <a href=\"https://docs.airbyte.io/integrations/sources/recharge\">docs</a> for more information",
"title": "Access Token",
"description": "The value of the Access Token generated. See the <a href=\"https://docs.airbyte.com/integrations/sources/recharge\">docs</a> for more information.",
"airbyte_secret": true
}
}
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.5 | 2022-01-26 | [9808](https://github.com/airbytehq/airbyte/pull/9808) | Update connector fields title/description |
| 0.1.4 | 2021-11-05 | [7626](https://github.com/airbytehq/airbyte/pull/7626) | Improve 'backoff' for HTTP requests |
| 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 |
Expand Down

0 comments on commit f0546ed

Please sign in to comment.