This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source Chargebee: Adds fields, Adds streams, removes bypass for strea…
…ms, adds expected records (airbytehq#33696)
- Loading branch information
Showing
13 changed files
with
495 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
airbyte-integrations/connectors/source-chargebee/integration_tests/expected_records.jsonl
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
airbyte-integrations/connectors/source-chargebee/source_chargebee/schemas/comment.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"name": "Comment", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": ["string", "null"] | ||
}, | ||
"entity_type": { | ||
"type": ["string", "null"] | ||
}, | ||
"added_by": { | ||
"type": ["string", "null"] | ||
}, | ||
"notes": { | ||
"type": ["string", "null"] | ||
}, | ||
"created_at": { | ||
"type": ["integer", "null"] | ||
}, | ||
"type": { | ||
"type": ["string", "null"] | ||
}, | ||
"entity_id": { | ||
"type": ["string", "null"] | ||
}, | ||
"object": { | ||
"type": ["string", "null"] | ||
}, | ||
"custom_fields": { | ||
"type": ["array", "null"] | ||
} | ||
} | ||
} |
77 changes: 77 additions & 0 deletions
77
...integrations/connectors/source-chargebee/source_chargebee/schemas/differential_price.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"name": "Add-on", | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": ["string", "null"] | ||
}, | ||
"item_price_id": { | ||
"type": ["string", "null"] | ||
}, | ||
"parent_item_id": { | ||
"type": ["string", "null"] | ||
}, | ||
"price": { | ||
"type": ["integer", "null"] | ||
}, | ||
"price_in_decimal": { | ||
"type": ["string", "null"] | ||
}, | ||
"status": { | ||
"type": ["string", "null"] | ||
}, | ||
"resource_version": { | ||
"type": ["integer", "null"] | ||
}, | ||
"updated_at": { | ||
"type": ["integer", "null"] | ||
}, | ||
"created_at": { | ||
"type": ["integer", "null"] | ||
}, | ||
"modified_at": { | ||
"type": ["integer", "null"] | ||
}, | ||
"currency_code": { | ||
"type": ["string", "null"] | ||
}, | ||
"tiers": { | ||
"type": ["array", "null"], | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"starting_unit": { | ||
"type": ["integer", "null"] | ||
}, | ||
"ending_unit": { | ||
"type": ["integer", "null"] | ||
}, | ||
"price": { | ||
"type": ["integer", "null"] | ||
} | ||
} | ||
} | ||
}, | ||
"parent_periods": { | ||
"type": ["array", "null"], | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"period_unit": { | ||
"type": ["string", "null"] | ||
}, | ||
"period": { | ||
"type": ["array", "null"], | ||
"items": { | ||
"type": ["integer", "null"] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"object": { | ||
"type": ["string", "null"] | ||
} | ||
} | ||
} |
Oops, something went wrong.