Skip to content

Commit f0546ed

Browse files
authored
Update fields in source-connectors specifications: recharge (#9808)
Signed-off-by: Sergey Chvalyuk <[email protected]>
1 parent a73ed08 commit f0546ed

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

airbyte-config/init/src/main/resources/config/STANDARD_SOURCE_DEFINITION/45d2e135-2ede-49e1-939f-3e3ec357a65e.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"sourceDefinitionId": "45d2e135-2ede-49e1-939f-3e3ec357a65e",
33
"name": "Recharge",
44
"dockerRepository": "airbyte/source-recharge",
5-
"dockerImageTag": "0.1.4",
5+
"dockerImageTag": "0.1.5",
66
"documentationUrl": "https://docs.airbyte.io/integrations/sources/recharge",
77
"icon": "recharge.svg"
88
}

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@
606606
- name: Recharge
607607
sourceDefinitionId: 45d2e135-2ede-49e1-939f-3e3ec357a65e
608608
dockerRepository: airbyte/source-recharge
609-
dockerImageTag: 0.1.4
609+
dockerImageTag: 0.1.5
610610
documentationUrl: https://docs.airbyte.io/integrations/sources/recharge
611611
icon: recharge.svg
612612
sourceType: api

airbyte-config/init/src/main/resources/seed/source_specs.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6310,9 +6310,9 @@
63106310
supportsNormalization: false
63116311
supportsDBT: false
63126312
supported_destination_sync_modes: []
6313-
- dockerImage: "airbyte/source-recharge:0.1.4"
6313+
- dockerImage: "airbyte/source-recharge:0.1.5"
63146314
spec:
6315-
documentationUrl: "https://docs.airbyte.io/integrations/sources/recharge"
6315+
documentationUrl: "https://docs.airbyte.com/integrations/sources/recharge"
63166316
connectionSpecification:
63176317
$schema: "http://json-schema.org/draft-07/schema#"
63186318
title: "Recharge Spec"
@@ -6324,16 +6324,19 @@
63246324
properties:
63256325
start_date:
63266326
type: "string"
6327+
title: "Start Date"
63276328
description: "The date from which you'd like to replicate data for Recharge\
6328-
\ API, in the format YYYY-MM-DDT00:00:00Z."
6329+
\ API, in the format YYYY-MM-DDT00:00:00Z. Any data before this date will\
6330+
\ not be replicated."
63296331
examples:
63306332
- "2021-05-14T00:00:00Z"
63316333
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
63326334
access_token:
63336335
type: "string"
6336+
title: "Access Token"
63346337
description: "The value of the Access Token generated. See the <a href=\"\
6335-
https://docs.airbyte.io/integrations/sources/recharge\">docs</a> for more\
6336-
\ information"
6338+
https://docs.airbyte.com/integrations/sources/recharge\">docs</a> for\
6339+
\ more information."
63376340
airbyte_secret: true
63386341
supportsNormalization: false
63396342
supportsDBT: false

airbyte-integrations/connectors/source-recharge/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ RUN pip install .
1212
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
1313
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
1414

15-
LABEL io.airbyte.version=0.1.4
15+
LABEL io.airbyte.version=0.1.5
1616
LABEL io.airbyte.name=airbyte/source-recharge

airbyte-integrations/connectors/source-recharge/source_recharge/spec.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"documentationUrl": "https://docs.airbyte.io/integrations/sources/recharge",
2+
"documentationUrl": "https://docs.airbyte.com/integrations/sources/recharge",
33
"connectionSpecification": {
44
"$schema": "http://json-schema.org/draft-07/schema#",
55
"title": "Recharge Spec",
@@ -9,13 +9,15 @@
99
"properties": {
1010
"start_date": {
1111
"type": "string",
12-
"description": "The date from which you'd like to replicate data for Recharge API, in the format YYYY-MM-DDT00:00:00Z.",
12+
"title": "Start Date",
13+
"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.",
1314
"examples": ["2021-05-14T00:00:00Z"],
1415
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
1516
},
1617
"access_token": {
1718
"type": "string",
18-
"description": "The value of the Access Token generated. See the <a href=\"https://docs.airbyte.io/integrations/sources/recharge\">docs</a> for more information",
19+
"title": "Access Token",
20+
"description": "The value of the Access Token generated. See the <a href=\"https://docs.airbyte.com/integrations/sources/recharge\">docs</a> for more information.",
1921
"airbyte_secret": true
2022
}
2123
}

docs/integrations/sources/recharge.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Please read [How to generate your API token](https://support.rechargepayments.co
5050

5151
| Version | Date | Pull Request | Subject |
5252
| :--- | :--- | :--- | :--- |
53+
| 0.1.5 | 2022-01-26 | [9808](https://github.com/airbytehq/airbyte/pull/9808) | Update connector fields title/description |
5354
| 0.1.4 | 2021-11-05 | [7626](https://github.com/airbytehq/airbyte/pull/7626) | Improve 'backoff' for HTTP requests |
5455
| 0.1.3 | 2021-09-17 | [6149](https://github.com/airbytehq/airbyte/pull/6149) | Update `discount` and `order` schema |
5556
| 0.1.2 | 2021-09-17 | [6149](https://github.com/airbytehq/airbyte/pull/6149) | Change `cursor_field` for Incremental streams |

0 commit comments

Comments
 (0)