├── .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 ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dbt_project.yml ├── docs ├── catalog.json ├── index.html └── manifest.json ├── integration_tests ├── .gitignore ├── ci │ └── sample.profiles.yml ├── dbt_project.yml ├── packages.yml ├── requirements.txt └── seeds │ ├── audit_log_data.csv │ ├── brand_data.csv │ ├── brand_data_postgres.csv │ ├── daylight_time_data.csv │ ├── domain_name_data.csv │ ├── group_data.csv │ ├── organization_data.csv │ ├── organization_tag_data.csv │ ├── organization_tag_data_snowflake.csv │ ├── schedule_data.csv │ ├── schedule_holiday_data.csv │ ├── ticket_chat_data.csv │ ├── ticket_chat_event_data.csv │ ├── ticket_comment_data.csv │ ├── ticket_data.csv │ ├── ticket_field_history_data.csv │ ├── ticket_form_history_data.csv │ ├── ticket_schedule_data.csv │ ├── ticket_tag_data.csv │ ├── time_zone_data.csv │ ├── user_data.csv │ ├── user_data_snowflake.csv │ ├── user_tag_data.csv │ └── user_tag_data_snowflake.csv ├── macros ├── get_audit_log_columns.sql ├── get_brand_columns.sql ├── get_daylight_time_columns.sql ├── get_domain_name_columns.sql ├── get_group_columns.sql ├── get_organization_columns.sql ├── get_organization_tag_columns.sql ├── get_schedule_columns.sql ├── get_schedule_holiday_columns.sql ├── get_ticket_chat_columns.sql ├── get_ticket_chat_event_columns.sql ├── get_ticket_columns.sql ├── get_ticket_comment_columns.sql ├── get_ticket_field_history_columns.sql ├── get_ticket_form_history_columns.sql ├── get_ticket_schedule_columns.sql ├── get_ticket_tag_columns.sql ├── get_time_zone_columns.sql ├── get_user_columns.sql ├── get_user_tag_columns.sql └── union │ ├── union_zendesk_connections.sql │ ├── zendesk_source_relation.sql │ └── zendesk_union_relations.sql ├── models ├── src_zendesk.yml ├── stg_zendesk.yml ├── stg_zendesk__audit_log.sql ├── stg_zendesk__brand.sql ├── stg_zendesk__daylight_time.sql ├── stg_zendesk__domain_name.sql ├── stg_zendesk__group.sql ├── stg_zendesk__organization.sql ├── stg_zendesk__organization_tag.sql ├── stg_zendesk__schedule.sql ├── stg_zendesk__schedule_holiday.sql ├── stg_zendesk__ticket.sql ├── stg_zendesk__ticket_chat.sql ├── stg_zendesk__ticket_chat_event.sql ├── stg_zendesk__ticket_comment.sql ├── stg_zendesk__ticket_field_history.sql ├── stg_zendesk__ticket_form_history.sql ├── stg_zendesk__ticket_schedule.sql ├── stg_zendesk__ticket_tag.sql ├── stg_zendesk__time_zone.sql ├── stg_zendesk__user.sql ├── stg_zendesk__user_tag.sql └── tmp │ ├── stg_zendesk__audit_log_tmp.sql │ ├── stg_zendesk__brand_tmp.sql │ ├── stg_zendesk__daylight_time_tmp.sql │ ├── stg_zendesk__domain_name_tmp.sql │ ├── stg_zendesk__group_tmp.sql │ ├── stg_zendesk__organization_tag_tmp.sql │ ├── stg_zendesk__organization_tmp.sql │ ├── stg_zendesk__schedule_holiday_tmp.sql │ ├── stg_zendesk__schedule_tmp.sql │ ├── stg_zendesk__ticket_chat_event_tmp.sql │ ├── stg_zendesk__ticket_chat_tmp.sql │ ├── stg_zendesk__ticket_comment_tmp.sql │ ├── stg_zendesk__ticket_field_history_tmp.sql │ ├── stg_zendesk__ticket_form_history_tmp.sql │ ├── stg_zendesk__ticket_schedule_tmp.sql │ ├── stg_zendesk__ticket_tag_tmp.sql │ ├── stg_zendesk__ticket_tmp.sql │ ├── stg_zendesk__time_zone_tmp.sql │ ├── stg_zendesk__user_tag_tmp.sql │ └── stg_zendesk__user_tmp.sql └── packages.yml /.buildkite/hooks/pre-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.buildkite/hooks/pre-command -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/scripts/run_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.buildkite/scripts/run_models.sh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.github/workflows/auto-release.yml -------------------------------------------------------------------------------- /.github/workflows/generate-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.github/workflows/generate-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/README.md -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /docs/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/docs/catalog.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /integration_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/.gitignore -------------------------------------------------------------------------------- /integration_tests/ci/sample.profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/ci/sample.profiles.yml -------------------------------------------------------------------------------- /integration_tests/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/dbt_project.yml -------------------------------------------------------------------------------- /integration_tests/packages.yml: -------------------------------------------------------------------------------- 1 | packages: 2 | - local: ../ -------------------------------------------------------------------------------- /integration_tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/requirements.txt -------------------------------------------------------------------------------- /integration_tests/seeds/audit_log_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/audit_log_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/brand_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/brand_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/brand_data_postgres.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/brand_data_postgres.csv -------------------------------------------------------------------------------- /integration_tests/seeds/daylight_time_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/daylight_time_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/domain_name_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/domain_name_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/group_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/group_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/organization_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/organization_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/organization_tag_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/organization_tag_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/organization_tag_data_snowflake.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/organization_tag_data_snowflake.csv -------------------------------------------------------------------------------- /integration_tests/seeds/schedule_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/schedule_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/schedule_holiday_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/schedule_holiday_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/ticket_chat_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/ticket_chat_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/ticket_chat_event_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/ticket_chat_event_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/ticket_comment_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/ticket_comment_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/ticket_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/ticket_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/ticket_field_history_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/ticket_field_history_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/ticket_form_history_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/ticket_form_history_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/ticket_schedule_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/ticket_schedule_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/ticket_tag_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/ticket_tag_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/time_zone_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/time_zone_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/user_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/user_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/user_data_snowflake.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/user_data_snowflake.csv -------------------------------------------------------------------------------- /integration_tests/seeds/user_tag_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/user_tag_data.csv -------------------------------------------------------------------------------- /integration_tests/seeds/user_tag_data_snowflake.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/integration_tests/seeds/user_tag_data_snowflake.csv -------------------------------------------------------------------------------- /macros/get_audit_log_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_audit_log_columns.sql -------------------------------------------------------------------------------- /macros/get_brand_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_brand_columns.sql -------------------------------------------------------------------------------- /macros/get_daylight_time_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_daylight_time_columns.sql -------------------------------------------------------------------------------- /macros/get_domain_name_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_domain_name_columns.sql -------------------------------------------------------------------------------- /macros/get_group_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_group_columns.sql -------------------------------------------------------------------------------- /macros/get_organization_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_organization_columns.sql -------------------------------------------------------------------------------- /macros/get_organization_tag_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_organization_tag_columns.sql -------------------------------------------------------------------------------- /macros/get_schedule_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_schedule_columns.sql -------------------------------------------------------------------------------- /macros/get_schedule_holiday_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_schedule_holiday_columns.sql -------------------------------------------------------------------------------- /macros/get_ticket_chat_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_ticket_chat_columns.sql -------------------------------------------------------------------------------- /macros/get_ticket_chat_event_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_ticket_chat_event_columns.sql -------------------------------------------------------------------------------- /macros/get_ticket_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_ticket_columns.sql -------------------------------------------------------------------------------- /macros/get_ticket_comment_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_ticket_comment_columns.sql -------------------------------------------------------------------------------- /macros/get_ticket_field_history_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_ticket_field_history_columns.sql -------------------------------------------------------------------------------- /macros/get_ticket_form_history_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_ticket_form_history_columns.sql -------------------------------------------------------------------------------- /macros/get_ticket_schedule_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_ticket_schedule_columns.sql -------------------------------------------------------------------------------- /macros/get_ticket_tag_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_ticket_tag_columns.sql -------------------------------------------------------------------------------- /macros/get_time_zone_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_time_zone_columns.sql -------------------------------------------------------------------------------- /macros/get_user_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_user_columns.sql -------------------------------------------------------------------------------- /macros/get_user_tag_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/get_user_tag_columns.sql -------------------------------------------------------------------------------- /macros/union/union_zendesk_connections.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/union/union_zendesk_connections.sql -------------------------------------------------------------------------------- /macros/union/zendesk_source_relation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/union/zendesk_source_relation.sql -------------------------------------------------------------------------------- /macros/union/zendesk_union_relations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/macros/union/zendesk_union_relations.sql -------------------------------------------------------------------------------- /models/src_zendesk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/src_zendesk.yml -------------------------------------------------------------------------------- /models/stg_zendesk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk.yml -------------------------------------------------------------------------------- /models/stg_zendesk__audit_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__audit_log.sql -------------------------------------------------------------------------------- /models/stg_zendesk__brand.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__brand.sql -------------------------------------------------------------------------------- /models/stg_zendesk__daylight_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__daylight_time.sql -------------------------------------------------------------------------------- /models/stg_zendesk__domain_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__domain_name.sql -------------------------------------------------------------------------------- /models/stg_zendesk__group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__group.sql -------------------------------------------------------------------------------- /models/stg_zendesk__organization.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__organization.sql -------------------------------------------------------------------------------- /models/stg_zendesk__organization_tag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__organization_tag.sql -------------------------------------------------------------------------------- /models/stg_zendesk__schedule.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__schedule.sql -------------------------------------------------------------------------------- /models/stg_zendesk__schedule_holiday.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__schedule_holiday.sql -------------------------------------------------------------------------------- /models/stg_zendesk__ticket.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__ticket.sql -------------------------------------------------------------------------------- /models/stg_zendesk__ticket_chat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__ticket_chat.sql -------------------------------------------------------------------------------- /models/stg_zendesk__ticket_chat_event.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__ticket_chat_event.sql -------------------------------------------------------------------------------- /models/stg_zendesk__ticket_comment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__ticket_comment.sql -------------------------------------------------------------------------------- /models/stg_zendesk__ticket_field_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__ticket_field_history.sql -------------------------------------------------------------------------------- /models/stg_zendesk__ticket_form_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__ticket_form_history.sql -------------------------------------------------------------------------------- /models/stg_zendesk__ticket_schedule.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__ticket_schedule.sql -------------------------------------------------------------------------------- /models/stg_zendesk__ticket_tag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__ticket_tag.sql -------------------------------------------------------------------------------- /models/stg_zendesk__time_zone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__time_zone.sql -------------------------------------------------------------------------------- /models/stg_zendesk__user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__user.sql -------------------------------------------------------------------------------- /models/stg_zendesk__user_tag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/stg_zendesk__user_tag.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__audit_log_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__audit_log_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__brand_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__brand_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__daylight_time_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__daylight_time_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__domain_name_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__domain_name_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__group_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__group_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__organization_tag_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__organization_tag_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__organization_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__organization_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__schedule_holiday_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__schedule_holiday_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__schedule_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__schedule_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__ticket_chat_event_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__ticket_chat_event_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__ticket_chat_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__ticket_chat_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__ticket_comment_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__ticket_comment_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__ticket_field_history_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__ticket_field_history_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__ticket_form_history_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__ticket_form_history_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__ticket_schedule_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__ticket_schedule_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__ticket_tag_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__ticket_tag_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__ticket_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__ticket_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__time_zone_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__time_zone_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__user_tag_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__user_tag_tmp.sql -------------------------------------------------------------------------------- /models/tmp/stg_zendesk__user_tmp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/models/tmp/stg_zendesk__user_tmp.sql -------------------------------------------------------------------------------- /packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/dbt_zendesk_source/HEAD/packages.yml --------------------------------------------------------------------------------