Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Add Quickstart Model Counts to README #60

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# dbt_quickbooks_source version.version

## Documentation
- Corrected references to connectors and connections in the README. ([#60](https://github.com/fivetran/dbt_quickbooks_source/pull/60))

# dbt_quickbooks_source v0.12.0
[PR #58](https://github.com/fivetran/dbt_quickbooks_source/pull/57) introduces the following updates:

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ from [Fivetran's connector](https://fivetran.com/docs/applications/quickbooks) f
### Step 1: Prerequisites
To use this dbt package, you must have the following:

- At least one Fivetran QuickBooks connector syncing data into your destination.
- At least one Fivetran QuickBooks connection syncing data into your destination.
- A **BigQuery**, **Snowflake**, **Redshift**, **PostgreSQL**, or **Databricks** destination.

### Step 2: Install the package (skip if also using the `quickbooks` transformation package)
Expand All @@ -65,7 +65,7 @@ vars:
```

### Step 4: Enabling/Disabling Models
Your QuickBooks connector might not sync every table that this package expects. This package takes into consideration that not every QuickBooks account utilizes the same transactional tables.
Your QuickBooks connection might not sync every table that this package expects. This package takes into consideration that not every QuickBooks account utilizes the same transactional tables.

By default, most variables' values are assumed to be `true` (with exception of `using_purchase_order` and `using_credit_card_payment_txn`). In other to enable or disable the relevant functionality in the package, you will need to add the relevant variables:

Expand All @@ -92,8 +92,8 @@ vars:
### (Optional) Step 5: Additional Configurations
<details><summary>Expand for configurations</summary>

#### Unioning Multiple QuickBooks Connectors
If you have multiple QuickBooks connectors in Fivetran and would like to use this package on all of them simultaneously, we have provided functionality to do so. The package will union all of the data together and pass the unioned table into the transformations. You will be able to see which source it came from in the `source_relation` column of each model. To use this functionality, you will need to set **either** (**note that you cannot use both**) the `quickbooks_union_schemas` or `quickbooks_union_databases` variables:
#### Unioning Multiple QuickBooks Connections
If you have multiple QuickBooks connections in Fivetran and would like to use this package on all of them simultaneously, we have provided functionality to do so. The package will union all of the data together and pass the unioned table into the transformations. You will be able to see which source it came from in the `source_relation` column of each model. To use this functionality, you will need to set **either** (**note that you cannot use both**) the `quickbooks_union_schemas` or `quickbooks_union_databases` variables:

```yml
# dbt_project.yml
Expand Down
Loading