Skip to content

Commit

Permalink
Release review
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-avinash committed Nov 13, 2024
1 parent bdb3da0 commit 2b8b33c
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
3 changes: 2 additions & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config-version: 2
name: 'netsuite'
version: '0.14.0'
version: '0.15.0'
require-dbt-version: [">=1.3.0", "<2.0.0"]

models:
Expand Down Expand Up @@ -60,6 +60,7 @@ vars:
accounts_pass_through_columns: []
classes_pass_through_columns: []
departments_pass_through_columns: []
locations_pass_through_columns: []
subsidiaries_pass_through_columns: []
transactions_pass_through_columns: []
transaction_lines_pass_through_columns: []
Expand Down
2 changes: 1 addition & 1 deletion docs/catalog.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manifest.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@

with prod as (
select *
except(account_type_name, account_number) --this test has been modified for the purposes of validating this PR. Remove this line before merging.
from {{ target.schema }}_netsuite_prod.netsuite2__balance_sheet
),

dev as (
select *
except(subsidiary_full_name, account_display_name, is_account_intercompany, is_account_leftside, account_type_name, account_number) --this test has been modified for the purposes of validating this PR.Remove this line before merging.
from {{ target.schema }}_netsuite_dev.netsuite2__balance_sheet
),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ with prod as (

dev as (
select *
except(account_display_name, class_id, location_id, department_id)--this test has been modified for the purposes of validating this PR. Remove this line before merging.
from {{ target.schema }}_netsuite_dev.netsuite2__income_statement
),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ with prod as (

dev as (
select *
except(is_reversal, reversal_transaction_id, reversal_date, is_reversal_defer, account_display_name, is_eliminate, parent_account_id, customer_id, class_id, location_id, vendor_id, vendor_category_id, currency_id, exchange_rate, department_full_name, subsidiary_full_name, subsidiary_currency_symbol, transaction_line_amount) --this test has been modified for the purposes of validating this PR. Remove this line before merging.
from {{ target.schema }}_netsuite_dev.netsuite2__transaction_details
),

Expand Down

0 comments on commit 2b8b33c

Please sign in to comment.