From 9251ac0b1ac359d27722b9055a388ce04a122af2 Mon Sep 17 00:00:00 2001 From: Huzaifa Patel Date: Thu, 5 Sep 2024 01:11:17 +0100 Subject: [PATCH 1/2] Updates chartica.yml to move main config values to the top. (#1829) --- .../extractors/tap-staffwise/chartica.yml | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/_data/meltano/extractors/tap-staffwise/chartica.yml b/_data/meltano/extractors/tap-staffwise/chartica.yml index 653f107ab..967eb558e 100644 --- a/_data/meltano/extractors/tap-staffwise/chartica.yml +++ b/_data/meltano/extractors/tap-staffwise/chartica.yml @@ -28,6 +28,23 @@ settings: label: API Key name: api_key sensitive: true +- description: Subdomain you would like to pull data from + kind: string + label: Subdomain + name: subdomain +- description: Reporting ID of each report + kind: password + label: Reporting ID + name: reporting_id + sensitive: true +- description: The start date for filtering results in the API call + kind: string + label: Start Date (Optional) + name: start_date +- description: The end date for filtering results in the API call + kind: string + label: Stop Date (Optional) + name: stop_date - description: Compression format to use for batch files. kind: options label: Batch Config Encoding Compression @@ -71,19 +88,6 @@ settings: kind: integer label: Flattening Max Depth name: flattening_max_depth -- description: Reporting ID of each report - kind: password - label: Reporting ID - name: reporting_id - sensitive: true -- description: The start date for filtering results in the API call - kind: date_iso8601 - label: Start Date - name: start_date -- description: The end date for filtering results in the API call - kind: string - label: Stop Date - name: stop_date - description: User-defined config values to be used within map expressions. kind: object label: Stream Map Config @@ -93,10 +97,6 @@ settings: kind: object label: Stream Maps name: stream_maps -- description: Subdomain you would like to pull data from - kind: string - label: Subdomain - name: subdomain settings_group_validation: - - api_key - reporting_id From a86f6ad83aef126743cab3008e381f48ceb53b09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= <16805946+edgarrmondragon@users.noreply.github.com> Date: Wed, 4 Sep 2024 19:23:30 -0600 Subject: [PATCH 2/2] Use `meltano-dbt-ext` (#1815) --- _data/meltano/utilities/dbt-athena/dbt-athena.yml | 2 +- _data/meltano/utilities/dbt-bigquery/dbt-labs.yml | 2 +- _data/meltano/utilities/dbt-duckdb/jwills.yml | 2 +- _data/meltano/utilities/dbt-postgres/dbt-labs.yml | 2 +- _data/meltano/utilities/dbt-redshift/dbt-labs.yml | 2 +- _data/meltano/utilities/dbt-snowflake/dbt-labs.yml | 2 +- _data/variant_metrics.yml | 10 +++++----- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/_data/meltano/utilities/dbt-athena/dbt-athena.yml b/_data/meltano/utilities/dbt-athena/dbt-athena.yml index de029023b..c16594ec0 100644 --- a/_data/meltano/utilities/dbt-athena/dbt-athena.yml +++ b/_data/meltano/utilities/dbt-athena/dbt-athena.yml @@ -69,7 +69,7 @@ next_steps: |- # create a starter dbt_project.yml file, a profiles.yml file, and models directory meltano invoke dbt-athena:initialize ``` -pip_url: dbt-core dbt-athena-community git+https://github.com/meltano/dbt-ext.git@main +pip_url: dbt-core dbt-athena-community meltano-dbt-ext~=0.3.0 repo: https://github.com/dbt-athena/dbt-athena settings: - description: | diff --git a/_data/meltano/utilities/dbt-bigquery/dbt-labs.yml b/_data/meltano/utilities/dbt-bigquery/dbt-labs.yml index 79e1b7835..d03f28476 100644 --- a/_data/meltano/utilities/dbt-bigquery/dbt-labs.yml +++ b/_data/meltano/utilities/dbt-bigquery/dbt-labs.yml @@ -69,7 +69,7 @@ next_steps: |- # create a starter dbt_project.yml file, a profiles.yml file, and models directory meltano invoke dbt-bigquery:initialize ``` -pip_url: dbt-core dbt-bigquery git+https://github.com/meltano/dbt-ext.git@main +pip_url: dbt-core dbt-bigquery meltano-dbt-ext~=0.3.0 repo: https://github.com/dbt-labs/dbt-bigquery settings: - description: | diff --git a/_data/meltano/utilities/dbt-duckdb/jwills.yml b/_data/meltano/utilities/dbt-duckdb/jwills.yml index 2814c14e3..f389ea64e 100644 --- a/_data/meltano/utilities/dbt-duckdb/jwills.yml +++ b/_data/meltano/utilities/dbt-duckdb/jwills.yml @@ -70,7 +70,7 @@ next_steps: | # create a starter dbt_project.yml file, a profiles.yml file, and models directory meltano invoke dbt-duckdb:initialize ``` -pip_url: dbt-core dbt-duckdb git+https://github.com/meltano/dbt-ext.git@main +pip_url: dbt-core dbt-duckdb meltano-dbt-ext~=0.3.0 repo: https://github.com/jwills/dbt-duckdb settings: - description: The path on your local filesystem where you would like the DuckDB database diff --git a/_data/meltano/utilities/dbt-postgres/dbt-labs.yml b/_data/meltano/utilities/dbt-postgres/dbt-labs.yml index 7fd595975..84bbb6e57 100644 --- a/_data/meltano/utilities/dbt-postgres/dbt-labs.yml +++ b/_data/meltano/utilities/dbt-postgres/dbt-labs.yml @@ -68,7 +68,7 @@ next_steps: |- # create a starter dbt_project.yml file, a profiles.yml file, and models directory meltano invoke dbt-postgres:initialize ``` -pip_url: dbt-core dbt-postgres git+https://github.com/meltano/dbt-ext.git@main +pip_url: dbt-core dbt-postgres meltano-dbt-ext~=0.3.0 repo: https://github.com/dbt-labs/dbt-core settings: - aliases: diff --git a/_data/meltano/utilities/dbt-redshift/dbt-labs.yml b/_data/meltano/utilities/dbt-redshift/dbt-labs.yml index 9e1ee570c..921b6854f 100644 --- a/_data/meltano/utilities/dbt-redshift/dbt-labs.yml +++ b/_data/meltano/utilities/dbt-redshift/dbt-labs.yml @@ -69,7 +69,7 @@ next_steps: |- # create a starter dbt_project.yml file, a profiles.yml file, and models directory meltano invoke dbt-redshift:initialize ``` -pip_url: dbt-core dbt-redshift git+https://github.com/meltano/dbt-ext.git@main +pip_url: dbt-core dbt-redshift meltano-dbt-ext~=0.3.0 repo: https://github.com/dbt-labs/dbt-redshift settings: - description: | diff --git a/_data/meltano/utilities/dbt-snowflake/dbt-labs.yml b/_data/meltano/utilities/dbt-snowflake/dbt-labs.yml index df7ea9c31..db9851368 100644 --- a/_data/meltano/utilities/dbt-snowflake/dbt-labs.yml +++ b/_data/meltano/utilities/dbt-snowflake/dbt-labs.yml @@ -69,7 +69,7 @@ next_steps: |- # create a starter dbt_project.yml file, a profiles.yml file, and models directory meltano invoke dbt-snowflake:initialize ``` -pip_url: dbt-core dbt-snowflake git+https://github.com/meltano/dbt-ext.git@main +pip_url: dbt-core dbt-snowflake meltano-dbt-ext~=0.3.0 repo: https://github.com/dbt-labs/dbt-snowflake settings: - description: The snowflake account to connect to. diff --git a/_data/variant_metrics.yml b/_data/variant_metrics.yml index 825c2da9d..20aa09c31 100644 --- a/_data/variant_metrics.yml +++ b/_data/variant_metrics.yml @@ -9531,7 +9531,7 @@ metrics: all_projects_unstruct_by_name: 9 all_projects_unstruct_by_variant: 9 name: dbt-bigquery - pip_url: dbt-core~=1.3.0 dbt-bigquery~=1.3.0 git+https://github.com/meltano/dbt-ext.git@main + pip_url: dbt-core dbt-bigquery meltano-dbt-ext~=0.3.0 plugin_type: utilities success_execs_by_name: 0 success_execs_unstruct_by_name: 650 @@ -9550,7 +9550,7 @@ metrics: all_projects_unstruct_by_name: 141 all_projects_unstruct_by_variant: 141 name: dbt-postgres - pip_url: dbt-core~=1.3.0 dbt-postgres~=1.3.0 + pip_url: dbt-core dbt-postgres meltano-dbt-ext~=0.3.0 plugin_type: transformers success_execs_by_name: 0 success_execs_unstruct_by_name: 208849 @@ -9569,7 +9569,7 @@ metrics: all_projects_unstruct_by_name: 7 all_projects_unstruct_by_variant: 7 name: dbt-redshift - pip_url: dbt-core~=1.3.0 dbt-redshift~=1.3.0 git+https://github.com/meltano/dbt-ext.git@main + pip_url: dbt-core dbt-redshift meltano-dbt-ext~=0.3.0 plugin_type: utilities success_execs_by_name: 0 success_execs_unstruct_by_name: 35 @@ -9588,7 +9588,7 @@ metrics: all_projects_unstruct_by_name: 19 all_projects_unstruct_by_variant: 19 name: dbt-snowflake - pip_url: dbt-core~=1.3.0 dbt-snowflake~=1.3.0 + pip_url: dbt-core dbt-snowflake meltano-dbt-ext~=0.3.0 plugin_type: transformers success_execs_by_name: 0 success_execs_unstruct_by_name: 6889 @@ -12799,7 +12799,7 @@ metrics: all_projects_unstruct_by_name: 70 all_projects_unstruct_by_variant: 70 name: dbt-duckdb - pip_url: dbt-core~=1.2.0 dbt-duckdb~=1.2.0 + pip_url: dbt-core dbt-duckdb meltano-dbt-ext~=0.3.0 plugin_type: transformers success_execs_by_name: 0 success_execs_unstruct_by_name: 368