diff --git a/.github/workflows/transformations_azure_compliance_postgres.yml b/.github/workflows/transformations_azure_compliance_free_postgres.yml similarity index 66% rename from .github/workflows/transformations_azure_compliance_postgres.yml rename to .github/workflows/transformations_azure_compliance_free_postgres.yml index f7b9c2c23..31b92ec00 100644 --- a/.github/workflows/transformations_azure_compliance_postgres.yml +++ b/.github/workflows/transformations_azure_compliance_free_postgres.yml @@ -1,24 +1,25 @@ -name: "Test Azure Compliance Policies: Postgres" +name: "Test Azure Compliance Free Policies: Postgres" on: pull_request: paths: - - "transformations/azure_compliance/**" - - ".github/workflows/transformations_azure_compliance_postgres.yml" + - "transformations/azure/compliance-free/**" + - ".github/workflows/transformations_azure_compliance_free_postgres.yml" push: branches: - main paths: - - "transformations/azure_compliance/**" - - ".github/workflows/transformations_azure_compliance_postgres.yml" + - "transformations/azure/compliance-free/**" + - ".github/workflows/transformations_azure_compliance_free_postgres.yml" jobs: - test-policies: + transformations-azure-compliance-free: + name: transformations/azure/compliance-free timeout-minutes: 30 runs-on: ubuntu-latest defaults: run: - working-directory: ./transformations/azure_compliance + working-directory: ./transformations/azure/compliance-free services: postgres: image: postgres:11 @@ -41,7 +42,7 @@ jobs: with: python-version: "3.9" cache: "pip" - cache-dependency-path: "./transformations/azure_compliance/requirements.txt" + cache-dependency-path: "./transformations/azure/compliance-free/requirements.txt" - name: Install dependencies run: pip install -r requirements.txt - name: Setup CloudQuery @@ -49,9 +50,9 @@ jobs: with: version: v4.0.0 - name: Migrate DB - run: cloudquery migrate tests/azure.yml tests/pg.yml + run: cloudquery migrate tests/azure.yml tests/pg.yml env: - CQ_DSN: postgresql://postgres:pass@localhost:5432/postgres + CQ_DSN: postgresql://postgres:pass@localhost:5432/postgres - name: DBT dependencies run: | dbt deps --target dev-pg --profiles-dir ./tests diff --git a/.github/workflows/transformations_azure_compliance_premium_postgres.yml b/.github/workflows/transformations_azure_compliance_premium_postgres.yml new file mode 100644 index 000000000..2ca40beac --- /dev/null +++ b/.github/workflows/transformations_azure_compliance_premium_postgres.yml @@ -0,0 +1,61 @@ +name: "Test Azure Compliance Premium Policies: Postgres" + +on: + pull_request: + paths: + - "transformations/azure/compliance-premium/**" + - ".github/workflows/transformations_azure_compliance_premium_postgres.yml" + push: + branches: + - main + paths: + - "transformations/azure/compliance-premium/**" + - ".github/workflows/transformations_azure_compliance_premium_postgres.yml" + +jobs: + transformations-azure-compliance-premium: + name: transformations/azure/compliance-premium + timeout-minutes: 30 + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./transformations/azure/compliance-premium + services: + postgres: + image: postgres:11 + env: + POSTGRES_PASSWORD: pass + POSTGRES_USER: postgres + POSTGRES_DB: postgres + ports: + - 5432:5432 + # Set health checks to wait until postgres has started + options: >- + --health-cmd pg_isready + --health-interval 10s + --health-timeout 5s + --health-retries 5 + steps: + - name: Checkout + uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: "3.9" + cache: "pip" + cache-dependency-path: "./transformations/azure/compliance-premium/requirements.txt" + - name: Install dependencies + run: pip install -r requirements.txt + - name: Setup CloudQuery + uses: cloudquery/setup-cloudquery@v3 + with: + version: v3.29.1 + - name: Migrate DB + run: cloudquery migrate tests/azure.yml tests/pg.yml + env: + CQ_DSN: postgresql://postgres:pass@localhost:5432/postgres + - name: DBT dependencies + run: | + dbt deps --target dev-pg --profiles-dir ./tests + - name: Run Policies + run: | + dbt run --target dev-pg --profiles-dir ./tests diff --git a/release-please-config-free.json b/release-please-config-free.json index df23ca78b..6b3de62e6 100644 --- a/release-please-config-free.json +++ b/release-please-config-free.json @@ -4,10 +4,6 @@ "component": "transformation-aws-compliance-free", "changelog-path": "CHANGELOG-free.md" }, - "transformations/azure_compliance": { - "component": "transformation-azure-compliance-free", - "changelog-path": "CHANGELOG-free.md" - }, "transformations/gcp_compliance": { "component": "transformation-gcp-compliance-free", "changelog-path": "CHANGELOG-free.md" diff --git a/release-please-config-premium.json b/release-please-config-premium.json index 3265ea570..01916d5ee 100644 --- a/release-please-config-premium.json +++ b/release-please-config-premium.json @@ -4,10 +4,6 @@ "component": "transformation-aws-compliance-premium", "changelog-path": "CHANGELOG-premium.md" }, - "transformations/azure_compliance": { - "component": "transformation-azure-compliance-premium", - "changelog-path": "CHANGELOG-premium.md" - }, "transformations/gcp_compliance": { "component": "transformation-gcp-compliance-premium", "changelog-path": "CHANGELOG-premium.md" diff --git a/scripts/dbt-pack/.eslintrc.cjs b/scripts/dbt-pack/.eslintrc.cjs new file mode 100644 index 000000000..a7f8b1980 --- /dev/null +++ b/scripts/dbt-pack/.eslintrc.cjs @@ -0,0 +1,13 @@ +module.exports = { + root: true, + parserOptions: { + ecmaVersion: 12, + sourceType: "module", + }, + plugins: ["unicorn"], + extends: ["eslint:recommended", "prettier", "plugin:unicorn/recommended"], + env: { + es2021: true, + node: true, + }, +}; diff --git a/scripts/dbt-pack/.gitignore b/scripts/dbt-pack/.gitignore new file mode 100644 index 000000000..b512c09d4 --- /dev/null +++ b/scripts/dbt-pack/.gitignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/scripts/dbt-pack/.prettierrc b/scripts/dbt-pack/.prettierrc new file mode 100644 index 000000000..0967ef424 --- /dev/null +++ b/scripts/dbt-pack/.prettierrc @@ -0,0 +1 @@ +{} diff --git a/scripts/dbt-pack/README.md b/scripts/dbt-pack/README.md new file mode 100644 index 000000000..88855d8a7 --- /dev/null +++ b/scripts/dbt-pack/README.md @@ -0,0 +1,20 @@ +# dbt-pack + +A utility to pack a dbt project into a single zip file. + +## Prerequisites + +- [Node.js LTS](https://nodejs.org/en/) + +## Setup + +```bash +npm ci +``` + +## Usage + +```bash +node index.js dbt-pack --project-dir=../../transformations/azure/compliance-free +node index.js dbt-pack --project-dir=../../transformations/azure/compliance-premium +``` diff --git a/scripts/dbt-pack/index.js b/scripts/dbt-pack/index.js new file mode 100644 index 000000000..353362b23 --- /dev/null +++ b/scripts/dbt-pack/index.js @@ -0,0 +1,26 @@ +#!/usr/bin/env node +import path from "node:path"; +import yargs from "yargs"; +import { hideBin } from "yargs/helpers"; +import { pack } from "./src/index.js"; + +yargs(hideBin(process.argv)) + .command( + "dbt-pack", + "Package dbt project into a single zip", + () => {}, + async ({ projectDir }) => { + await pack({ + projectDir: path.resolve(projectDir), + }); + }, + ) + .option("project-dir", { + alias: "p", + type: "string", + description: "Path to dbt project directory", + demandOption: true, + }) + .demandCommand(1) + .strict() + .parse(); diff --git a/scripts/dbt-pack/package-lock.json b/scripts/dbt-pack/package-lock.json new file mode 100644 index 000000000..c1a490bc9 --- /dev/null +++ b/scripts/dbt-pack/package-lock.json @@ -0,0 +1,2196 @@ +{ + "name": "dbt-pack", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "dbt-pack", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "execa": "^8.0.1", + "path-exists": "^5.0.0", + "tempy": "^3.1.0", + "yaml": "^2.3.4", + "yargs": "^17.7.2" + }, + "bin": { + "dbt-pack": "index.js" + }, + "devDependencies": { + "eslint": "^8.54.0", + "eslint-config-prettier": "^9.0.0", + "eslint-plugin-unicorn": "^49.0.0", + "prettier": "^3.1.0" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.4.tgz", + "integrity": "sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", + "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.54.0.tgz", + "integrity": "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.13", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/clean-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", + "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/clean-regexp/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.54.0.tgz", + "integrity": "sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.3", + "@eslint/js": "8.54.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz", + "integrity": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-unicorn": { + "version": "49.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-49.0.0.tgz", + "integrity": "sha512-0fHEa/8Pih5cmzFW5L7xMEfUTvI9WKeQtjmKpTUmY+BiFCDxkxrTdnURJOHKykhtwIeyYsxnecbGvDCml++z4Q==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "@eslint-community/eslint-utils": "^4.4.0", + "ci-info": "^3.8.0", + "clean-regexp": "^1.0.0", + "esquery": "^1.5.0", + "indent-string": "^4.0.0", + "is-builtin-module": "^3.2.1", + "jsesc": "^3.0.2", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.27", + "regjsparser": "^0.10.0", + "semver": "^7.5.4", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" + }, + "peerDependencies": { + "eslint": ">=8.52.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-up/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.23.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", + "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", + "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", + "dev": true, + "bin": { + "regexp-tree": "bin/regexp-tree" + } + }, + "node_modules/regjsparser": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.10.0.tgz", + "integrity": "sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/temp-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", + "engines": { + "node": ">=14.16" + } + }, + "node_modules/tempy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", + "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", + "dependencies": { + "is-stream": "^3.0.0", + "temp-dir": "^3.0.0", + "type-fest": "^2.12.2", + "unique-string": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/scripts/dbt-pack/package.json b/scripts/dbt-pack/package.json new file mode 100644 index 000000000..7cbcc058e --- /dev/null +++ b/scripts/dbt-pack/package.json @@ -0,0 +1,29 @@ +{ + "name": "dbt-pack", + "version": "1.0.0", + "description": "", + "bin": "index.js", + "main": "src/index.js", + "type": "module", + "scripts": { + "format": "prettier --write .", + "lint": "eslint .", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "execa": "^8.0.1", + "path-exists": "^5.0.0", + "tempy": "^3.1.0", + "yaml": "^2.3.4", + "yargs": "^17.7.2" + }, + "devDependencies": { + "eslint": "^8.54.0", + "eslint-config-prettier": "^9.0.0", + "eslint-plugin-unicorn": "^49.0.0", + "prettier": "^3.1.0" + } +} diff --git a/scripts/dbt-pack/src/index.js b/scripts/dbt-pack/src/index.js new file mode 100644 index 000000000..eac4ea8bf --- /dev/null +++ b/scripts/dbt-pack/src/index.js @@ -0,0 +1,125 @@ +import path from "node:path"; +import fs from "node:fs/promises"; +import { pathExists } from "path-exists"; +import { execa } from "execa"; +import { temporaryDirectoryTask } from "tempy"; +import { parse, stringify } from "yaml"; + +const validateProjectDirectory = async (dbtProjectDirectory) => { + if (!(await pathExists(dbtProjectDirectory))) { + throw new Error( + `dbt project directory '${dbtProjectDirectory}' does not exist`, + ); + } + if (!(await pathExists(`${dbtProjectDirectory}/dbt_project.yml`))) { + throw new Error( + `dbt project directory '${dbtProjectDirectory}' does not contain a dbt_project.yml file`, + ); + } + if (!(await pathExists(`${dbtProjectDirectory}/requirements.txt`))) { + throw new Error( + `dbt project directory '${dbtProjectDirectory}' does not contain a requirements.txt file`, + ); + } + if (!(await pathExists(`${dbtProjectDirectory}/manifest.json`))) { + throw new Error( + `dbt project directory '${dbtProjectDirectory}' does not contain a manifest.json file`, + ); + } +}; + +const compileDbtProject = async (dbtProjectDirectory) => { + const fullProjectDirectory = path.resolve(dbtProjectDirectory); + console.log(`Compiling dbt project in ${fullProjectDirectory}`); + await execa("dbt", ["compile"], { + cwd: fullProjectDirectory, + stdout: "inherit", + stderr: "inherit", + }); + console.log(`Done compiling dbt project in ${fullProjectDirectory}`); +}; + +const addDependencies = (node, allNodes, allMacros, filesToPack) => { + filesToPack.add(node.original_file_path); + const dependsOnNodes = node.depends_on?.nodes ?? []; + for (const dependency of dependsOnNodes) { + addDependencies(allNodes[dependency], allNodes, allMacros, filesToPack); + } + const dependsOnMacros = node.depends_on?.macros ?? []; + for (const macro of dependsOnMacros) { + addDependencies(allMacros[macro], allNodes, allMacros, filesToPack); + } +}; + +const analyzeManifestFile = async (dbtProjectDirectory) => { + console.log(`Reading manifest.json from ${dbtProjectDirectory}`); + const manifest = JSON.parse( + await fs.readFile(`${dbtProjectDirectory}/target/manifest.json`, "utf8"), + ); + const { nodes: allNodes, macros: allMacros } = manifest; + + const filesToPack = new Set(); + for (const node of Object.values(allNodes)) { + addDependencies(node, allNodes, allMacros, filesToPack); + } + return [...filesToPack]; +}; + +const getZipPath = (file) => { + const indexOfModels = file.indexOf("models/"); + if (indexOfModels >= 0) { + return file.slice(indexOfModels); + } + const indexOfMacros = file.indexOf("macros/"); + return file.slice(indexOfMacros); +}; + +const updateProjectConfig = async (configFile) => { + const config = parse(await fs.readFile(configFile, "utf8")); + config["model-paths"] = ["models"]; + config["macro-paths"] = ["macros"]; + await fs.writeFile(configFile, stringify(config)); +}; + +const zipProject = async (dbtProjectDirectory, filesToPack, ) => { + const projectManifest = JSON.parse(await fs.readFile(`${dbtProjectDirectory}/manifest.json`, "utf8")); + const outputFile = path.resolve(dbtProjectDirectory, projectManifest.path); + const withZipPaths = filesToPack.map((file) => { + const copyFrom = path.resolve(dbtProjectDirectory, file); + const copyTo = getZipPath(file); + return { copyFrom, copyTo }; + }); + const withProjectFiles = [ + ...withZipPaths, + { + copyFrom: path.resolve(dbtProjectDirectory, "dbt_project.yml"), + copyTo: "dbt_project.yml", + }, + { + copyFrom: path.resolve(dbtProjectDirectory, "requirements.txt"), + copyTo: "requirements.txt", + }, + ]; + console.log(`Packing ${withProjectFiles.length} files`); + await temporaryDirectoryTask(async (temporaryDirectory) => { + for (const { copyFrom, copyTo } of withProjectFiles) { + const copyToPath = path.resolve(temporaryDirectory, copyTo); + await fs.mkdir(path.dirname(copyToPath), { recursive: true }); + await fs.copyFile(copyFrom, copyToPath); + } + await updateProjectConfig(`${temporaryDirectory}/dbt_project.yml`); + await fs.mkdir(path.dirname(outputFile), { recursive: true }); + await execa("zip", ["-r", outputFile, "."], { + cwd: temporaryDirectory, + stdout: "inherit", + stderr: "inherit", + }); + }); +}; + +export const pack = async ({ projectDir }) => { + await validateProjectDirectory(projectDir); + await compileDbtProject(projectDir); + const filesToPack = await analyzeManifestFile(projectDir); + await zipProject(projectDir, filesToPack); +}; diff --git a/transformations/azure_compliance/.user.yml b/transformations/azure/compliance-free/.user.yml similarity index 100% rename from transformations/azure_compliance/.user.yml rename to transformations/azure/compliance-free/.user.yml diff --git a/transformations/azure_compliance/CHANGELOG-free.md b/transformations/azure/compliance-free/CHANGELOG.md similarity index 97% rename from transformations/azure_compliance/CHANGELOG-free.md rename to transformations/azure/compliance-free/CHANGELOG.md index a60f03144..8b487af60 100644 --- a/transformations/azure_compliance/CHANGELOG-free.md +++ b/transformations/azure/compliance-free/CHANGELOG.md @@ -31,4 +31,4 @@ ### Bug Fixes * CQ Configs in tests properly named ([#200](https://github.com/cloudquery/policies-premium/issues/200)) ([a406403](https://github.com/cloudquery/policies-premium/commit/a406403f61edb945afed9d589e93ffb56b22b8b8)) -* Update docs ([#227](https://github.com/cloudquery/policies-premium/issues/227)) ([440cc09](https://github.com/cloudquery/policies-premium/commit/440cc098fd077cf9f09595776932a1b1e8484d58)) +* Update docs ([#227](https://github.com/cloudquery/policies-premium/issues/227)) ([440cc09](https://github.com/cloudquery/policies-premium/commit/440cc098fd077cf9f09595776932a1b1e8484d58)) \ No newline at end of file diff --git a/transformations/azure_compliance/README-free.md b/transformations/azure/compliance-free/README.md similarity index 97% rename from transformations/azure_compliance/README-free.md rename to transformations/azure/compliance-free/README.md index 99f0d3249..356515c23 100644 --- a/transformations/azure_compliance/README-free.md +++ b/transformations/azure/compliance-free/README.md @@ -90,4 +90,4 @@ The pack contains the premium version. - **azure_compliance\_\_cis_v1_3_0.sql**: Azure Compliance CIS V1.3.0, available for PostgreSQL and Snowflake. -The free version contains 10% of the full pack's queries. +The free version contains 10% of the full pack's queries. \ No newline at end of file diff --git a/transformations/azure_compliance/analyses/.gitkeep b/transformations/azure/compliance-free/analyses/.gitkeep similarity index 100% rename from transformations/azure_compliance/analyses/.gitkeep rename to transformations/azure/compliance-free/analyses/.gitkeep diff --git a/transformations/azure_compliance/dbt_project.yml b/transformations/azure/compliance-free/dbt_project.yml similarity index 85% rename from transformations/azure_compliance/dbt_project.yml rename to transformations/azure/compliance-free/dbt_project.yml index fb59aebe6..ecf7c0c4f 100644 --- a/transformations/azure_compliance/dbt_project.yml +++ b/transformations/azure/compliance-free/dbt_project.yml @@ -1,25 +1,24 @@ - # Name your project! Project names should contain only lowercase characters # and underscores. A good package name should reflect your organization's # name or the intended use of these models -name: 'azure_compliance' -version: '1.0.0' +name: "azure_compliance" +version: "1.0.0" config-version: 2 # This setting configures which "profile" dbt uses for this project. -profile: 'azure_compliance' +profile: "azure_compliance" # These configurations specify where dbt should look for different types of files. # The `model-paths` config, for example, states that models in this project can be # found in the "models/" directory. You probably won't need to change these! -model-paths: ["models"] +model-paths: ["models", "../models"] analysis-paths: ["analyses"] test-paths: ["tests"] seed-paths: ["seeds"] -macro-paths: ["macros"] +macro-paths: ["../macros"] snapshot-paths: ["snapshots"] -clean-targets: # directories to be removed by `dbt clean` +clean-targets: # directories to be removed by `dbt clean` - "target" - "dbt_packages" @@ -34,7 +33,3 @@ models: # Config indicated by + and applies to all files under models/example/ # example: # +materialized: view - - - - diff --git a/transformations/azure_compliance/manifest-free.json b/transformations/azure/compliance-free/manifest.json similarity index 91% rename from transformations/azure_compliance/manifest-free.json rename to transformations/azure/compliance-free/manifest.json index f57f1ca2d..5abc11193 100644 --- a/transformations/azure_compliance/manifest-free.json +++ b/transformations/azure/compliance-free/manifest.json @@ -6,7 +6,7 @@ "addon_type": "transformation", "addon_format": "zip", "message": "@./changelog.md", - "doc": "./README-free.md", + "doc": "./README.md", "path": "./build/azure_compliance_free.zip", "plugin_deps": ["cloudquery/source/azure@v10.1.1"], "addon_deps": [] diff --git a/transformations/azure_compliance/models/free/azure_compliance__cis_v1_3_0_free.sql b/transformations/azure/compliance-free/models/azure_compliance__cis_v1_3_0_free.sql similarity index 100% rename from transformations/azure_compliance/models/free/azure_compliance__cis_v1_3_0_free.sql rename to transformations/azure/compliance-free/models/azure_compliance__cis_v1_3_0_free.sql diff --git a/transformations/azure_compliance/profiles.yml b/transformations/azure/compliance-free/profiles.yml similarity index 92% rename from transformations/azure_compliance/profiles.yml rename to transformations/azure/compliance-free/profiles.yml index cf5661f87..a87ed4d91 100644 --- a/transformations/azure_compliance/profiles.yml +++ b/transformations/azure/compliance-free/profiles.yml @@ -7,6 +7,6 @@ azure_compliance: # This should match the name in your dbt_project.yml user: postgres pass: pass port: 5432 - dbname: azure + dbname: postgres schema: public # default schema where dbt will build the models - threads: 1 # number of threads to use when running in parallel \ No newline at end of file + threads: 1 # number of threads to use when running in parallel diff --git a/transformations/azure_compliance/requirements.txt b/transformations/azure/compliance-free/requirements.txt similarity index 100% rename from transformations/azure_compliance/requirements.txt rename to transformations/azure/compliance-free/requirements.txt diff --git a/transformations/azure_compliance/seeds/.gitkeep b/transformations/azure/compliance-free/seeds/.gitkeep similarity index 100% rename from transformations/azure_compliance/seeds/.gitkeep rename to transformations/azure/compliance-free/seeds/.gitkeep diff --git a/transformations/azure_compliance/snapshots/.gitkeep b/transformations/azure/compliance-free/snapshots/.gitkeep similarity index 100% rename from transformations/azure_compliance/snapshots/.gitkeep rename to transformations/azure/compliance-free/snapshots/.gitkeep diff --git a/transformations/azure_compliance/tests/azure.yml b/transformations/azure/compliance-free/tests/azure.yml similarity index 87% rename from transformations/azure_compliance/tests/azure.yml rename to transformations/azure/compliance-free/tests/azure.yml index d50e8b2fb..8c973242c 100644 --- a/transformations/azure_compliance/tests/azure.yml +++ b/transformations/azure/compliance-free/tests/azure.yml @@ -2,6 +2,7 @@ kind: source spec: name: azure path: cloudquery/azure + registry: cloudquery version: "v10.2.0" # latest version of source azure plugin destinations: ["dest"] tables: ["*"] diff --git a/transformations/azure/compliance-free/tests/pg.yml b/transformations/azure/compliance-free/tests/pg.yml new file mode 100644 index 000000000..39d87e833 --- /dev/null +++ b/transformations/azure/compliance-free/tests/pg.yml @@ -0,0 +1,9 @@ +kind: destination +spec: + name: "dest" + path: "cloudquery/postgresql" + registry: cloudquery + version: "v7.1.0" # latest version of postgresql plugin + spec: + batch_size: 10000 + connection_string: ${CQ_DSN} diff --git a/transformations/azure_compliance/tests/profiles.yml b/transformations/azure/compliance-free/tests/profiles.yml similarity index 100% rename from transformations/azure_compliance/tests/profiles.yml rename to transformations/azure/compliance-free/tests/profiles.yml diff --git a/transformations/azure/compliance-premium/.user.yml b/transformations/azure/compliance-premium/.user.yml new file mode 100644 index 000000000..799daf2c8 --- /dev/null +++ b/transformations/azure/compliance-premium/.user.yml @@ -0,0 +1 @@ +id: cb0b95bc-a95d-4c42-8e3b-99fed029017f diff --git a/transformations/azure_compliance/CHANGELOG-premium.md b/transformations/azure/compliance-premium/CHANGELOG.md similarity index 96% rename from transformations/azure_compliance/CHANGELOG-premium.md rename to transformations/azure/compliance-premium/CHANGELOG.md index a33edb6c7..874888b2b 100644 --- a/transformations/azure_compliance/CHANGELOG-premium.md +++ b/transformations/azure/compliance-premium/CHANGELOG.md @@ -35,4 +35,4 @@ ### Miscellaneous Chores -* release 0.0.1 ([440cc09](https://github.com/cloudquery/policies-premium/commit/440cc098fd077cf9f09595776932a1b1e8484d58)) +* release 0.0.1 ([440cc09](https://github.com/cloudquery/policies-premium/commit/440cc098fd077cf9f09595776932a1b1e8484d58)) \ No newline at end of file diff --git a/transformations/azure_compliance/README-premium.md b/transformations/azure/compliance-premium/README.md similarity index 98% rename from transformations/azure_compliance/README-premium.md rename to transformations/azure/compliance-premium/README.md index 6e752e26b..9b42b4042 100644 --- a/transformations/azure_compliance/README-premium.md +++ b/transformations/azure/compliance-premium/README.md @@ -111,4 +111,4 @@ The pack contains the premium version. - **azure_compliance\_\_cis_v1_3_0.sql**: Azure Compliance CIS V1.3.0, available for PostgreSQL and Snowflake. -The premium version contains all queries. +The premium version contains all queries. \ No newline at end of file diff --git a/transformations/azure_compliance/tests/.gitkeep b/transformations/azure/compliance-premium/analyses/.gitkeep similarity index 100% rename from transformations/azure_compliance/tests/.gitkeep rename to transformations/azure/compliance-premium/analyses/.gitkeep diff --git a/transformations/azure/compliance-premium/dbt_project.yml b/transformations/azure/compliance-premium/dbt_project.yml new file mode 100644 index 000000000..ecf7c0c4f --- /dev/null +++ b/transformations/azure/compliance-premium/dbt_project.yml @@ -0,0 +1,35 @@ +# Name your project! Project names should contain only lowercase characters +# and underscores. A good package name should reflect your organization's +# name or the intended use of these models +name: "azure_compliance" +version: "1.0.0" +config-version: 2 + +# This setting configures which "profile" dbt uses for this project. +profile: "azure_compliance" + +# These configurations specify where dbt should look for different types of files. +# The `model-paths` config, for example, states that models in this project can be +# found in the "models/" directory. You probably won't need to change these! +model-paths: ["models", "../models"] +analysis-paths: ["analyses"] +test-paths: ["tests"] +seed-paths: ["seeds"] +macro-paths: ["../macros"] +snapshot-paths: ["snapshots"] + +clean-targets: # directories to be removed by `dbt clean` + - "target" + - "dbt_packages" + +# Configuring models +# Full documentation: https://docs.getdbt.com/docs/configuring-models + +# In this example config, we tell dbt to build all models in the example/ +# directory as views. These settings can be overridden in the individual model +# files using the `{{ config(...) }}` macro. +models: + azure_compliance: + # Config indicated by + and applies to all files under models/example/ + # example: + # +materialized: view diff --git a/transformations/azure_compliance/manifest-premium.json b/transformations/azure/compliance-premium/manifest.json similarity index 91% rename from transformations/azure_compliance/manifest-premium.json rename to transformations/azure/compliance-premium/manifest.json index ffc55f95b..488bac506 100644 --- a/transformations/azure_compliance/manifest-premium.json +++ b/transformations/azure/compliance-premium/manifest.json @@ -6,7 +6,7 @@ "addon_type": "transformation", "addon_format": "zip", "message": "@./changelog.md", - "doc": "./README-premium.md", + "doc": "./README.md", "path": "./build/azure_compliance_premium.zip", "plugin_deps": ["cloudquery/source/azure@v10.1.1"], "addon_deps": [] diff --git a/transformations/azure_compliance/models/pro/azure_compliance__cis_v1_3_0.sql b/transformations/azure/compliance-premium/models/azure_compliance__cis_v1_3_0.sql similarity index 100% rename from transformations/azure_compliance/models/pro/azure_compliance__cis_v1_3_0.sql rename to transformations/azure/compliance-premium/models/azure_compliance__cis_v1_3_0.sql diff --git a/transformations/azure/compliance-premium/profiles.yml b/transformations/azure/compliance-premium/profiles.yml new file mode 100644 index 000000000..a87ed4d91 --- /dev/null +++ b/transformations/azure/compliance-premium/profiles.yml @@ -0,0 +1,12 @@ +azure_compliance: # This should match the name in your dbt_project.yml + target: dev + outputs: + dev: + type: postgres + host: 127.0.0.1 + user: postgres + pass: pass + port: 5432 + dbname: postgres + schema: public # default schema where dbt will build the models + threads: 1 # number of threads to use when running in parallel diff --git a/transformations/azure/compliance-premium/requirements.txt b/transformations/azure/compliance-premium/requirements.txt new file mode 100644 index 000000000..0f7b1a545 --- /dev/null +++ b/transformations/azure/compliance-premium/requirements.txt @@ -0,0 +1 @@ +dbt-postgres==1.6.6 diff --git a/transformations/azure/compliance-premium/seeds/.gitkeep b/transformations/azure/compliance-premium/seeds/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/transformations/azure/compliance-premium/snapshots/.gitkeep b/transformations/azure/compliance-premium/snapshots/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/transformations/azure/compliance-premium/tests/azure.yml b/transformations/azure/compliance-premium/tests/azure.yml new file mode 100644 index 000000000..8c973242c --- /dev/null +++ b/transformations/azure/compliance-premium/tests/azure.yml @@ -0,0 +1,8 @@ +kind: source +spec: + name: azure + path: cloudquery/azure + registry: cloudquery + version: "v10.2.0" # latest version of source azure plugin + destinations: ["dest"] + tables: ["*"] diff --git a/transformations/azure/compliance-premium/tests/pg.yml b/transformations/azure/compliance-premium/tests/pg.yml new file mode 100644 index 000000000..39d87e833 --- /dev/null +++ b/transformations/azure/compliance-premium/tests/pg.yml @@ -0,0 +1,9 @@ +kind: destination +spec: + name: "dest" + path: "cloudquery/postgresql" + registry: cloudquery + version: "v7.1.0" # latest version of postgresql plugin + spec: + batch_size: 10000 + connection_string: ${CQ_DSN} diff --git a/transformations/azure/compliance-premium/tests/profiles.yml b/transformations/azure/compliance-premium/tests/profiles.yml new file mode 100644 index 000000000..6282258da --- /dev/null +++ b/transformations/azure/compliance-premium/tests/profiles.yml @@ -0,0 +1,23 @@ +azure_compliance: # This should match the name in your dbt_project.yml + target: dev + outputs: + dev-snowflake: + type: snowflake + account: "{{ env_var('SNOW_ACCOUNT') }}" + + # User/password auth + user: "{{ env_var('SNOW_USER') }}" + password: "{{ env_var('SNOW_PASSWORD') }}" + + database: "{{ env_var('SNOW_DATABASE') }}" + warehouse: "{{ env_var('SNOW_WAREHOUSE') }}" + schema: "{{ env_var('SNOW_SCHEMA') }}" + dev-pg: + type: postgres + host: 127.0.0.1 + user: postgres + pass: pass + port: 5432 + dbname: postgres + schema: public # default schema where dbt will build the models + threads: 1 # number of threads to use when running in parallel \ No newline at end of file diff --git a/transformations/azure_compliance/macros/pro/account/locations_without_network_watchers.sql b/transformations/azure/macros/account/locations_without_network_watchers.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/account/locations_without_network_watchers.sql rename to transformations/azure/macros/account/locations_without_network_watchers.sql diff --git a/transformations/azure_compliance/macros/pro/authorization/custom_roles.sql b/transformations/azure/macros/authorization/custom_roles.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/authorization/custom_roles.sql rename to transformations/azure/macros/authorization/custom_roles.sql diff --git a/transformations/azure_compliance/macros/pro/authorization/subscriptions_with_less_than_2_owners.sql b/transformations/azure/macros/authorization/subscriptions_with_less_than_2_owners.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/authorization/subscriptions_with_less_than_2_owners.sql rename to transformations/azure/macros/authorization/subscriptions_with_less_than_2_owners.sql diff --git a/transformations/azure_compliance/macros/pro/authorization/subscriptions_with_more_than_3_owners.sql b/transformations/azure/macros/authorization/subscriptions_with_more_than_3_owners.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/authorization/subscriptions_with_more_than_3_owners.sql rename to transformations/azure/macros/authorization/subscriptions_with_more_than_3_owners.sql diff --git a/transformations/azure_compliance/macros/pro/batch/resource_logs_in_batch_accounts_should_be_enabled.sql b/transformations/azure/macros/batch/resource_logs_in_batch_accounts_should_be_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/batch/resource_logs_in_batch_accounts_should_be_enabled.sql rename to transformations/azure/macros/batch/resource_logs_in_batch_accounts_should_be_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/compute/asc_missingsystemupdates_audit.sql b/transformations/azure/macros/compute/asc_missingsystemupdates_audit.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/asc_missingsystemupdates_audit.sql rename to transformations/azure/macros/compute/asc_missingsystemupdates_audit.sql diff --git a/transformations/azure_compliance/macros/pro/compute/audit_virtual_machines_without_disaster_recovery_configured.sql b/transformations/azure/macros/compute/audit_virtual_machines_without_disaster_recovery_configured.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/audit_virtual_machines_without_disaster_recovery_configured.sql rename to transformations/azure/macros/compute/audit_virtual_machines_without_disaster_recovery_configured.sql diff --git a/transformations/azure_compliance/macros/pro/compute/endpoint_protection_solution_should_be_installed_on_virtual_machine_scale_sets.sql b/transformations/azure/macros/compute/endpoint_protection_solution_should_be_installed_on_virtual_machine_scale_sets.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/endpoint_protection_solution_should_be_installed_on_virtual_machine_scale_sets.sql rename to transformations/azure/macros/compute/endpoint_protection_solution_should_be_installed_on_virtual_machine_scale_sets.sql diff --git a/transformations/azure_compliance/macros/pro/compute/guestconfiguration_windowsloganalyticsagentconnection_aine.sql b/transformations/azure/macros/compute/guestconfiguration_windowsloganalyticsagentconnection_aine.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/guestconfiguration_windowsloganalyticsagentconnection_aine.sql rename to transformations/azure/macros/compute/guestconfiguration_windowsloganalyticsagentconnection_aine.sql diff --git a/transformations/azure_compliance/macros/free/compute/internet-facing_virtual_machines_should_be_protected_with_network_security_groups.sql b/transformations/azure/macros/compute/internet-facing_virtual_machines_should_be_protected_with_network_security_groups.sql similarity index 100% rename from transformations/azure_compliance/macros/free/compute/internet-facing_virtual_machines_should_be_protected_with_network_security_groups.sql rename to transformations/azure/macros/compute/internet-facing_virtual_machines_should_be_protected_with_network_security_groups.sql diff --git a/transformations/azure_compliance/macros/pro/compute/linux_machines_without_data_collection_agent.sql b/transformations/azure/macros/compute/linux_machines_without_data_collection_agent.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/linux_machines_without_data_collection_agent.sql rename to transformations/azure/macros/compute/linux_machines_without_data_collection_agent.sql diff --git a/transformations/azure_compliance/macros/pro/compute/machines_without_log_analytics_agent.sql b/transformations/azure/macros/compute/machines_without_log_analytics_agent.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/machines_without_log_analytics_agent.sql rename to transformations/azure/macros/compute/machines_without_log_analytics_agent.sql diff --git a/transformations/azure_compliance/macros/pro/compute/machines_without_vulnerability_assessment_extension.sql b/transformations/azure/macros/compute/machines_without_vulnerability_assessment_extension.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/machines_without_vulnerability_assessment_extension.sql rename to transformations/azure/macros/compute/machines_without_vulnerability_assessment_extension.sql diff --git a/transformations/azure_compliance/macros/pro/compute/monitor_missing_endpoint_protection_in_azure_security_center.sql b/transformations/azure/macros/compute/monitor_missing_endpoint_protection_in_azure_security_center.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/monitor_missing_endpoint_protection_in_azure_security_center.sql rename to transformations/azure/macros/compute/monitor_missing_endpoint_protection_in_azure_security_center.sql diff --git a/transformations/azure_compliance/macros/pro/compute/os_and_data_disks_encrypted_with_cmk.sql b/transformations/azure/macros/compute/os_and_data_disks_encrypted_with_cmk.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/os_and_data_disks_encrypted_with_cmk.sql rename to transformations/azure/macros/compute/os_and_data_disks_encrypted_with_cmk.sql diff --git a/transformations/azure_compliance/macros/pro/compute/scale_sets_without_log_analytics_agent.sql b/transformations/azure/macros/compute/scale_sets_without_log_analytics_agent.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/scale_sets_without_log_analytics_agent.sql rename to transformations/azure/macros/compute/scale_sets_without_log_analytics_agent.sql diff --git a/transformations/azure_compliance/macros/pro/compute/unattached_disks_are_encrypted_with_cmk.sql b/transformations/azure/macros/compute/unattached_disks_are_encrypted_with_cmk.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/unattached_disks_are_encrypted_with_cmk.sql rename to transformations/azure/macros/compute/unattached_disks_are_encrypted_with_cmk.sql diff --git a/transformations/azure_compliance/macros/pro/compute/vhds_not_encrypted.sql b/transformations/azure/macros/compute/vhds_not_encrypted.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/vhds_not_encrypted.sql rename to transformations/azure/macros/compute/vhds_not_encrypted.sql diff --git a/transformations/azure_compliance/macros/pro/compute/virtual_machine_scale_sets_without_logs.sql b/transformations/azure/macros/compute/virtual_machine_scale_sets_without_logs.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/virtual_machine_scale_sets_without_logs.sql rename to transformations/azure/macros/compute/virtual_machine_scale_sets_without_logs.sql diff --git a/transformations/azure_compliance/macros/free/compute/virtual_machines_without_jit_network_access_policy.sql b/transformations/azure/macros/compute/virtual_machines_without_jit_network_access_policy.sql similarity index 100% rename from transformations/azure_compliance/macros/free/compute/virtual_machines_without_jit_network_access_policy.sql rename to transformations/azure/macros/compute/virtual_machines_without_jit_network_access_policy.sql diff --git a/transformations/azure_compliance/macros/pro/compute/virtualmachines_antimalwareautoupdate_auditifnotexists.sql b/transformations/azure/macros/compute/virtualmachines_antimalwareautoupdate_auditifnotexists.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/virtualmachines_antimalwareautoupdate_auditifnotexists.sql rename to transformations/azure/macros/compute/virtualmachines_antimalwareautoupdate_auditifnotexists.sql diff --git a/transformations/azure_compliance/macros/pro/compute/vmantimalwareextension_deploy.sql b/transformations/azure/macros/compute/vmantimalwareextension_deploy.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/vmantimalwareextension_deploy.sql rename to transformations/azure/macros/compute/vmantimalwareextension_deploy.sql diff --git a/transformations/azure_compliance/macros/pro/compute/vms_no_resource_manager.sql b/transformations/azure/macros/compute/vms_no_resource_manager.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/vms_no_resource_manager.sql rename to transformations/azure/macros/compute/vms_no_resource_manager.sql diff --git a/transformations/azure_compliance/macros/pro/compute/vms_utilizing_managed_disks.sql b/transformations/azure/macros/compute/vms_utilizing_managed_disks.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/vms_utilizing_managed_disks.sql rename to transformations/azure/macros/compute/vms_utilizing_managed_disks.sql diff --git a/transformations/azure_compliance/macros/free/compute/vms_without_approved_networks.sql b/transformations/azure/macros/compute/vms_without_approved_networks.sql similarity index 100% rename from transformations/azure_compliance/macros/free/compute/vms_without_approved_networks.sql rename to transformations/azure/macros/compute/vms_without_approved_networks.sql diff --git a/transformations/azure_compliance/macros/pro/compute/windows_machines_without_data_collection_agent.sql b/transformations/azure/macros/compute/windows_machines_without_data_collection_agent.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/compute/windows_machines_without_data_collection_agent.sql rename to transformations/azure/macros/compute/windows_machines_without_data_collection_agent.sql diff --git a/transformations/azure_compliance/macros/pro/container/aks_rbac_disabled.sql b/transformations/azure/macros/container/aks_rbac_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/container/aks_rbac_disabled.sql rename to transformations/azure/macros/container/aks_rbac_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/container/containers_without_virtual_service_endpoint.sql b/transformations/azure/macros/container/containers_without_virtual_service_endpoint.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/container/containers_without_virtual_service_endpoint.sql rename to transformations/azure/macros/container/containers_without_virtual_service_endpoint.sql diff --git a/transformations/azure_compliance/macros/free/cosmosdb/cosmos_db_should_use_a_virtual_network_service_endpoint.sql b/transformations/azure/macros/cosmosdb/cosmos_db_should_use_a_virtual_network_service_endpoint.sql similarity index 100% rename from transformations/azure_compliance/macros/free/cosmosdb/cosmos_db_should_use_a_virtual_network_service_endpoint.sql rename to transformations/azure/macros/cosmosdb/cosmos_db_should_use_a_virtual_network_service_endpoint.sql diff --git a/transformations/azure_compliance/macros/pro/datalake/datalake_analytics_accounts_with_disabled_logging.sql b/transformations/azure/macros/datalake/datalake_analytics_accounts_with_disabled_logging.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/datalake/datalake_analytics_accounts_with_disabled_logging.sql rename to transformations/azure/macros/datalake/datalake_analytics_accounts_with_disabled_logging.sql diff --git a/transformations/azure_compliance/macros/pro/datalake/datalake_storage_accounts_with_disabled_logging.sql b/transformations/azure/macros/datalake/datalake_storage_accounts_with_disabled_logging.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/datalake/datalake_storage_accounts_with_disabled_logging.sql rename to transformations/azure/macros/datalake/datalake_storage_accounts_with_disabled_logging.sql diff --git a/transformations/azure_compliance/macros/pro/datalake/not_encrypted_storage_accounts.sql b/transformations/azure/macros/datalake/not_encrypted_storage_accounts.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/datalake/not_encrypted_storage_accounts.sql rename to transformations/azure/macros/datalake/not_encrypted_storage_accounts.sql diff --git a/transformations/azure_compliance/macros/free/eventhub/event_hub_should_use_a_virtual_network_service_endpoint.sql b/transformations/azure/macros/eventhub/event_hub_should_use_a_virtual_network_service_endpoint.sql similarity index 100% rename from transformations/azure_compliance/macros/free/eventhub/event_hub_should_use_a_virtual_network_service_endpoint.sql rename to transformations/azure/macros/eventhub/event_hub_should_use_a_virtual_network_service_endpoint.sql diff --git a/transformations/azure_compliance/macros/pro/eventhub/namespaces_without_logging.sql b/transformations/azure/macros/eventhub/namespaces_without_logging.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/eventhub/namespaces_without_logging.sql rename to transformations/azure/macros/eventhub/namespaces_without_logging.sql diff --git a/transformations/azure_compliance/macros/free/iam/custom_subscription_owner_roles.sql b/transformations/azure/macros/iam/custom_subscription_owner_roles.sql similarity index 100% rename from transformations/azure_compliance/macros/free/iam/custom_subscription_owner_roles.sql rename to transformations/azure/macros/iam/custom_subscription_owner_roles.sql diff --git a/transformations/azure_compliance/macros/pro/iam/deprecated_accounts_with_owner_permissions.sql b/transformations/azure/macros/iam/deprecated_accounts_with_owner_permissions.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/iam/deprecated_accounts_with_owner_permissions.sql rename to transformations/azure/macros/iam/deprecated_accounts_with_owner_permissions.sql diff --git a/transformations/azure_compliance/macros/pro/iam/external_users_with_owner_role.sql b/transformations/azure/macros/iam/external_users_with_owner_role.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/iam/external_users_with_owner_role.sql rename to transformations/azure/macros/iam/external_users_with_owner_role.sql diff --git a/transformations/azure_compliance/macros/pro/iothub/resource_logs_in_iot_hub_should_be_enabled.sql b/transformations/azure/macros/iothub/resource_logs_in_iot_hub_should_be_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/iothub/resource_logs_in_iot_hub_should_be_enabled.sql rename to transformations/azure/macros/iothub/resource_logs_in_iot_hub_should_be_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/keyvault/azure_key_vault_managed_hsm_should_have_purge_protection_enabled.sql b/transformations/azure/macros/keyvault/azure_key_vault_managed_hsm_should_have_purge_protection_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/keyvault/azure_key_vault_managed_hsm_should_have_purge_protection_enabled.sql rename to transformations/azure/macros/keyvault/azure_key_vault_managed_hsm_should_have_purge_protection_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/keyvault/hsms_without_logging.sql b/transformations/azure/macros/keyvault/hsms_without_logging.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/keyvault/hsms_without_logging.sql rename to transformations/azure/macros/keyvault/hsms_without_logging.sql diff --git a/transformations/azure_compliance/macros/pro/keyvault/keys_without_expiration_date.sql b/transformations/azure/macros/keyvault/keys_without_expiration_date.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/keyvault/keys_without_expiration_date.sql rename to transformations/azure/macros/keyvault/keys_without_expiration_date.sql diff --git a/transformations/azure_compliance/macros/pro/keyvault/not_recoverable.sql b/transformations/azure/macros/keyvault/not_recoverable.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/keyvault/not_recoverable.sql rename to transformations/azure/macros/keyvault/not_recoverable.sql diff --git a/transformations/azure_compliance/macros/pro/keyvault/secrets_without_expiration_date.sql b/transformations/azure/macros/keyvault/secrets_without_expiration_date.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/keyvault/secrets_without_expiration_date.sql rename to transformations/azure/macros/keyvault/secrets_without_expiration_date.sql diff --git a/transformations/azure_compliance/macros/free/keyvault/vaults_with_no_service_endpoint.sql b/transformations/azure/macros/keyvault/vaults_with_no_service_endpoint.sql similarity index 100% rename from transformations/azure_compliance/macros/free/keyvault/vaults_with_no_service_endpoint.sql rename to transformations/azure/macros/keyvault/vaults_with_no_service_endpoint.sql diff --git a/transformations/azure_compliance/macros/pro/keyvault/vaults_without_logging.sql b/transformations/azure/macros/keyvault/vaults_without_logging.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/keyvault/vaults_without_logging.sql rename to transformations/azure/macros/keyvault/vaults_without_logging.sql diff --git a/transformations/azure_compliance/macros/pro/logic/app_workflow_logging_enabled.sql b/transformations/azure/macros/logic/app_workflow_logging_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/logic/app_workflow_logging_enabled.sql rename to transformations/azure/macros/logic/app_workflow_logging_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/activitylog_administrativeoperations_audit.sql b/transformations/azure/macros/monitor/activitylog_administrativeoperations_audit.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/activitylog_administrativeoperations_audit.sql rename to transformations/azure/macros/monitor/activitylog_administrativeoperations_audit.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/azure_monitor_log_profile_should_collect_logs_for_categories_write_delete_and_action.sql b/transformations/azure/macros/monitor/azure_monitor_log_profile_should_collect_logs_for_categories_write_delete_and_action.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/azure_monitor_log_profile_should_collect_logs_for_categories_write_delete_and_action.sql rename to transformations/azure/macros/monitor/azure_monitor_log_profile_should_collect_logs_for_categories_write_delete_and_action.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/azure_monitor_should_collect_activity_logs_from_all_regions.sql b/transformations/azure/macros/monitor/azure_monitor_should_collect_activity_logs_from_all_regions.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/azure_monitor_should_collect_activity_logs_from_all_regions.sql rename to transformations/azure/macros/monitor/azure_monitor_should_collect_activity_logs_from_all_regions.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/diagnostic_logs_for_all_services.sql b/transformations/azure/macros/monitor/diagnostic_logs_for_all_services.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/diagnostic_logs_for_all_services.sql rename to transformations/azure/macros/monitor/diagnostic_logs_for_all_services.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/insufficient_diagnostic_capturing_settings.sql b/transformations/azure/macros/monitor/insufficient_diagnostic_capturing_settings.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/insufficient_diagnostic_capturing_settings.sql rename to transformations/azure/macros/monitor/insufficient_diagnostic_capturing_settings.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_or_update_network_sg.sql b/transformations/azure/macros/monitor/log_alert_for_create_or_update_network_sg.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_or_update_network_sg.sql rename to transformations/azure/macros/monitor/log_alert_for_create_or_update_network_sg.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_or_update_network_sg_rule.sql b/transformations/azure/macros/monitor/log_alert_for_create_or_update_network_sg_rule.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_or_update_network_sg_rule.sql rename to transformations/azure/macros/monitor/log_alert_for_create_or_update_network_sg_rule.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_or_update_or_delete_sql_server_firewall_rule.sql b/transformations/azure/macros/monitor/log_alert_for_create_or_update_or_delete_sql_server_firewall_rule.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_or_update_or_delete_sql_server_firewall_rule.sql rename to transformations/azure/macros/monitor/log_alert_for_create_or_update_or_delete_sql_server_firewall_rule.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_or_update_security_solution.sql b/transformations/azure/macros/monitor/log_alert_for_create_or_update_security_solution.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_or_update_security_solution.sql rename to transformations/azure/macros/monitor/log_alert_for_create_or_update_security_solution.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_policy_assignment.sql b/transformations/azure/macros/monitor/log_alert_for_create_policy_assignment.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_create_policy_assignment.sql rename to transformations/azure/macros/monitor/log_alert_for_create_policy_assignment.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_delete_network_sg.sql b/transformations/azure/macros/monitor/log_alert_for_delete_network_sg.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_delete_network_sg.sql rename to transformations/azure/macros/monitor/log_alert_for_delete_network_sg.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_delete_network_sg_rule.sql b/transformations/azure/macros/monitor/log_alert_for_delete_network_sg_rule.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_delete_network_sg_rule.sql rename to transformations/azure/macros/monitor/log_alert_for_delete_network_sg_rule.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_delete_policy_assignment.sql b/transformations/azure/macros/monitor/log_alert_for_delete_policy_assignment.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_delete_policy_assignment.sql rename to transformations/azure/macros/monitor/log_alert_for_delete_policy_assignment.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/log_alert_for_delete_security_solution.sql b/transformations/azure/macros/monitor/log_alert_for_delete_security_solution.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/log_alert_for_delete_security_solution.sql rename to transformations/azure/macros/monitor/log_alert_for_delete_security_solution.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/logging_key_valut_is_enabled.sql b/transformations/azure/macros/monitor/logging_key_valut_is_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/logging_key_valut_is_enabled.sql rename to transformations/azure/macros/monitor/logging_key_valut_is_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/monitor/no_diagnostic_setting.sql b/transformations/azure/macros/monitor/no_diagnostic_setting.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/monitor/no_diagnostic_setting.sql rename to transformations/azure/macros/monitor/no_diagnostic_setting.sql diff --git a/transformations/azure_compliance/macros/pro/mysql/enforce_ssl_connection_should_be_enabled_for_mysql_database_servers.sql b/transformations/azure/macros/mysql/enforce_ssl_connection_should_be_enabled_for_mysql_database_servers.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/mysql/enforce_ssl_connection_should_be_enabled_for_mysql_database_servers.sql rename to transformations/azure/macros/mysql/enforce_ssl_connection_should_be_enabled_for_mysql_database_servers.sql diff --git a/transformations/azure_compliance/macros/pro/network/asc_unprotectedendpoints_audit.sql b/transformations/azure/macros/network/asc_unprotectedendpoints_audit.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/asc_unprotectedendpoints_audit.sql rename to transformations/azure/macros/network/asc_unprotectedendpoints_audit.sql diff --git a/transformations/azure_compliance/macros/pro/network/gateway_subnets_should_not_be_configured_with_a_network_security_group.sql b/transformations/azure/macros/network/gateway_subnets_should_not_be_configured_with_a_network_security_group.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/gateway_subnets_should_not_be_configured_with_a_network_security_group.sql rename to transformations/azure/macros/network/gateway_subnets_should_not_be_configured_with_a_network_security_group.sql diff --git a/transformations/azure_compliance/macros/pro/network/networkwatcher_deploy.sql b/transformations/azure/macros/network/networkwatcher_deploy.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/networkwatcher_deploy.sql rename to transformations/azure/macros/network/networkwatcher_deploy.sql diff --git a/transformations/azure_compliance/macros/pro/network/nsg_log_retention_period.sql b/transformations/azure/macros/network/nsg_log_retention_period.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/nsg_log_retention_period.sql rename to transformations/azure/macros/network/nsg_log_retention_period.sql diff --git a/transformations/azure_compliance/macros/pro/network/nsg_rules_ports.sql b/transformations/azure/macros/network/nsg_rules_ports.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/nsg_rules_ports.sql rename to transformations/azure/macros/network/nsg_rules_ports.sql diff --git a/transformations/azure_compliance/macros/pro/network/rdp_access_permitted.sql b/transformations/azure/macros/network/rdp_access_permitted.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/rdp_access_permitted.sql rename to transformations/azure/macros/network/rdp_access_permitted.sql diff --git a/transformations/azure_compliance/macros/pro/network/rdp_services_are_restricted_from_the_internet.sql b/transformations/azure/macros/network/rdp_services_are_restricted_from_the_internet.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/rdp_services_are_restricted_from_the_internet.sql rename to transformations/azure/macros/network/rdp_services_are_restricted_from_the_internet.sql diff --git a/transformations/azure_compliance/macros/pro/network/security_groups_with_open_management_ports.sql b/transformations/azure/macros/network/security_groups_with_open_management_ports.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/security_groups_with_open_management_ports.sql rename to transformations/azure/macros/network/security_groups_with_open_management_ports.sql diff --git a/transformations/azure_compliance/macros/pro/network/securtiy_group_flow_log_retention_less_than_90_days.sql b/transformations/azure/macros/network/securtiy_group_flow_log_retention_less_than_90_days.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/securtiy_group_flow_log_retention_less_than_90_days.sql rename to transformations/azure/macros/network/securtiy_group_flow_log_retention_less_than_90_days.sql diff --git a/transformations/azure_compliance/macros/pro/network/sql_database_allow_ingress.sql b/transformations/azure/macros/network/sql_database_allow_ingress.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/sql_database_allow_ingress.sql rename to transformations/azure/macros/network/sql_database_allow_ingress.sql diff --git a/transformations/azure_compliance/macros/pro/network/ssh_access_permitted.sql b/transformations/azure/macros/network/ssh_access_permitted.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/ssh_access_permitted.sql rename to transformations/azure/macros/network/ssh_access_permitted.sql diff --git a/transformations/azure_compliance/macros/pro/network/ssh_services_are_restricted_from_the_internet.sql b/transformations/azure/macros/network/ssh_services_are_restricted_from_the_internet.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/ssh_services_are_restricted_from_the_internet.sql rename to transformations/azure/macros/network/ssh_services_are_restricted_from_the_internet.sql diff --git a/transformations/azure_compliance/macros/free/network/subnets_without_nsg_associated.sql b/transformations/azure/macros/network/subnets_without_nsg_associated.sql similarity index 100% rename from transformations/azure_compliance/macros/free/network/subnets_without_nsg_associated.sql rename to transformations/azure/macros/network/subnets_without_nsg_associated.sql diff --git a/transformations/azure_compliance/macros/pro/network/udp_services_are_restricted_from_the_internet.sql b/transformations/azure/macros/network/udp_services_are_restricted_from_the_internet.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/udp_services_are_restricted_from_the_internet.sql rename to transformations/azure/macros/network/udp_services_are_restricted_from_the_internet.sql diff --git a/transformations/azure_compliance/macros/pro/network/udp_services_permitted.sql b/transformations/azure/macros/network/udp_services_permitted.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/udp_services_permitted.sql rename to transformations/azure/macros/network/udp_services_permitted.sql diff --git a/transformations/azure_compliance/macros/pro/network/virtualnetworkserviceendpoint_appservice_auditifnotexists.sql b/transformations/azure/macros/network/virtualnetworkserviceendpoint_appservice_auditifnotexists.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/network/virtualnetworkserviceendpoint_appservice_auditifnotexists.sql rename to transformations/azure/macros/network/virtualnetworkserviceendpoint_appservice_auditifnotexists.sql diff --git a/transformations/azure_compliance/macros/pro/postgresql/enforce_ssl_connection_should_be_enabled_for_postgresql_database_servers.sql b/transformations/azure/macros/postgresql/enforce_ssl_connection_should_be_enabled_for_postgresql_database_servers.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/postgresql/enforce_ssl_connection_should_be_enabled_for_postgresql_database_servers.sql rename to transformations/azure/macros/postgresql/enforce_ssl_connection_should_be_enabled_for_postgresql_database_servers.sql diff --git a/transformations/azure_compliance/macros/pro/redis/only_secure_connections_to_your_azure_cache_for_redis_should_be_enabled.sql b/transformations/azure/macros/redis/only_secure_connections_to_your_azure_cache_for_redis_should_be_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/redis/only_secure_connections_to_your_azure_cache_for_redis_should_be_enabled.sql rename to transformations/azure/macros/redis/only_secure_connections_to_your_azure_cache_for_redis_should_be_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/search/resource_logs_in_search_services_should_be_enabled.sql b/transformations/azure/macros/search/resource_logs_in_search_services_should_be_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/search/resource_logs_in_search_services_should_be_enabled.sql rename to transformations/azure/macros/search/resource_logs_in_search_services_should_be_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/security/asc_automatic_provisioning_log_analytics_monitoring_agent.sql b/transformations/azure/macros/security/asc_automatic_provisioning_log_analytics_monitoring_agent.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/security/asc_automatic_provisioning_log_analytics_monitoring_agent.sql rename to transformations/azure/macros/security/asc_automatic_provisioning_log_analytics_monitoring_agent.sql diff --git a/transformations/azure_compliance/macros/pro/security/auto_provisioning_monitoring_agent_enabled.sql b/transformations/azure/macros/security/auto_provisioning_monitoring_agent_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/security/auto_provisioning_monitoring_agent_enabled.sql rename to transformations/azure/macros/security/auto_provisioning_monitoring_agent_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/security/default_policy_disabled.sql b/transformations/azure/macros/security/default_policy_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/security/default_policy_disabled.sql rename to transformations/azure/macros/security/default_policy_disabled.sql diff --git a/transformations/azure_compliance/macros/free/security/defender_on_for_app_service.sql b/transformations/azure/macros/security/defender_on_for_app_service.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/defender_on_for_app_service.sql rename to transformations/azure/macros/security/defender_on_for_app_service.sql diff --git a/transformations/azure_compliance/macros/free/security/defender_on_for_container_registeries.sql b/transformations/azure/macros/security/defender_on_for_container_registeries.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/defender_on_for_container_registeries.sql rename to transformations/azure/macros/security/defender_on_for_container_registeries.sql diff --git a/transformations/azure_compliance/macros/free/security/defender_on_for_k8s.sql b/transformations/azure/macros/security/defender_on_for_k8s.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/defender_on_for_k8s.sql rename to transformations/azure/macros/security/defender_on_for_k8s.sql diff --git a/transformations/azure_compliance/macros/free/security/defender_on_for_key_vault.sql b/transformations/azure/macros/security/defender_on_for_key_vault.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/defender_on_for_key_vault.sql rename to transformations/azure/macros/security/defender_on_for_key_vault.sql diff --git a/transformations/azure_compliance/macros/free/security/defender_on_for_servers.sql b/transformations/azure/macros/security/defender_on_for_servers.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/defender_on_for_servers.sql rename to transformations/azure/macros/security/defender_on_for_servers.sql diff --git a/transformations/azure_compliance/macros/free/security/defender_on_for_sql_servers.sql b/transformations/azure/macros/security/defender_on_for_sql_servers.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/defender_on_for_sql_servers.sql rename to transformations/azure/macros/security/defender_on_for_sql_servers.sql diff --git a/transformations/azure_compliance/macros/free/security/defender_on_for_sql_servers_on_machines.sql b/transformations/azure/macros/security/defender_on_for_sql_servers_on_machines.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/defender_on_for_sql_servers_on_machines.sql rename to transformations/azure/macros/security/defender_on_for_sql_servers_on_machines.sql diff --git a/transformations/azure_compliance/macros/free/security/defender_on_for_storage.sql b/transformations/azure/macros/security/defender_on_for_storage.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/defender_on_for_storage.sql rename to transformations/azure/macros/security/defender_on_for_storage.sql diff --git a/transformations/azure_compliance/macros/pro/security/deprecated_accounts_with_owner_permissions_should_be_removed_from_your_subscription.sql b/transformations/azure/macros/security/deprecated_accounts_with_owner_permissions_should_be_removed_from_your_subscription.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/security/deprecated_accounts_with_owner_permissions_should_be_removed_from_your_subscription.sql rename to transformations/azure/macros/security/deprecated_accounts_with_owner_permissions_should_be_removed_from_your_subscription.sql diff --git a/transformations/azure_compliance/macros/pro/security/external_accounts_with_owner_permissions_should_be_removed_from_your_subscription.sql b/transformations/azure/macros/security/external_accounts_with_owner_permissions_should_be_removed_from_your_subscription.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/security/external_accounts_with_owner_permissions_should_be_removed_from_your_subscription.sql rename to transformations/azure/macros/security/external_accounts_with_owner_permissions_should_be_removed_from_your_subscription.sql diff --git a/transformations/azure_compliance/macros/pro/security/mcas_integration_with_security_center_enabled.sql b/transformations/azure/macros/security/mcas_integration_with_security_center_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/security/mcas_integration_with_security_center_enabled.sql rename to transformations/azure/macros/security/mcas_integration_with_security_center_enabled.sql diff --git a/transformations/azure_compliance/macros/free/security/mfa_should_be_enabled_accounts_with_write_permissions_on_your_subscription.sql b/transformations/azure/macros/security/mfa_should_be_enabled_accounts_with_write_permissions_on_your_subscription.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/mfa_should_be_enabled_accounts_with_write_permissions_on_your_subscription.sql rename to transformations/azure/macros/security/mfa_should_be_enabled_accounts_with_write_permissions_on_your_subscription.sql diff --git a/transformations/azure_compliance/macros/free/security/mfa_should_be_enabled_on_accounts_with_owner_permissions_on_your_subscription.sql b/transformations/azure/macros/security/mfa_should_be_enabled_on_accounts_with_owner_permissions_on_your_subscription.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/mfa_should_be_enabled_on_accounts_with_owner_permissions_on_your_subscription.sql rename to transformations/azure/macros/security/mfa_should_be_enabled_on_accounts_with_owner_permissions_on_your_subscription.sql diff --git a/transformations/azure_compliance/macros/free/security/mfa_should_be_enabled_on_accounts_with_read_permissions_on_your_subscription.sql b/transformations/azure/macros/security/mfa_should_be_enabled_on_accounts_with_read_permissions_on_your_subscription.sql similarity index 100% rename from transformations/azure_compliance/macros/free/security/mfa_should_be_enabled_on_accounts_with_read_permissions_on_your_subscription.sql rename to transformations/azure/macros/security/mfa_should_be_enabled_on_accounts_with_read_permissions_on_your_subscription.sql diff --git a/transformations/azure_compliance/macros/pro/security/notify_high_severity_alerts.sql b/transformations/azure/macros/security/notify_high_severity_alerts.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/security/notify_high_severity_alerts.sql rename to transformations/azure/macros/security/notify_high_severity_alerts.sql diff --git a/transformations/azure_compliance/macros/pro/security/security_email_configured.sql b/transformations/azure/macros/security/security_email_configured.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/security/security_email_configured.sql rename to transformations/azure/macros/security/security_email_configured.sql diff --git a/transformations/azure_compliance/macros/pro/servicebus/resource_logs_in_service_bus_should_be_enabled.sql b/transformations/azure/macros/servicebus/resource_logs_in_service_bus_should_be_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/servicebus/resource_logs_in_service_bus_should_be_enabled.sql rename to transformations/azure/macros/servicebus/resource_logs_in_service_bus_should_be_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/ad_admin_configured.sql b/transformations/azure/macros/sql/ad_admin_configured.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/ad_admin_configured.sql rename to transformations/azure/macros/sql/ad_admin_configured.sql diff --git a/transformations/azure_compliance/macros/pro/sql/atp_on_sql_server_disabled.sql b/transformations/azure/macros/sql/atp_on_sql_server_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/atp_on_sql_server_disabled.sql rename to transformations/azure/macros/sql/atp_on_sql_server_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/auditing_off.sql b/transformations/azure/macros/sql/auditing_off.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/auditing_off.sql rename to transformations/azure/macros/sql/auditing_off.sql diff --git a/transformations/azure_compliance/macros/pro/sql/auditing_retention_less_than_90_days.sql b/transformations/azure/macros/sql/auditing_retention_less_than_90_days.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/auditing_retention_less_than_90_days.sql rename to transformations/azure/macros/sql/auditing_retention_less_than_90_days.sql diff --git a/transformations/azure_compliance/macros/pro/sql/data_encryption_off.sql b/transformations/azure/macros/sql/data_encryption_off.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/data_encryption_off.sql rename to transformations/azure/macros/sql/data_encryption_off.sql diff --git a/transformations/azure_compliance/macros/pro/sql/long-term_geo-redundant_backup_should_be_enabled_for_azure_sql_databases.sql b/transformations/azure/macros/sql/long-term_geo-redundant_backup_should_be_enabled_for_azure_sql_databases.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/long-term_geo-redundant_backup_should_be_enabled_for_azure_sql_databases.sql rename to transformations/azure/macros/sql/long-term_geo-redundant_backup_should_be_enabled_for_azure_sql_databases.sql diff --git a/transformations/azure_compliance/macros/pro/sql/managed_instances_without_cmk_at_rest.sql b/transformations/azure/macros/sql/managed_instances_without_cmk_at_rest.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/managed_instances_without_cmk_at_rest.sql rename to transformations/azure/macros/sql/managed_instances_without_cmk_at_rest.sql diff --git a/transformations/azure_compliance/macros/pro/sql/managed_instances_without_vulnerability_assessments.sql b/transformations/azure/macros/sql/managed_instances_without_vulnerability_assessments.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/managed_instances_without_vulnerability_assessments.sql rename to transformations/azure/macros/sql/managed_instances_without_vulnerability_assessments.sql diff --git a/transformations/azure_compliance/macros/pro/sql/mariadb_servers_without_geo_redundant_backups.sql b/transformations/azure/macros/sql/mariadb_servers_without_geo_redundant_backups.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/mariadb_servers_without_geo_redundant_backups.sql rename to transformations/azure/macros/sql/mariadb_servers_without_geo_redundant_backups.sql diff --git a/transformations/azure_compliance/macros/pro/sql/mysql_servers_without_geo_redundant_backups.sql b/transformations/azure/macros/sql/mysql_servers_without_geo_redundant_backups.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/mysql_servers_without_geo_redundant_backups.sql rename to transformations/azure/macros/sql/mysql_servers_without_geo_redundant_backups.sql diff --git a/transformations/azure_compliance/macros/pro/sql/mysql_ssl_enforcment_disabled.sql b/transformations/azure/macros/sql/mysql_ssl_enforcment_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/mysql_ssl_enforcment_disabled.sql rename to transformations/azure/macros/sql/mysql_ssl_enforcment_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/no_sql_allow_ingress_from_any_ip.sql b/transformations/azure/macros/sql/no_sql_allow_ingress_from_any_ip.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/no_sql_allow_ingress_from_any_ip.sql rename to transformations/azure/macros/sql/no_sql_allow_ingress_from_any_ip.sql diff --git a/transformations/azure_compliance/macros/pro/sql/postgresql_allow_access_to_azure_services_enabled.sql b/transformations/azure/macros/sql/postgresql_allow_access_to_azure_services_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/postgresql_allow_access_to_azure_services_enabled.sql rename to transformations/azure/macros/sql/postgresql_allow_access_to_azure_services_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/postgresql_connection_throttling_disabled.sql b/transformations/azure/macros/sql/postgresql_connection_throttling_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/postgresql_connection_throttling_disabled.sql rename to transformations/azure/macros/sql/postgresql_connection_throttling_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/postgresql_log_checkpoints_disabled.sql b/transformations/azure/macros/sql/postgresql_log_checkpoints_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/postgresql_log_checkpoints_disabled.sql rename to transformations/azure/macros/sql/postgresql_log_checkpoints_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/postgresql_log_connections_disabled.sql b/transformations/azure/macros/sql/postgresql_log_connections_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/postgresql_log_connections_disabled.sql rename to transformations/azure/macros/sql/postgresql_log_connections_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/postgresql_log_disconnections_disabled.sql b/transformations/azure/macros/sql/postgresql_log_disconnections_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/postgresql_log_disconnections_disabled.sql rename to transformations/azure/macros/sql/postgresql_log_disconnections_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/postgresql_log_retention_days_less_than_3_days.sql b/transformations/azure/macros/sql/postgresql_log_retention_days_less_than_3_days.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/postgresql_log_retention_days_less_than_3_days.sql rename to transformations/azure/macros/sql/postgresql_log_retention_days_less_than_3_days.sql diff --git a/transformations/azure_compliance/macros/pro/sql/postgresql_servers_without_geo_redundant_backups.sql b/transformations/azure/macros/sql/postgresql_servers_without_geo_redundant_backups.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/postgresql_servers_without_geo_redundant_backups.sql rename to transformations/azure/macros/sql/postgresql_servers_without_geo_redundant_backups.sql diff --git a/transformations/azure_compliance/macros/pro/sql/postgresql_ssl_enforcment_disabled.sql b/transformations/azure/macros/sql/postgresql_ssl_enforcment_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/postgresql_ssl_enforcment_disabled.sql rename to transformations/azure/macros/sql/postgresql_ssl_enforcment_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/servers_without_vulnerability_assessments.sql b/transformations/azure/macros/sql/servers_without_vulnerability_assessments.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/servers_without_vulnerability_assessments.sql rename to transformations/azure/macros/sql/servers_without_vulnerability_assessments.sql diff --git a/transformations/azure_compliance/macros/pro/sql/sql_databases_with_unresolved_vulnerability_findings.sql b/transformations/azure/macros/sql/sql_databases_with_unresolved_vulnerability_findings.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/sql_databases_with_unresolved_vulnerability_findings.sql rename to transformations/azure/macros/sql/sql_databases_with_unresolved_vulnerability_findings.sql diff --git a/transformations/azure_compliance/macros/pro/sql/sql_servers_with_no_service_endpoint.sql b/transformations/azure/macros/sql/sql_servers_with_no_service_endpoint.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/sql_servers_with_no_service_endpoint.sql rename to transformations/azure/macros/sql/sql_servers_with_no_service_endpoint.sql diff --git a/transformations/azure_compliance/macros/pro/sql/sqlserver_tde_not_encrypted_with_cmek.sql b/transformations/azure/macros/sql/sqlserver_tde_not_encrypted_with_cmek.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/sqlserver_tde_not_encrypted_with_cmek.sql rename to transformations/azure/macros/sql/sqlserver_tde_not_encrypted_with_cmek.sql diff --git a/transformations/azure_compliance/macros/pro/sql/sqlserverauditing_audit.sql b/transformations/azure/macros/sql/sqlserverauditing_audit.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/sqlserverauditing_audit.sql rename to transformations/azure/macros/sql/sqlserverauditing_audit.sql diff --git a/transformations/azure_compliance/macros/pro/sql/va_is_enabled_on_sql_server_by_storage_account.sql b/transformations/azure/macros/sql/va_is_enabled_on_sql_server_by_storage_account.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/va_is_enabled_on_sql_server_by_storage_account.sql rename to transformations/azure/macros/sql/va_is_enabled_on_sql_server_by_storage_account.sql diff --git a/transformations/azure_compliance/macros/pro/sql/va_periodic_scans_enabled_on_sql_server.sql b/transformations/azure/macros/sql/va_periodic_scans_enabled_on_sql_server.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/va_periodic_scans_enabled_on_sql_server.sql rename to transformations/azure/macros/sql/va_periodic_scans_enabled_on_sql_server.sql diff --git a/transformations/azure_compliance/macros/pro/sql/va_send_email_to_admins_and_owners_enabled.sql b/transformations/azure/macros/sql/va_send_email_to_admins_and_owners_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/va_send_email_to_admins_and_owners_enabled.sql rename to transformations/azure/macros/sql/va_send_email_to_admins_and_owners_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/sql/va_send_scan_report_enabled_on_sql_server.sql b/transformations/azure/macros/sql/va_send_scan_report_enabled_on_sql_server.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/sql/va_send_scan_report_enabled_on_sql_server.sql rename to transformations/azure/macros/sql/va_send_scan_report_enabled_on_sql_server.sql diff --git a/transformations/azure_compliance/macros/pro/storage/accounts_with_no_service_endpoint_associated.sql b/transformations/azure/macros/storage/accounts_with_no_service_endpoint_associated.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/accounts_with_no_service_endpoint_associated.sql rename to transformations/azure/macros/storage/accounts_with_no_service_endpoint_associated.sql diff --git a/transformations/azure_compliance/macros/pro/storage/accounts_with_unrestricted_access.sql b/transformations/azure/macros/storage/accounts_with_unrestricted_access.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/accounts_with_unrestricted_access.sql rename to transformations/azure/macros/storage/accounts_with_unrestricted_access.sql diff --git a/transformations/azure_compliance/macros/pro/storage/default_network_access_rule_is_deny.sql b/transformations/azure/macros/storage/default_network_access_rule_is_deny.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/default_network_access_rule_is_deny.sql rename to transformations/azure/macros/storage/default_network_access_rule_is_deny.sql diff --git a/transformations/azure_compliance/macros/pro/storage/encrypt_with_cmk.sql b/transformations/azure/macros/storage/encrypt_with_cmk.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/encrypt_with_cmk.sql rename to transformations/azure/macros/storage/encrypt_with_cmk.sql diff --git a/transformations/azure_compliance/macros/pro/storage/encrypt_with_cmk_for_activity_log.sql b/transformations/azure/macros/storage/encrypt_with_cmk_for_activity_log.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/encrypt_with_cmk_for_activity_log.sql rename to transformations/azure/macros/storage/encrypt_with_cmk_for_activity_log.sql diff --git a/transformations/azure_compliance/macros/pro/storage/no_public_blob_container.sql b/transformations/azure/macros/storage/no_public_blob_container.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/no_public_blob_container.sql rename to transformations/azure/macros/storage/no_public_blob_container.sql diff --git a/transformations/azure_compliance/macros/pro/storage/no_publicly_accessible_insights_activity_logs.sql b/transformations/azure/macros/storage/no_publicly_accessible_insights_activity_logs.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/no_publicly_accessible_insights_activity_logs.sql rename to transformations/azure/macros/storage/no_publicly_accessible_insights_activity_logs.sql diff --git a/transformations/azure_compliance/macros/pro/storage/secure_transfer_to_storage_accounts_should_be_enabled.sql b/transformations/azure/macros/storage/secure_transfer_to_storage_accounts_should_be_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/secure_transfer_to_storage_accounts_should_be_enabled.sql rename to transformations/azure/macros/storage/secure_transfer_to_storage_accounts_should_be_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/storage/soft_delete_is_enabled.sql b/transformations/azure/macros/storage/soft_delete_is_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/storage/soft_delete_is_enabled.sql rename to transformations/azure/macros/storage/soft_delete_is_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/streamanalytics/resource_logs_in_azure_stream_analytics_should_be_enabled.sql b/transformations/azure/macros/streamanalytics/resource_logs_in_azure_stream_analytics_should_be_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/streamanalytics/resource_logs_in_azure_stream_analytics_should_be_enabled.sql rename to transformations/azure/macros/streamanalytics/resource_logs_in_azure_stream_analytics_should_be_enabled.sql diff --git a/transformations/azure_compliance/macros/shared/views/view_azure_nsg_dest_port_ranges.sql b/transformations/azure/macros/views/view_azure_nsg_dest_port_ranges.sql similarity index 100% rename from transformations/azure_compliance/macros/shared/views/view_azure_nsg_dest_port_ranges.sql rename to transformations/azure/macros/views/view_azure_nsg_dest_port_ranges.sql diff --git a/transformations/azure_compliance/macros/shared/views/view_azure_nsg_rules.sql b/transformations/azure/macros/views/view_azure_nsg_rules.sql similarity index 100% rename from transformations/azure_compliance/macros/shared/views/view_azure_nsg_rules.sql rename to transformations/azure/macros/views/view_azure_nsg_rules.sql diff --git a/transformations/azure_compliance/macros/shared/views/view_azure_security_policy_parameters.sql b/transformations/azure/macros/views/view_azure_security_policy_parameters.sql similarity index 100% rename from transformations/azure_compliance/macros/shared/views/view_azure_security_policy_parameters.sql rename to transformations/azure/macros/views/view_azure_security_policy_parameters.sql diff --git a/transformations/azure_compliance/macros/pro/web/api_app_should_only_be_accessible_over_https.sql b/transformations/azure/macros/web/api_app_should_only_be_accessible_over_https.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/api_app_should_only_be_accessible_over_https.sql rename to transformations/azure/macros/web/api_app_should_only_be_accessible_over_https.sql diff --git a/transformations/azure_compliance/macros/pro/web/app_allow_http.sql b/transformations/azure/macros/web/app_allow_http.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/app_allow_http.sql rename to transformations/azure/macros/web/app_allow_http.sql diff --git a/transformations/azure_compliance/macros/pro/web/app_auth_unset.sql b/transformations/azure/macros/web/app_auth_unset.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/app_auth_unset.sql rename to transformations/azure/macros/web/app_auth_unset.sql diff --git a/transformations/azure_compliance/macros/pro/web/app_client_cert_disabled.sql b/transformations/azure/macros/web/app_client_cert_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/app_client_cert_disabled.sql rename to transformations/azure/macros/web/app_client_cert_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/web/app_ftp_deployment_enabled.sql b/transformations/azure/macros/web/app_ftp_deployment_enabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/app_ftp_deployment_enabled.sql rename to transformations/azure/macros/web/app_ftp_deployment_enabled.sql diff --git a/transformations/azure_compliance/macros/pro/web/app_register_with_ad_disabled.sql b/transformations/azure/macros/web/app_register_with_ad_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/app_register_with_ad_disabled.sql rename to transformations/azure/macros/web/app_register_with_ad_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/web/app_using_old_tls.sql b/transformations/azure/macros/web/app_using_old_tls.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/app_using_old_tls.sql rename to transformations/azure/macros/web/app_using_old_tls.sql diff --git a/transformations/azure_compliance/macros/pro/web/apps_with_logging_disabled.sql b/transformations/azure/macros/web/apps_with_logging_disabled.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/apps_with_logging_disabled.sql rename to transformations/azure/macros/web/apps_with_logging_disabled.sql diff --git a/transformations/azure_compliance/macros/pro/web/cors_should_not_allow_every_resource_to_access_your_api_app.sql b/transformations/azure/macros/web/cors_should_not_allow_every_resource_to_access_your_api_app.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/cors_should_not_allow_every_resource_to_access_your_api_app.sql rename to transformations/azure/macros/web/cors_should_not_allow_every_resource_to_access_your_api_app.sql diff --git a/transformations/azure_compliance/macros/pro/web/cors_should_not_allow_every_resource_to_access_your_function_apps.sql b/transformations/azure/macros/web/cors_should_not_allow_every_resource_to_access_your_function_apps.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/cors_should_not_allow_every_resource_to_access_your_function_apps.sql rename to transformations/azure/macros/web/cors_should_not_allow_every_resource_to_access_your_function_apps.sql diff --git a/transformations/azure_compliance/macros/pro/web/cors_should_not_allow_every_resource_to_access_your_web_applications.sql b/transformations/azure/macros/web/cors_should_not_allow_every_resource_to_access_your_web_applications.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/cors_should_not_allow_every_resource_to_access_your_web_applications.sql rename to transformations/azure/macros/web/cors_should_not_allow_every_resource_to_access_your_web_applications.sql diff --git a/transformations/azure_compliance/macros/pro/web/function_app_should_only_be_accessible_over_https.sql b/transformations/azure/macros/web/function_app_should_only_be_accessible_over_https.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/function_app_should_only_be_accessible_over_https.sql rename to transformations/azure/macros/web/function_app_should_only_be_accessible_over_https.sql diff --git a/transformations/azure_compliance/macros/pro/web/latest_tls_version_should_be_used_in_your_api_app.sql b/transformations/azure/macros/web/latest_tls_version_should_be_used_in_your_api_app.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/latest_tls_version_should_be_used_in_your_api_app.sql rename to transformations/azure/macros/web/latest_tls_version_should_be_used_in_your_api_app.sql diff --git a/transformations/azure_compliance/macros/pro/web/latest_tls_version_should_be_used_in_your_function_app.sql b/transformations/azure/macros/web/latest_tls_version_should_be_used_in_your_function_app.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/latest_tls_version_should_be_used_in_your_function_app.sql rename to transformations/azure/macros/web/latest_tls_version_should_be_used_in_your_function_app.sql diff --git a/transformations/azure_compliance/macros/pro/web/latest_tls_version_should_be_used_in_your_web_app.sql b/transformations/azure/macros/web/latest_tls_version_should_be_used_in_your_web_app.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/latest_tls_version_should_be_used_in_your_web_app.sql rename to transformations/azure/macros/web/latest_tls_version_should_be_used_in_your_web_app.sql diff --git a/transformations/azure_compliance/macros/pro/web/remote_debugging_should_be_turned_off_for_api_apps.sql b/transformations/azure/macros/web/remote_debugging_should_be_turned_off_for_api_apps.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/remote_debugging_should_be_turned_off_for_api_apps.sql rename to transformations/azure/macros/web/remote_debugging_should_be_turned_off_for_api_apps.sql diff --git a/transformations/azure_compliance/macros/pro/web/remote_debugging_should_be_turned_off_for_function_apps.sql b/transformations/azure/macros/web/remote_debugging_should_be_turned_off_for_function_apps.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/remote_debugging_should_be_turned_off_for_function_apps.sql rename to transformations/azure/macros/web/remote_debugging_should_be_turned_off_for_function_apps.sql diff --git a/transformations/azure_compliance/macros/pro/web/remote_debugging_should_be_turned_off_for_web_applications.sql b/transformations/azure/macros/web/remote_debugging_should_be_turned_off_for_web_applications.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/remote_debugging_should_be_turned_off_for_web_applications.sql rename to transformations/azure/macros/web/remote_debugging_should_be_turned_off_for_web_applications.sql diff --git a/transformations/azure_compliance/macros/pro/web/web_application_should_only_be_accessible_over_https.sql b/transformations/azure/macros/web/web_application_should_only_be_accessible_over_https.sql similarity index 100% rename from transformations/azure_compliance/macros/pro/web/web_application_should_only_be_accessible_over_https.sql rename to transformations/azure/macros/web/web_application_should_only_be_accessible_over_https.sql diff --git a/transformations/azure_compliance/models/shared/view_azure_nsg_dest_port_ranges.sql b/transformations/azure/models/view_azure_nsg_dest_port_ranges.sql similarity index 100% rename from transformations/azure_compliance/models/shared/view_azure_nsg_dest_port_ranges.sql rename to transformations/azure/models/view_azure_nsg_dest_port_ranges.sql diff --git a/transformations/azure_compliance/models/shared/view_azure_nsg_rules.sql b/transformations/azure/models/view_azure_nsg_rules.sql similarity index 100% rename from transformations/azure_compliance/models/shared/view_azure_nsg_rules.sql rename to transformations/azure/models/view_azure_nsg_rules.sql diff --git a/transformations/azure_compliance/models/shared/view_azure_security_policy_parameters.sql b/transformations/azure/models/view_azure_security_policy_parameters.sql similarity index 100% rename from transformations/azure_compliance/models/shared/view_azure_security_policy_parameters.sql rename to transformations/azure/models/view_azure_security_policy_parameters.sql diff --git a/transformations/azure_compliance/Makefile b/transformations/azure_compliance/Makefile deleted file mode 100644 index 51533b2a2..000000000 --- a/transformations/azure_compliance/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -.PHONY: build-free -build-free: - @echo "Building free tier compliance pack" - rm -rf ./build/azure_compliance_free - mkdir -p ./build/azure_compliance_free - mkdir ./build/azure_compliance_free/macros - mkdir ./build/azure_compliance_free/models - cp -r macros/free ./build/azure_compliance_free/macros/. - cp -r macros/shared ./build/azure_compliance_free/macros/. - cp -r models/shared ./build/azure_compliance_free/models/. - cp -r models/free ./build/azure_compliance_free/models/. - cp dbt_project.yml ./build/azure_compliance_free/ - zip -r ./build/azure_compliance_free.zip ./build/azure_compliance_free - -.PHONY: build-premium -build-premium: - @echo "Building premium tier compliance pack" - rm -rf ./build/azure_compliance_premium - mkdir -p ./build/azure_compliance_premium - mkdir ./build/azure_compliance_premium/macros - mkdir ./build/azure_compliance_premium/models - cp -r macros/free ./build/azure_compliance_premium/macros/. - cp -r macros/pro ./build/azure_compliance_premium/macros/. - cp -r macros/shared ./build/azure_compliance_premium/macros/. - cp -r models/shared ./build/azure_compliance_premium/models/. - cp -r models/pro ./build/azure_compliance_premium/models/. - cp dbt_project.yml ./build/azure_compliance_premium/ - cp requirements.txt ./build/azure_compliance_premium/ - zip -r ./build/azure_compliance_premium.zip ./build/azure_compliance_premium \ No newline at end of file diff --git a/transformations/azure_compliance/tests/pg.yml b/transformations/azure_compliance/tests/pg.yml deleted file mode 100644 index 6cd41c262..000000000 --- a/transformations/azure_compliance/tests/pg.yml +++ /dev/null @@ -1,8 +0,0 @@ -kind: destination -spec: - name: "dest" - path: "cloudquery/postgresql" - version: "v6.1.1" - spec: - batch_size: 10000 - connection_string: ${CQ_DSN} \ No newline at end of file