From 3dff6c547da0aeb78ff56517a813e32ca80df0c0 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Wed, 7 Feb 2024 10:04:41 -0600 Subject: [PATCH] Create quickstart.yml --- .quickstart/quickstart.yml | 62 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .quickstart/quickstart.yml diff --git a/.quickstart/quickstart.yml b/.quickstart/quickstart.yml new file mode 100644 index 0000000..498b147 --- /dev/null +++ b/.quickstart/quickstart.yml @@ -0,0 +1,62 @@ +database_key: quickbooks_database +schema_key: quickbooks_schema + +dbt_versions: ">=1.3.0 <2.0.0" + +table_variables: + using_address: + - address + using_bill: + - bill_line + - bill_linked_txn + - bill_payment_line + - bill_payment + - bill + using_credit_memo: + - credit_memo_line + - credit_memo + using_department: + - department + using_deposit: + - deposit_line + - deposit + using_estimate: + - estimate + - estimate_line + using_invoice: + - invoice_linked_txn + - invoice_line + - invoice + using_invoice_bundle: + - bundle_item + - bundle + - invoice_line_bundle + using_journal_entry: + - journal_entry_line + - journal_entry + using_payment: + - payment_line + - payment + using_refund_receipt: + - refund_receipt_line + - refund_receipt + using_transfer: + - transfer + using_vendor_credit: + - vendor_credit_line + - vendor_credit + using_sales_receipt: + - sales_receipt_line + - sales_receipt + using_credit_card_payment_txn: + - credit_card_payment_txn + using_purchase_order: + - purchase_order_line + - purchase_order_linked_txn + - purchase_order + +destination_configurations: + databricks: + dispatch: + - macro_namespace: dbt_utils + search_order: [ 'spark_utils', 'dbt_utils' ]