├── .buildkite ├── hooks │ └── pre-command ├── pipeline.yml └── scripts │ └── run_models.sh ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE │ └── maintainer_pull_request_template.md ├── pull_request_template.md └── workflows │ ├── auto-release.yml │ └── generate-docs.yml ├── .gitignore ├── .quickstart └── quickstart.yml ├── CHANGELOG.md ├── DECISIONLOG.md ├── LICENSE ├── README.md ├── dbt_project.yml ├── docs ├── catalog.json ├── index.html └── manifest.json ├── images └── streamlit_example.png ├── integration_tests ├── .gitignore ├── ci │ └── sample.profiles.yml ├── dbt_project.yml ├── packages.yml ├── requirements.txt ├── seeds │ ├── netsuite2_account_data.csv │ ├── netsuite2_account_type_data.csv │ ├── netsuite2_accounting_book_data.csv │ ├── netsuite2_accounting_book_sub_data.csv │ ├── netsuite2_accounting_period_data.csv │ ├── netsuite2_accounting_period_fiscal_cal_data.csv │ ├── netsuite2_classification_data.csv │ ├── netsuite2_consolidated_exchange_rate_data.csv │ ├── netsuite2_currency_data.csv │ ├── netsuite2_customer_data.csv │ ├── netsuite2_customer_subsidiary_relationship_data.csv │ ├── netsuite2_department_data.csv │ ├── netsuite2_employee_data.csv │ ├── netsuite2_entities_data.csv │ ├── netsuite2_entity_address_data.csv │ ├── netsuite2_fiscal_calendar_data.csv │ ├── netsuite2_item_data.csv │ ├── netsuite2_job_data.csv │ ├── netsuite2_location_data.csv │ ├── netsuite2_location_main_address_data.csv │ ├── netsuite2_nexus_data.csv │ ├── netsuite2_subsidiary_data.csv │ ├── netsuite2_tran_acct_line_data.csv │ ├── netsuite2_transaction_data.csv │ ├── netsuite2_transaction_line_data.csv │ ├── netsuite2_vendor_category_data.csv │ ├── netsuite2_vendor_data.csv │ ├── netsuite2_vendor_subsidiary_relationship_data.csv │ ├── netsuite_accounting_books_data.csv │ ├── netsuite_accounting_periods_data.csv │ ├── netsuite_accounts_data.csv │ ├── netsuite_classes_data.csv │ ├── netsuite_consolidated_exchange_rates_data.csv │ ├── netsuite_currencies_data.csv │ ├── netsuite_customers_data.csv │ ├── netsuite_departments_data.csv │ ├── netsuite_expense_accounts_data.csv │ ├── netsuite_income_accounts_data.csv │ ├── netsuite_items_data.csv │ ├── netsuite_locations_data.csv │ ├── netsuite_subsidiaries_data.csv │ ├── netsuite_transaction_lines_data.csv │ ├── netsuite_transactions_data.csv │ ├── netsuite_vendor_types_data.csv │ └── netsuite_vendors_data.csv └── tests │ ├── consistency │ ├── consistency_balance_sheet.sql │ ├── consistency_balance_sheet_amounts.sql │ ├── consistency_balance_sheet_count.sql │ ├── consistency_entity_subsidiary_relationships.sql │ ├── consistency_entity_subsidiary_relationships_count.sql │ ├── consistency_income_statement.sql │ ├── consistency_income_statement_amounts.sql │ ├── consistency_income_statement_count.sql │ ├── consistency_transaction_details.sql │ ├── consistency_transaction_details_amounts.sql │ └── consistency_transaction_details_count.sql │ └── integrity │ └── integrity_transaction_details.sql ├── macros ├── date_from_parts.sql ├── get_month_number.sql ├── netsuite_lookback.sql ├── persist_pass_through_columns.sql ├── staging │ ├── fill_pass_through_columns.sql │ ├── get_accounting_books_columns.sql │ ├── get_accounting_periods_columns.sql │ ├── get_accountingbooksubsidiaries_columns.sql │ ├── get_accountingperiodfiscalcalendars_columns.sql │ ├── get_accounts_columns.sql │ ├── get_accounttype_columns.sql │ ├── get_classes_columns.sql │ ├── get_consolidated_exchange_rates_columns.sql │ ├── get_currencies_columns.sql │ ├── get_customer_subsidiary_relationships_columns.sql │ ├── get_customers_columns.sql │ ├── get_departments_columns.sql │ ├── get_employee_columns.sql │ ├── get_entity_columns.sql │ ├── get_entityaddress_columns.sql │ ├── get_expense_accounts_columns.sql │ ├── get_fiscalcalendar_columns.sql │ ├── get_income_accounts_columns.sql │ ├── get_items_columns.sql │ ├── get_job_columns.sql │ ├── get_locationmainaddress_columns.sql │ ├── get_locations_columns.sql │ ├── get_nexuses_columns.sql │ ├── get_subsidiaries_columns.sql │ ├── get_transaction_accounting_lines_columns.sql │ ├── get_transaction_lines_columns.sql │ ├── get_transactionaccountingline_columns.sql │ ├── get_transactions_columns.sql │ ├── get_vendor_subsidiary_relationships_columns.sql │ ├── get_vendor_types_columns.sql │ ├── get_vendorcategory_columns.sql │ └── get_vendors_columns.sql └── union │ ├── apply_source_relation.sql │ ├── netsuite_union_connections.sql │ └── netsuite_union_relations.sql ├── models ├── docs.md ├── netsuite.yml ├── netsuite │ ├── intermediate │ │ ├── int_netsuite__accountxperiod_exchange_rate_map.sql │ │ ├── int_netsuite__transaction_and_reporting_periods.sql │ │ ├── int_netsuite__transaction_lines_w_accounting_period.sql │ │ └── int_netsuite__transactions_with_converted_amounts.sql │ ├── netsuite__balance_sheet.sql │ ├── netsuite__income_statement.sql │ ├── netsuite__transaction_details.sql │ └── staging │ │ ├── src_netsuite.yml │ │ ├── stg_netsuite.yml │ │ ├── stg_netsuite__accounting_books.sql │ │ ├── stg_netsuite__accounting_periods.sql │ │ ├── stg_netsuite__accounts.sql │ │ ├── stg_netsuite__classes.sql │ │ ├── stg_netsuite__consolidated_exchange_rates.sql │ │ ├── stg_netsuite__currencies.sql │ │ ├── stg_netsuite__customers.sql │ │ ├── stg_netsuite__departments.sql │ │ ├── stg_netsuite__expense_accounts.sql │ │ ├── stg_netsuite__income_accounts.sql │ │ ├── stg_netsuite__items.sql │ │ ├── stg_netsuite__locations.sql │ │ ├── stg_netsuite__subsidiaries.sql │ │ ├── stg_netsuite__transaction_lines.sql │ │ ├── stg_netsuite__transactions.sql │ │ ├── stg_netsuite__vendor_types.sql │ │ ├── stg_netsuite__vendors.sql │ │ └── tmp │ │ ├── stg_netsuite__accounting_books_tmp.sql │ │ ├── stg_netsuite__accounting_periods_tmp.sql │ │ ├── stg_netsuite__accounts_tmp.sql │ │ ├── stg_netsuite__classes_tmp.sql │ │ ├── stg_netsuite__consolidated_exchange_rates_tmp.sql │ │ ├── stg_netsuite__currencies_tmp.sql │ │ ├── stg_netsuite__customers_tmp.sql │ │ ├── stg_netsuite__departments_tmp.sql │ │ ├── stg_netsuite__expense_accounts_tmp.sql │ │ ├── stg_netsuite__income_accounts_tmp.sql │ │ ├── stg_netsuite__items_tmp.sql │ │ ├── stg_netsuite__locations_tmp.sql │ │ ├── stg_netsuite__subsidiaries_tmp.sql │ │ ├── stg_netsuite__transaction_lines_tmp.sql │ │ ├── stg_netsuite__transactions_tmp.sql │ │ ├── stg_netsuite__vendor_types_tmp.sql │ │ └── stg_netsuite__vendors_tmp.sql ├── netsuite2.yml └── netsuite2 │ ├── intermediate │ ├── base │ │ ├── int_netsuite2__accounting_periods.sql │ │ ├── int_netsuite2__accounts.sql │ │ ├── int_netsuite2__customers.sql │ │ ├── int_netsuite2__locations.sql │ │ └── int_netsuite2__transaction_lines.sql │ ├── int_netsuite2__acctxperiod_exchange_rate_map.sql │ ├── int_netsuite2__tran_and_reporting_periods.sql │ ├── int_netsuite2__tran_lines_w_accounting_period.sql │ └── int_netsuite2__tran_with_converted_amounts.sql │ ├── netsuite2__balance_sheet.sql │ ├── netsuite2__entity_subsidiary_relationships.sql │ ├── netsuite2__income_statement.sql │ ├── netsuite2__transaction_details.sql │ └── staging │ ├── src_netsuite2.yml │ ├── stg_netsuite2.yml │ ├── stg_netsuite2__account_types.sql │ ├── stg_netsuite2__accounting_book_subsidiaries.sql │ ├── stg_netsuite2__accounting_books.sql │ ├── stg_netsuite2__accounting_period_fiscal_cal.sql │ ├── stg_netsuite2__accounting_periods.sql │ ├── stg_netsuite2__accounts.sql │ ├── stg_netsuite2__classes.sql │ ├── stg_netsuite2__consolidated_exchange_rates.sql │ ├── stg_netsuite2__currencies.sql │ ├── stg_netsuite2__customer_subsidiary_relationships.sql │ ├── stg_netsuite2__customers.sql │ ├── stg_netsuite2__departments.sql │ ├── stg_netsuite2__employees.sql │ ├── stg_netsuite2__entities.sql │ ├── stg_netsuite2__entity_address.sql │ ├── stg_netsuite2__fiscal_calendar.sql │ ├── stg_netsuite2__items.sql │ ├── stg_netsuite2__jobs.sql │ ├── stg_netsuite2__location_main_address.sql │ ├── stg_netsuite2__locations.sql │ ├── stg_netsuite2__nexuses.sql │ ├── stg_netsuite2__subsidiaries.sql │ ├── stg_netsuite2__transaction_accounting_lines.sql │ ├── stg_netsuite2__transaction_lines.sql │ ├── stg_netsuite2__transactions.sql │ ├── stg_netsuite2__vendor_categories.sql │ ├── stg_netsuite2__vendor_subsidiary_relationships.sql │ ├── stg_netsuite2__vendors.sql │ └── tmp │ ├── stg_netsuite2__account_types_tmp.sql │ ├── stg_netsuite2__accounting_book_subsidiaries_tmp.sql │ ├── stg_netsuite2__accounting_books_tmp.sql │ ├── stg_netsuite2__accounting_period_fiscal_cal_tmp.sql │ ├── stg_netsuite2__accounting_periods_tmp.sql │ ├── stg_netsuite2__accounts_tmp.sql │ ├── stg_netsuite2__classes_tmp.sql │ ├── stg_netsuite2__consolidated_exchange_rates_tmp.sql │ ├── stg_netsuite2__currencies_tmp.sql │ ├── stg_netsuite2__customer_subsidiary_relationships_tmp.sql │ ├── stg_netsuite2__customers_tmp.sql │ ├── stg_netsuite2__departments_tmp.sql │ ├── stg_netsuite2__employees_tmp.sql │ ├── stg_netsuite2__entities_tmp.sql │ ├── stg_netsuite2__entity_address_tmp.sql │ ├── stg_netsuite2__fiscal_calendar_tmp.sql │ ├── stg_netsuite2__items_tmp.sql │ ├── stg_netsuite2__jobs_tmp.sql │ ├── stg_netsuite2__location_main_address_tmp.sql │ ├── stg_netsuite2__locations_tmp.sql │ ├── stg_netsuite2__nexuses_tmp.sql │ ├── stg_netsuite2__subsidiaries_tmp.sql │ ├── stg_netsuite2__transaction_accounting_lines_tmp.sql │ ├── stg_netsuite2__transaction_lines_tmp.sql │ ├── stg_netsuite2__transactions_tmp.sql │ ├── stg_netsuite2__vendor_categories_tmp.sql │ ├── stg_netsuite2__vendor_subsidiary_relationships_tmp.sql │ └── stg_netsuite2__vendors_tmp.sql └── packages.yml /.buildkite/hooks/pre-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.buildkite/hooks/pre-command -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/scripts/run_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.buildkite/scripts/run_models.sh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.github/workflows/auto-release.yml -------------------------------------------------------------------------------- /.github/workflows/generate-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.github/workflows/generate-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.gitignore -------------------------------------------------------------------------------- /.quickstart/quickstart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/.quickstart/quickstart.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DECISIONLOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/DECISIONLOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/README.md -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /docs/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/docs/catalog.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /images/streamlit_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/images/streamlit_example.png -------------------------------------------------------------------------------- /integration_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/.gitignore -------------------------------------------------------------------------------- /integration_tests/ci/sample.profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/ci/sample.profiles.yml -------------------------------------------------------------------------------- /integration_tests/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/dbt_project.yml -------------------------------------------------------------------------------- /integration_tests/packages.yml: -------------------------------------------------------------------------------- 1 | packages: 2 | - local: ../ 3 | -------------------------------------------------------------------------------- /integration_tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/requirements.txt -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_account_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_account_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_account_type_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_account_type_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_accounting_book_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_accounting_book_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_accounting_book_sub_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_accounting_book_sub_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_accounting_period_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_accounting_period_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_accounting_period_fiscal_cal_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_accounting_period_fiscal_cal_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_classification_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_classification_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_consolidated_exchange_rate_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_consolidated_exchange_rate_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_currency_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_currency_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_customer_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_customer_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_customer_subsidiary_relationship_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_customer_subsidiary_relationship_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_department_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_department_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_employee_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_employee_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_entities_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_entities_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_entity_address_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_entity_address_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_fiscal_calendar_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_fiscal_calendar_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_item_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_item_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_job_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_job_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_location_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_location_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_location_main_address_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_location_main_address_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_nexus_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_nexus_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_subsidiary_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_subsidiary_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_tran_acct_line_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_tran_acct_line_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_transaction_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_transaction_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_transaction_line_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_transaction_line_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_vendor_category_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_vendor_category_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_vendor_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_vendor_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite2_vendor_subsidiary_relationship_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite2_vendor_subsidiary_relationship_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_accounting_books_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_accounting_books_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_accounting_periods_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_accounting_periods_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_accounts_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_accounts_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_classes_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_classes_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_consolidated_exchange_rates_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_consolidated_exchange_rates_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_currencies_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_currencies_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_customers_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_customers_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_departments_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_departments_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_expense_accounts_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_expense_accounts_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_income_accounts_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_income_accounts_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_items_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_items_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_locations_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_locations_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_subsidiaries_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_subsidiaries_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_transaction_lines_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_transaction_lines_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_transactions_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_transactions_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_vendor_types_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_vendor_types_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/netsuite_vendors_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/seeds/netsuite_vendors_data.csv -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_balance_sheet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_balance_sheet.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_balance_sheet_amounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_balance_sheet_amounts.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_balance_sheet_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_balance_sheet_count.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_entity_subsidiary_relationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_entity_subsidiary_relationships.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_entity_subsidiary_relationships_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_entity_subsidiary_relationships_count.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_income_statement.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_income_statement.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_income_statement_amounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_income_statement_amounts.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_income_statement_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_income_statement_count.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_transaction_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_transaction_details.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_transaction_details_amounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_transaction_details_amounts.sql -------------------------------------------------------------------------------- /integration_tests/tests/consistency/consistency_transaction_details_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/consistency/consistency_transaction_details_count.sql -------------------------------------------------------------------------------- /integration_tests/tests/integrity/integrity_transaction_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/integration_tests/tests/integrity/integrity_transaction_details.sql -------------------------------------------------------------------------------- /macros/date_from_parts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/date_from_parts.sql -------------------------------------------------------------------------------- /macros/get_month_number.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/get_month_number.sql -------------------------------------------------------------------------------- /macros/netsuite_lookback.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/netsuite_lookback.sql -------------------------------------------------------------------------------- /macros/persist_pass_through_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/persist_pass_through_columns.sql -------------------------------------------------------------------------------- /macros/staging/fill_pass_through_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/fill_pass_through_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_accounting_books_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_accounting_books_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_accounting_periods_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_accounting_periods_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_accountingbooksubsidiaries_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_accountingbooksubsidiaries_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_accountingperiodfiscalcalendars_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_accountingperiodfiscalcalendars_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_accounts_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_accounts_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_accounttype_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_accounttype_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_classes_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_classes_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_consolidated_exchange_rates_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_consolidated_exchange_rates_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_currencies_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_currencies_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_customer_subsidiary_relationships_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_customer_subsidiary_relationships_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_customers_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_customers_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_departments_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_departments_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_employee_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_employee_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_entity_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_entity_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_entityaddress_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_entityaddress_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_expense_accounts_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_expense_accounts_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_fiscalcalendar_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_fiscalcalendar_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_income_accounts_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_income_accounts_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_items_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_items_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_job_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_job_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_locationmainaddress_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_locationmainaddress_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_locations_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_locations_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_nexuses_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_nexuses_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_subsidiaries_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_subsidiaries_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_transaction_accounting_lines_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_transaction_accounting_lines_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_transaction_lines_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_transaction_lines_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_transactionaccountingline_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_transactionaccountingline_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_transactions_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_transactions_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_vendor_subsidiary_relationships_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_vendor_subsidiary_relationships_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_vendor_types_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_vendor_types_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_vendorcategory_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_vendorcategory_columns.sql -------------------------------------------------------------------------------- /macros/staging/get_vendors_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/staging/get_vendors_columns.sql -------------------------------------------------------------------------------- /macros/union/apply_source_relation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/union/apply_source_relation.sql -------------------------------------------------------------------------------- /macros/union/netsuite_union_connections.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/union/netsuite_union_connections.sql -------------------------------------------------------------------------------- /macros/union/netsuite_union_relations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/macros/union/netsuite_union_relations.sql -------------------------------------------------------------------------------- /models/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/docs.md -------------------------------------------------------------------------------- /models/netsuite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite.yml -------------------------------------------------------------------------------- /models/netsuite/intermediate/int_netsuite__accountxperiod_exchange_rate_map.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/intermediate/int_netsuite__accountxperiod_exchange_rate_map.sql -------------------------------------------------------------------------------- /models/netsuite/intermediate/int_netsuite__transaction_and_reporting_periods.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/intermediate/int_netsuite__transaction_and_reporting_periods.sql -------------------------------------------------------------------------------- /models/netsuite/intermediate/int_netsuite__transaction_lines_w_accounting_period.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/intermediate/int_netsuite__transaction_lines_w_accounting_period.sql -------------------------------------------------------------------------------- /models/netsuite/intermediate/int_netsuite__transactions_with_converted_amounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/intermediate/int_netsuite__transactions_with_converted_amounts.sql -------------------------------------------------------------------------------- /models/netsuite/netsuite__balance_sheet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/netsuite__balance_sheet.sql -------------------------------------------------------------------------------- /models/netsuite/netsuite__income_statement.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/netsuite__income_statement.sql -------------------------------------------------------------------------------- /models/netsuite/netsuite__transaction_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/netsuite__transaction_details.sql -------------------------------------------------------------------------------- /models/netsuite/staging/src_netsuite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/src_netsuite.yml -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite.yml -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__accounting_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__accounting_books.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__accounting_periods.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__accounting_periods.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__accounts.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__classes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__classes.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__consolidated_exchange_rates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__consolidated_exchange_rates.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__currencies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__currencies.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__customers.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__departments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__departments.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__expense_accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__expense_accounts.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__income_accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__income_accounts.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__items.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__locations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__locations.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__subsidiaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__subsidiaries.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__transaction_lines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__transaction_lines.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__transactions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__transactions.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__vendor_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__vendor_types.sql -------------------------------------------------------------------------------- /models/netsuite/staging/stg_netsuite__vendors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/stg_netsuite__vendors.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__accounting_books_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__accounting_books_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__accounting_periods_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__accounting_periods_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__accounts_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__accounts_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__classes_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__classes_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__consolidated_exchange_rates_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__consolidated_exchange_rates_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__currencies_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__currencies_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__customers_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__customers_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__departments_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__departments_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__expense_accounts_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__expense_accounts_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__income_accounts_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__income_accounts_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__items_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__items_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__locations_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__locations_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__subsidiaries_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__subsidiaries_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__transaction_lines_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__transaction_lines_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__transactions_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__transactions_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__vendor_types_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__vendor_types_tmp.sql -------------------------------------------------------------------------------- /models/netsuite/staging/tmp/stg_netsuite__vendors_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite/staging/tmp/stg_netsuite__vendors_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2.yml -------------------------------------------------------------------------------- /models/netsuite2/intermediate/base/int_netsuite2__accounting_periods.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/base/int_netsuite2__accounting_periods.sql -------------------------------------------------------------------------------- /models/netsuite2/intermediate/base/int_netsuite2__accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/base/int_netsuite2__accounts.sql -------------------------------------------------------------------------------- /models/netsuite2/intermediate/base/int_netsuite2__customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/base/int_netsuite2__customers.sql -------------------------------------------------------------------------------- /models/netsuite2/intermediate/base/int_netsuite2__locations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/base/int_netsuite2__locations.sql -------------------------------------------------------------------------------- /models/netsuite2/intermediate/base/int_netsuite2__transaction_lines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/base/int_netsuite2__transaction_lines.sql -------------------------------------------------------------------------------- /models/netsuite2/intermediate/int_netsuite2__acctxperiod_exchange_rate_map.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/int_netsuite2__acctxperiod_exchange_rate_map.sql -------------------------------------------------------------------------------- /models/netsuite2/intermediate/int_netsuite2__tran_and_reporting_periods.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/int_netsuite2__tran_and_reporting_periods.sql -------------------------------------------------------------------------------- /models/netsuite2/intermediate/int_netsuite2__tran_lines_w_accounting_period.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/int_netsuite2__tran_lines_w_accounting_period.sql -------------------------------------------------------------------------------- /models/netsuite2/intermediate/int_netsuite2__tran_with_converted_amounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/intermediate/int_netsuite2__tran_with_converted_amounts.sql -------------------------------------------------------------------------------- /models/netsuite2/netsuite2__balance_sheet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/netsuite2__balance_sheet.sql -------------------------------------------------------------------------------- /models/netsuite2/netsuite2__entity_subsidiary_relationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/netsuite2__entity_subsidiary_relationships.sql -------------------------------------------------------------------------------- /models/netsuite2/netsuite2__income_statement.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/netsuite2__income_statement.sql -------------------------------------------------------------------------------- /models/netsuite2/netsuite2__transaction_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/netsuite2__transaction_details.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/src_netsuite2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/src_netsuite2.yml -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2.yml -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__account_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__account_types.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__accounting_book_subsidiaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__accounting_book_subsidiaries.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__accounting_books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__accounting_books.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__accounting_period_fiscal_cal.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__accounting_period_fiscal_cal.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__accounting_periods.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__accounting_periods.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__accounts.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__classes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__classes.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__consolidated_exchange_rates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__consolidated_exchange_rates.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__currencies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__currencies.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__customer_subsidiary_relationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__customer_subsidiary_relationships.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__customers.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__departments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__departments.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__employees.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__employees.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__entities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__entities.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__entity_address.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__entity_address.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__fiscal_calendar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__fiscal_calendar.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__items.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__jobs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__jobs.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__location_main_address.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__location_main_address.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__locations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__locations.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__nexuses.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__nexuses.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__subsidiaries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__subsidiaries.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__transaction_accounting_lines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__transaction_accounting_lines.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__transaction_lines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__transaction_lines.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__transactions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__transactions.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__vendor_categories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__vendor_categories.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__vendor_subsidiary_relationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__vendor_subsidiary_relationships.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/stg_netsuite2__vendors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/stg_netsuite2__vendors.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__account_types_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__account_types_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__accounting_book_subsidiaries_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__accounting_book_subsidiaries_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__accounting_books_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__accounting_books_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__accounting_period_fiscal_cal_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__accounting_period_fiscal_cal_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__accounting_periods_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__accounting_periods_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__accounts_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__accounts_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__classes_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__classes_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__consolidated_exchange_rates_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__consolidated_exchange_rates_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__currencies_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__currencies_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__customer_subsidiary_relationships_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__customer_subsidiary_relationships_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__customers_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__customers_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__departments_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__departments_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__employees_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__employees_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__entities_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__entities_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__entity_address_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__entity_address_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__fiscal_calendar_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__fiscal_calendar_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__items_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__items_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__jobs_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__jobs_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__location_main_address_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__location_main_address_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__locations_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__locations_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__nexuses_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__nexuses_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__subsidiaries_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__subsidiaries_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__transaction_accounting_lines_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__transaction_accounting_lines_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__transaction_lines_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__transaction_lines_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__transactions_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__transactions_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__vendor_categories_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__vendor_categories_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__vendor_subsidiary_relationships_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__vendor_subsidiary_relationships_tmp.sql -------------------------------------------------------------------------------- /models/netsuite2/staging/tmp/stg_netsuite2__vendors_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/models/netsuite2/staging/tmp/stg_netsuite2__vendors_tmp.sql -------------------------------------------------------------------------------- /packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_netsuite/HEAD/packages.yml --------------------------------------------------------------------------------