Skip to content

Commit

Permalink
Merge pull request #1 from CerebriumAI/feature/stripe-tables
Browse files Browse the repository at this point in the history
Feature/stripe tables
  • Loading branch information
elijah-rou authored May 12, 2022
2 parents a880b77 + ccdf078 commit 6887a14
Show file tree
Hide file tree
Showing 20 changed files with 1,685 additions and 30 deletions.
21 changes: 18 additions & 3 deletions dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'stripe'
name: 'airbyte_stripe'
version: '0.1.0'
require-dbt-version: ['>=1.0.0']
config-version: 2
Expand All @@ -18,9 +18,24 @@ clean-targets:
models:
airbyte_stripe:
materialized: table
intermediate:
materialized: ephemeral
tmp:
materialized: view

vars:
airbyte_stripe:
customers: "{{ source('airbyte_stripe','customers') }}"
customers_address: "{{ source('airbyte_stripe','customers_address') }}"
balance_transactions: "{{ source('airbyte_stripe','balance_transactions') }}"
charges_card: "{{ source('airbyte_stripe','charges_card') }}"
charges: "{{ source('airbyte_stripe','charges') }}"
payment_intents: "{{ source('airbyte_stripe','payment_intents') }}"
payouts: "{{ source('airbyte_stripe','payouts') }}"
refunds: "{{ source('airbyte_stripe','refunds') }}"
invoice_line_items: "{{ source('airbyte_stripe','invoice_line_items') }}"
invoice_line_items_period: "{{ source('airbyte_stripe','invoice_line_items_period') }}"
invoice_line_items_plan: "{{ source('airbyte_stripe','invoice_line_items_plan') }}"
invoices: "{{ source('airbyte_stripe','invoices') }}"
subscriptions: "{{ source('airbyte_stripe','subscriptions') }}"
plans: "{{ source('airbyte_stripe','plans') }}"

"dbt_date:time_zone": "UTC"
Loading

0 comments on commit 6887a14

Please sign in to comment.