Skip to content

Commit 16dfae0

Browse files
authored
🎉 Source Chargebee: add credit note model (#10795)
* feat(chargebee) add credit note model * fix(airbyte): update version Dockerfile * fix(airbyte): update version Dockerfile v2
1 parent 9413a21 commit 16dfae0

File tree

8 files changed

+536
-5
lines changed

8 files changed

+536
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
- name: Chargebee
113113
sourceDefinitionId: 686473f1-76d9-4994-9cc7-9b13da46147c
114114
dockerRepository: airbyte/source-chargebee
115-
dockerImageTag: 0.1.9
115+
dockerImageTag: 0.1.10
116116
documentationUrl: https://docs.airbyte.io/integrations/sources/chargebee
117117
icon: chargebee.svg
118118
sourceType: api

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@
952952
supportsNormalization: false
953953
supportsDBT: false
954954
supported_destination_sync_modes: []
955-
- dockerImage: "airbyte/source-chargebee:0.1.9"
955+
- dockerImage: "airbyte/source-chargebee:0.1.10"
956956
spec:
957957
documentationUrl: "https://apidocs.chargebee.com/docs/api"
958958
connectionSpecification:

airbyte-integrations/connectors/source-chargebee/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ RUN pip install .
1313

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

16-
LABEL io.airbyte.version=0.1.9
16+
LABEL io.airbyte.version=0.1.10
1717
LABEL io.airbyte.name=airbyte/source-chargebee

airbyte-integrations/connectors/source-chargebee/integration_tests/configured_catalog.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,19 @@
168168
"sync_mode": "incremental",
169169
"destination_sync_mode": "append",
170170
"cursor_field": ["updated_at"]
171+
},
172+
{
173+
"stream": {
174+
"name": "credit_note",
175+
"json_schema": {},
176+
"supported_sync_modes": ["full_refresh", "incremental"],
177+
"source_defined_cursor": true,
178+
"default_cursor_field": ["updated_at"],
179+
"source_defined_primary_key": [["id"]]
180+
},
181+
"sync_mode": "incremental",
182+
"destination_sync_mode": "append",
183+
"cursor_field": ["updated_at"]
171184
}
172185
]
173186
}

0 commit comments

Comments
 (0)