Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .quickstart/quickstart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ table_variables:
- credit_note_line_item
- credit_note

_fivetran_quickstart_account:
- account
_fivetran_quickstart_fee:
- fee

destination_configurations:
databricks:
dispatch:
Expand All @@ -35,3 +40,28 @@ public_models: [
"stripe__payout_itemized_3",
"stripe__line_item_enhanced"
]

supported_vars:
stripe__customer_metadata:
type: dictionary
description: "`CUSTOMER.metadata` properties that will be pivoted into columns in `stripe__customer_overview`"
display_name: "Customer Metadata Properties"

stripe__convert_values:
type: boolean
value: false
description: "Amount-based fields are displayed in the smallest denomination (e.g., cents for USD). Set to TRUE to divide amount fields by 100 to convert and major units (dollars for USD)"
display_name: "Convert to Major Monetary Units"

stripe__using_livemode:
type: boolean
value: true
description: "Transform non-test data only. Set to FALSE to run solely on test data"
display_name: "Use Live Mode"

stripe__using_invoice_line_sub_filter:
type: boolean
value: true
description: "Filter out potentially duplicative `INVOICE_LINE_ITEM` records in which the `id` begins with the string `sub`"
display_name: "Filter Invoice Line Items"

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# dbt_stripe v1.3.0

[PR #139](https://github.com/fivetran/dbt_stripe/pull/139) includes the following updates:

## Documentation
- Updates README with standardized Fivetran formatting.

## Under the Hood
- In the `quickstart.yml` file:
- Adds `table_variables` for relevant sources to prevent missing sources from blocking downstream Quickstart models.
- Adds `supported_vars` for Quickstart UI customization.

# dbt_stripe v1.2.0

[PR #137](https://github.com/fivetran/dbt_stripe/pull/137) includes the following updates:
Expand Down
Loading