forked from CerebriumAI/airbyte_dbt_stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbt_project.yml
41 lines (37 loc) · 1.4 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: 'airbyte_stripe'
version: '0.1.0'
require-dbt-version: ['>=1.0.0']
config-version: 2
profile: 'default'
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
target-path: "target"
clean-targets:
- "target"
- "dbt_packages"
models:
airbyte_stripe:
materialized: table
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"